/* ==========================================================
   SHOHAS JEWELRY
   Premium Luxury Store
==========================================================*/

/* ==========================================================
   VARIABLES
==========================================================*/

:root{

    --white:#ffffff;
    --black:#111111;

    --gray:#666666;
    --light:#f8f8f8;

    --tiffany:#81D8D0;
    --tiffany-dark:#5CC9BF;

    --gold:#C8A96A;
    --gold-light:#E6C27A;

    --border:#ECECEC;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --transition:.35s ease;

}

/* ==========================================================
   RESET
==========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--white);

    color:var(--black);

    font-family:'Inter',sans-serif;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

/* ==========================================================
   CONTAINER
==========================================================*/

.container{

    width:min(1400px,92%);

    margin:auto;

}

/* ==========================================================
   HEADER
==========================================================*/

#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: transparent;
    border: none;

    transition:
        background .35s ease,
        padding .35s ease,
        backdrop-filter .35s ease;
}

.top-header{

    width:min(1400px,92%);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:30px 0;

}

.logo a{

    display:flex;

    flex-direction:column;

    font-family:'Cormorant Garamond',serif;

    color:var(--black);

}

.logo{

    letter-spacing:8px;

}

.logo a{

    font-size:42px;

    font-weight:600;

}

.logo span{

    font-size:12px;

    letter-spacing:8px;

    color:var(--gold);

    margin-top:5px;

}

/* ==========================================================
   NAVIGATION
==========================================================*/

nav{

    border-top:1px solid var(--border);

}

nav ul{

    display:flex;

    justify-content:center;

    gap:70px;

    padding:22px 0;

}

nav a{

    position:relative;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

    transition:var(--transition);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:1px;

    background:var(--gold);

    transition:var(--transition);

}

nav a:hover{

    color:var(--gold);

}

nav a:hover::after{

    width:100%;

}

/* ==========================================================
   HEADER ICONS
==========================================================*/

.header-icons{

    display:flex;

    align-items:center;

    gap:30px;

}

.header-icons a{

    font-size:18px;

    transition:var(--transition);

}

.header-icons a:hover{

    color:var(--gold);

    transform:translateY(-3px);

}


/* ==========================================================
   BUTTON
==========================================================*/

.btn{

    display:inline-block;

    padding:16px 38px;

    border:1px solid var(--black);

    letter-spacing:3px;

    text-transform:uppercase;

    transition:var(--transition);

}

.btn:hover{

    background:var(--black);

    color:white;

}

/* ==========================================================
   FOOTER
==========================================================*/

footer{

    margin-top:160px;

    border-top:1px solid var(--border);

    background:white;

}

