@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:wght@400;500&display=swap');

:root{
    --background:#f5f3ef;
    --foreground:#111111;
    --card:#ffffff;
    --card-foreground:#111111;
    --primary:#111111;
    --primary-foreground:#ffffff;
    --secondary:#e8e4dd;
    --secondary-foreground:#111111;
    --muted:#dedbd5;
    --muted-foreground:#77736d;
    --accent:#111111;
    --accent-foreground:#ffffff;
    --destructive:#b3261e;
    --border:rgba(0,0,0,0.08);
    --radius:0;
    --radius-lg:0;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'DM Sans', Arial, sans-serif;
}

html{ scroll-behavior:smooth; }

body{
    background:var(--background);
    color:var(--foreground);
    line-height:1.5;
}

h2{
    font-family:'Playfair Display', serif;
    font-weight:400;
}

.eyebrow{
    display:block;
    font-size:10px;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--muted-foreground);
    margin-bottom:14px;
}

/* Header */

header{
    height:100vh;
    position:relative;
    overflow:hidden;
}
.slider-images{
    position:absolute;
    inset:0;
    z-index:0;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease;
}

.slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.2));
}

.slide.active{
    opacity:1;
    z-index:1;
}

header .site-nav{
    z-index:10;
}

header .hero{
    position:relative;
    z-index:5;
}
.mobile-hero{
    display:none;
    position:absolute;
    inset:0;
    background-size:100% 100%;
    background-position:center top;
    background-repeat:no-repeat;
    z-index:0;
}

.mobile-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.2));
}
/* Fixed Nav Bar */

.site-nav{
    height:82px;
    width:100%;
    padding:0 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(245,243,239,0.96);
    position:fixed;
    top:0; left:0;
    z-index:1000;
    border-bottom:1px solid rgba(0,0,0,0.08);
}

.logo-block{
    text-decoration:none;
    display:flex;
    flex-direction:column;
    line-height:1;
}
.nav-center{
    display:flex;
    align-items:center;
    gap:36px;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
}

.nav-links-side{
    list-style:none;
    display:flex;
    gap:32px;
}

.nav-links-side a{
    text-decoration:none;
    color:var(--foreground);
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    position:relative;
    padding-bottom:6px;
}

.nav-links-side a::after{
    content:"";
    position:absolute;
    height:1px;
    width:0;
    left:0;
    bottom:0;
    background:var(--foreground);
    transition:.3s ease;
}

.nav-links-side a:hover::after{ width:100%; }

.menu-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
}

.menu-toggle span{
    display:block;
    width:22px;
    height:1.5px;
    background:var(--foreground);
    transition:.3s ease;
}

.nav-icons{
    display:flex;
    align-items:center;
    gap:20px;
}

.nav-icons button,
.nav-icons .cart-link{
    background:none;
    border:none;
    cursor:pointer;
    color:var(--foreground);
    text-decoration:none;
    position:relative;
    display:flex;
    align-items:center;
}

.cart-badge{
    position:absolute;
    top:-8px;
    right:-9px;
    background:var(--primary);
    color:var(--primary-foreground);
    font-size:9px;
    width:15px;
    height:15px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.logo{
    color:var(--foreground);
    font-size:24px;
    font-weight:600;
    letter-spacing:8px;
}

.site-logo{
    display:block;
    max-width:160px;
    height:auto;
    object-fit:contain;
}

.tagline{
    display:none;
}


.nav-icons{
    display:flex;
    align-items:center;
    gap:22px;
}

.nav-icons a, .nav-icons button{
    background:none;
    border:none;
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--foreground);
    cursor:pointer;
    text-decoration:none;
    position:relative;
}

.search-box{
    position:fixed;
    top:82px;
    left:0; right:0;
    background:var(--background);
    border-bottom:1px solid var(--border);
    padding:20px 5%;
    display:none;
    z-index:999;
}

.search-box.active{ display:block; }

.search-box input{
    width:100%;
    max-width:600px;
    margin:0 auto;
    display:block;
    border:none;
    border-bottom:1px solid var(--foreground);
    background:transparent;
    padding:10px 0;
    font-size:16px;
    outline:none;
}



/* Hero */

.hero{
    text-align:left;
    color:var(--primary-foreground);
    margin-top:60px;
    max-width:650px;
    padding:0 70px;
    position:relative;
    top:22%;
}

.hero h1{
    font-size:clamp(60px,10vw,120px);
    line-height:0.9;
    font-weight:400;
    letter-spacing:-3px;
    margin-bottom:30px;
}

.hero p{
    max-width:420px;
    margin:0 0 35px 0;
    font-size:15px;
    line-height:1.8;
    color:#e8e8e8;
    text-transform:none;
    letter-spacing:normal;
}

.btn{
    text-decoration:none;
    background:transparent;
    color:var(--primary-foreground);
    padding:16px 32px;
    border-radius:0;
    display:inline-block;
    transition:.3s;
    border:1px solid var(--primary-foreground);
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:500;
}

