:root {
    --primary: #B87D6E;
    --primary-hover: #9E6557;
    --primary-glow: rgba(184, 125, 110, 0.4);
    --primary-soft: rgba(184, 125, 110, 0.12);

    --secondary: #EEDCD4;
    --bg-light: #FAF6F3;
    --surface: #FFFFFF;

    --text-dark: #332B27;
    --text-muted: #736762;

    --border-color: #E6D9D2;

    --success-color: #2E7D32;
    --shopee-orange: #EE4D2D;

    --luxury-black: #181716;
    --luxury-dark: #252220;
    --luxury-gold: #B78A4B;
    --luxury-line: rgba(255,255,255,.12);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    background: var(--primary);
    color: #fff;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

/* =========================================================
   SPLASH SCREEN
========================================================= */

.splash-screen {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center,
            #3a2c28 0%,
            #201917 45%,
            #110f0e 100%);
    color: #FAF6F3;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-backdrop-glow {
    position: absolute;
    width: 300px;
    height: 300px;

    background: var(--primary);
    filter: blur(120px);
    opacity: .3;

    border-radius: 50%;
}

.splash-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.splash-logo-wrapper {
    position: relative;

    width: 110px;
    height: 110px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.glowing-ring {
    position: absolute;

    width: 100%;
    height: 100%;

    border:
        2px solid transparent;

    border-top-color: var(--primary);
    border-right-color: var(--secondary);

    border-radius: 50%;

    animation:
        rotateRing 2s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;

    border-top-color: transparent;
    border-bottom-color: #FFD700;

    animation:
        rotateRing 1.3s linear reverse infinite;
}

.splash-icon-center {
    font-size: 2.8rem;
    color: var(--primary);
}

.splash-brand {
    font-family: var(--font-heading);

    font-size: 3.2rem;
    letter-spacing: 3px;

    background:
        linear-gradient(
            45deg,
            #fff,
            var(--secondary)
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.splash-tagline {
    font-size: .85rem;

    color: var(--secondary);

    text-transform: uppercase;
    letter-spacing: 4px;

    margin-bottom: 25px;
}

.splash-progress-bar {
    width: 160px;
    height: 4px;

    background: rgba(255,255,255,.1);

    border-radius: 10px;

    margin: 0 auto 10px;

    overflow: hidden;
}

.splash-progress-fill {
    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #FFD700
        );

    animation:
        loadFill 2s ease-in-out forwards;
}

.splash-loading-text {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
}

@keyframes rotateRing {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loadFill {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    bottom: 30px;
    right: 30px;

    background-color: var(--text-dark);
    color: white;

    padding: 13px 22px;

    border-radius: 12px;

    font-size: .82rem;
    font-weight: 600;

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

    z-index: 20000;

    display: none;

    animation:
        toastIn .3s ease;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    background:
        linear-gradient(
            90deg,
            #9f695b,
            #b87d6e,
            #9f695b
        );

    color: white;

    text-align: center;

    padding: 9px 15px;

    font-size: .76rem;
    letter-spacing: .04em;
}

.announcement-bar strong {
    color: #ffe8a8;
}

/* =========================================================
   WELCOME BAR
========================================================= */

.welcome-bar {
    background: var(--secondary);

    padding: 8px 5%;

    border-bottom:
        1px solid var(--border-color);

    font-size: .78rem;
}

.welcome-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 1400px;
    margin: auto;
}

.welcome-container strong {
    color: var(--primary);
}

.badge-admin {
    background: #D32F2F;
    color: white;

    padding: 4px 11px;

    border-radius: 20px;

    font-size: .68rem;
    font-weight: 700;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 14px 5%;

    background:
        rgba(255,255,255,.94);

    backdrop-filter: blur(18px);

    position: sticky;
    top: 0;

    z-index: 1000;

    border-bottom:
        1px solid var(--border-color);

    transition: .3s ease;
}

.logo {
    font-family: var(--font-heading);

    font-size: 1.8rem;
    font-weight: 700;

    color: var(--primary);

    text-decoration: none;

    display: flex;
    align-items: center;

    gap: 10px;

    white-space: nowrap;
}

.logo-badge {
    width: 34px;
    height: 34px;

    background:
        linear-gradient(
            135deg,
            var(--secondary),
            #f7ebe5
        );

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 5px 15px rgba(184,125,110,.15);
}

.logo-badge i {
    font-size: .9rem;
}

.tagline {
    font-family: var(--font-body);

    font-size: .55rem;

    text-transform: uppercase;

    letter-spacing: .2em;

    color: var(--text-muted);

    display: block;

    margin-top: -3px;
}

/* =========================================================
   SEARCH
========================================================= */

.search-box {
    position: relative;
    width: 280px;
}

.search-box input {
    width: 100%;

    padding:
        10px
        14px
        10px
        38px;

    border-radius: 30px;

    border:
        1px solid var(--border-color);

    background: var(--bg-light);

    font-size: .78rem;

    outline: none;

    transition: .25s ease;
}

.search-box input:focus {
    background: #fff;

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        var(--primary-soft);
}

.search-icon {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--text-muted);

    font-size: .78rem;
}

/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 20px;
}

.nav-links a {
    position: relative;

    text-decoration: none;

    color: var(--text-dark);

    font-weight: 500;

    font-size: .78rem;

    transition: .25s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--primary);

    transition: .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.btn-role {
    background: var(--secondary);

    border: none;

    padding: 8px 13px;

    border-radius: 25px;

    color: var(--primary);

    font-weight: 700;

    font-size: .7rem;

    transition: .25s ease;
}

.btn-role:hover {
    background: #e3c9bf;

    transform: translateY(-1px);
}

.cart-trigger {
    position: relative;

    font-size: 1.25rem;

    color: var(--primary);

    cursor: pointer;

    transition: .25s ease;
}

.cart-trigger:hover {
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;

    top: -7px;
    right: -9px;

    background-color: var(--primary);

    color: white;

    font-size: .62rem;

    font-weight: 800;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn {
    background: none;

    border: none;

    font-size: 1.3rem;

    color: var(--primary);

    cursor: pointer;

    position: relative;
}

.vip-badge-dot {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d1a64c;

    right: -1px;
    top: 0;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 20px;

    border-radius: 10px;

    font-weight: 700;

    font-size: .78rem;

    cursor: pointer;

    text-decoration: none;

    border: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #9e6557
        );

    color: white;

    box-shadow:
        0 10px 25px
        rgba(184,125,110,.2);
}

.btn-primary:hover {
    background:
        linear-gradient(
            135deg,
            #c98c7b,
            var(--primary-hover)
        );

    box-shadow:
        0 14px 30px
        rgba(184,125,110,.28);
}

.btn-instant-buy {
    background: var(--shopee-orange);

    color: white;

    font-weight: 800;
}

.btn-outline {
    background: transparent;

    border:
        1px solid var(--primary);

    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-light {
    background: transparent;

    border:
        1px solid rgba(255,255,255,.7);

    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--text-dark);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 7px 12px;
    font-size: .68rem;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 650px;

    color: white;

    overflow: hidden;
}

.luxury-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, .95fr);

    align-items: center;

    gap: 50px;

    padding:
        80px
        7%;

    background:
        linear-gradient(
            110deg,
            #171514 0%,
            #292421 48%,
            #4a3731 100%
        );
}

.luxury-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=1800&q=85')
        center / cover;

    opacity: .28;

    mix-blend-mode: luminosity;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(184,125,110,.22),
            transparent 32%
        ),

        linear-gradient(
            90deg,
            rgba(0,0,0,.78),
            rgba(0,0,0,.28)
        );
}

.hero-grain {
    position: absolute;

    inset: 0;

    opacity: .07;

    background-image:
        radial-gradient(
            rgba(255,255,255,.7) .5px,
            transparent .5px
        );

    background-size: 5px 5px;

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 3;
}

.hero-copy {
    max-width: 680px;
}

.hero-overline {
    font-size: .65rem;

    letter-spacing: .28em;

    font-weight: 800;

    color: rgba(255,255,255,.62);

    margin-top: 25px;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    border:
        1px solid
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.08);

    border-radius: 30px;

    font-size: .68rem;

    backdrop-filter: blur(10px);

    letter-spacing: .04em;
}

.hero-badge i {
    color: #e3bd78;
}

.hero h1 {
    font-family: var(--font-heading);

    font-size:
        clamp(
            3.4rem,
            6vw,
            6.5rem
        );

    line-height: .86;

    letter-spacing: -.045em;

    font-weight: 500;

    margin:
        20px 0
        25px;
}

.hero h1 em {
    color: #e4b8a8;

    font-weight: 400;
}