.footer-container{

    width:min(1400px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr 1fr;

    gap:80px;

    padding:80px 0;

}

.footer-brand h2{

    font-family:'Cormorant Garamond',serif;

    letter-spacing:4px;

    margin-bottom:15px;

}

.footer-brand p{

    color:var(--gray);

    max-width:320px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-links a{

    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--gold);

}

.footer-social{

    display:flex;

    justify-content:flex-end;

    gap:25px;

    font-size:22px;

}

.footer-social a{

    transition:var(--transition);

}

.footer-social a:hover{

    color:var(--gold);

}

.copyright{

    border-top:1px solid var(--border);

    text-align:center;

    padding:30px;

    color:var(--gray);

    font-size:14px;

}

/* ==========================================================
   RESPONSIVE
==========================================================*/

@media(max-width:900px){

    .top-header{

        flex-direction:column;

        gap:25px;

    }

    nav ul{

        flex-wrap:wrap;

        gap:25px;

    }

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-brand p{

        margin:auto;

    }

    .footer-social{

        justify-content:center;

    }

}
/* ==========================================================
   HERO
==========================================================*/

.hero{
    position:relative;
    height:100vh;
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.hero-media{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.30);
    z-index:2;
}

.hero-content{
    position:relative;
    z-index:3;
    text-align:center;
    color:white;
    max-width:900px;
    animation:fadeUp 1.2s ease;
}

.hero-subtitle{

    display:block;

    margin-bottom:30px;

    letter-spacing:8px;

    color:var(--tiffany);

    text-transform:uppercase;

    font-size:14px;

}

.hero h1{

    font-family:"Cormorant Garamond",serif;

    font-size:90px;

    font-weight:600;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    color:#f5f5f5;

    max-width:650px;

    margin:auto;

    margin-bottom:50px;

}

.hero-button{

    display:inline-block;

    padding:18px 55px;

    border:1px solid white;

    color:white;

    letter-spacing:4px;

    text-transform:uppercase;

    transition:.35s;

}

.hero-button:hover{

    background:white;

    color:black;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@media(max-width:900px){

.hero h1{

font-size:55px;

}

.hero p{

font-size:17px;

padding:0 25px;

}

}
/* ===========================================
FEATURED COLLECTIONS
=========================================== */

/*.featured {
    padding: 140px 8%;
    background: #fff;
}

*//*.featured-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}*/

/*.featured-grid a{
    position:relative;
    display:block;
    height:520px;
    overflow:hidden;
}

.featured-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.featured-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    background: rgba(0, 0, 0, 0);

    opacity: 0;
    transition:
        opacity 0.6s ease,
        background 0.6s ease;
}*/

.featured-overlay h3 {
    margin: 0 0 30px;
    font-size: 58px;
    font-family: serif;
    font-weight: 400;

    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.featured-overlay span {
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.6s ease 0.1s,
        transform 0.6s ease 0.1s;
}

.featured-grid > a:hover img {
    transform: scale(1.08);
}

.featured-grid > a:hover .featured-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.28);
}

.featured-grid > a:hover .featured-overlay h3,
.featured-grid > a:hover .featured-overlay span {
    opacity: 1;
    transform: translateY(0);
}

.section-title{

    text-align:center;

    margin-bottom:80px;

}

.section-title span{

    color:#78CFCB;

    text-transform:uppercase;

    letter-spacing:6px;

    font-size:13px;

}

.section-title h2{

    font-family:"Cormorant Garamond",serif;

    font-size:58px;

    font-weight:500;

    margin-top:20px;

}


.featured-card{

    position:relative;

    height:700px;

    overflow:hidden;

    text-decoration:none;

}

.featured-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.featured-card:hover img{

    transform:scale(1.08);

}

.featured-card:hover .featured-overlay{

    background:rgba(0,0,0,.45);

}

@media(max-width:900px){

.featured-grid{

grid-template-columns:1fr;

}

.featured-card{

height:500px;

}

.section-title h2{

font-size:42px;

}

.featured-overlay h3{

font-size:42px;

}

}
/*=========================
LATEST CREATIONS
=========================*/

.products-section{

    padding:140px 8%;

    background:#fafafa;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.product-card{

    overflow:hidden;

}

.product-image{

    position:relative;

    overflow:hidden;

    background:#f5f5f5;

}

.product-image img{

    width:100%;

    height:430px;

    object-fit:cover;

    transition:.6s;

}

.product-actions{

    position:absolute;

    left:20px;

    right:20px;

    bottom:-170px;

    transition:.45s;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.product-actions a{

    background:white;

    color:#111;

    text-decoration:none;

    text-align:center;

    padding:14px;

    letter-spacing:2px;

    font-size:13px;

    transition:.3s;

}

.product-actions a:hover{

    background:#78CFCB;

    color:white;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card:hover .product-actions{

    bottom:20px;

}

.product-info{

    padding-top:24px;

    text-align:center;

}

.product-info h3{

    font-size:24px;

    font-family:"Cormorant Garamond",serif;

    margin-bottom:10px;

    transition:.3s;

}

.product-info p{

    color:#888;

    letter-spacing:2px;

}

.product-card:hover h3{

    color:#78CFCB;

}

@media(max-width:1200px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.products-grid{

grid-template-columns:1fr;

}

}
.product-wrapper{
    display:flex;
    gap:70px;
    max-width:1400px;
    margin:auto;
    padding:100px 60px;
}

.gallery{
    display:flex;
    gap:25px;
}

.gallery-thumbs{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.thumb{

    width:90px;
    height:90px;

    object-fit:cover;

    cursor:pointer;

    border-radius:12px;

    transition:.35s;

}

.thumb:hover{

    transform:scale(1.08);

}

.gallery-main img{

    width:700px;

    height:800px;

    object-fit:contain;

    background:white;

    border-radius:18px;

}
/* =======================================
            PRODUCT PAGE
======================================= */

.product-page{

    background:#fafafa;

    min-height:100vh;

    padding:80px 0 120px;

}

.product-container{

    width:90%;

    max-width:1500px;

    margin:auto;

}

.back-link{

    display:inline-block;

    margin-bottom:55px;

    text-decoration:none;

    color:#777;

    font-size:15px;

    transition:.3s;

}

.back-link:hover{

    color:#111;

    transform:translateX(-5px);

}

.product-layout{

    display:grid;

    grid-template-columns:

        90px

        620px

        420px;

    gap:70px;

    align-items:start;

}
.gallery-column{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.gallery-thumb{

    width:70px;

    height:70px;

    object-fit:cover;

    border-radius:12px;

    cursor:pointer;

    transition:.35s;

    border:1px solid #ececec;

}

.gallery-thumb:hover{

    transform:scale(1.08);

    border-color:#d4af37;

}
.main-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.main-image img{

    width:100%;

    max-height:720px;

    object-fit:contain;

}.product-details{

    padding-top:40px;

}

.product-details h1{

    font-size:46px;

    font-weight:500;

    margin-bottom:30px;

}
.stars{

    color:#d4af37;

    font-size:22px;

    letter-spacing:5px;

}
.reviews{

    margin-top:15px;

    margin-bottom:35px;

}

.reviews strong{

    font-size:22px;

}

.reviews span{

    display:block;

    margin-top:8px;

    color:#888;

}
.material{

    color:#777;

    font-size:18px;

    margin-bottom:20px;

}
.price{

    font-size:40px;

    margin-bottom:30px;

    font-weight:600;

}
.description{

    color:#666;

    line-height:1.8;

    margin-bottom:45px;

}
.divider{

    width:100%;

    height:1px;

    background:#eee;

    margin:35px 0;

}
.quantity{

    margin-bottom:45px;

}

.qty-box{

    display:flex;

    align-items:center;

    gap:35px;

    margin-top:20px;

}

.qty-box button{

    border:none;

    background:none;

    font-size:32px;

    cursor:pointer;

}

.qty-box span{

    font-size:22px;

}
.bag-btn{

    width:100%;

    height:62px;

    border:none;

    background:#111;

    color:white;

    font-size:17px;

    cursor:pointer;

    transition:.35s;

}

.bag-btn:hover{

    background:#d4af37;

    color:black;

}
.wishlist-btn{

    width:100%;

    height:62px;

    margin-top:18px;

    background:white;

    border:1px solid #ddd;

    cursor:pointer;

    transition:.35s;

}

.wishlist-btn:hover{

    border-color:#d4af37;

}
/* ==========================
        GLASS HEADER
========================== */
#header.scrolled{
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.lightbox-counter{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:16px;

    letter-spacing:3px;

    opacity:.85;

    font-family:"Inter",sans-serif;

}
/* ===========================
   ATELIER HEADER
=========================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 32px 70px;

    background: transparent;

    transition:
        background .35s ease,
        padding .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}

.atelier-header-inner{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;
}
.atelier-navigation{
    position:absolute;
    left:50%;
    top:50%;

    transform:translate(-50%, -50%);
}

.atelier-header-left{
    display:flex;
    align-items:center;
    gap:26px;
}

.atelier-logo a{
    color:#fff;
    text-decoration:none;
    font-family:"Cormorant Garamond",serif;
    font-size:42px;
    font-weight:600;
    letter-spacing:.22em;
}

.atelier-navigation ul{
    display:flex;
    align-items:center;
    gap:58px;

    list-style:none;
    margin:0;
    padding:0;
}

.atelier-navigation a{
    color:#fff;
    text-decoration:none;

    font-size:13px;
    font-weight:500;
    letter-spacing:.22em;
    text-transform:uppercase;

    transition:.3s;
}

.atelier-navigation a:hover{
    opacity:.65;
}

.atelier-header-actions{
    display:flex;
    align-items:center;
    gap:24px;
}

.atelier-header-icon{
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.atelier-header-icon:hover{
    opacity:.65;
}

.atelier-menu-button{
    width:34px;
    height:24px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    padding:0;
    background:none;
    border:none;

    cursor:pointer;
}

.atelier-menu-button span{
    width:100%;
    height:1.5px;
    background:#fff;
    transition:.3s;
}

/* после скролла */

#header.scrolled{

    padding:18px 70px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(18px);

    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

#header.scrolled .atelier-logo a,
#header.scrolled .atelier-navigation a,
#header.scrolled .atelier-header-icon{
    color:#111;
}

#header.scrolled .atelier-menu-button span{
    background:#111;
}

@media(max-width:1000px){

    #header{
        padding:24px;
    }

    #header.scrolled{
        padding:18px 24px;
    }

    .atelier-navigation{
        display:none;
    }

}
/* ===========================
   ATELIER SIDE MENU
=========================== */

.atelier-menu-overlay{
    position:fixed;
    inset:0;
    z-index:1998;

    background:rgba(0,0,0,.42);

    opacity:0;
    visibility:hidden;

    transition:
        opacity .4s ease,
        visibility .4s ease;
}

.atelier-side-menu{
    position:fixed;
    top:0;
    left:0;

    width:min(520px, 100%);
    height:100vh;

    z-index:1999;

    background:#f7f5f1;

    transform:translateX(-100%);

    transition:transform .55s cubic-bezier(.77,0,.18,1);
}

.atelier-side-menu.open{
    transform:translateX(0);
}

.atelier-menu-overlay.open{
    opacity:1;
    visibility:visible;
}

.atelier-menu-close{
    position:absolute;
    top:34px;
    left:38px;

    width:30px;
    height:30px;

    border:0;
    background:none;

    cursor:pointer;
}

.atelier-menu-close span{
    position:absolute;
    top:50%;
    left:0;

    width:100%;
    height:1px;

    background:#111;
}

.atelier-menu-close span:first-child{
    transform:rotate(45deg);
}

.atelier-menu-close span:last-child{
    transform:rotate(-45deg);
}

.atelier-side-menu-content{
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:100px 70px 60px;
}

.atelier-side-navigation{
    display:flex;
    flex-direction:column;
    align-items:flex-start;

    gap:28px;
}

.atelier-side-navigation a{
    position:relative;

    color:#111;
    text-decoration:none;

    font-family:"Cormorant Garamond",serif;
    font-size:52px;
    font-weight:500;
    line-height:1;

    transition:opacity .25s ease;
}

.atelier-side-navigation a:hover{
    opacity:.5;
}

.atelier-side-menu-line{
    width:100%;
    height:1px;

    margin:55px 0 30px;

    background:rgba(17,17,17,.2);
}

.atelier-side-socials{
    display:flex;
    align-items:center;
    gap:34px;
}

.atelier-side-socials a{
    color:#111;
    text-decoration:none;

    font-size:11px;
    font-weight:500;
    letter-spacing:.2em;
    text-transform:uppercase;

    transition:opacity .25s ease;
}

.atelier-side-socials a:hover{
    opacity:.5;
}

body.menu-open{
    overflow:hidden;
}

@media(max-width:600px){

    .atelier-side-menu-content{
        padding:100px 30px 45px;
    }

    .atelier-menu-close{
        top:25px;
        left:25px;
    }

    .atelier-side-navigation a{
        font-size:42px;
    }

    .atelier-side-socials{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

}
/* ===========================
   DIVA AUTH PAGES
=========================== */

.auth-page{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:180px 24px 90px;

    background:#f7f5f1;
}

.auth-box{
    width:100%;
    max-width:470px;

    text-align:center;
}

.auth-box h1{
    margin:0 0 18px;

    font-family:"Cormorant Garamond",serif;
    font-size:46px;
    font-weight:600;
    letter-spacing:.28em;

    color:#111;
}

.auth-box h2{
    margin:0 0 55px;

    font-family:"Cormorant Garamond",serif;
    font-size:34px;
    font-weight:400;

    color:#111;
}

.auth-box form{
    width:100%;
}

.auth-field{
    margin-bottom:32px;

    text-align:left;
}

.auth-field label{
    display:block;

    margin-bottom:10px;

    font-size:11px;
    font-weight:500;
    letter-spacing:.2em;
    text-transform:uppercase;

    color:#333;
}

.auth-field input{
    width:100%;
    height:50px;

    padding:0 2px;

    border:0;
    border-bottom:1px solid rgba(17,17,17,.35);
    border-radius:0;
    outline:none;

    background:transparent;

    font-family:"Inter",sans-serif;
    font-size:15px;

    color:#111;

    transition:border-color .25s ease;
}

.auth-field input:focus{
    border-bottom-color:#111;
}

.auth-button{
    width:100%;
    height:56px;

    margin-top:18px;

    border:1px solid #111;

    background:#111;
    color:#fff;

    font-size:11px;
    font-weight:600;
    letter-spacing:.24em;
    text-transform:uppercase;

    cursor:pointer;

    transition:
        background .3s ease,
        color .3s ease;
}

.auth-button:hover{
    background:transparent;
    color:#111;
}

.auth-footer{
    margin-top:32px;

    font-size:13px;
    line-height:1.8;

    color:#666;
}

.auth-footer a{
    margin-left:5px;

    color:#111;
    text-decoration:none;

    border-bottom:1px solid #111;
}

.auth-footer a:hover{
    opacity:.55;
}

/* Django errors */

.auth-box .errorlist{
    list-style:none;

    margin:8px 0 0;
    padding:0;

    text-align:left;

    font-size:12px;
    line-height:1.5;

    color:#a32626;
}

.auth-box .helptext{
    display:block;

    margin-top:8px;

    text-align:left;

    font-size:11px;
    line-height:1.6;

    color:#777;
}

@media(max-width:600px){

    .auth-page{
        padding:140px 22px 60px;
    }

    .auth-box h1{
        font-size:38px;
    }

    .auth-box h2{
        margin-bottom:42px;
        font-size:29px;
    }

}
.logout-form{
    margin-top:18px;
}

.logout-btn{
    background:none;
    border:none;

    padding:0;

    font:inherit;
    font-size:15px;

    color:#111;

    cursor:pointer;

    transition:.3s;
}

.logout-btn:hover{
    opacity:.6;
}
/* ===========================
   DIVA PROFILE PAGE
=========================== */

.profile-page{
    min-height:100vh;
    padding:180px 24px 100px;

    background:#f7f5f1;
}

.profile-container{
    width:100%;
    max-width:1100px;

    margin:0 auto;
}

.profile-heading{
    margin-bottom:65px;
}

.profile-label{
    margin:0 0 12px;

    font-size:11px;
    font-weight:500;
    letter-spacing:.24em;
    text-transform:uppercase;

    color:#777;
}

.profile-heading h1{
    margin:0 0 16px;

    font-family:"Cormorant Garamond",serif;
    font-size:58px;
    font-weight:500;
    line-height:1;

    color:#111;
}

.profile-heading > p:last-child{
    margin:0;

    font-size:15px;
    color:#666;
}

.profile-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);

    border-top:1px solid rgba(17,17,17,.18);
    border-left:1px solid rgba(17,17,17,.18);
}