.btn:hover{
    background:var(--primary-foreground);
    color:var(--primary);
}

.brand-ad-section{
    padding:40px 5% 0;
    background:var(--background);
}

.brand-ad-panel{
    width:min(1100px, 100%);
    margin:0 auto;
    background:#f1f0ee;
    display:grid;
    grid-template-columns:1.4fr 0.9fr; /* larger text column, smaller image column */
    align-items:start;
    min-height:360px; /* reduced height to make it less prominent */
    border:1px solid rgba(17,17,17,0.06);
}

.brand-ad-copy{
    padding:20px 24px 20px 40px; /* tighter padding */
    max-width:520px;
    text-align:left;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.brand-ad-kicker{
    display:block;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:var(--foreground);
    margin-bottom:20px;
    font-weight:500;
}

.brand-ad-copy h2{
    font-size:clamp(36px, 5.5vw, 64px); /* smaller headline */
    line-height:0.95;
    letter-spacing:-2px;
    margin:0 0 10px;
    white-space:pre-line;
}

.brand-ad-copy p{
    margin:0 0 12px;
    max-width:360px;
    font-size:15px; /* reduced copy size */
    color:rgba(17,17,17,0.85);
    line-height:1.5;
    font-weight:400;
}

.brand-ad-btn{
    background:#111111;
    color:#ffffff;
    border:1px solid #111111;
    padding:18px 28px;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    display:inline-block;
}

.brand-ad-btn:hover{
    background:#ffffff;
    color:#111111;
}

.brand-ad-slider-wrap{
    position:relative;
    display:flex;
    align-items:stretch;
    justify-content:center;
    min-height:360px; /* reduced */
    width:100%;
    background:rgba(255,255,255,0.08);
}

.brand-ad-slider{
    position:relative;
    width:100%;
    height:100%;
    min-height:360px; /* reduced */
    overflow:hidden;
    background:transparent; /* let image dominate */
    touch-action: pan-y;
    cursor:grab;
}

.brand-ad-slider:active{
    cursor:grabbing;
}

.brand-ad-track{
    display:flex;
    width:100%;
    height:100%;
    transition:transform 0.35s ease;
}

.brand-ad-slide{
    min-width:100%;
    width:100%;
    height:100%;
    flex:0 0 100%;
    opacity:1;
    visibility:visible;
    transition:none;
    overflow:hidden;
}

.brand-ad-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:none !important;
    -webkit-filter:none !important;
    user-select:none;
    -webkit-user-drag:none;
}

.brand-ad-dots{
    display:flex;
    justify-content:flex-end; /* less attention: align to right */
    gap:8px;
    margin-top:10px;
    padding-bottom:4px;
}

.brand-ad-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    border:1px solid rgba(17,17,17,0.35);
    background:transparent;
    cursor:pointer;
    transition:all 0.18s ease;
    padding:0;
}

.brand-ad-dot.active{
    width:18px;
    border-radius:999px;
    background:#111111;
    border-color:#111111;
}

.brand-benefits{
    width:min(1280px, 100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:0;
    background:#f4f2ef;
    border-left:1px solid rgba(17,17,17,0.06);
    border-right:1px solid rgba(17,17,17,0.06);
    border-bottom:1px solid rgba(17,17,17,0.06);
}

.benefit-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    min-height:150px;
    padding:25px 18px;
    border-right:1px solid rgba(17,17,17,0.06);
    text-align:left;
}

.benefit-item:last-child{
    border-right:none;
}

.benefit-icon{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    font-size:26px;
    border:1px solid rgba(17,17,17,0.6);
    border-radius:50%;
    flex-shrink:0;
}

.benefit-item strong{
    display:block;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:6px;
}

.benefit-item small{
    display:block;
    color:rgba(17,17,17,0.7);
    font-size:13px;
    line-height:1.5;
}

/* Split Banners */

.split-banner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2px;
    background:var(--foreground);
}

.banner-item{
    position:relative;
    display:block;
    aspect-ratio:3/4;
    overflow:hidden;
    text-decoration:none;
}

.banner-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
    display:block;
    filter:grayscale(10%);
}

.banner-item:hover img{
    transform:scale(1.04);
    filter:grayscale(0%);
}