.hero-description {
    max-width: 600px;

    color:
        rgba(255,255,255,.72);

    font-size: .88rem;

    line-height: 1.9;
}

.hero-btns {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.btn-glow {
    box-shadow:
        0 15px 40px
        rgba(184,125,110,.35);
}

.hero-trust-row {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 30px;

    color:
        rgba(255,255,255,.66);

    font-size: .67rem;
}

.hero-trust-row span {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}

.hero-trust-row i {
    color: #d4ad69;
}

/* =========================================================
   FLOATING HERO ICONS
========================================================= */

.floating-icons-container {
    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 2;
}

.float-icon {
    position: absolute;

    color:
        rgba(255,255,255,.18);

    font-size: 2rem;

    animation:
        floatCloth
        6s
        infinite
        ease-in-out;
}

.f1 {
    top: 15%;
    left: 8%;
}

.f2 {
    top: 55%;
    left: 14%;

    animation-delay: 1s;
}

.f3 {
    top: 20%;
    right: 10%;

    animation-delay: 2s;
}

.f4 {
    top: 65%;
    right: 15%;

    animation-delay: 3s;
}

@keyframes floatCloth {
    0%, 100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-20px)
            rotate(8deg);
    }
}

/* =========================================================
   FASHION MOTION STAGE
========================================================= */

.fashion-motion-stage {
    position: relative;

    width: 440px;
    height: 440px;

    justify-self: end;

    display: grid;

    place-items: center;

    z-index: 3;
}

.fashion-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(211,160,136,.5),
            rgba(211,160,136,.05) 55%,
            transparent 70%
        );

    filter: blur(12px);

    animation:
        fashionGlow
        4s
        ease-in-out
        infinite;
}

@keyframes fashionGlow {
    0%, 100% {
        transform: scale(.95);
        opacity: .65;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.fashion-main-icon {
    position: relative;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.15),
            rgba(255,255,255,.04)
        );

    border:
        1px solid
        rgba(255,255,255,.2);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.3),
        inset 0 0 50px
        rgba(255,255,255,.05);

    backdrop-filter: blur(12px);

    animation:
        fashionMainFloat
        5s
        ease-in-out
        infinite;
}

.fashion-main-inner {
    width: 125px;
    height: 125px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #e4b5a5,
            #a66f61
        );

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.2);
}

.fashion-main-inner i {
    font-size: 3.2rem;

    color: white;

    filter:
        drop-shadow(
            0 5px 8px
            rgba(0,0,0,.2)
        );
}

@keyframes fashionMainFloat {
    0%, 100% {
        transform:
            translateY(0)
            rotate(-2deg);
    }

    50% {
        transform:
            translateY(-13px)
            rotate(2deg);
    }
}

/* =========================================================
   ORBITS
========================================================= */

.fashion-orbit {
    position: absolute;

    width: 100%;
    height: 100%;

    border:
        1px dashed
        rgba(255,255,255,.12);

    border-radius: 50%;

    animation:
        orbitSpin
        18s
        linear
        infinite;
}

.fashion-orbit span {
    position: absolute;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.1);

    border:
        1px solid
        rgba(255,255,255,.18);

    backdrop-filter: blur(10px);

    color: #efd0c3;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.2);
}

.orbit-one span {
    top: -22px;
    left: 50%;

    transform: translateX(-50%);
}

.orbit-two {
    width: 78%;
    height: 78%;

    animation-duration: 14s;
    animation-direction: reverse;
}

.orbit-two span {
    right: -22px;
    top: 50%;

    transform: translateY(-50%);
}

.orbit-three {
    width: 58%;
    height: 58%;

    animation-duration: 11s;
}

.orbit-three span {
    bottom: -22px;
    left: 50%;

    transform: translateX(-50%);
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

.fashion-caption {
    position: absolute;

    bottom: -5px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 2px;
}

.fashion-caption span {
    font-size: .58rem;

    letter-spacing: .22em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.45);
}

.fashion-caption strong {
    font-family: var(--font-heading);

    font-size: 1.2rem;

    font-weight: 400;

    color: #fff;
}

/* =========================================================
   LUXURY BENEFITS
========================================================= */

.luxury-benefits {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: #fff;

    border-bottom:
        1px solid var(--border-color);
}

.luxury-benefits > div {
    min-height: 100px;

    padding:
        20px 28px;

    display: flex;

    align-items: center;

    gap: 14px;

    border-right:
        1px solid var(--border-color);
}

.luxury-benefits > div:last-child {
    border-right: none;
}

.luxury-benefits > div > i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        var(--primary-soft);

    color: var(--primary);

    font-size: .95rem;
}

.luxury-benefits span {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.luxury-benefits strong {
    font-size: .72rem;

    letter-spacing: .02em;
}

.luxury-benefits small {
    font-size: .6rem;

    color: var(--text-muted);
}

/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {
    text-align: center;

    margin-bottom: 35px;
}

.section-title h2 {
    font-family: var(--font-heading);

    font-size:
        clamp(
            2.3rem,
            4vw,
            4rem
        );

    line-height: 1;

    font-weight: 500;

    letter-spacing: -.03em;

    margin-top: 8px;
}

.sub-title {
    color: var(--primary);

    font-weight: 800;

    font-size: .68rem;

    text-transform: uppercase;

    letter-spacing: .18em;
}

/* =========================================================
   CATALOG
========================================================= */

.catalog-section {
    padding:
        100px
        5%;
}

.filter-buttons {
    display: flex;

    justify-content: center;

    gap: 8px;

    margin-bottom: 28px;

    flex-wrap: wrap;
}

.filter-btn {
    padding:
        8px
        17px;

    background:
        var(--surface);

    border:
        1px solid
        var(--border-color);

    border-radius: 25px;

    cursor: pointer;

    font-family: var(--font-body);

    font-size: .68rem;

    color: var(--text-muted);

    transition: .25s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background:
        var(--primary);

    color: white;

    border-color:
        var(--primary);

    transform:
        translateY(-1px);
}

/* =========================================================
   CATALOG TOOLBAR
========================================================= */

.catalog-toolbar {
    max-width: 1200px;

    margin:
        0 auto
        25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;
}

.catalog-result-wrap {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text-muted);

    font-size: .7rem;
}

.catalog-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 4px
        var(--primary-soft);
}

#catalog-sort {
    min-width: 190px;

    padding:
        9px 13px;

    border:
        1px solid
        var(--border-color);

    border-radius: 9px;

    background: white;

    color: var(--text-dark);

    font-size: .7rem;

    outline: none;

    cursor: pointer;
}

#catalog-sort:focus {
    border-color:
        var(--primary);
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 20px;
}

.product-card {
    position: relative;

    background:
        var(--surface);

    border-radius: 15px;

    overflow: hidden;

    border:
        1px solid
        rgba(0,0,0,.055);

    box-shadow:
        0 8px 30px
        rgba(35,25,20,.045);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.product-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 22px 55px
        rgba(35,25,20,.13);
}

.product-img-box {
    position: relative;

    height: 355px;

    cursor: pointer;

    overflow: hidden;

    background: #f2ece8;
}

.product-img-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s
        cubic-bezier(.2,.7,.2,1);
}

.product-card:hover
.product-img-box img {
    transform: scale(1.06);
}

.category-badge {
    position: absolute;

    top: 13px;
    left: 13px;

    background:
        rgba(255,255,255,.94);

    backdrop-filter:
        blur(8px);

    padding:
        5px 10px;

    border-radius: 20px;

    font-size: .6rem;

    font-weight: 700;

    color: var(--text-dark);

    z-index: 2;
}

.product-info {
    padding: 17px;
}

.product-info h3 {
    font-family: var(--font-heading);

    font-size: 1.35rem;

    line-height: 1;

    margin-bottom: 8px;
}

.product-rating {
    display: flex;

    align-items: center;

    gap: 6px;

    font-size: .67rem;

    margin-bottom: 8px;
}

.product-rating i {
    color: #c3954d;
}

.product-rating span {
    color: var(--text-muted);
}

.product-price {
    font-size: .9rem;

    font-weight: 800;

    color: var(--primary);

    margin-bottom: 12px;
}

.product-actions {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 7px;
}

.product-actions .btn {
    padding:
        9px 7px;

    font-size: .65rem;
}

.product-card .stock-chip {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 10px;

    padding:
        4px 8px;

    border-radius: 20px;

    background:
        rgba(46,125,50,.08);

    color:
        var(--success-color);

    font-size: .58rem;

    font-weight: 700;
}

.product-card .stock-chip.low {
    background:
        rgba(196,131,43,.1);

    color: #a06b1d;
}