.profile-card{
    min-height:150px;

    padding:32px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    border-right:1px solid rgba(17,17,17,.18);
    border-bottom:1px solid rgba(17,17,17,.18);

    background:rgba(255,255,255,.45);
}

.profile-card span{
    font-size:10px;
    font-weight:500;
    letter-spacing:.22em;
    text-transform:uppercase;

    color:#777;
}

.profile-card strong{
    margin-top:35px;

    font-family:"Cormorant Garamond",serif;
    font-size:27px;
    font-weight:500;

    color:#111;
}

.profile-actions{
    display:flex;
    gap:14px;

    margin-top:40px;
}

.profile-primary-button,
.profile-secondary-button{
    min-width:210px;
    height:54px;

    padding:0 28px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    font-size:10px;
    font-weight:600;
    letter-spacing:.22em;
    text-transform:uppercase;
    text-decoration:none;

    transition:.3s;
}

.profile-primary-button{
    border:1px solid #111;

    background:#111;
    color:#fff;
}

.profile-primary-button:hover{
    background:transparent;
    color:#111;
}

.profile-secondary-button{
    border:1px solid #111;

    background:transparent;
    color:#111;
}

.profile-secondary-button:hover{
    background:#111;
    color:#fff;
}

@media(max-width:700px){

    .profile-page{
        padding:140px 20px 70px;
    }

    .profile-heading h1{
        font-size:44px;
    }

    .profile-grid{
        grid-template-columns:1fr;
    }

    .profile-actions{
        flex-direction:column;
    }

    .profile-primary-button,
    .profile-secondary-button{
        width:100%;
    }

}
/* ===========================
   DIVA ORDERS
=========================== */