.banner-overlay{
    position:absolute;
    left:0; right:0; bottom:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 28px;
    background:linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.banner-label{
    color:#fff;
    font-family:'Playfair Display', serif;
    font-size:22px;
}

.banner-arrow{
    color:#fff;
    font-size:20px;
    transition:.3s;
}

.banner-item:hover .banner-arrow{ transform:translateX(6px); }

@media(max-width:768px){
    .brand-ad-panel{
        grid-template-columns:1fr;
        min-height:auto;
    }

    .brand-ad-copy{
        padding:42px 26px 26px;
        max-width:none;
    }

    .brand-ad-copy h2{
        font-size:clamp(46px, 16vw, 72px);
        letter-spacing:-3px;
    }

    .brand-ad-copy p{
        font-size:16px;
        max-width:none;
    }

    .brand-ad-slider-wrap,
    .brand-ad-slider{
        min-height:420px;
    }

    .brand-benefits{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .benefit-item{
        border-right:none;
        border-bottom:1px solid rgba(17,17,17,0.06);
        padding:22px 16px;
    }

    .benefit-item:nth-child(odd){
        border-right:1px solid rgba(17,17,17,0.06);
    }

    .split-banner{ grid-template-columns:1fr; }
    .banner-item{ aspect-ratio:3/4; }
}

/* Philosophy */

.philosophy{
    padding:150px 10%;
    text-align:center;
    background:var(--background);
}

.philosophy h2{
    font-size:clamp(40px,6vw,72px);
    line-height:1.05;
    margin-bottom:32px;
}

.philosophy p{
    max-width:600px;
    margin:0 auto;
    color:var(--muted-foreground);
    font-size:14px;
    line-height:1.9;
}

/* Products */

.products{
    padding:100px 5%;
    text-align:left;
    background:var(--background);
}

.section-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    margin-bottom:50px;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

.products h2{
    font-size:48px;
    margin-bottom:0;
}

.view-all{
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    text-decoration:none;
    color:var(--foreground);
    border-bottom:1px solid var(--foreground);
    padding-bottom:5px;
    white-space:nowrap;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
    max-width:1200px;
    margin:0 auto;
}

.card{
    background:transparent;
    border:none;
    border-radius:0;
    overflow:visible;
    box-shadow:none;
    transition:.3s;
    max-width:none;
    margin:0;
    text-align:left;
}

.card:hover{ transform:none; box-shadow:none; }

.card img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    display:block;
    filter:grayscale(6%);
    transition:.4s;
}

.card:hover img{ filter:brightness(.94); }

.card h3{
    margin-top:16px;
    font-size:13px;
    font-weight:500;
    text-transform:none;
    color:var(--card-foreground);
}

.card p{
    margin:5px 0 14px 0;
    color:var(--muted-foreground);
    font-size:12px;
    font-weight:400;
}

.card .btn{
    margin:0;
    padding:11px 22px;
    background:var(--primary);
    color:var(--primary-foreground);
    border:1px solid var(--primary);
    font-size:10px;
}

.card .btn:hover{
    background:transparent;
    color:var(--primary);
}

.edition-links{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:60px;
    flex-wrap:wrap;
}

.edition-links a{
    text-decoration:none;
    color:var(--foreground);
    border:1px solid var(--foreground);
    padding:16px 36px;
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.3s;
}

.edition-links a:hover{
    background:var(--foreground);
    color:var(--background);
}

/* About */

.about{
    background:#111111;
    color:#ffffff;
    padding:130px 10%;
    text-align:left;
}

.about h2{
    font-size:clamp(44px,6vw,72px);
    margin-bottom:30px;
    color:#ffffff;
}

.about p{
    max-width:600px;
    margin:0 0 20px 0;
    line-height:1.9;
    font-size:14px;
    color:#aaaaaa;
    text-align:left;
}

.about h3{
    color:#ffffff;
    font-weight:500;
    margin-top:30px;
    margin-bottom:15px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.founders{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:20px;
}

.founder{
    background:#1c1c1c;
    color:#ffffff;
    padding:20px;
    width:150px;
    border-radius:0;
    border:1px solid #292929;
}

/* Contact */




form{ max-width:600px; margin:0; }

input,textarea{
    width:100%;
    padding:12px 0;
    margin-bottom:26px;
    border:none;
    border-bottom:1px solid #aaa;
    border-radius:0;
    background:transparent;
    color:var(--foreground);
    font-family:inherit;
}

input:focus,textarea:focus{
    outline:none;
    border-color:var(--foreground);
}

form button{
    background:transparent;
    color:var(--foreground);
    padding:16px 32px;
    border:1px solid var(--foreground);
    border-radius:0;
    cursor:pointer;
    transition:.3s;
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
}

form button:hover{
    background:var(--foreground);
    color:var(--background);
}

/* Footer */

footer{
    background:#111111;
    color:#ffffff;
    text-align:center;
    padding:40px 25px;
}

footer p{
    font-size:10px;
    letter-spacing:1px;
    color:#888;
}

/* Responsive */

@media(max-width:768px){
    nav{ flex-direction:column; padding:20px; }
    .nav-links{ margin-top:16px; }
    .hero{ padding:0 25px; }
    .hero h1{ font-size:52px; }
    .products,.about,.contact,.philosophy{ padding:70px 25px; }
    .section-heading{ flex-direction:column; align-items:flex-start; gap:16px; }
}

/* Cart icon */
.cart-link{ position:relative; font-size:16px; }
#cart-count{
    background:var(--primary);
    color:var(--primary-foreground);
    font-size:10px;
    padding:1px 6px;
    border-radius:50px;
    margin-left:4px;
}

/* Product detail page */
.product-detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    max-width:1100px;
    margin:60px auto;
    padding:0 40px;
}
.product-detail-grid img{ width:100%; }
.product-info h1{ font-family:'Playfair Display',serif; font-size:36px; margin-bottom:14px; }
.product-price{ font-size:20px; color:var(--muted-foreground); margin-bottom:24px; }
@media(max-width:768px){ .product-detail-grid{ grid-template-columns:1fr; } }