.product-card .stock-chip.out {
    background:
        rgba(180,60,60,.08);

    color: #b43c3c;
}

.product-card .btn-instant-buy:disabled {
    opacity: .45;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}

/* =========================================================
   DETAIL MODAL
========================================================= */

.modal-backdrop {
    position: fixed;

    inset: 0;

    background:
        rgba(25,20,17,.62);

    backdrop-filter:
        blur(9px);

    z-index: 10000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    animation:
        modalFade .25s ease;
}

.modal-backdrop.active {
    display: flex;
}

@keyframes modalFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-card {
    position: relative;

    width: min(520px,100%);

    max-height: 92vh;

    overflow-y: auto;

    background:
        #fff;

    border-radius: 20px;

    padding: 30px;

    box-shadow:
        0 30px 90px
        rgba(20,15,12,.3);

    animation:
        modalSlide .3s ease;
}

.modal-card.modal-lg {
    width: min(900px,100%);
}

@keyframes modalSlide {
    from {
        transform:
            translateY(20px)
            scale(.98);

        opacity: 0;
    }

    to {
        transform:
            translateY(0)
            scale(1);

        opacity: 1;
    }
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: none;

    border-radius: 50%;

    background:
        #f4eeea;

    color:
        var(--text-dark);

    display: grid;
    place-items: center;

    z-index: 10;

    transition: .2s ease;
}

.modal-close:hover {
    background: var(--primary);
    color: white;

    transform:
        rotate(90deg);
}

.modal-card h2 {
    font-family:
        var(--font-heading);

    font-size: 2rem;

    margin-bottom: 20px;
}

.detail-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 30px;
}

.detail-image {
    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 14px;
}

.detail-content {
    padding:
        10px 5px;
}

.detail-content h2 {
    font-size: 2.5rem;

    line-height: .95;

    margin:
        10px 0;
}

.detail-content .detail-price {
    color: var(--primary);

    font-size: 1.2rem;

    font-weight: 800;

    margin-bottom: 14px;
}

.detail-content p {
    color: var(--text-muted);

    font-size: .78rem;

    line-height: 1.8;
}

.detail-rating {
    color: #b78a4b;

    font-size: .72rem;

    margin-bottom: 15px;
}

/* =========================================================
   SIZE SELECTION
========================================================= */

.size-selector {
    margin:
        24px 0;
}

.size-selector label {
    display: block;

    font-size: .72rem;

    font-weight: 800;

    margin-bottom: 10px;
}