.orders-page{
    min-height:100vh;
    padding:180px 24px 100px;
    background:#f7f5f1;
}

.orders-container{
    max-width:1100px;
    margin:0 auto;
}

.orders-header{
    margin-bottom:60px;
}

.orders-header p{
    margin:0 0 10px;
    font-size:11px;
    letter-spacing:.25em;
    text-transform:uppercase;
    color:#777;
}

.orders-header h1{
    margin:0;
    font-family:"Cormorant Garamond",serif;
    font-size:56px;
    font-weight:500;
}

.order-card{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:35px;

    margin-bottom:22px;

    background:#fff;

    border:1px solid rgba(17,17,17,.12);

    transition:.35s;
}

.order-card:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.order-left,
.order-center,
.order-right{

    display:flex;
    flex-direction:column;
    gap:10px;

}

.order-number{

    font-size:13px;

    letter-spacing:.18em;

    font-weight:600;

}

.order-date{

    color:#777;

}

.order-price{

    font-family:"Cormorant Garamond",serif;

    font-size:34px;

}

.order-link{

    color:#111;

    text-decoration:none;

}

.order-link:hover{

    opacity:.6;

}

.order-status{

    font-weight:600;

}

.order-status.completed{

    color:#178a4a;

}

.order-status.processing{

    color:#d39a00;

}

.order-status.pending{

    color:#888;

}

.order-status.cancelled{

    color:#b12828;

}

.orders-empty{

    padding:80px;

    text-align:center;

    background:#fff;

    border:1px solid rgba(17,17,17,.12);

}