/* Cart page */
.cart-section{ max-width:700px; margin:60px auto; padding:0 25px; }
.cart-row{ display:flex; align-items:center; gap:20px; border-bottom:1px solid var(--border); padding:18px 0; }
.cart-row img{ width:70px; height:70px; object-fit:cover; }
.cart-row-info{ flex:1; }
.cart-row-controls{ display:flex; align-items:center; gap:8px; }
.cart-row-controls button{ background:transparent; border:1px solid var(--border); padding:4px 10px; cursor:pointer; }
.remove-btn{ background:var(--destructive) !important; color:white; border:none !important; }
.cart-total{ font-size:20px; font-weight:500; margin:24px 0; }
/* Editorial */

.editorial{
    display:flex;
    flex-wrap:wrap;
    min-height:500px;
    background:#e8e4dd;
}

.editorial-image{
    flex:1 1 50%;
    min-height:400px;
    background-size:cover;
    background-position:center;
}

.editorial-content{
    flex:1 1 40%;
    padding:60px 6%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.editorial-content h2{
    font-size:clamp(32px,5vw,56px);
    line-height:1.1;
    margin-bottom:24px;
    color:var(--foreground);
}

.editorial-content p{
    max-width:420px;
    font-size:14px;
    color:var(--muted-foreground);
    line-height:1.9;
    margin-bottom:24px;
}
.text-link{
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    text-decoration:none;
    color:var(--foreground);
    width:fit-content;
    border-bottom:1px solid var(--foreground);
    padding-bottom:6px;
    display:inline-block;
}

/* Newsletter */

.newsletter{
    padding:60px 10%;
    text-align:center;
    background:#e4e0d8;
}

.newsletter h2{
    font-size:clamp(36px,5vw,56px);
    margin-bottom:24px;
}

.newsletter p{
    color:var(--muted-foreground);
    font-size:14px;
    margin-bottom:32px;
}

.newsletter-form{
    max-width:460px;
    margin:0 auto;
    display:flex;
    border-bottom:1px solid var(--foreground);
}

.newsletter-form input{
    flex:1;
    border:none;
    outline:none;
    background:transparent;
    padding:14px 0;
    font-size:13px;
    margin-bottom:0;
}

.newsletter-form button{
    border:none;
    background:transparent;
    font-size:9px;
    letter-spacing:2px;
    text-transform:uppercase;
    cursor:pointer;
    padding:14px 0;
}

/* New Footer */

.site-footer{
    padding:70px 5% 25px;
    background:#111111;
    color:#ffffff;
    text-align:left;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:60px;
}

.footer-logo{
    font-size:28px;
    letter-spacing:8px;
    color:#fff;
    text-decoration:none;
}

.footer-brand p{
    color:#777;
    font-size:12px;
    line-height:1.8;
    margin-top:20px;
}

.footer-column{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-column h4{
    font-size:9px;
    letter-spacing:2px;
    margin-bottom:8px;
    color:#fff;
}

.footer-column a{
    color:#888;
    font-size:11px;
    text-decoration:none;
    transition:.2s;
}

.footer-column a:hover{ color:#fff; }

.footer-bottom{
    padding-top:22px;
    border-top:1px solid #292929;
    display:flex;
    justify-content:space-between;
    color:#666;
    font-size:9px;
    letter-spacing:1px;
    flex-wrap:wrap;
    gap:10px;
}

.footer-bottom div{ display:flex; gap:20px; }
.footer-bottom a{ color:#666; text-decoration:none; }

/* Contact Redesign */

.contact{
    padding:120px 5%;
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:80px;
    background:var(--background);
}

.contact-heading h2{
    font-size:56px;
    margin-bottom:24px;
}

.contact-heading p{
    max-width:380px;
    color:var(--muted-foreground);
    font-size:14px;
    line-height:1.8;
}

.contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:10px;
}

.form-group label{
    font-size:9px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--muted-foreground);
}

.form-group.full{ grid-column:1/-1; }
.mobile-menu-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    color:var(--foreground);
}
/* Checkout Page */

.checkout-page{
    padding:140px 5% 80px;
}

.checkout-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:60px;
    max-width:1100px;
    margin:0 auto;
}

.checkout-form-col h2{
    font-size:36px;
    margin-bottom:10px;
}