.size-options {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.size-btn {
    min-width: 48px;
    height: 42px;

    padding: 0 13px;

    background: white;

    border:
        1px solid
        var(--border-color);

    border-radius: 8px;

    color: var(--text-dark);

    font-size: .72rem;

    font-weight: 700;

    cursor: pointer;

    user-select: none;

    transition: .2s ease;
}

.size-btn:hover {
    border-color:
        var(--primary);

    color:
        var(--primary);
}

.size-btn.selected {
    background:
        var(--primary);

    border-color:
        var(--primary);

    color: white;

    transform:
        translateY(-1px);

    box-shadow:
        0 8px 20px
        rgba(184,125,110,.2);
}

.size-help {
    font-size: .62rem;

    color: var(--text-muted);

    margin-top: 8px;
}

/* =========================================================
   FORM
========================================================= */

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;

    font-size: .68rem;

    font-weight: 700;

    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding:
        11px 12px;

    border:
        1px solid
        var(--border-color);

    border-radius: 9px;

    outline: none;

    background: #fff;

    color: var(--text-dark);

    font-size: .76rem;

    transition: .2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        var(--primary-soft);
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

/* =========================================================
   AUTH
========================================================= */

.auth-tabs {
    display: flex;

    gap: 5px;

    padding: 5px;

    background:
        #f5efeb;

    border-radius: 10px;

    margin-bottom: 22px;
}

.auth-tab {
    flex: 1;

    padding:
        10px;

    border: none;

    background: transparent;

    border-radius: 7px;

    font-size: .72rem;

    font-weight: 700;

    color: var(--text-muted);
}

.auth-tab.active {
    background: white;

    color: var(--primary);

    box-shadow:
        0 4px 15px
        rgba(0,0,0,.06);
}

.auth-form {
    animation:
        formAppear .25s ease;
}

@keyframes formAppear {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   ACCESSIBILITY / FOCUS
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.search-box input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

.search-box input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}



/* =========================================================
   EXECUTIVE ADMIN COMMAND CENTER
========================================================= */
.admin-command-bar{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:28px 30px;margin:0 0 22px;border:1px solid rgba(24,23,22,.08);border-radius:24px;background:linear-gradient(135deg,#191817 0%,#302b28 55%,#8d6558 140%);box-shadow:0 22px 55px rgba(30,24,21,.12);color:#fff;position:relative;overflow:hidden}
.admin-command-bar:after{content:"";position:absolute;width:260px;height:260px;border:1px solid rgba(255,255,255,.12);border-radius:50%;right:-90px;top:-150px;box-shadow:0 0 0 35px rgba(255,255,255,.025),0 0 0 70px rgba(255,255,255,.02)}
.admin-command-copy{position:relative;z-index:1}.admin-command-kicker{display:inline-flex;gap:8px;align-items:center;font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:#e8c8ba;font-weight:800}.admin-command-copy h3{font-family:var(--font-heading);font-size:34px;line-height:1;margin:8px 0 8px;font-weight:600}.admin-command-copy p{margin:0;color:rgba(255,255,255,.68);font-size:12px;max-width:650px;line-height:1.7}.admin-command-actions{display:flex;gap:10px;position:relative;z-index:2}.admin-command-btn{border:1px solid rgba(255,255,255,.14);background:#fff;color:#211d1a;padding:12px 15px;border-radius:13px;font:700 11px var(--font-body);cursor:pointer;transition:.25s ease;white-space:nowrap}.admin-command-btn:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(0,0,0,.16)}.admin-command-btn.ghost{background:rgba(255,255,255,.08);color:#fff}.admin-kpi-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:22px}.admin-kpi-card{display:flex;gap:14px;align-items:center;padding:18px;border:1px solid var(--border-color);background:rgba(255,255,255,.86);border-radius:19px;box-shadow:0 12px 32px rgba(58,44,37,.05)}.admin-kpi-card.accent{background:#fbf0eb}.admin-kpi-icon{width:42px;height:42px;border-radius:14px;display:grid;place-items:center;background:var(--primary-soft);color:var(--primary);flex:none}.admin-kpi-card span{display:block;color:var(--text-muted);font-size:9px;text-transform:uppercase;letter-spacing:.12em;font-weight:800}.admin-kpi-card strong{display:block;margin:3px 0;font-size:19px;color:var(--text-dark)}.admin-kpi-card small{font-size:9px;color:var(--text-muted)}.admin-kpi-card small i{font-size:7px;color:#4d9b5b}.admin-dashboard-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(310px,.75fr);gap:18px;margin-bottom:18px}.admin-dashboard-grid.secondary{grid-template-columns:1fr 1fr}.admin-panel-card{border:1px solid var(--border-color);border-radius:22px;background:#fff;padding:22px;box-shadow:0 12px 35px rgba(58,44,37,.05)}.admin-card-heading{display:flex;justify-content:space-between;align-items:flex-start;gap:14px;margin-bottom:20px}.admin-card-eyebrow{display:block;font-size:9px;letter-spacing:.16em;color:var(--primary);font-weight:900}.admin-card-heading h3{margin:4px 0 0;font:600 25px/1 var(--font-heading);color:var(--text-dark)}.admin-card-chip{font-size:9px;color:var(--text-muted);background:#faf6f3;padding:8px 10px;border-radius:10px;white-space:nowrap}.admin-text-btn{border:0;background:transparent;color:var(--primary);font:800 10px var(--font-body);cursor:pointer}.admin-bars{display:grid;gap:18px}.admin-bar-item>div:first-child{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px}.admin-bar-item span{font-size:11px;color:var(--text-muted)}.admin-bar-item b{font-size:11px;color:var(--text-dark)}.admin-bar-track{height:8px;border-radius:99px;background:#f2ebe7;overflow:hidden}.admin-bar-track i{display:block;height:100%;width:0;border-radius:inherit;background:linear-gradient(90deg,var(--primary),#d4a092);transition:width .8s cubic-bezier(.2,.7,.2,1)}.admin-activity-feed{display:grid;gap:4px;max-height:220px;overflow:auto}.admin-activity-item{display:grid;grid-template-columns:34px 1fr auto;gap:11px;align-items:center;padding:11px 0;border-bottom:1px solid #f0e9e5}.admin-activity-item:last-child{border-bottom:0}.admin-activity-dot{width:30px;height:30px;border-radius:10px;background:var(--primary-soft);color:var(--primary);display:grid;place-items:center;font-size:11px}.admin-activity-item strong{font-size:11px}.admin-activity-item p{margin:3px 0 0;color:var(--text-muted);font-size:9px}.admin-activity-item>b{font-size:10px}.admin-activity-empty{min-height:170px;display:grid;place-items:center;text-align:center;color:var(--text-muted);font-size:11px}.admin-activity-empty i{font-size:24px;opacity:.4}.admin-activity-empty p{margin:5px 0}.admin-stock-watch{display:grid;gap:3px}.admin-stock-row{display:grid;grid-template-columns:42px 1fr auto;align-items:center;gap:11px;padding:9px 0;border-bottom:1px solid #f0e9e5}.admin-stock-row:last-child{border-bottom:0}.admin-stock-thumb{width:42px;height:50px;border-radius:10px;overflow:hidden;background:#f4eee9}.admin-stock-thumb img{width:100%;height:100%;object-fit:cover}.admin-stock-info strong{display:block;font-size:11px}.admin-stock-info span{font-size:9px;color:var(--text-muted)}.admin-stock-value{font-size:9px;font-weight:900;padding:6px 8px;border-radius:8px}.admin-stock-value.safe{background:#edf7ee;color:#34763a}.admin-stock-value.low{background:#fff4df;color:#9a6a18}.admin-stock-value.out{background:#fbe9e9;color:#a34b4b}.admin-quick-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.admin-quick-grid button{min-height:92px;text-align:left;border:1px solid #eee4df;background:#fcfaf9;border-radius:15px;padding:14px;cursor:pointer;transition:.22s ease}.admin-quick-grid button:hover{transform:translateY(-2px);border-color:#d8b4a7;box-shadow:0 10px 24px rgba(58,44,37,.07)}.admin-quick-grid i{display:block;color:var(--primary);font-size:15px;margin-bottom:10px}.admin-quick-grid span{display:block;font-size:11px;font-weight:900}.admin-quick-grid small{display:block;color:var(--text-muted);font-size:8px;margin-top:3px}.admin-command-toast{position:fixed;right:22px;bottom:22px;z-index:9999}
@media(max-width:1100px){.admin-kpi-strip{grid-template-columns:repeat(2,1fr)}.admin-command-bar{align-items:flex-start;flex-direction:column}.admin-command-actions{width:100%}.admin-command-btn{flex:1}.admin-dashboard-grid,.admin-dashboard-grid.secondary{grid-template-columns:1fr}}
@media(max-width:640px){.admin-kpi-strip{grid-template-columns:1fr}.admin-command-bar{padding:22px}.admin-command-copy h3{font-size:29px}.admin-command-actions{flex-direction:column}.admin-command-btn{width:100%}.admin-panel-card{padding:17px}.admin-card-heading h3{font-size:22px}.admin-quick-grid{grid-template-columns:1fr}.admin-kpi-card{padding:15px}}


/* =========================================================
   STABILITY / PERFORMANCE SAFETY
========================================================= */
html {
    overflow-x: hidden;
}

img {
    content-visibility: auto;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   DNOORA.ATTIRE — FINAL PREMIUM VISUAL SYSTEM
   Final normalization layer for storefront and responsive UI.
========================================================= */

:root {
    --page-max: 1240px;
    --page-pad: clamp(18px, 4.2vw, 64px);
    --section-y: clamp(72px, 8vw, 112px);
    --rose: #b87d6e;
    --rose-deep: #8f5f52;
    --ink: #2b2522;
    --muted: #766963;
    --paper: #fcf9f7;
    --paper-2: #f6efeb;
    --line: rgba(72, 54, 46, .12);
    --card: rgba(255,255,255,.94);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow-1: 0 14px 38px rgba(61,43,34,.07);
    --shadow-2: 0 24px 70px rgba(50,34,27,.12);
}

html {
    overflow-x: hidden;
    scroll-padding-top: 118px;
}

body.storefront-body {
    min-width: 320px;
    background:
        radial-gradient(circle at 8% 20%, rgba(184,125,110,.055), transparent 24rem),
        linear-gradient(180deg, #fff 0%, var(--paper) 32%, #fff 100%);
    color: var(--ink);
}

a { color: inherit; }
img { max-width: 100%; }

/* ---------- TOP BARS ---------- */
.announcement-bar {
    min-height: 38px;
    padding: 8px var(--page-pad);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    font-size: .72rem;
    letter-spacing: .035em;
    line-height: 1.35;
}

.welcome-bar {
    width: 100%;
    padding: 9px var(--page-pad);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.78);
}

.welcome-container {
    width: min(var(--page-max), 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: .72rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1200;
    width: 100%;
    min-height: 78px;
    padding: 12px var(--page-pad);
    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(260px, 360px) auto auto;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 28px rgba(45,34,29,.035);
}

.logo {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.logo-badge {
    flex: 0 0 auto;
    box-shadow: 0 8px 24px rgba(184,125,110,.18);
}

.logo > div:last-child {
    min-width: 0;
    line-height: 1.05;
    white-space: nowrap;
}

.search-box {
    width: 100%;
    max-width: none;
    min-width: 0;
}

.search-box input {
    width: 100%;
    height: 44px;
    border-radius: 999px;
    padding-right: 18px;
}

.nav-links {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    white-space: nowrap;
}

.nav-links a {
    position: relative;
    padding: 9px 0;
    text-decoration: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: var(--rose);
    transform: translateX(-50%);
    transition: width .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap;
}

.btn-role,
.icon-btn,
.cart-trigger {
    flex: 0 0 auto;
}

.btn-role {
    min-height: 40px;
    padding: 9px 13px;
    border-radius: 999px;
}

.icon-btn,
.cart-trigger {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

/* ---------- HERO ---------- */
.hero,
.luxury-hero {
    min-height: 680px;
}

.luxury-hero {
    width: 100%;
    padding: clamp(72px, 8vw, 112px) var(--page-pad);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    align-items: center;
    gap: clamp(38px, 6vw, 88px);
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 700px;
    margin: 0;
    position: relative;
    z-index: 3;
}

.hero-overline {
    margin-top: 18px;
    letter-spacing: .19em;
}

.hero h1 {
    max-width: 760px;
    margin: 18px 0 24px;
    font-size: clamp(3.9rem, 6.4vw, 7rem);
    line-height: .88;
    letter-spacing: -.035em;
}

.hero h1 em {
    font-weight: 400;
}

.hero-description {
    max-width: 620px;
    margin: 0;
    font-size: .92rem;
    line-height: 1.85;
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btns .btn {
    min-height: 48px;
    padding-inline: 22px;
}

.hero-trust-row {
    margin-top: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.fashion-motion-stage {
    width: min(480px, 100%);
    min-height: 470px;
    justify-self: end;
    position: relative;
    z-index: 2;
}

/* ---------- BENEFITS ---------- */
.luxury-benefits {
    width: min(var(--page-max), calc(100% - (var(--page-pad) * 2)));
    margin: -30px auto 0;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-2);
}

.luxury-benefits > div {
    min-width: 0;
    min-height: 108px;
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--line);
}

.luxury-benefits > div:last-child { border-right: 0; }
.luxury-benefits strong,
.luxury-benefits small { display: block; }
.luxury-benefits small { margin-top: 3px; line-height: 1.45; }

/* ---------- SHARED SECTION SYSTEM ---------- */
.catalog-section,
.about-section,
.contact-section,
.editorial-section,
.social-proof-section,
.newsletter-section {
    width: 100%;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
}

.catalog-section,
.about-section,
.contact-section,
.social-proof-section {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

.section-title {
    width: min(820px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.section-title .sub-title,
.editorial-copy .sub-title,
.newsletter-section .sub-title {
    display: inline-block;
    margin-bottom: 10px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rose);
}

.section-title h2,
.editorial-copy h2,
.newsletter-section h2 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--ink);
    letter-spacing: -.02em;
}

.section-title h2 {
    font-size: clamp(2.7rem, 4.8vw, 4.7rem);
    line-height: .98;
}

/* ---------- SIGNATURE MARQUEE ---------- */
.signature-marquee {
    width: 100%;
    margin-top: 84px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: #1f1c1a;
    color: #f3e7e1;
}

.marquee-track {
    min-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 18px 24px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
}

.marquee-track i { color: #c89988; font-size: .5rem; }

/* ---------- EDITORIAL ---------- */
.editorial-section {
    padding-top: clamp(76px, 8vw, 116px);
    padding-bottom: clamp(76px, 8vw, 116px);
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
    background: linear-gradient(135deg, #f7f0ec 0%, #fff 58%, #f5ece8 100%);
}

.editorial-copy {
    width: min(580px, 100%);
    justify-self: end;
}

.editorial-copy h2 {
    font-size: clamp(3.2rem, 5vw, 5.4rem);
    line-height: .9;
    margin-bottom: 24px;
}

.editorial-copy h2 em { color: var(--rose-deep); font-weight: 400; }
.editorial-copy > p { color: var(--muted); line-height: 1.85; max-width: 540px; }

.editorial-points {
    margin: 30px 0;
    display: grid;
    gap: 10px;
}

.editorial-points > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 13px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.editorial-points > div > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(184,125,110,.11);
    color: var(--rose);
}

.editorial-points strong,
.editorial-points small { display: block; }
.editorial-points strong { font-size: .82rem; }
.editorial-points small { margin-top: 3px; color: var(--muted); font-size: .68rem; line-height: 1.45; }

.editorial-visual {
    width: min(610px, 100%);
    min-height: 600px;
    position: relative;
    justify-self: start;
}

.editorial-card {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #e9ddd7;
    box-shadow: var(--shadow-2);
}

.editorial-card.main {
    inset: 0 90px 40px 0;
}

.editorial-card.small {
    width: 235px;
    height: 300px;
    right: 0;
    bottom: 0;
    border: 8px solid #fff;
}

.editorial-photo {
    width: 100%;
    height: calc(100% - 46px);
    background-size: cover;
    background-position: center;
}

.editorial-photo.photo-one {
    background-image: url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?auto=format&fit=crop&w=1000&q=85');
}

.editorial-photo.photo-two {
    background-image: url('https://images.unsplash.com/photo-1485968579580-b6d095142e6e?auto=format&fit=crop&w=700&q=85');
}

.editorial-card > span {
    height: 46px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--muted);
    background: #fff;
}

/* ---------- CATALOG ---------- */
.catalog-section { background: #fff; }
.filter-buttons {
    width: min(1040px, 100%);
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.filter-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    white-space: nowrap;
    border-radius: 999px;
}

.catalog-toolbar {
    width: min(var(--page-max), 100%);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.catalog-result-wrap {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
}

#catalog-sort {
    flex: 0 0 auto;
    min-width: 190px;
    height: 42px;
    border-radius: 12px;
}

.product-grid {
    width: min(var(--page-max), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.product-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-1);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184,125,110,.3);
    box-shadow: var(--shadow-2);
}

.product-img-box {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    flex: none;
    overflow: hidden;
    background: #f0e8e3;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.product-info h3 {
    min-height: 2.2em;
    margin-bottom: 7px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow-wrap: anywhere;
}

.product-rating { min-height: 20px; }
.product-price { margin-top: auto; padding-top: 7px; }
.product-actions { margin-top: 12px; }
.product-actions .btn { min-height: 40px; }

/* ---------- SOCIAL PROOF ---------- */
.social-proof-section {
    background: #211d1b;
    color: #f8f0ec;
}

.social-proof-section .section-title h2 { color: #fff; }
.social-proof-section .sub-title { color: #d7aa99; }
.compact-title { margin-bottom: 34px; }

.proof-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.proof-card {
    min-width: 0;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.055);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.proof-card.featured {
    background: linear-gradient(145deg, rgba(184,125,110,.28), rgba(255,255,255,.06));
    border-color: rgba(215,170,153,.28);
}

.proof-stars {
    margin-bottom: 18px;
    color: #e2ba85;
    letter-spacing: .13em;
}

.proof-card p {
    margin: 0 0 24px;
    font-family: var(--font-heading);
    font-size: 1.48rem;
    line-height: 1.35;
}

.proof-card strong { color: rgba(255,255,255,.66); font-size: .68rem; }

/* ---------- ARTICLES ---------- */
.about-section {
    background: linear-gradient(180deg, #fff 0%, #fbf7f4 100%);
}

.article-grid {
    width: min(1040px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 24px;
}

.article-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.article-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.article-body {
    padding: clamp(22px, 3vw, 32px);
}

.art-tag {
    display: inline-flex;
    padding: 7px 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(184,125,110,.11);
    color: var(--rose-deep);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.article-body h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.4vw, 2.2rem);
    line-height: 1.08;
}

.article-body p { margin: 0; color: var(--muted); line-height: 1.75; }

/* ---------- INFORMATION ---------- */
.contact-section {
    background: #f7f1ed;
}

.info-container {
    width: min(var(--page-max), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 22px;
    align-items: stretch;
}

.info-box {
    min-width: 0;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.95);
    box-shadow: var(--shadow-1);
}

.info-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.1;
}

.info-box h3 i { color: var(--rose); }

.size-chart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: .72rem;
}

.size-chart-table th,
.size-chart-table td {
    padding: 13px 12px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.size-chart-table th {
    background: #f3e8e2;
    font-size: .64rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.size-chart-table tr:last-child td { border-bottom: 0; }

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.info-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    line-height: 1.65;
}

.info-list li:last-child { border-bottom: 0; }
.info-list li > i { color: var(--rose); margin-top: 4px; }
.info-list strong { color: var(--ink); }

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
    width: min(var(--page-max), calc(100% - (var(--page-pad) * 2)));
    margin: clamp(72px, 8vw, 108px) auto;
    padding: clamp(34px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
    gap: 34px;
    align-items: center;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #211e1c 0%, #3a2f2b 62%, #8b6256 145%);
    color: #fff;
    box-shadow: var(--shadow-2);
}

.newsletter-section h2 {
    color: #fff;
    font-size: clamp(2.7rem, 4vw, 4.2rem);
    line-height: .95;
}

.newsletter-section p {
    max-width: 550px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.68);
    line-height: 1.7;
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
}

.newsletter-form input {
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.52); }
.newsletter-form .btn { min-height: 48px; }

/* ---------- FOOTER ---------- */
.footer {
    width: 100%;
    padding: 28px var(--page-pad);
    border-top: 1px solid var(--line);
    background: #fff;
    text-align: center;
}

.footer p {
    width: min(var(--page-max), 100%);
    margin: 0 auto;
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.7;
}

.footer strong { color: var(--ink); }

/* ---------- MODALS / FORM CONSISTENCY ---------- */
.modal-backdrop {
    padding: 18px;
    overscroll-behavior: contain;
}

.modal-card {
    width: min(560px, 100%);
    max-height: min(90vh, 820px);
    overflow-y: auto;
    padding: 32px;
    border-radius: 22px;
}

.modal-card.modal-lg { width: min(980px, 100%); }
.modal-close { width: 38px; height: 38px; top: 14px; right: 14px; }
.detail-grid { align-items: start; gap: 34px; }
.detail-image { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; max-height: 620px; }

.btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.2;
}

input, select, textarea { max-width: 100%; }

/* ---------- ADMIN STABILITY ---------- */
.admin-workspace { min-height: 100vh; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-main { min-width: 0; padding: 28px clamp(20px,3vw,42px) 48px; }
.admin-tab-panel { width: 100%; max-width: 1500px; margin: 0 auto; }
.admin-card,.admin-panel-card,.admin-command-bar,.admin-kpi-card { min-width: 0; }
.admin-card { overflow: hidden; }
.admin-table-wrap,.table-responsive { overflow-x: auto; max-width: 100%; }
.admin-table-wrap table,.table-responsive table { min-width: 680px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1180px) {
    .navbar {
        grid-template-columns: minmax(190px,1fr) minmax(220px,310px) auto;
    }
    .nav-actions { grid-column: 3; grid-row: 1; }
    .nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        padding-top: 2px;
    }
    .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .luxury-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .luxury-benefits > div:nth-child(2) { border-right: 0; }
    .luxury-benefits > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
    html { scroll-padding-top: 146px; }
    .navbar {
        grid-template-columns: minmax(0,1fr) auto;
        gap: 10px 12px;
    }
    .logo { grid-column: 1; grid-row: 1; }
    .nav-actions { grid-column: 2; grid-row: 1; }
    .search-box { grid-column: 1 / -1; grid-row: 2; }
    .nav-links {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 3px 1px 1px;
    }
    .nav-links::-webkit-scrollbar { display: none; }

    .luxury-hero {
        min-height: 620px;
        grid-template-columns: 1fr;
        padding-top: 72px;
        padding-bottom: 76px;
    }
    .hero-content { max-width: 760px; margin: 0 auto; }
    .fashion-motion-stage { display: none; }

    .editorial-section { grid-template-columns: 1fr; }
    .editorial-copy { justify-self: center; width: min(680px,100%); }
    .editorial-visual { justify-self: center; width: min(620px,100%); min-height: 560px; }

    .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
    .proof-grid { grid-template-columns: 1fr; }
    .article-grid { grid-template-columns: 1fr; }
    .info-container { grid-template-columns: 1fr; }
    .newsletter-section { grid-template-columns: 1fr; }
    .newsletter-form { width: 100%; }

    .admin-sidebar { position: relative; height: auto; max-height: none; }
}

@media (max-width: 640px) {
    :root { --page-pad: 16px; --section-y: 66px; }
    html { scroll-padding-top: 154px; }

    .announcement-bar { min-height: 34px; font-size: .63rem; padding-block: 7px; }
    .welcome-container { font-size: .65rem; }
    .welcome-container > span:last-child { display: none; }

    .navbar { min-height: auto; padding-top: 10px; padding-bottom: 10px; }
    .logo { gap: 8px; font-size: 1.48rem; }
    .logo-badge { width: 30px; height: 30px; }
    .tagline { font-size: .46rem; }
    .nav-actions { gap: 5px; }
    .btn-role { min-height: 36px; padding: 7px 9px; font-size: .6rem; }
    .btn-role span { display: none; }
    .icon-btn,.cart-trigger { width: 36px; height: 36px; }
    .search-box input { height: 40px; font-size: .72rem; }
    .nav-links { gap: 17px; }
    .nav-links a { font-size: .68rem; }

    .hero,.luxury-hero { min-height: 560px; }
    .luxury-hero { padding-top: 56px; padding-bottom: 60px; }
    .hero h1 { font-size: clamp(3rem, 15vw, 4.35rem); line-height: .9; }
    .hero-description { font-size: .78rem; line-height: 1.75; }
    .hero-btns { display: grid; grid-template-columns: 1fr; width: 100%; max-width: 360px; }
    .hero-btns .btn { width: 100%; }
    .hero-trust-row { gap: 10px 15px; }
    .hero-trust-row span { font-size: .6rem; }

    .luxury-benefits {
        width: calc(100% - 32px);
        margin-top: -20px;
        grid-template-columns: 1fr;
    }
    .luxury-benefits > div,
    .luxury-benefits > div:nth-child(2) {
        min-height: 78px;
        padding: 16px 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .luxury-benefits > div:last-child { border-bottom: 0; }

    .signature-marquee { margin-top: 58px; }
    .marquee-track { justify-content: flex-start; gap: 25px; padding-block: 15px; }

    .editorial-section { padding-top: 68px; padding-bottom: 72px; gap: 38px; }
    .editorial-copy h2 { font-size: 3.35rem; }
    .editorial-visual { min-height: 410px; }
    .editorial-card.main { inset: 0 55px 28px 0; }
    .editorial-card.small { width: 165px; height: 215px; border-width: 6px; }

    .section-title { margin-bottom: 28px; }
    .section-title h2 { font-size: 2.65rem; }

    .filter-buttons {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 2px 1px 8px;
    }
    .filter-buttons::-webkit-scrollbar { display: none; }
    .filter-btn { flex: 0 0 auto; }

    .catalog-toolbar { align-items: stretch; flex-direction: column; }
    #catalog-sort { width: 100%; min-width: 0; }

    .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
    .product-card { border-radius: 14px; }
    .product-info { padding: 12px; }
    .product-info h3 { font-size: 1.08rem; }
    .product-price { font-size: .78rem; }
    .product-actions { display: grid; grid-template-columns: 1fr; gap: 6px; }
    .product-actions .btn { min-height: 38px; font-size: .6rem; }

    .proof-card { padding: 24px; }
    .proof-card p { font-size: 1.35rem; }

    .article-body { padding: 22px; }
    .info-box { padding: 20px; overflow-x: auto; }
    .size-chart-table { min-width: 580px; }

    .newsletter-section {
        width: calc(100% - 32px);
        margin: 64px auto;
        padding: 28px 20px;
        border-radius: 22px;
    }
    .newsletter-form { grid-template-columns: 1fr; background: transparent; padding: 0; border: 0; }
    .newsletter-form input {
        width: 100%;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 12px;
        background: rgba(255,255,255,.07);
    }

    .modal-backdrop { padding: 10px; align-items: flex-end; }
    .modal-card,.modal-card.modal-lg { width: 100%; max-height: 92vh; padding: 24px 18px 20px; border-radius: 20px 20px 14px 14px; }
    .detail-grid { grid-template-columns: 1fr; gap: 18px; }
    .detail-image { max-height: 55vh; aspect-ratio: 4/5; }
    .form-row { grid-template-columns: 1fr; }

    .admin-main { padding: 18px 14px 34px; }
    .admin-table-wrap table,.table-responsive table { min-width: 600px; }
}

@media (max-width: 420px) {
    .product-grid { grid-template-columns: 1fr; gap: 14px; }
    .product-img-box { aspect-ratio: 4/5; }
    .product-actions { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.95rem; }
    .btn-role { display: none; }
    .editorial-visual { min-height: 350px; }
    .editorial-card.main { inset: 0 42px 24px 0; }
    .editorial-card.small { width: 140px; height: 180px; }
}

@media print {
    .splash-screen,.announcement-bar,.navbar,.floating-icons-container,.modal-backdrop,.toast { display: none !important; }
    body { background: #fff; }
}


/* =========================================================
   DNOORA.ATTIRE V7 — CLEAN STOREFRONT + ADMIN SYSTEM
   Final override layer: fixes overlapping/missing classes.
========================================================= */
:root{
  --v7-rose:#b87969;
  --v7-rose-dark:#8e5d50;
  --v7-cream:#f8f1ed;
  --v7-ink:#27221f;
  --v7-muted:#776d68;
  --v7-line:rgba(55,42,35,.11);
  --v7-shadow:0 18px 55px rgba(52,38,31,.08);
  --v7-shadow-hover:0 26px 70px rgba(52,38,31,.14);
}

/* Storefront base */
.storefront-body{background:linear-gradient(180deg,#fff 0%,#fbf8f6 48%,#fff 100%)!important;color:var(--v7-ink);}
.navbar{grid-template-columns:minmax(190px,1fr) minmax(220px,330px) minmax(310px,auto) auto!important;gap:18px!important;min-height:72px!important;padding:10px clamp(18px,4vw,56px)!important;}
.nav-links{gap:20px!important;font-size:.72rem!important;}
.nav-actions{gap:7px!important;}

/* Hero: split editorial instead of floating/overlapping content */
.luxury-hero{position:relative!important;min-height:610px!important;padding:clamp(58px,7vw,92px) clamp(18px,4.5vw,64px)!important;grid-template-columns:minmax(0,1fr) minmax(360px,.88fr)!important;gap:clamp(28px,5vw,72px)!important;background:#f3e9e3!important;color:var(--v7-ink)!important;}
.luxury-hero::before{opacity:.08!important;mix-blend-mode:normal!important;background-position:center!important;}
.hero-overlay{background:linear-gradient(90deg,rgba(248,241,237,.97) 0%,rgba(248,241,237,.9) 48%,rgba(248,241,237,.22) 100%)!important;}
.hero-grain{opacity:.025!important;}
.hero-content{max-width:680px!important;z-index:4!important;}
.hero-overline{color:var(--v7-rose-dark)!important;margin-top:20px!important;font-size:.62rem!important;}
.hero-badge{color:var(--v7-ink)!important;background:rgba(255,255,255,.65)!important;border-color:var(--v7-line)!important;box-shadow:0 10px 30px rgba(60,40,30,.05);}
.hero-badge i{color:var(--v7-rose)!important;}
.hero h1{color:#241f1c!important;font-size:clamp(3.4rem,6vw,6.4rem)!important;line-height:.9!important;max-width:700px!important;margin:18px 0 22px!important;}
.hero h1 em{color:var(--v7-rose)!important;}
.hero-description{color:#655b56!important;max-width:600px!important;}
.hero-btns{margin-top:28px!important;}
.hero-btns .btn-primary,.btn-instant-buy{background:var(--v7-rose)!important;border-color:var(--v7-rose)!important;color:#fff!important;}
.hero-btns .btn-outline-light{color:var(--v7-ink)!important;border-color:rgba(55,42,35,.2)!important;background:rgba(255,255,255,.5)!important;}
.hero-trust-row{color:#6c615c!important;}
.hero-trust-row i{color:var(--v7-rose)!important;}
.floating-icons-container{display:none!important;}
.fashion-motion-stage{width:min(500px,100%)!important;min-height:470px!important;height:470px!important;justify-self:end!important;border-radius:34px!important;overflow:hidden!important;background:url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1100&q=85') center 20%/cover!important;box-shadow:var(--v7-shadow-hover)!important;border:8px solid rgba(255,255,255,.68)!important;}
.fashion-motion-stage::before{content:"DNOORA PRIVATE BOUTIQUE";position:absolute;left:24px;top:24px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.82);font-size:9px;letter-spacing:.14em;font-weight:800;color:var(--v7-ink);z-index:6;}
.fashion-motion-stage::after{content:"CURATED  •  MODEST  •  MODERN";position:absolute;right:24px;bottom:24px;padding:9px 12px;border-radius:999px;background:rgba(39,34,31,.74);color:#fff;font-size:8px;letter-spacing:.12em;font-weight:800;z-index:6;}
.fashion-glow,.fashion-orbit,.fashion-main-icon,.fashion-caption{display:none!important;}

/* Benefits */
.luxury-benefits{margin:-28px auto 0!important;width:min(var(--page-max),calc(100% - 36px))!important;border-radius:20px!important;box-shadow:0 20px 55px rgba(52,38,31,.09)!important;}

/* Catalog */
.catalog-section{padding-top:90px!important;padding-bottom:90px!important;}
.catalog-section>.section-title{margin-bottom:28px!important;}
.catalog-filters{display:flex!important;flex-wrap:wrap!important;justify-content:center!important;gap:9px!important;margin-bottom:20px!important;}
.catalog-filters .filter-btn{min-height:38px!important;padding:8px 15px!important;border:1px solid var(--v7-line)!important;border-radius:999px!important;background:#fff!important;color:var(--v7-muted)!important;box-shadow:none!important;}
.catalog-filters .filter-btn.active,.catalog-filters .filter-btn:hover{background:var(--v7-ink)!important;color:#fff!important;border-color:var(--v7-ink)!important;}
.catalog-toolbar{width:min(var(--page-max),100%);margin:0 auto 20px!important;padding:12px 15px!important;border:1px solid var(--v7-line)!important;border-radius:14px!important;background:rgba(255,255,255,.72)!important;}
.product-grid{width:min(var(--page-max),100%)!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:18px!important;align-items:stretch!important;}
.product-card{position:relative!important;display:flex!important;flex-direction:column!important;min-width:0!important;height:100%!important;border:1px solid var(--v7-line)!important;border-radius:20px!important;background:#fff!important;box-shadow:0 12px 38px rgba(55,40,32,.055)!important;overflow:hidden!important;}
.product-card:hover{transform:translateY(-5px)!important;box-shadow:var(--v7-shadow-hover)!important;}
.product-img-box{position:relative!important;height:auto!important;aspect-ratio:3/4!important;flex:none!important;background:#eee7e2!important;overflow:hidden!important;}
.product-img-box img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;transition:transform .55s ease!important;}
.product-card:hover .product-img-box img{transform:scale(1.045)!important;}
.category-badge{top:14px!important;left:14px!important;z-index:4!important;padding:7px 11px!important;background:rgba(255,255,255,.92)!important;border:1px solid rgba(0,0,0,.05)!important;box-shadow:0 8px 22px rgba(0,0,0,.07)!important;font-size:.58rem!important;}
.product-badge{position:absolute!important;top:14px!important;right:54px!important;z-index:5!important;padding:7px 10px!important;border-radius:999px!important;background:#29231f!important;color:#fff!important;font-size:.56rem!important;font-weight:800!important;letter-spacing:.03em!important;box-shadow:0 8px 20px rgba(0,0,0,.12)!important;}
.wishlist-btn{position:absolute!important;top:12px!important;right:12px!important;z-index:6!important;width:36px!important;height:36px!important;border-radius:50%!important;border:1px solid rgba(0,0,0,.08)!important;background:rgba(255,255,255,.9)!important;color:#5d514c!important;display:grid!important;place-items:center!important;}
.wishlist-btn.active{color:#b86f62!important;background:#fff!important;}
.rating-pill{position:absolute!important;left:14px!important;bottom:14px!important;z-index:5!important;padding:7px 9px!important;border-radius:999px!important;background:rgba(35,29,26,.82)!important;color:#fff!important;font-size:.58rem!important;backdrop-filter:blur(8px)!important;}
.rating-pill i{color:#e1b866!important;margin-right:3px!important;}
.rating-pill small{opacity:.72!important;}
.product-details{display:flex!important;flex:1!important;flex-direction:column!important;min-width:0!important;padding:17px!important;}
.product-details h3{font-family:var(--font-heading)!important;font-size:1.36rem!important;line-height:1.04!important;min-height:2.1em!important;margin:0 0 7px!important;color:#241f1c!important;cursor:pointer!important;}
.product-details>p{font-size:.72rem!important;line-height:1.55!important;color:var(--v7-muted)!important;margin:0 0 11px!important;display:-webkit-box!important;-webkit-line-clamp:3!important;-webkit-box-orient:vertical!important;overflow:hidden!important;min-height:3.3em!important;}
.product-details .price{margin-top:auto!important;font-size:.92rem!important;font-weight:900!important;color:#241f1c!important;padding-top:4px!important;}
.product-details .stock-status{margin:8px 0 10px!important;font-size:.66rem!important;font-weight:700!important;}
.product-actions-grid{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important;}
.product-actions-grid .btn{min-height:42px!important;padding:9px 8px!important;border-radius:11px!important;font-size:.65rem!important;}
.product-actions-grid .btn-outline{border:1px solid #d9c7bf!important;background:#fff!important;color:var(--v7-rose-dark)!important;}
.product-actions-grid .btn-instant-buy{background:var(--v7-rose)!important;border-color:var(--v7-rose)!important;color:#fff!important;}

/* Admin */
.admin-section{background:#f6f2ef!important;min-height:100vh!important;}
.admin-sidebar{position:sticky!important;top:0!important;height:100vh!important;background:linear-gradient(180deg,#201c1a,#2b2522)!important;color:#fff!important;border-right:1px solid rgba(255,255,255,.08)!important;box-shadow:12px 0 40px rgba(35,25,20,.08)!important;}
.admin-main{background:#f8f5f2!important;min-width:0!important;padding:30px clamp(18px,3vw,46px) 60px!important;}
.admin-topbar{padding:0 0 24px!important;margin-bottom:22px!important;border-bottom:1px solid var(--v7-line)!important;}
.admin-eyebrow,.admin-card-kicker{color:var(--v7-rose-dark)!important;letter-spacing:.15em!important;font-weight:900!important;}
.admin-topbar h2{font-family:var(--font-heading)!important;font-size:clamp(2rem,3vw,3rem)!important;color:#28221f!important;margin:5px 0!important;}
.admin-topbar p{color:var(--v7-muted)!important;font-size:.76rem!important;}
.admin-live{padding:8px 11px!important;border-radius:999px!important;background:#fff!important;border:1px solid var(--v7-line)!important;color:#4b5d4e!important;font-size:.63rem!important;}
.admin-icon-button{width:40px!important;height:40px!important;border:1px solid var(--v7-line)!important;background:#fff!important;border-radius:50%!important;}
.stats-grid.admin-premium-stats{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:14px!important;margin-bottom:20px!important;}
.admin-premium-stats .stat-box{min-width:0!important;padding:20px!important;border:1px solid var(--v7-line)!important;border-radius:18px!important;background:#fff!important;box-shadow:0 12px 32px rgba(50,38,31,.05)!important;}
.admin-premium-stats .stat-dark{background:#27221f!important;color:#fff!important;}
.stat-top{display:flex!important;justify-content:space-between!important;align-items:center!important;margin-bottom:12px!important;color:var(--v7-muted)!important;font-size:.64rem!important;font-weight:800!important;text-transform:uppercase!important;letter-spacing:.08em!important;}
.stat-dark .stat-top,.stat-dark small,.stat-dark strong{color:#fff!important;}
.admin-premium-stats strong{display:block!important;font-size:1.45rem!important;color:#29231f!important;}
.admin-premium-stats small{display:block!important;margin-top:7px!important;color:var(--v7-muted)!important;font-size:.62rem!important;}
.admin-card,.admin-panel-card{border:1px solid var(--v7-line)!important;border-radius:20px!important;background:#fff!important;box-shadow:0 12px 36px rgba(50,38,31,.05)!important;}
.admin-dashboard-grid{display:grid!important;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr)!important;gap:18px!important;margin-bottom:18px!important;}
.admin-performance-card{padding:24px!important;}
.performance-visual{display:grid!important;grid-template-columns:180px 1fr!important;gap:30px!important;align-items:center!important;}
.performance-ring{width:156px!important;height:156px!important;border-radius:50%!important;background:conic-gradient(var(--v7-rose) 0 92%,#eee6e1 92% 100%)!important;display:grid!important;place-items:center!important;position:relative!important;}
.performance-ring::before{content:"";position:absolute;inset:12px;border-radius:50%;background:#fff!important;}
.performance-ring>div{position:relative!important;text-align:center!important;}
.performance-ring strong{display:block!important;font-size:2.5rem!important;font-family:var(--font-heading)!important;color:#29231f!important;line-height:1!important;}
.performance-ring span{display:block!important;font-size:.58rem!important;color:var(--v7-muted)!important;margin-top:4px!important;}
.performance-list{display:grid!important;gap:14px!important;}
.performance-list>div{display:flex!important;justify-content:space-between!important;gap:20px!important;padding-bottom:12px!important;border-bottom:1px solid var(--v7-line)!important;}
.performance-list span{font-size:.68rem!important;color:var(--v7-muted)!important;}
.performance-list strong{font-size:.72rem!important;color:#29231f!important;}
.quick-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important;}
.quick-actions button{min-height:92px!important;text-align:left!important;padding:15px!important;border:1px solid var(--v7-line)!important;background:#fcfaf9!important;border-radius:15px!important;cursor:pointer!important;transition:.22s ease!important;}
.quick-actions button:hover{transform:translateY(-3px)!important;border-color:#d3aaa0!important;box-shadow:0 12px 28px rgba(50,38,31,.08)!important;}
.quick-actions i{display:block!important;color:var(--v7-rose)!important;font-size:15px!important;margin-bottom:10px!important;}
.quick-actions span{font-size:.67rem!important;font-weight:900!important;color:#2c2623!important;}
.admin-orders-preview{padding:22px!important;}
.admin-table{width:100%!important;border-collapse:collapse!important;}
.admin-table th{padding:11px 10px!important;text-align:left!important;font-size:.58rem!important;text-transform:uppercase!important;letter-spacing:.08em!important;color:#8a7c75!important;border-bottom:1px solid var(--v7-line)!important;}
.admin-table td{padding:13px 10px!important;font-size:.67rem!important;color:#3e3530!important;border-bottom:1px solid #f0ebe8!important;}
.admin-table tbody tr:hover{background:#fcf9f7!important;}
.empty-admin-state{padding:48px 28px!important;text-align:center!important;}
.empty-admin-icon{width:62px!important;height:62px!important;margin:0 auto 14px!important;border-radius:18px!important;display:grid!important;place-items:center!important;background:#f6ebe6!important;color:var(--v7-rose)!important;font-size:22px!important;}
.customer-preview{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:10px!important;margin-top:22px!important;}
.customer-preview>div{padding:16px!important;border:1px solid var(--v7-line)!important;border-radius:14px!important;background:#fcfaf9!important;}
.customer-preview strong,.customer-preview span{display:block!important;}
.customer-preview strong{font-size:.9rem!important;color:#29231f!important;}
.customer-preview span{font-size:.6rem!important;color:var(--v7-muted)!important;margin-top:4px!important;}

/* Customer service */
.customer-service-widget{position:fixed!important;right:22px!important;bottom:22px!important;z-index:1500!important;display:flex!important;flex-direction:column!important;align-items:flex-end!important;gap:10px!important;}
.customer-service-toggle{display:flex!important;align-items:center!important;gap:10px!important;padding:10px 14px!important;border:1px solid rgba(255,255,255,.65)!important;border-radius:999px!important;background:#29231f!important;color:#fff!important;box-shadow:0 16px 38px rgba(40,30,25,.2)!important;cursor:pointer!important;}
.cs-status-dot{width:8px!important;height:8px!important;border-radius:50%!important;background:#69b879!important;box-shadow:0 0 0 4px rgba(105,184,121,.12)!important;}
.cs-toggle-copy{display:flex!important;flex-direction:column!important;text-align:left!important;line-height:1.1!important;}
.cs-toggle-copy b{font-size:.67rem!important;}
.cs-toggle-copy small{font-size:.53rem!important;opacity:.68!important;margin-top:3px!important;}
.customer-service-panel{width:min(360px,calc(100vw - 28px))!important;padding:18px!important;border:1px solid var(--v7-line)!important;border-radius:20px!important;background:#fff!important;box-shadow:0 25px 80px rgba(38,27,22,.18)!important;}
.cs-panel-head{display:flex!important;justify-content:space-between!important;align-items:flex-start!important;gap:12px!important;}
.cs-panel-head span{font-size:.52rem!important;letter-spacing:.14em!important;color:var(--v7-rose)!important;font-weight:900!important;}
.cs-panel-head h3{font-family:var(--font-heading)!important;font-size:1.55rem!important;margin:4px 0 0!important;color:#29231f!important;}
.cs-panel-head>button{border:0!important;background:transparent!important;font-size:1.35rem!important;cursor:pointer!important;color:#786d68!important;}
.cs-agent{display:flex!important;align-items:center!important;gap:10px!important;padding:12px 0!important;margin-top:10px!important;border-top:1px solid var(--v7-line)!important;border-bottom:1px solid var(--v7-line)!important;}
.cs-avatar{width:38px!important;height:38px!important;border-radius:12px!important;display:grid!important;place-items:center!important;background:#f5e8e3!important;color:var(--v7-rose)!important;}
.cs-agent strong,.cs-agent small{display:block!important;}
.cs-agent strong{font-size:.68rem!important;}
.cs-agent small{font-size:.55rem!important;color:#6f8b73!important;margin-top:3px!important;}
.cs-agent small i{font-size:.42rem!important;}
.cs-greeting{font-size:.65rem!important;line-height:1.6!important;color:var(--v7-muted)!important;margin:13px 0!important;}
.cs-quick-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:7px!important;}
.cs-quick-actions button{padding:10px 9px!important;border:1px solid var(--v7-line)!important;border-radius:10px!important;background:#fcfaf9!important;color:#4c423e!important;font-size:.57rem!important;font-weight:700!important;cursor:pointer!important;}
.cs-quick-actions button:hover{border-color:#d5aea3!important;background:#f9efeb!important;}
.cs-whatsapp-btn{width:100%!important;margin-top:10px!important;padding:11px!important;border:0!important;border-radius:11px!important;background:#b87969!important;color:#fff!important;font-size:.64rem!important;font-weight:800!important;cursor:pointer!important;}

@media(max-width:1180px){
  .navbar{grid-template-columns:1fr minmax(210px,300px) auto!important;}
  .nav-links{display:none!important;}
  .product-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
  .stats-grid.admin-premium-stats{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .admin-dashboard-grid{grid-template-columns:1fr!important;}
}
@media(max-width:760px){
  .navbar{grid-template-columns:1fr auto!important;}
  .search-box{grid-column:1/-1;grid-row:2;}
  .nav-actions .btn-role{display:none!important;}
  .luxury-hero{grid-template-columns:1fr!important;padding-top:58px!important;padding-bottom:70px!important;}
  .fashion-motion-stage{justify-self:center!important;width:min(430px,100%)!important;height:430px!important;min-height:430px!important;}
  .luxury-benefits{grid-template-columns:1fr 1fr!important;margin-top:-22px!important;}
  .luxury-benefits>div:nth-child(2){border-right:0!important;}
  .luxury-benefits>div:nth-child(-n+2){border-bottom:1px solid var(--v7-line)!important;}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:13px!important;}
  .product-details{padding:13px!important;}
  .product-details h3{font-size:1.12rem!important;}
  .product-details>p{font-size:.66rem!important;}
  .performance-visual{grid-template-columns:1fr!important;justify-items:center!important;}
  .performance-list{width:100%!important;}
  .customer-preview{grid-template-columns:1fr!important;}
  .admin-sidebar{position:relative!important;height:auto!important;}
  .admin-menu{display:grid!important;grid-template-columns:repeat(2,1fr)!important;gap:7px!important;}
}
@media(max-width:520px){
  .hero h1{font-size:3rem!important;}
  .hero-description{font-size:.76rem!important;}
  .hero-btns{display:grid!important;grid-template-columns:1fr!important;}
  .hero-btns .btn{width:100%!important;}
  .luxury-benefits{grid-template-columns:1fr!important;}
  .luxury-benefits>div{border-right:0!important;border-bottom:1px solid var(--v7-line)!important;}
  .luxury-benefits>div:last-child{border-bottom:0!important;}
  .product-grid{grid-template-columns:1fr!important;}
  .stats-grid.admin-premium-stats{grid-template-columns:1fr!important;}
  .quick-actions{grid-template-columns:1fr!important;}
  .customer-service-widget{right:12px!important;bottom:12px!important;}
  .cs-toggle-copy{display:none!important;}
  .customer-service-toggle{width:48px!important;height:48px!important;justify-content:center!important;padding:0!important;}
}