.orders-empty h2{

    font-family:"Cormorant Garamond",serif;

    font-size:42px;

    margin-bottom:12px;

}

.orders-empty p{

    color:#777;

}

@media(max-width:768px){

    .order-card{

        flex-direction:column;

        align-items:flex-start;

        gap:25px;

    }

}
/* ===========================
   ORDER PRODUCTS
=========================== */

.order-card-with-products{
    display:block;
    padding:0;
    overflow:hidden;
}

.order-products{
    padding:30px 35px;
    background:#fff;
}

.order-product{
    display:flex;
    align-items:center;
    gap:22px;
    padding:18px 0;
    border-bottom:1px solid rgba(17,17,17,.10);
}

.order-product:first-child{
    padding-top:0;
}

.order-product:last-child{
    padding-bottom:0;
    border-bottom:none;
}

.order-product-image{
    width:110px;
    height:110px;
    flex-shrink:0;
    overflow:hidden;
    background:#f2f0ec;
}

.order-product-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.order-product-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    text-align:center;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#888;
}

.order-product-info h3{
    margin:0 0 8px;
    font-family:"Cormorant Garamond",serif;
    font-size:27px;
    font-weight:500;
}

.order-product-info p{
    margin:0 0 6px;
    color:#555;
}

.order-product-info span{
    font-size:13px;
    color:#888;
}

.order-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding:28px 35px;
    background:#f8f6f2;
    border-top:1px solid rgba(17,17,17,.10);
}

@media(max-width:768px){

    .order-product{
        align-items:flex-start;
    }

    .order-product-image{
        width:85px;
        height:85px;
    }

    .order-product-info h3{
        font-size:22px;
    }

    .order-meta{
        flex-direction:column;
        align-items:flex-start;
    }

}
/* ===========================
   ORDER DETAIL PAGE
=========================== */

.order-detail-page{
    min-height:100vh;
    padding:180px 24px 100px;
    background:#f7f5f1;
}

.order-detail-container{
    max-width:1250px;
    margin:0 auto;
}

.order-detail-heading{
    margin-bottom:55px;
}

.order-detail-heading p{
    margin:0 0 10px;
    font-size:11px;
    letter-spacing:.25em;
    text-transform:uppercase;
    color:#777;
}

.order-detail-heading h1{
    margin:0 0 10px;
    font-family:"Cormorant Garamond",serif;
    font-size:58px;
    font-weight:500;
}

.order-detail-heading > span{
    color:#777;
}

.order-detail-layout{
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(320px,.75fr);
    gap:45px;
    align-items:start;
}

.order-detail-products{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.order-detail-product-card{
    background:#fff;
    border:1px solid rgba(17,17,17,.12);
    overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease;
}

.order-detail-product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.order-detail-product-image{
    width:100%;
    aspect-ratio:4 / 3;
    overflow:hidden;
    background:#eeeae3;
}

.order-detail-product-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .7s ease;
}

.order-detail-product-card:hover
.order-detail-product-image img{
    transform:scale(1.04);
}

.order-detail-image-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#888;
}

.order-detail-product-content{
    padding:32px;
}

.order-detail-brand{
    display:block;
    margin-bottom:10px;
    font-size:10px;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:#888;
}

.order-detail-product-content h2{
    margin:0 0 25px;
    font-family:"Cormorant Garamond",serif;
    font-size:36px;
    font-weight:500;
}

.order-detail-product-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    padding-bottom:25px;
    border-bottom:1px solid rgba(17,17,17,.1);
}

.order-detail-product-meta p{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin:0;
}

.order-detail-product-meta span{
    font-size:11px;
    letter-spacing:.13em;
    text-transform:uppercase;
    color:#888;
}

.order-detail-product-meta strong{
    font-size:16px;
    font-weight:500;
}

.order-detail-subtotal{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:24px;
}

.order-detail-subtotal span{
    font-size:12px;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.order-detail-subtotal strong{
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    font-weight:500;
}

.order-detail-sidebar{
    position:sticky;
    top:130px;
}

.order-detail-summary{
    padding:34px;
    background:#fff;
    border:1px solid rgba(17,17,17,.12);
}

.order-detail-summary-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding-bottom:25px;
    border-bottom:1px solid rgba(17,17,17,.1);
}

.order-detail-summary-header > span{
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
}

.order-detail-info-block{
    padding:28px 0;
    border-bottom:1px solid rgba(17,17,17,.1);
}

.order-detail-info-block h3{
    margin:0 0 22px;
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    font-weight:600;
}

.order-detail-info-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:25px;
    margin-bottom:16px;
}

.order-detail-info-row:last-child{
    margin-bottom:0;
}

.order-detail-info-row span{
    color:#888;
}

.order-detail-info-row strong{
    max-width:210px;
    text-align:right;
    font-weight:500;
    overflow-wrap:anywhere;
}

.order-detail-total{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:30px 0;
}

.order-detail-total span{
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.order-detail-total strong{
    font-family:"Cormorant Garamond",serif;
    font-size:40px;
    font-weight:500;
}

.order-detail-back-link{
    display:block;
    padding-top:22px;
    border-top:1px solid rgba(17,17,17,.1);
    color:#111;
    text-decoration:none;
    transition:opacity .25s ease;
}

.order-detail-back-link:hover{
    opacity:.55;
}

@media(max-width:900px){

    .order-detail-layout{
        grid-template-columns:1fr;
    }

    .order-detail-sidebar{
        position:static;
    }

}

@media(max-width:600px){

    .order-detail-page{
        padding:140px 16px 70px;
    }

    .order-detail-heading h1{
        font-size:44px;
    }

    .order-detail-product-content{
        padding:24px;
    }

    .order-detail-product-content h2{
        font-size:30px;
    }

    .order-detail-summary{
        padding:25px;
    }

    .order-detail-summary-header{
        align-items:flex-start;
        flex-direction:column;
    }

    .order-detail-info-row{
        flex-direction:column;
        gap:5px;
    }

    .order-detail-info-row strong{
        max-width:none;
        text-align:left;
    }

}
@media(max-width:900px){

    #header{
        padding:24px 28px;
    }

    .atelier-navigation{
        display:none;
    }

    .atelier-header-left{
        gap:18px;
    }

    .atelier-logo a{
        font-size:34px;
    }

    .atelier-header-actions{
        gap:18px;
    }

}