.form-row-inline{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.payment-options{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin:16px 0 20px;
}

.payment-option{
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid var(--border);
    padding:14px;
    cursor:pointer;
    font-size:14px;
}

.payment-fields{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:10px;
}

.checkout-summary-col{
    background:var(--secondary);
    padding:30px;
    height:fit-content;
}

@media(max-width:768px){
    .checkout-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    .checkout-page{
        padding:110px 20px 60px;
    }
}
/* Login / Auth Page */

.auth-page{
    min-height:75vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:140px 20px 80px;
}

.auth-card{
    background:var(--card);
    border:1px solid var(--border);
    max-width:420px;
    width:100%;
    padding:50px 40px;
    text-align:center;
}

.auth-card h2{
    font-size:34px;
    margin-bottom:10px;
}

.auth-subtitle{
    color:var(--muted-foreground);
    font-size:14px;
    margin-bottom:28px;
}

.auth-tabs{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:26px;
    border-bottom:1px solid var(--border);
}

.auth-tabs button{
    background:none;
    border:none;
    font-size:13px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    cursor:pointer;
    color:var(--muted-foreground);
    padding-bottom:12px;
    border-bottom:2px solid transparent;
}

.auth-tabs button.active{
    color:var(--foreground);
    border-bottom-color:var(--foreground);
}

.google-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    background:#fff;
    color:#000;
    border:1px solid var(--border);
    padding:14px;
    cursor:pointer;
    font-size:13px;
    letter-spacing:0.5px;
}

.divider{
    text-align:center;
    margin:22px 0 18px;
    color:var(--muted-foreground);
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.auth-card form input{
    text-align:left;
}

.auth-error{
    color:var(--destructive);
    font-size:13px;
    margin-top:14px;
    font-weight:500;
}

.btn-outline-dark{
    background:transparent;
    color:var(--foreground);
    border:1px solid var(--foreground);
}

.btn-outline-dark:hover{
    background:var(--foreground);
    color:var(--background);
}
/* Account Page */

.account-page{
    max-width:900px;
    margin:0 auto;
    padding:140px 20px 80px;
}

.account-header{
    margin-bottom:34px;
}

.account-header .eyebrow{
    margin-bottom:6px;
}

.account-header h2{
    font-size:36px;
}

.account-tabs{
    display:flex;
    gap:30px;
    border-bottom:1px solid var(--border);
    margin-bottom:34px;
}

.account-tab{
    background:none;
    border:none;
    font-size:12px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    cursor:pointer;
    color:var(--muted-foreground);
    padding-bottom:14px;
    border-bottom:2px solid transparent;
    white-space:nowrap;
}

.account-tab.active{
    color:var(--foreground);
    border-bottom-color:var(--foreground);
}

.account-panel{
    display:none;
}

.account-panel.active{
    display:block;
}

#details-form{
    max-width:500px;
    display:flex;
    flex-direction:column;
    gap:2px;
}

.order-card{
    border:1px solid var(--border);
    padding:22px;
    margin-bottom:16px;
}

.order-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    font-weight:bold;
}

.order-status{
    color:#fff;
    background:var(--foreground);
    text-transform:uppercase;
    letter-spacing:0.5px;
    font-size:10px;
    padding:4px 10px;
}

.order-items-preview{
    display:flex;
    gap:8px;
}

.order-items-preview img{
    width:54px;
    height:54px;
    object-fit:cover;
}
/* Account nav dropdown */

.account-menu-wrap{
    position:relative;
}

.account-avatar-btn{
    width:32px;
    height:32px;
    border-radius:50%;
    background:var(--primary);
    color:var(--primary-foreground);
    border:none;
    font-weight:bold;
    font-size:14px;
    cursor:pointer;
}

.account-dropdown{
    position:absolute;
    top:44px;
    right:0;
    background:var(--card);
    border:1px solid var(--border);
    min-width:200px;
    display:none;
    flex-direction:column;
    z-index:1200;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.account-dropdown.active{
    display:flex;
}

.account-dropdown-email{
    padding:12px 16px;
    font-size:11px;
    color:var(--muted-foreground);
    border-bottom:1px solid var(--border);
    word-break:break-all;
}

.account-dropdown a,
.account-dropdown button{
    padding:12px 16px;
    text-align:left;
    background:none;
    border:none;
    text-decoration:none;
    color:var(--foreground);
    font-size:13px;
    cursor:pointer;
    width:100%;
}

.account-dropdown a:hover,
.account-dropdown button:hover{
    background:var(--secondary);
}
.wishlist-heart-btn{
    background:none;
    border:none;
    cursor:pointer;
    color:var(--foreground);
    padding:6px;
}

.wishlist-heart-btn.active{
    color:var(--destructive);
}

.wishlist-heart-btn.active svg{
    fill:var(--destructive);
}
/* Order Tracker */

.order-tracker{
    display:flex;
    justify-content:space-between;
    margin:16px 0 4px;
    position:relative;
}

.order-tracker::before{
    content:"";
    position:absolute;
    top:9px;
    left:5%;
    right:5%;
    height:2px;
    background:var(--border);
    z-index:0;
}

.order-tracker-step{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    position:relative;
    z-index:1;
    flex:1;
}

.order-tracker-dot{
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--background);
    border:2px solid var(--border);
}

.order-tracker-step.done .order-tracker-dot{
    background:var(--foreground);
    border-color:var(--foreground);
}

.order-tracker-label{
    font-size:9px;
    letter-spacing:0.5px;
    text-transform:uppercase;
    color:var(--muted-foreground);
    text-align:center;
}

.order-tracker-step.done .order-tracker-label{
    color:var(--foreground);
    font-weight:600;
}
/* Admin Dashboard */

.admin-page{
    max-width:1000px;
    margin:0 auto;
    padding:120px 20px 80px;
}

.admin-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-bottom:40px;
}

.admin-stat-card{
    border:1px solid var(--border);
    padding:20px;
    text-align:center;
}

.admin-stat-value{
    display:block;
    font-size:26px;
    font-weight:600;
    margin-bottom:4px;
}

.admin-stat-label{
    font-size:10px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--muted-foreground);
}

.admin-status-select{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    padding:6px 10px;
    border:1px solid var(--border);
    background:var(--background);
    color:var(--foreground);
    cursor:pointer;
}

.admin-product-form{
    border:1px solid var(--border);
    padding:24px;
    margin-bottom:30px;
}

.admin-product-form h3{
    margin-bottom:16px;
}

.admin-product-form form{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.admin-product-form select{
    width:100%;
    padding:12px 0;
    margin-bottom:20px;
    border:none;
    border-bottom:1px solid #aaa;
    background:transparent;
    font-family:inherit;
}

.admin-product-row{
    display:flex;
    align-items:center;
    gap:16px;
    border-bottom:1px solid var(--border);
    padding:14px 0;
}

.admin-product-row img{
    width:56px;
    height:56px;
    object-fit:cover;
}

.admin-product-row-info{
    flex:1;
}

.admin-product-row-info h4{
    font-size:14px;
    margin-bottom:4px;
}

.admin-product-row-info p{
    font-size:12px;
    color:var(--muted-foreground);
}
.admin-field-label{
    display:block;
    font-size:11px;
    letter-spacing:0.5px;
    color:var(--muted-foreground);
    margin:16px 0 4px;
}

.admin-checkbox-label{
    display:flex;
    align-items:center;
    gap:8px;
    margin:4px 0 14px;
    font-size:12px;
    color:var(--muted-foreground);
}

@media(max-width:768px){
    .admin-stats{
        grid-template-columns:1fr 1fr;
    }
    .admin-product-row{
        flex-wrap:wrap;
    }
}
/* Product Gallery */

.product-gallery img#main-product-image{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    cursor:zoom-in;
}

.gallery-thumbs{
    display:flex;
    gap:10px;
    margin-top:12px;
}

.gallery-thumb{
    width:70px;
    height:70px;
    object-fit:cover;
    cursor:pointer;
    opacity:0.6;
    border:1px solid transparent;
}

.gallery-thumb.active{
    opacity:1;
    border-color:var(--foreground);
}

/* Variant selectors */

.variant-group{
    margin-bottom:18px;
}

.variant-label{
    display:block;
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--muted-foreground);
    margin-bottom:8px;
}

.variant-options{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.variant-btn{
    border:1px solid var(--border);
    background:transparent;
    padding:10px 18px;
    font-size:13px;
    cursor:pointer;
}

.variant-btn.active{
    background:var(--foreground);
    color:var(--background);
    border-color:var(--foreground);
}

.stock-message{
    font-size:12px;
    font-weight:600;
    margin-bottom:16px;
}

.product-btn-row{
    display:flex;
    gap:12px;
    align-items:center;
}

.product-btn-row .btn:disabled{
    opacity:0.4;
    cursor:not-allowed;
}

.product-meta{
    margin-top:20px;
    border-top:1px solid var(--border);
    padding-top:20px;
}

.product-meta p{
    font-size:13px;
    color:var(--muted-foreground);
    margin-bottom:6px;
}

.delivery-estimate{
    margin-top:20px;
    padding:14px;
    background:var(--secondary);
    font-size:12px;
}

.share-actions{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:22px;
}

.share-actions .variant-label{
    margin:0 8px 0 0;
}

.share-btn{
    width:36px;
    height:36px;
    border:1px solid var(--border);
    background:transparent;
    padding:0;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--foreground);
    transition:.2s ease;
}

.share-btn:hover{
    background:var(--foreground);
    color:var(--background);
    border-color:var(--foreground);
}

.product-extra-section{
    margin-top:80px;
    padding-top:35px;
    border-top:1px solid var(--border);
}

.product-feedback-section{
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
}

.product-extra-section h2{
    font-size:32px;
    margin-bottom:24px;
}

.muted-text,
.feedback-card small{
    color:var(--muted-foreground);
}

.feedback-heading{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:15px;
    text-align:center;
}

.feedback-heading > div{
    flex:1;
}

.feedback-heading h2{
    margin-bottom:6px;
}

.feedback-heading .eyebrow{
    margin-bottom:8px;
}

.feedback-heading span{
    color:var(--muted-foreground);
    font-size:13px;
}