@media(max-width:480px){

    #header{
        padding:20px 18px;
    }

    .atelier-logo a{
        font-size:28px;
        letter-spacing:.18em;
    }

    .atelier-menu-button{
        width:28px;
        height:20px;
    }

    .atelier-header-actions{
        gap:14px;
    }

    .atelier-header-icon{
        font-size:16px;
    }

}
/* ===========================
SHOP PAGE
=========================== */

.shop-page{
    background:#f8f7f4;
    min-height:100vh;
}

.shop-hero{
    min-height:58vh;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:180px 24px 90px;

    background:#111;
    color:#fff;
}

.shop-hero-subtitle{
    margin-bottom:22px;

    font-size:12px;
    letter-spacing:.35em;
    text-transform:uppercase;

    opacity:.7;
}

.shop-hero h1{
    margin:0;

    font-family:"Cormorant Garamond",serif;
    font-size:86px;
    font-weight:400;
    line-height:1;
}

.shop-hero p{
    max-width:590px;

    margin:28px auto 0;

    font-size:16px;
    line-height:1.8;

    color:rgba(255,255,255,.72);
}

.shop-catalog{
    padding:110px 6% 140px;
}

.shop-catalog-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    margin-bottom:55px;
}

.shop-catalog-label{
    display:block;

    margin-bottom:10px;

    font-size:11px;
    letter-spacing:.32em;
    text-transform:uppercase;

    color:#888;
}

.shop-catalog-header h2{
    margin:0;

    font-family:"Cormorant Garamond",serif;
    font-size:54px;
    font-weight:400;
}

.shop-product-count{
    margin:0;

    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;

    color:#777;
}

.shop-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:46px 26px;
}

.shop-card{
    min-width:0;
}

.shop-card-image{
    position:relative;

    overflow:hidden;

    aspect-ratio:4 / 5;

    background:#efede8;
}

.shop-card-image > a:first-child{
    display:block;
    width:100%;
    height:100%;
}

.shop-card-image img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .7s ease;
}

.shop-card:hover .shop-card-image img{
    transform:scale(1.055);
}

.shop-wishlist-button{
    position:absolute;
    top:18px;
    right:18px;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    border:0;
    border-radius:50%;

    background:rgba(255,255,255,.9);
    color:#111;

    font-size:20px;

    cursor:pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.shop-wishlist-button:hover{
    transform:scale(1.08);
}

.shop-wishlist-button.active{
    background:#111;
    color:#fff;
}

.shop-card-action{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;

    padding:16px 18px;

    background:rgba(255,255,255,.94);
    color:#111;

    text-align:center;
    text-decoration:none;

    font-size:11px;
    font-weight:500;
    letter-spacing:.22em;
    text-transform:uppercase;

    opacity:0;
    transform:translateY(18px);

    transition:
        opacity .35s ease,
        transform .35s ease,
        background .3s ease,
        color .3s ease;
}

.shop-card:hover .shop-card-action{
    opacity:1;
    transform:translateY(0);
}

.shop-card-action:hover{
    background:#111;
    color:#fff;
}

.shop-card-info{
    padding-top:22px;
    text-align:center;
}

.shop-card-name{
    display:inline-block;

    color:#171717;
    text-decoration:none;

    font-family:"Cormorant Garamond",serif;
    font-size:24px;
    line-height:1.25;

    transition:opacity .3s ease;
}

.shop-card-name:hover{
    opacity:.55;
}

.shop-card-price{
    margin:10px 0 0;

    color:#777;

    font-size:13px;
    letter-spacing:.14em;
}

.shop-empty{
    padding:100px 20px;

    text-align:center;

    border-top:1px solid #ddd;
}

.shop-empty h2{
    margin-bottom:12px;

    font-family:"Cormorant Garamond",serif;
    font-size:42px;
    font-weight:400;
}

.shop-empty p{
    color:#777;
}


/* ===========================
SHOP RESPONSIVE
=========================== */

@media(max-width:1200px){

    .shop-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

}

@media(max-width:900px){

    .shop-hero{
        min-height:50vh;
        padding:150px 24px 75px;
    }

    .shop-hero h1{
        font-size:68px;
    }

    .shop-catalog{
        padding:85px 5% 110px;
    }

    .shop-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:38px 20px;
    }

}

@media(max-width:600px){

    .shop-hero{
        min-height:44vh;
        padding:125px 20px 60px;
    }

    .shop-hero-subtitle{
        font-size:10px;
        letter-spacing:.28em;
    }

    .shop-hero h1{
        font-size:48px;
    }

    .shop-hero p{
        margin-top:20px;

        font-size:14px;
        line-height:1.7;
    }

    .shop-catalog{
        padding:65px 18px 85px;
    }

    .shop-catalog-header{
        align-items:flex-start;
        flex-direction:column;
        gap:16px;

        margin-bottom:34px;
    }

    .shop-catalog-header h2{
        font-size:40px;
    }

    .shop-grid{
        grid-template-columns:1fr;
        gap:42px;
    }

    .shop-card-action{
        opacity:1;
        transform:none;
    }

    .shop-card-name{
        font-size:25px;
    }

}
/* Fix wishlist button inside shop cards */
.shop-card .wishlist-btn.shop-wishlist-button{
    position:absolute;
    top:18px;
    right:18px;
    bottom:auto;
    left:auto;

    width:42px;
    min-width:42px;
    max-width:42px;
    height:42px;
    min-height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0;
    padding:0;

    border:0;
    border-radius:50%;

    background:rgba(255,255,255,.92);
    color:#111;

    font-size:20px;
    line-height:1;

    transform:none;
    cursor:pointer;
    z-index:5;
}

.shop-card .wishlist-btn.shop-wishlist-button:hover{
    width:42px;
    background:#111;
    color:#fff;
    transform:scale(1.07);
}

.shop-card .wishlist-btn.shop-wishlist-button.active{
    width:42px;
    background:#111;
    color:#fff;
}
.order-detail-action{
    margin-top:32px;
    padding:26px;
    border:1px solid rgba(26,20,17,.12);
    background:#faf8f4;
}

.order-detail-action h3{
    margin:0 0 12px;
    font-size:18px;
    font-weight:500;
    color:#1a1411;
}

.order-detail-action p{
    margin:0 0 22px;
    color:#6f6a66;
    line-height:1.7;
    font-size:15px;
}

.cancel-order-btn{
    width:100%;
    height:52px;
    border:1px solid #1a1411;
    background:transparent;
    color:#1a1411;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    cursor:pointer;
    transition:.3s;
}

.cancel-order-btn:hover{
    background:#1a1411;
    color:#fff;
}

.order-detail-action.cancelled{
    background:#f8f3f3;
    border-color:#d8b8b8;
}

.order-detail-action.expired{
    background:#f8f8f8;
}.order-detail-cancel-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 22px 0;
    padding: 16px 0;
    border-top: 1px solid rgba(26, 20, 17, 0.12);
    border-bottom: 1px solid rgba(26, 20, 17, 0.12);
}

.order-detail-cancel-timer span {
    color: #6f6a66;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.order-detail-cancel-timer strong {
    color: #1a1411;
    font-size: 17px;
    font-weight: 500;
}
.diva-toast-container {
    position: fixed;
    top: 115px;
    left: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(380px, calc(100vw - 48px));
    pointer-events: none;
}

.diva-toast {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr 28px;
    gap: 14px;
    align-items: start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(26, 20, 17, 0.14);
    box-shadow: 0 18px 45px rgba(26, 20, 17, 0.14);
    backdrop-filter: blur(12px);
    pointer-events: auto;
    animation: divaToastIn 0.45s ease both;
}

.diva-toast::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #9b7a46;
}

.diva-toast.error::before {
    background: #9c4d4d;
}

.diva-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #9b7a46;
    border-radius: 50%;
    color: #9b7a46;
    font-size: 17px;
}

.diva-toast.error .diva-toast-icon {
    border-color: #9c4d4d;
    color: #9c4d4d;
}

.diva-toast-content span {
    display: block;
    margin-bottom: 5px;
    color: #9b7a46;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.diva-toast.error .diva-toast-content span {
    color: #9c4d4d;
}

.diva-toast-content p {
    margin: 0;
    color: #1a1411;
    font-size: 14px;
    line-height: 1.6;
}

.diva-toast-close {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #6f6a66;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.diva-toast.is-hiding {
    animation: divaToastOut 0.45s ease forwards;
}

@keyframes divaToastIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes divaToastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@media (max-width: 600px) {
    .diva-toast-container {
        top: 90px;
        left: 16px;
        width: calc(100vw - 32px);
    }
}
/* ===========================
   ABOUT PAGE
=========================== */

.about-hero{
    height:70vh;
    background:url("/static/images/about-banner.1939fdf34bb9.jpg") center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-overlay{
    text-align:center;
    color:#fff;
    background:rgba(0,0,0,.35);
    padding:60px;
}

.about-overlay h1{
    font-size:56px;
    letter-spacing:8px;
    font-weight:300;
    margin-bottom:20px;
}

.about-overlay p{
    font-size:20px;
    letter-spacing:2px;
}

.about-content{
    max-width:1200px;
    margin:100px auto;
}

.about-block{
    margin-bottom:90px;
    text-align:center;
}

.about-block h2{
    font-size:36px;
    letter-spacing:4px;
    margin-bottom:25px;
}

.about-block p{
    max-width:760px;
    margin:auto;
    line-height:2;
    color:#666;
    font-size:17px;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-bottom:100px;
}

.about-card{
    padding:45px;
    border:1px solid #ececec;
    background:#fff;
    transition:.35s;
}

.about-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.about-card h3{
    margin-bottom:15px;
    letter-spacing:2px;
}

.about-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

.about-grid{
    grid-template-columns:1fr;
}

.about-overlay{
    padding:35px;
}

.about-overlay h1{
    font-size:36px;
}

.about-block h2{
    font-size:28px;
}

}
/* ===========================
   DIVA CONTACT SPLIT PAGE
=========================== */

.diva-contact {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: flex-end;

    background:
    linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.06) 0%,
        rgba(0, 0, 0, 0.02) 55%,
        rgba(0, 0, 0, 0.12) 100%
    ),
    url("/static/images/contact-banner.437499fb675f.jpg")
    center center / cover no-repeat;
}

.diva-contact-image {
    display: none;
}

.diva-contact-image img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: block;
    object-fit: cover;
    object-position: center;
}

.diva-contact-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.05) 55%,
            rgba(0, 0, 0, 0.32)
        );
    pointer-events: none;
}

.diva-contact-image-caption {
    position: absolute;
    z-index: 2;
    left: 60px;
    bottom: 55px;
    color: #ffffff;
}