.feedback-card{
    border-bottom:1px solid var(--border);
    padding:16px  0;
}

.feedback-card strong{
    font-size:13px;
}

.feedback-card p{
    margin:7px 0;
    font-size:13px;
}

.feedback-card small{
    font-size:11px;
}

.feedback-form{
    display:flex;
    flex-direction:column;
    gap:10px;
    max-width:600px;
    margin-top:25px;
    margin-left:auto;
    margin-right:auto;
    padding:28px;
    border:1px solid var(--border);
    background:rgba(255,255,255,0.35);
}

.feedback-form h3{
    font-family:'Playfair Display', serif;
    font-size:24px;
    font-weight:400;
    margin-bottom:6px;
}

.feedback-form label{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.feedback-form select,
.feedback-form textarea{
    border:1px solid var(--border);
    padding:12px;
    background:transparent;
    font:inherit;
}

.feedback-form p{
    font-size:12px;
}

/* Size Chart Modal */

.size-chart-modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:1200;
}

.size-chart-modal-overlay.active{
    opacity:1;
    visibility:visible;
}

.size-chart-modal{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(0.95);
    background:var(--background);
    padding:30px;
    max-width:500px;
    width:90%;
    z-index:1201;
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
}

.size-chart-modal.active{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,-50%) scale(1);
}

.image-lightbox{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    background:rgba(0,0,0,0.88);
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
    z-index:1300;
}

.image-lightbox.active{
    opacity:1;
    visibility:visible;
}

.image-lightbox img{
    max-width:92vw;
    max-height:92vh;
    width:auto;
    height:auto;
    object-fit:contain;
}

.image-lightbox-close{
    position:absolute;
    top:18px;
    right:24px;
    border:0;
    background:none;
    color:#fff;
    font-size:36px;
    line-height:1;
    cursor:pointer;
}

.size-chart-table{
    width:100%;
    border-collapse:collapse;
    margin-top:16px;
    font-size:13px;
}

.size-chart-table th,
.size-chart-table td{
    border:1px solid var(--border);
    padding:10px;
    text-align:center;
}

@media(max-width:768px){
    .share-actions{
        flex-wrap:wrap;
    }

    .product-btn-row{
        flex-direction:column;
        align-items:stretch;
    }
}
/* Shop Filters & Sort */

.shop-layout{
    position:relative;
}

.results-count{
    font-size:12px;
    color:var(--muted-foreground);
    margin-bottom:20px;
}

.filter-panel-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.4);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:1200;
}

.filter-panel-overlay.active{
    opacity:1;
    visibility:visible;
}

.filter-panel{
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:380px;
    max-width:88vw;
    background:var(--background);
    z-index:1201;
    transform:translateX(100%);
    transition:.35s ease;
    padding:30px;
    overflow-y:auto;
}

.filter-panel.active{
    transform:translateX(0);
}

.filter-panel-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.filter-group{
    margin-bottom:26px;
    padding-bottom:26px;
    border-bottom:1px solid var(--border);
}

.filter-group-label{
    display:block;
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--muted-foreground);
    margin-bottom:12px;
}

.filter-group select{
    width:100%;
    padding:12px;
    border:1px solid var(--border);
    background:var(--background);
    font-family:inherit;
    font-size:13px;
}

.filter-checkbox-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.filter-checkbox-row{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    cursor:pointer;
}

.filter-chip-list{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.filter-chip{
    border:1px solid var(--border);
    background:transparent;
    padding:8px 16px;
    font-size:12px;
    cursor:pointer;
}

.filter-chip.active{
    background:var(--foreground);
    color:var(--background);
    border-color:var(--foreground);
}

.price-range-row{
    display:flex;
    align-items:center;
    gap:10px;
}

.price-range-row input{
    width:100%;
    padding:10px;
    border:1px solid var(--border);
    font-family:inherit;
}

.filter-actions{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.filter-actions .btn{
    flex:1;
    padding:12px;
    font-size:11px;
}

@media(max-width:768px){
    .filter-panel{
        width:100%;
        max-width:100%;
    }
}
.breadcrumbs{
    max-width:1100px;
    margin:100px auto 0;
    padding:0 40px;
    font-size:11px;
    letter-spacing:0.5px;
    color:var(--muted-foreground);
    text-transform:uppercase;
}

.breadcrumbs a{
    color:var(--muted-foreground);
    text-decoration:none;
}

.breadcrumbs a:hover{
    color:var(--foreground);
}

.breadcrumbs span{
    color:var(--foreground);
}

@media(max-width:768px){
    .breadcrumbs{
        margin-top:80px;
        padding:0 20px;
    }
}
/* Collection Landing Banner */

.collection-banner{
    height:55vh;
    min-height:340px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:flex-end;
    padding:60px;
    position:relative;
}

.collection-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%);
}

.collection-banner-content{
    position:relative;
    z-index:1;
    color:#fff;
}

.collection-banner-content .eyebrow{
    color:rgba(255,255,255,0.75);
}