.diva-contact-image-caption span {
    display: block;
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: 8px;
}

.diva-contact-image-caption p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.diva-contact-content {
    width: 44%;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 70px 80px;

    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-left: 1px solid rgba(255, 255, 255, 0.55);

    box-shadow:
        -25px 0 70px rgba(0, 0, 0, 0.14);
}

.diva-contact-inner {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
}

.diva-contact-eyebrow {
    display: block;
    margin-bottom: 22px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #9a8062;
}

.diva-contact-inner h1 {
    margin: 0 0 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(54px, 5vw, 82px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 1px;
    color: #161616;
}

.diva-contact-intro {
    max-width: 490px;
    margin: 0 0 55px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: #676767;
}

.diva-contact-list {
    border-top: 1px solid #dedede;
}

.diva-contact-item {
    padding: 25px 0;
    border-bottom: 1px solid #dedede;
}

.diva-contact-item span {
    display: block;
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #a18768;
}

.diva-contact-item a {
    display: inline-block;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 500;
    color: #171717;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.diva-contact-item a:hover {
    color: #9a8062;
    transform: translateX(5px);
}

.diva-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 42px;
}

.diva-contact-button {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 16px 22px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    background: #171717;
    border: 1px solid #171717;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.diva-contact-button span {
    font-size: 18px;
    line-height: 1;
}

.diva-contact-button:hover {
    color: #171717;
    background: #ffffff;
    transform: translateY(-3px);
}

/* TABLET */

@media (max-width: 1050px) {
.diva-contact-content {
    width: 54%;
    padding:
        140px
        42px
        70px;
}


    .diva-contact-image-caption {
        left: 35px;
        bottom: 35px;
    }

}

/* MOBILE */

@media (max-width: 780px) {

.diva-contact {
    display: flex;
    align-items: flex-end;
    min-height: 100vh;

    background-position: center top;
}
    .diva-contact-image {
        min-height: 62vh;
        height: 62vh;
    }

    .diva-contact-image img {
        min-height: 62vh;
        height: 62vh;
    }

    .diva-contact-image-caption {
        left: 24px;
        bottom: 28px;
    }

    .diva-contact-image-caption span {
        font-size: 36px;
    }

.diva-contact-content {
    width: 100%;
    min-height: auto;

    padding:
        70px
        24px
        80px;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
    .diva-contact-inner h1 {
        font-size: 54px;
    }

    .diva-contact-intro {
        margin-bottom: 40px;
    }

}

/* SMALL MOBILE */

@media (max-width: 520px) {

    .diva-contact-image {
        min-height: 52vh;
        height: 52vh;
    }

    .diva-contact-image img {
        min-height: 52vh;
        height: 52vh;
    }

    .diva-contact-actions {
        grid-template-columns: 1fr;
    }

    .diva-contact-item a {
        font-size: 23px;
    }

    .diva-contact-inner h1 {
        font-size: 46px;
    }

}
.shop-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 32px 20px 10px;
}

.shop-categories a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 22px;
    border: 1px solid rgba(20, 20, 20, 0.2);
    border-radius: 999px;
    color: #1b1b1b;
    background: transparent;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.shop-categories a:hover,
.shop-categories a.active {
    color: #ffffff;
    background: #1b1b1b;
    border-color: #1b1b1b;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .shop-categories {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 24px 16px 8px;
        scrollbar-width: none;
    }

    .shop-categories::-webkit-scrollbar {
        display: none;
    }

    .shop-categories a {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 9px 18px;
        font-size: 12px;
    }
}
.featured-layout{
    max-width:1280px;
    margin:0 auto;
}

.featured-main{
    position:relative;
    display:block;
    width:100%;
    height:620px;
    overflow:hidden;
    margin-bottom:24px;
}

.featured-main img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.featured-small-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
}

.featured-small-grid a{
    position:relative;
    display:block;
    height:420px;
    overflow:hidden;
}

.featured-small-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.featured-main:hover img,
.featured-small-grid a:hover img{
    transform:scale(1.04);
}
/* ==========================
   COLLECTIONS
========================== */

.collections-section{
    max-width:1280px;
    margin-top:0;
    margin-bottom:120px;
    margin-left:auto;
    margin-right:auto;
    padding:0 30px;
}
.collections-heading{
    text-align:center;
    margin-bottom:50px;
}

.collections-heading span{
    display:block;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#999;
    margin-bottom:10px;
    font-size:13px;
}

.collections-heading h2{
    font-size:52px;
    font-weight:400;
}

.collections-layout{
    display:flex;
    flex-direction:column;
    gap:0;
}

.collection-large{
    display:block;
    height:650px;
    overflow:hidden;
}

.collection-large img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.collections-small-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0;
}

.collection-small{
    display:block;
    height:420px;
    overflow:hidden;
}

.collection-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.collection-large:hover img,
.collection-small:hover img{
    transform:scale(1.05);
}
.collection-large,
.collection-small{
    position:relative;
}

.collection-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.15);

    opacity:0;
    transition:.45s ease;
}

.collection-overlay h3{
    color:#fff;
    font-family:"Cormorant Garamond",serif;
    font-size:56px;
    font-weight:500;
    margin-bottom:18px;

    transform:translateY(20px);
    transition:.45s ease;
}

.collection-overlay span{
    color:#fff;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;

    transform:translateY(20px);
    transition:.45s ease;
}

.collection-large:hover .collection-overlay,
.collection-small:hover .collection-overlay{
    opacity:1;
    background:rgba(0,0,0,.22);
}

.collection-large:hover .collection-overlay h3,
.collection-large:hover .collection-overlay span,
.collection-small:hover .collection-overlay h3,
.collection-small:hover .collection-overlay span{
    transform:translateY(0);
}