.collection-banner-content h1{
    font-family:'Playfair Display', serif;
    font-size:clamp(40px,6vw,64px);
    margin-top:6px;
}

@media(max-width:768px){
    .collection-banner{
        padding:30px;
        height:40vh;
    }
}
/* Mobile-specific account redesign */
@media(max-width:768px){
    .account-page{
        padding:100px 20px 60px;
    }

    .account-header{
        margin-bottom:26px;
    }

    .account-header h2{
        font-size:28px;
    }

    .account-tabs{
        display:flex;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        gap:0;
        border-bottom:1px solid var(--border);
        margin:0 -20px 26px;
        padding:0 20px;
        scrollbar-width:none;
    }

    .account-tabs::-webkit-scrollbar{
        display:none;
    }

    .account-tab{
        flex-shrink:0;
        padding:0 18px 14px 0;
        font-size:11px;
    }
    .slider-images{
    display:block;
}

    .slider-images .slide{
    display:none;
}

.mobile-hero{
    display:block;
}

    #details-form{
        max-width:100%;
    }

    #details-form input{
        font-size:16px;
        padding:14px 0;
    }

    .form-row-inline{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .order-card{
        padding:16px;
    }

    .order-card-top{
        font-size:12px;
    }

    .order-items-preview img{
        width:44px;
        height:44px;
    }

    .account-panel .btn{
        width:100%;
        text-align:center;
    }
}
@media(max-width:768px){
    .site-nav{
        padding:0 16px;
        height:60px;
    }
  .site-nav{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
}

    .nav-icons .mobile-menu-toggle{
        display:none;
    }

    .mobile-menu-toggle{
        display:flex;
    }

    .logo-block{
    justify-self:center;
}

.mobile-menu-toggle{
    justify-self:start;
}

.nav-icons{
    justify-self:end;
}
    .logo{
        font-size:16px;
        letter-spacing:3px;
    }
     .nav-center{
        display:none;
    }
    .nav-links{ display:none; }
     .nav-icons{
        gap:14px;
        flex-wrap:nowrap;
    }
      .nav-icons svg{
        width:17px;
        height:17px;
    }
   
     header{
        padding-top:60px;
        height:177.78vw;
    }
     .hero{
        margin-top:16px;
    }
     .hero h1{
        font-size:42px;
        letter-spacing:-2px;
    }
      .hero p{
        font-size:12px;
        max-width:90%;
    }
    .split-banner{ grid-template-columns:1fr; }
    .banner-item{ aspect-ratio:3/4; }
    .philosophy{ padding:70px 25px; }
    .products,.about,.contact,.editorial-content{ padding:60px 25px; }
    .section-heading{ flex-direction:column; align-items:flex-start; gap:16px; }
    .product-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
    .editorial{ flex-direction:column; }
    .editorial-image{ min-height:320px; }
    .about{ grid-template-columns:1fr; padding:70px 25px; }
    .contact{ grid-template-columns:1fr; gap:40px; padding:70px 25px; }
    .contact-form-grid{ grid-template-columns:1fr; }
    .newsletter{ padding:70px 25px; }
    .newsletter h2{ font-size:32px; }
    .footer-top{ grid-template-columns:1fr 1fr; gap:35px 20px; }
    .footer-brand{ grid-column:1/-1; }
    .footer-bottom{ flex-direction:column; }
    .product-detail-grid{ grid-template-columns:1fr; gap:30px; padding:0 20px; }
    .cart-row{ flex-wrap:wrap; }
}

/* Hamburger Menu */

.menu-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
}

.menu-toggle span{
    display:block;
    width:22px;
    height:1.5px;
    background:var(--foreground);
    transition:.3s ease;
}

/* Left-Side Full Drawer Menu */

.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:1100;
}

.mobile-menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu{
    position:fixed;
    top:0;
    left:0;
    height:100vh;
    width:420px;
    max-width:88vw;
    background:var(--background);
    z-index:1101;
    transform:translateX(-100%);
    transition:.35s ease;
    padding:35px 40px;
    display:flex;
    flex-direction:column;
    overflow-y:auto;
}

.mobile-menu.active{
    transform:translateX(0);
}

.mobile-menu-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
}

.menu-close,
.mobile-search-btn{
    background:none;
    border:none;
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    font-size:13px;
    letter-spacing:0.5px;
    color:var(--foreground);
}

.mobile-menu-links{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:28px;
    margin-bottom:auto;
}

.mobile-menu-links a{
    text-decoration:none;
    color:var(--foreground);
    font-size:17px;
    letter-spacing:0.3px;
}

.mobile-menu-bottom{
    display:flex;
    flex-direction:column;
    gap:20px;
    border-top:1px solid var(--border);
    padding-top:28px;
    margin-top:30px;
}

.mobile-menu-bottom a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:var(--foreground);
    font-size:14px;
}
@media(max-width:768px){
    .nav-links{ display:none; }
    .menu-toggle{ display:flex; }
}
section[id]{
    scroll-margin-top:82px;
}