:root {
    --bg: #111111;
    --bg-2: #111111;
    --surface: #111111;
    --surface-2: #111111;
    --surface-3: #111111;

    --text: #FFFFFF;
    --muted: #EEE5D3;
    --muted-2: #EEE5D3;

    --line: rgba(232, 215, 189, 0.18);

    --nova-beige: #EEE5D3;
    --nova-black: #EEE5D3;
    --nova-beige: #EEE5D3;
    --nova-beige: #EEE5D3;

    --gradient:
        linear-gradient(135deg,
            #EEE5D3 0%,
            #EEE5D3 32%,
            #EEE5D3 68%,
            #EEE5D3 100%);

    --gradient-soft:
        linear-gradient(135deg,
            rgba(232, 215, 189, .14),
            rgba(232, 215, 189, .12),
            rgba(232, 215, 189, .14),
            rgba(232, 215, 189, .10));

    --shadow:
        0 25px 80px rgba(17, 17, 17, .38);

    --glow:
        0 0 35px rgba(232, 215, 189, .16),
        0 0 70px rgba(232, 215, 189, .10);

    --radius: 24px;
}


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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    background:
        radial-gradient(circle at 5% 5%,
            rgba(232, 215, 189, .09),
            transparent 28%),
        radial-gradient(circle at 95% 12%,
            rgba(232, 215, 189, .09),
            transparent 28%),
        radial-gradient(circle at 50% 100%,
            rgba(232, 215, 189, .08),
            transparent 35%),
        var(--bg);

    color: var(--text);

    font-family:
        "DM Sans",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 17px;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;

    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px);

    background-size: 44px 44px;

    mask-image:
        linear-gradient(to bottom,
            #111111,
            transparent 90%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}


/* =========================================================
   ANNOUNCEMENT
   ========================================================= */

.announcement {
    padding: 10px 16px;

    text-align: center;

    color: #FFFFFF;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;

    background:
        linear-gradient(90deg,
            #111111,
            #111111,
            #111111);

    border-bottom:
        1px solid rgba(232, 215, 189, .22);
}

.announcement span {
    color: var(--#EEE5D3);
    padding: 0 8px;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;

    min-height: 78px;

    padding:
        12px clamp(18px, 4vw, 60px);

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

    gap: 20px;

    background:
        rgba(17, 17, 17, .86);

    border-bottom:
        1px solid var(--line);

    backdrop-filter: blur(20px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
    letter-spacing: .08em;
}

.brand img {
    width: 44px;
    height: 44px;

    object-fit: contain;

    filter: none;
}

.brand span {
    font-size: 17px;
}

.brand small {
    display: block;

    margin-top: -3px;

    color: var(--#EEE5D3);

    font-size: 9px;
    letter-spacing: .25em;
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav nav a {
    position: relative;

    color: #FFFFFF;

    font-size: 15px;
    font-weight: 700;

    transition: .2s ease;
}

.nav nav a:hover {
    color: #FFFFFF;
}

.nav nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: -8px;

    height: 2px;

    background: var(--gradient);

    transition: .25s ease;
}

.nav nav a:hover::after {
    right: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.icon-btn {
    width: 44px;
    height: 44px;

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

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

    border-radius: 13px;

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

    color: #FFFFFF;

    transition: .2s ease;
}

.icon-btn:hover {
    transform: translateY(-2px);

    color: var(--#EEE5D3);

    border-color:
        rgba(232, 215, 189, .55);

    box-shadow:
        0 0 25px rgba(232, 215, 189, .14);
}

.count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    border-radius: 999px;

    background: var(--#EEE5D3);
    color: #FFFFFF;

    font-size: 10px;
    font-weight: 900;

    margin-left: 5px;
}


/* =========================================================
   MAIN
   ========================================================= */

main {
    width: min(1320px,
            calc(100% - 36px));

    margin: auto;

    padding:
        45px 0 90px;
}


/* =========================================================
   COMMON TEXT
   ========================================================= */

.eyebrow {
    margin: 0 0 12px;

    color: var(--#EEE5D3);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .2em;
}

.muted {
    color: var(--muted);
}

.hint {
    color: var(--muted-2);
    font-size: 13px;
}


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

.hero {
    position: relative;

    min-height: 650px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(430px, .95fr);

    align-items: center;

    gap: 40px;

    padding:
        70px clamp(30px, 5vw, 80px);

    overflow: hidden;

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

    border-radius: 36px;

    background:
        radial-gradient(circle at 85% 45%,
            rgba(232, 215, 189, .27),
            transparent 32%),
        radial-gradient(circle at 65% 75%,
            rgba(232, 215, 189, .23),
            transparent 35%),
        linear-gradient(135deg,
            #111111,
            #111111 50%,
            #111111);

    box-shadow: var(--shadow);
}

.hero::after {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -220px;
    top: -220px;

    border:
        1px solid rgba(232, 215, 189, .22);

    border-radius: 50%;

    box-shadow:
        0 0 100px rgba(232, 215, 189, .08);
}

.hero-copy {
    position: relative;
    z-index: 5;
}

.hero h1,
.page-head h1,
.shop-head h1,
.auth-card h1,
.center-card h1 {
    margin: 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(46px, 6vw, 82px);

    line-height: .96;

    letter-spacing: -.055em;
}

.hero h1 em {
    font-style: normal;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.lead {
    max-width: 640px;

    margin: 26px 0 32px;

    color: #EEE5D3;

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


/* =========================================================
   HERO ART
   ========================================================= */

.hero-art {
    position: relative;

    min-height: 500px;

    display: grid;
    place-items: center;
}

.orbit {
    position: absolute;

    border:
        1px solid rgba(232, 215, 189, .28);

    border-radius: 50%;

    animation:
        spin 18s linear infinite;
}

.orbit.one {
    width: 430px;
    height: 430px;
}

.orbit.two {
    width: 310px;
    height: 310px;

    border-color:
        rgba(232, 215, 189, .28);

    animation-direction: reverse;
    animation-duration: 13s;
}


/* BIG HERO CARD */

.hero-card {
    position: relative;
    z-index: 5;

    width: 330px;
    height: 420px;

    padding: 30px;

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

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 32px;

    background:
        radial-gradient(circle at 50% 35%,
            rgba(232, 215, 189, .18),
            transparent 38%),
        linear-gradient(145deg,
            rgba(232, 215, 189, .10),
            rgba(232, 215, 189, .20),
            rgba(232, 215, 189, .13));

    box-shadow: var(--glow);

    transform: rotate(-5deg);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.hero-card:hover {
    transform:
        rotate(-2deg) scale(1.025);

    box-shadow:
        0 35px 100px rgba(17, 17, 17, .4),
        0 0 55px rgba(232, 215, 189, .16);
}

.hero-card span {
    color: var(--#EEE5D3);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .35em;
}

.hero-card strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 150px;
    line-height: .75;

    letter-spacing: -.08em;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-card small {
    color: #FFFFFF;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .25em;
}


/* =========================================================
   HERO WITH PRODUCT IMAGE
   ========================================================= */

.hero-card-product {
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.hero-card-product img {
    display: block;

    width: 270px;
    height: 285px;

    object-fit: contain;

    margin: 0 auto;

    filter: none;

    transition:
        transform .4s ease;
}

.hero-card-product:hover img {
    transform:
        scale(1.08) translateY(-6px);
}

.hero-card-product strong {
    font-size: 105px;
}

.hero-card-product b {
    max-width: 260px;

    color: #FFFFFF;

    font-size: 16px;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.drop-placeholder {
    width: 270px;
    height: 285px;

    display: grid;
    place-items: center;

    color: var(--#EEE5D3);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 42px;
    font-weight: 900;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-height: 50px;

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

    gap: 9px;

    padding:
        13px 21px;

    border:
        1px solid transparent;

    border-radius: 14px;

    font-size: 15px;
    font-weight: 900;

    transition: .2s ease;
}

.btn.primary {
    color: #FFFFFF;

    background: var(--gradient);

    box-shadow:
        0 12px 35px rgba(232, 215, 189, .25);
}

.btn.primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 50px rgba(232, 215, 189, .32);
}

.btn.ghost {
    color: #FFFFFF;

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

    border-color:
        rgba(232, 215, 189, .28);
}

.btn.ghost:hover {
    color: var(--#EEE5D3);

    border-color:
        rgba(232, 215, 189, .6);
}

.btn.dark {
    color: #FFFFFF;

    background:
        linear-gradient(135deg,
            #111111,
            #EEE5D3,
            #EEE5D3);
}

.btn.full {
    width: 100%;
}

.btn.grow {
    flex: 1;
}


/* =========================================================
   PROMO
   ========================================================= */

.promo {
    margin: 24px 0 75px;

    padding: 28px 32px;

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

    gap: 25px;

    border:
        1px solid rgba(232, 215, 189, .28);

    border-radius: 24px;

    background:
        linear-gradient(90deg,
            rgba(232, 215, 189, .14),
            rgba(232, 215, 189, .15),
            rgba(232, 215, 189, .11));

    box-shadow:
        0 20px 60px rgba(17, 17, 17, .20);
}

.promo h2 {
    margin: 5px 0;

    font-family:
        "Space Grotesk",
        sans-serif;
}

.promo p {
    margin: 0;
    color: var(--muted);
}

.promo strong {
    color: var(--#EEE5D3);
}

.pill {
    display: inline-block;

    padding: 5px 10px;

    border-radius: 999px;

    color: #FFFFFF;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .14em;

    background: var(--gradient);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    margin-bottom: 80px;
}

.section-head,
.page-head.split {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.section-head h2,
.form-card h2,
.summary h2 {
    margin: 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 32px;
}

.text-link {
    color: var(--#EEE5D3);
    font-weight: 800;
}

.text-link:hover {
    color: #FFFFFF;
}


/* =========================================================
   NEW DROP — LARGE FEATURE
   ========================================================= */

.new-drop-section {
    margin-top: 50px;
}

.new-drop-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    border-radius: 999px;

    color: #FFFFFF;

    background:
        linear-gradient(135deg,
            #EEE5D3,
            #EEE5D3,
            #EEE5D3);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .18em;
}


/* MAIN NEW DROP CARD */

.new-drop-card {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr) minmax(360px, .9fr);

    min-height: 620px;

    width: 100%;

    overflow: hidden;

    border-radius: 32px;

    border:
        1px solid rgba(232, 215, 189, .22);

    background:
        radial-gradient(circle at 25% 45%,
            rgba(232, 215, 189, .15),
            transparent 38%),
        radial-gradient(circle at 80% 30%,
            rgba(232, 215, 189, .18),
            transparent 38%),
        linear-gradient(135deg,
            #111111,
            #111111 48%,
            #111111);

    box-shadow:
        0 35px 100px rgba(17, 17, 17, .40);
}


/* Decorative circle */

.new-drop-card::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    left: 36%;
    top: 50%;

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

    border:
        1px solid rgba(232, 215, 189, .25);

    border-radius: 50%;

    box-shadow:
        0 0 90px rgba(232, 215, 189, .08);

    pointer-events: none;
}


/* IMAGE SIDE */

.new-drop-image {
    position: relative;
    z-index: 2;

    min-height: 620px;

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

    overflow: hidden;

    background:
        radial-gradient(circle at 50% 45%,
            rgba(232, 215, 189, .18),
            transparent 42%),
        linear-gradient(145deg,
            #111111,
            #111111,
            #111111);
}

.new-drop-image img {
    width: 92%;
    height: 92%;

    max-width: 650px;
    max-height: 580px;

    object-fit: contain;

    display: block;

    filter: none;

    transition:
        transform .45s ease;
}

.new-drop-image:hover img {
    transform: scale(1.06);
}

.new-drop-badge {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 10;

    padding: 9px 13px;

    border-radius: 999px;

    color: #FFFFFF;

    background:
        rgba(17, 17, 17, .78);

    border:
        1px solid rgba(232, 215, 189, .4);

    backdrop-filter: blur(10px);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .18em;
}


/* CONTENT SIDE */

.new-drop-content {
    position: relative;
    z-index: 5;

    padding:
        clamp(35px, 5vw, 75px);

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

.new-drop-content h2 {
    margin: 8px 0 12px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(40px, 5vw, 68px);

    line-height: .98;

    letter-spacing: -.045em;
}

.new-drop-category {
    color: var(--#EEE5D3);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .14em;
}

.new-drop-description {
    max-width: 520px;

    margin: 20px 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;
}

.new-drop-price {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 10px;
}

.new-drop-price strong {
    color: #FFFFFF;

    font-size: 30px;
    font-weight: 900;
}

.new-drop-price del {
    color: var(--muted-2);
}

.new-drop-stock,
.stock-text {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 16px 0;

    color: var(--muted);

    font-size: 13px;
}

.stock-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #EEE5D3;

    box-shadow:
        0 0 12px rgba(232, 215, 189, .5);
}

.stock-dot.out {
    background: #EEE5D3;
}


/* OLD NEW DROP STRUCTURE SUPPORT */

.new-drop-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr) minmax(350px, .9fr);

    gap: 40px;

    padding: 28px;

    border-radius: 32px;

    background:
        linear-gradient(135deg,
            #111111,
            #111111,
            #111111);

    border:
        1px solid rgba(232, 215, 189, .18);
}

.new-drop-feature-image {
    min-height: 560px;

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

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(circle at 50% 40%,
            rgba(232, 215, 189, .16),
            transparent 55%),
        #111111;
}

.new-drop-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .4s ease;
}

.new-drop-feature-image:hover img {
    transform: scale(1.06);
}

.new-drop-feature-content {
    padding: 30px;

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

.new-drop-feature-content h2 {
    margin: 10px 0 18px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(38px, 5vw, 64px);

    line-height: 1;
}

.new-drop-feature-content .new-drop-description {
    max-width: 520px;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.grid {
    display: grid;

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

    gap: 18px;
}

.product-card {
    min-width: 0;

    padding: 10px;

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

    border-radius: 20px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .045),
            rgba(255, 255, 255, .018));

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(232, 215, 189, .38);

    box-shadow:
        0 20px 50px rgba(17, 17, 17, .30),
        0 0 30px rgba(232, 215, 189, .07);
}

.product-media {
    position: relative;

    display: block;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 15px;

    background:
        linear-gradient(145deg,
            #111111,
            #111111,
            #111111);
}

.product-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.05);
}

.product-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 10px;

    padding:
        14px 4px 5px;
}

.product-meta p {
    margin: 0;

    color: var(--muted-2);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .09em;
}

.product-meta h3 {
    margin: 4px 0 0;

    font-size: 17px;
}

.heart {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

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

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

    border-radius: 12px;

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

    color: #EEE5D3;
}

.heart:hover,
.heart.filled {
    color: var(--#EEE5D3);

    border-color:
        rgba(232, 215, 189, .4);

    box-shadow:
        0 0 22px rgba(232, 215, 189, .12);
}

.price {
    padding: 0 4px 9px;

    color: #FFFFFF;

    font-size: 17px;
    font-weight: 900;
}

.price del {
    margin-left: 7px;

    color: var(--muted-2);

    font-weight: 500;
}

.save {
    margin-left: 8px;

    color: var(--#EEE5D3);

    font-size: 12px;
}

.sale-badge,
.stock-badge {
    position: absolute;

    top: 10px;
    left: 10px;

    padding: 6px 9px;

    border-radius: 999px;

    color: var(--#EEE5D3);

    background:
        rgba(17, 17, 17, .84);

    border:
        1px solid rgba(232, 215, 189, .35);

    font-size: 10px;
    font-weight: 900;
}

.stock-badge {
    color: #FFFFFF;

    background:
        rgba(232, 215, 189, .18);

    border-color:
        rgba(232, 215, 189, .4);
}

.new-badge {
    color: #FFFFFF;

    background:
        linear-gradient(135deg,
            #EEE5D3,
            #EEE5D3,
            #EEE5D3);
}


/* =========================================================
   PLACEHOLDER
   ========================================================= */

.placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;
    align-content: center;

    gap: 10px;

    color: #EEE5D3;

    background:
        radial-gradient(circle at 50% 30%,
            rgba(232, 215, 189, .14),
            transparent 38%),
        linear-gradient(145deg,
            #111111,
            #111111);
}

.placeholder b {
    color: #EEE5D3;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 58px;
}


/* =========================================================
   STATEMENT
   ========================================================= */

.statement {
    padding: 80px 20px;

    text-align: center;

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

    border-bottom:
        1px solid var(--line);
}

.statement p {
    color: var(--#EEE5D3);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .22em;
}

.statement h2 {
    margin: 12px 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(36px, 5vw, 66px);

    line-height: 1.05;
}

.statement h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


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

.shop-head {
    padding: 45px;

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

    border-radius: 28px;

    background: var(--gradient-soft);
}

.page-head,
.shop-head {
    margin-bottom: 35px;
}

.page-head p:not(.eyebrow),
.shop-head p:not(.eyebrow) {
    color: var(--muted);
}

.searchbar {
    max-width: 760px;

    margin-top: 28px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 8px;

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

    border-radius: 16px;

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

.searchbar input {
    flex: 1;

    border: 0;
    outline: 0;

    background: transparent;

    color: #FFFFFF;

    padding: 12px;
}

.searchbar button {
    border: 0;

    border-radius: 11px;

    padding: 12px 19px;

    color: #FFFFFF;

    font-weight: 900;

    background: var(--gradient);
}

.filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 25px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 9px 14px;

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

    border-radius: 999px;

    color: #EEE5D3;

    font-size: 13px;
    font-weight: 800;
}

.chip:hover,
.chip.active {
    color: #FFFFFF;

    border-color:
        rgba(232, 215, 189, .45);

    background:
        rgba(232, 215, 189, .08);
}

/* =========================================================
   FORMS
   ========================================================= */

input,
select,
textarea {
    width: 100%;
    box-sizing: border-box;

    color: #EEE5D3 !important;
    background: #111111 !important;

    border: 1px solid rgba(232, 215, 189, 0.22);

    border-radius: 12px;

    padding: 12px 14px;

    outline: none;
    font-family: inherit;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: #EEE5D3 !important;
    opacity: 1;
}

input:focus,
textarea:focus,
select:focus {
    color: #FFFFFF !important;
    background: #111111 !important;

    border-color: rgba(232, 215, 189, 0.7) !important;

    box-shadow:
        0 0 0 3px rgba(232, 215, 189, 0.08),
        0 0 25px rgba(232, 215, 189, 0.05);
}


/* =========================================================
   LOGIN / OTP
   DARK BACKGROUND
   ========================================================= */

.auth-page,
.auth-wrap {
    position: relative;

    width: 100%;
    min-height: calc(100vh - 78px);

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

    padding: 70px 20px;

    overflow: hidden;

    color: #FFFFFF !important;

    background:
        radial-gradient(circle at 8% 20%,
            rgba(232, 215, 189, 0.13),
            transparent 30%),
        radial-gradient(circle at 92% 25%,
            rgba(232, 215, 189, 0.15),
            transparent 32%),
        radial-gradient(circle at 50% 100%,
            rgba(232, 215, 189, 0.10),
            transparent 38%),
        linear-gradient(135deg,
            #111111 0%,
            #111111 45%,
            #111111 100%) !important;
}


/* Make sure auth page fills the visible screen */

.auth-page {
    min-height: calc(100vh - 78px);
}


/* =========================================================
   DECORATIVE LOGIN GLOW
   ========================================================= */

.auth-page::before,
.auth-wrap::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -150px;
    top: 10%;

    border-radius: 50%;

    background: rgba(232, 215, 189, 0.13);

    filter: blur(110px);

    pointer-events: none;
}

.auth-page::after,
.auth-wrap::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -150px;
    bottom: 0;

    border-radius: 50%;

    background: rgba(232, 215, 189, 0.12);

    filter: blur(110px);

    pointer-events: none;
}


/* =========================================================
   LOGIN CARD
   ========================================================= */

.auth-card {
    position: relative;
    z-index: 5;

    width: min(100%, 520px);

    padding: 45px;

    box-sizing: border-box;

    border: 1px solid rgba(232, 215, 189, 0.22);

    border-radius: 30px;

    background:
        linear-gradient(145deg,
            rgba(17, 17, 17, 0.97),
            rgba(17, 17, 17, 0.98)) !important;

    color: #FFFFFF !important;

    box-shadow:
        0 35px 110px rgba(17, 17, 17, 0.48),
        0 0 70px rgba(232, 215, 189, 0.10);

    backdrop-filter: blur(25px);
}


/* =========================================================
   LOGIN LOGO
   ========================================================= */

.auth-logo {
    width: 70px;
    height: 70px;

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

    margin-bottom: 27px;

    border-radius: 18px;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 0 30px rgba(232, 215, 189, 0.10);
}

.auth-logo img {
    width: 54px;
    height: 54px;

    object-fit: contain;
}


/* =========================================================
   LOGIN HEADING
   ========================================================= */

.auth-card h1,
.auth-card h2,
.auth-card h3 {
    color: #FFFFFF !important;
}

.auth-card h1 {
    margin: 8px 0 15px;

    font-family:
        "Space Grotesk",
        Inter,
        Arial,
        sans-serif;

    font-size: clamp(38px, 6vw, 56px);

    line-height: 0.98;
}

.auth-card>p:not(.eyebrow) {
    color: #EEE5D3 !important;

    line-height: 1.7;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.auth-card .eyebrow {
    color: #EEE5D3 !important;

    font-weight: 800;
    letter-spacing: 0.18em;
}


/* =========================================================
   AUTH FORM
   ========================================================= */

.auth-card form,
.auth-form {
    margin-top: 28px;
}


/* =========================================================
   LABELS
   ========================================================= */

.auth-card label,
.form-label {
    display: block;

    margin-bottom: 9px;

    color: #FFFFFF !important;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .auth-page,
    .auth-wrap {
        min-height: calc(100vh - 70px);

        padding: 35px 15px;
    }

    .auth-card {
        padding: 30px 22px;

        border-radius: 24px;
    }

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

    .auth-logo {
        width: 62px;
        height: 62px;
    }

    .auth-logo img {
        width: 48px;
        height: 48px;
    }
}

/* =========================================================
   NOVA BY ASH — AUTH INPUTS
   ========================================================= */

.auth-card input:not([type="hidden"]),
.auth-input,
.otp-input {
    width: 100%;
    min-height: 57px;
    box-sizing: border-box;

    color: #FFFFFF !important;
    background: #111111 !important;

    border: 1px solid rgba(232, 215, 189, 0.22) !important;
    border-radius: 15px;

    padding: 0 17px;
    font-size: 17px;
    font-family: inherit;

    outline: none;
    appearance: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* Placeholder */

.auth-card input:not([type="hidden"])::placeholder,
.auth-input::placeholder,
.otp-input::placeholder {
    color: #EEE5D3 !important;
    opacity: 1;
}


/* Focus */

.auth-card input:not([type="hidden"]):focus,
.auth-input:focus,
.otp-input:focus {
    color: #FFFFFF !important;
    background: #111111 !important;

    border-color: #EEE5D3 !important;

    box-shadow:
        0 0 0 3px rgba(232, 215, 189, 0.10),
        0 0 30px rgba(232, 215, 189, 0.08);
}


/* Browser autofill */

.auth-card input:-webkit-autofill,
.auth-card input:-webkit-autofill:hover,
.auth-card input:-webkit-autofill:focus,
.auth-input:-webkit-autofill,
.auth-input:-webkit-autofill:hover,
.auth-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #FFFFFF !important;
    -webkit-box-shadow: 0 0 0 1000px #111111 inset !important;
    box-shadow: 0 0 0 1000px #111111 inset !important;
    caret-color: #FFFFFF;
}


/* =========================================================
   LOGIN EMAIL / PHONE SWITCH
   ========================================================= */

.segmented,
.login-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 7px;
    padding: 5px;
    margin-bottom: 16px;

    background: #111111 !important;

    border: 1px solid rgba(232, 215, 189, 0.16);
    border-radius: 15px;
}


/* Individual options */

.seg,
.login-option span,
.login-tab {
    min-height: 48px;

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

    border: 0;
    border-radius: 11px;

    color: #EEE5D3 !important;
    background: transparent !important;

    font-weight: 800;
    font-size: 15px;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


/* Hide radio */

.login-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/* Active option */

.seg.active,
.login-option input:checked+span,
.login-tab.active {
    color: #FFFFFF !important;

    background: linear-gradient(135deg,
            #111111,
            #111111) !important;

    box-shadow:
        inset 0 0 0 1px rgba(232, 215, 189, 0.22),
        0 0 20px rgba(232, 215, 189, 0.06);
}


/* Hover */

.seg:hover,
.login-option span:hover,
.login-tab:hover {
    color: #FFFFFF !important;
}


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

.auth-card .btn.primary {
    width: 100%;
    min-height: 58px;

    margin-top: 8px;

    font-size: 16px;
    font-weight: 800;

    cursor: pointer;
}


/* =========================================================
   AUTH NOTES
   ========================================================= */

.auth-note,
.auth-card small,
.login-info {
    color: #EEE5D3 !important;

    font-size: 13px;
    line-height: 1.65;
}


.auth-note {
    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid rgba(232, 215, 189, 0.12);
}


/* =========================================================
   OTP INPUT
   ========================================================= */

.otp-input {
    text-align: center;

    letter-spacing: 0.5em;

    font-size: 29px !important;
    font-weight: 900;

    padding-left: 25px;
}


/* Remove excessive spacing on mobile */

@media (max-width: 480px) {
    .otp-input {
        letter-spacing: 0.35em;
        font-size: 24px !important;
    }
}


/* =========================================================
   OTP / SECURITY ICON
   ========================================================= */

.otp-icon,
.secure-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 18px;

    color: #FFFFFF;

    background: linear-gradient(135deg,
            #EEE5D3,
            #EEE5D3);

    box-shadow:
        0 0 35px rgba(232, 215, 189, 0.28);
}


/* =========================================================
   DEBUG OTP
   ========================================================= */

.debug-otp {
    margin-top: 24px;
    padding: 18px;

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

    gap: 5px;

    color: #FFFFFF;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

    text-align: center;
}


.debug-otp small {
    color: #FFFFFF !important;
}


.debug-otp strong {
    color: #FFFFFF !important;

    font-size: 34px;
    font-weight: 900;

    letter-spacing: 0.25em;
}


/* =========================================================
   AUTH CARD — MAKE SURE THE WHOLE LOGIN BOX MATCHES
   ========================================================= */

.auth-card {
    color: #FFFFFF;

    background:
        linear-gradient(145deg,
            rgba(17, 17, 17, 0.98),
            rgba(17, 17, 17, 0.98)) !important;

    border: 1px solid rgba(232, 215, 189, 0.14);

    box-shadow:
        0 25px 80px rgba(17, 17, 17, 0.45);
}


/* Auth headings */

.auth-card h1,
.auth-card h2,
.auth-card h3 {
    color: #FFFFFF !important;
}


/* Auth labels */

.auth-card label {
    color: #EEE5D3 !important;
    font-weight: 700;
}


/* Links */

.auth-card a {
    color: #EEE5D3;
}

.auth-card a:hover {
    color: #EEE5D3;
}


/* =========================================================
   CART / CHECKOUT / ACCOUNT
   ========================================================= */

.cart-layout,
.checkout-layout,
.order-layout,
.account-grid {
    display: grid;
    background: var(--gradient-soft);

    grid-template-columns:
        minmax(0, 1.5fr) minmax(300px, .7fr);

    gap: 22px;
}

.cart-list,
.form-card {
    padding: 25px;

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

    border-radius: 24px;

    background:
        linear-gradient(145deg,
            rgba(17, 17, 17, .96),
            rgba(17, 17, 17, .94));

    box-shadow: var(--shadow);

}

.summary {
    padding: 25px;

    height: max-content;

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

    border-radius: 24px;

    background:
        linear-gradient(145deg,
            rgba(17, 17, 17, .96),
            rgba(17, 17, 17, .94));

    box-shadow: var(--shadow);
}

.summary.sticky {
    position: sticky;
    top: 100px;
}

.summary>div,
.mini-item,
.total {
    display: flex;

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

    gap: 16px;

    padding: 10px 0;
}

.summary .total,
.form-card .total {
    margin-top: 8px;

    padding-top: 16px;

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

    font-size: 20px;


}

.summary strong,
.total strong {
    color: #FFFFFF;
}


/* =========================================================
   CART ITEMS
   ========================================================= */

.cart-item {
    display: grid;

    grid-template-columns:
        100px 1fr auto auto;

    align-items: center;

    gap: 16px;

    padding: 15px 0;

    border-bottom:
        1px solid var(--line);
}

.cart-thumb {
    width: 100px;
    height: 120px;

    overflow: hidden;

    border-radius: 14px;

    background: #111111;
}

.cart-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cart-copy h2 {
    margin: 4px 0;

    font-size: 20px;
}

.cart-copy p {
    margin: 0;

    color: var(--muted-2);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .08em;
}

.cart-copy span {
    color: var(--muted-2);

    font-size: 13px;
}

.cart-copy strong {
    display: block;

    margin-top: 8px;

    color: var(--#EEE5D3);
}


/* =========================================================
   CHECKOUT
   ========================================================= */

.form-section {
    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom:
        1px solid var(--line);
}

.form-section h2 {
    margin: 0 0 15px;

    font-family:
        "Space Grotesk",
        sans-serif;
}

.form-section input,
.form-section textarea,
.form-section select {
    width: 100%;

    margin: 5px 0;
}

.two {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


/* payment */
.payment-options-fixed {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    margin-top: 18px !important;
}

.payment-card {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;

    width: 100% !important;
    min-height: 78px !important;
    padding: 18px 20px !important;
    box-sizing: border-box !important;

    border: 2px solid rgba(232, 215, 189, 0.25) !important;
    border-radius: 18px !important;

    background: #111111 !important;

    cursor: pointer !important;
    user-select: none !important;

    position: relative !important;
    z-index: 10 !important;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease !important;
}

.payment-card:hover {
    border-color: #EEE5D3 !important;
    transform: translateY(-2px) !important;
}

.payment-card input[type="radio"] {
    display: block !important;

    position: relative !important;
    z-index: 20 !important;

    width: 22px !important;
    height: 22px !important;

    min-width: 22px !important;
    min-height: 22px !important;

    margin: 0 !important;
    padding: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;

    appearance: auto !important;
    -webkit-appearance: radio !important;

    pointer-events: auto !important;
    cursor: pointer !important;

    accent-color: #EEE5D3 !important;
}

.payment-card-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;

    pointer-events: none !important;
}

.payment-card-text strong {
    display: block !important;
    color: #FFFFFF !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
}

.payment-card-text small {
    display: block !important;
    color: #EEE5D3 !important;
    font-size: 14px !important;
}

.payment-card:has(input[type="radio"]:checked) {
    border-color: #EEE5D3 !important;

    background:
        linear-gradient(135deg,
            rgba(232, 215, 189, 0.10),
            rgba(232, 215, 189, 0.18),
            rgba(232, 215, 189, 0.08)) !important;

    box-shadow:
        0 0 0 1px rgba(232, 215, 189, 0.35),
        0 10px 35px rgba(232, 215, 189, 0.12) !important;
}

.payment-card:has(input[type="radio"]:checked) .payment-card-text strong {
    color: #FFFFFF !important;
}

/* =========================================================
   ORDER TRACKING
   ========================================================= */

.tracking {
    padding: 30px;

    margin-bottom: 22px;

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

    border-radius: 24px;

    background:
        var(--gradient-soft);
}

.timeline {
    display: grid;

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

    gap: 10px;
}

.track-step {
    position: relative;

    text-align: center;

    color: #EEE5D3;
}

.track-step::before {
    content: "";

    position: absolute;

    top: 18px;

    left: 50%;
    right: -50%;

    height: 2px;

    background:
        rgba(232, 215, 189, .18);
}

.track-step:last-child::before {
    display: none;
}

.track-step.current {
    color: #111111;
}

.dot {
    position: relative;
    z-index: 2;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    margin:
        0 auto 10px;

    border-radius: 50%;

    background: #111111;

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

    font-weight: 900;
}

.track-step.current .dot {
    color: #FFFFFF;

    border: 0;

    background: var(--gradient);

    box-shadow:
        0 0 25px rgba(232, 215, 189, .35);
}

.track-step strong {
    display: block;

    font-size: 13px;
}

.track-step span {
    color: var(--muted-2);

    font-size: 11px;
}


/* =========================================================
   PRODUCT DETAIL
   ========================================================= */

.product-page {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(360px, 480px);

    gap: 48px;

    align-items: start;
}

.gallery {
    display: grid;

    grid-template-columns:
        76px minmax(0, 1fr);

    gap: 16px;
}

.thumbs {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.thumb {
    width: 68px;
    height: 82px;

    padding: 0;

    overflow: hidden;

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

    border-radius: 12px;

    background: #111111;
}

.thumb.active {
    border-color: var(--#EEE5D3);

    box-shadow:
        0 0 18px rgba(232, 215, 189, .14);
}

.thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.main-image {
    width: 100%;
    height: 600px;

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

    overflow: hidden;

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

    border-radius: 26px;

    background:
        linear-gradient(145deg,
            #111111,
            #111111);
}

.main-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.product-info h1 {
    margin: 0 0 10px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(40px, 5vw, 64px);

    line-height: 1;
}

.rating {
    color: #EEE5D3;
    font-weight: 800;
}

.big-price {
    margin: 20px 0;

    font-size: 30px;
}

.big-price del {
    margin-left: 7px;

    color: var(--muted-2);

    font-size: 18px;
}

.description {
    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;
}

.buy-box {
    padding:
        24px 0;

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

    border-bottom:
        1px solid var(--line);
}

.buy-box label {
    display: block;

    font-weight: 800;
}

.buy-box label>span {
    float: right;

    color: var(--muted-2);

    font-size: 12px;

    font-weight: 500;
}

.size-row {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin:
        12px 0 20px;
}

.size-row label {
    position: relative;
}

.size-row input {
    position: absolute;

    opacity: 0;
}

.size-row span {
    display: block;

    padding: 10px 15px;

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

    border-radius: 10px;
}

.size-row input:checked+span {
    color: var(--#EEE5D3);

    border-color: var(--#EEE5D3);

    background:
        rgba(232, 215, 189, .09);
}

.buy-row {
    display: flex;

    gap: 10px;
}

.qty {
    display: flex;

    overflow: hidden;

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

    border-radius: 12px;
}

.qty button {
    width: 40px;

    border: 0;

    color: #FFFFFF;

    background: #111111;
}

.qty input {
    width: 48px;

    text-align: center;

    border: 0;

    border-radius: 0;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.review-panel {
    margin-top: 30px;
}

.review-form textarea,
.review-form input {
    width: 100%;
}

.reviews article {
    padding: 16px 0;

    border-bottom:
        1px solid var(--line);
}

.reviews article>div {
    display: flex;

    justify-content: space-between;
}

.reviews article>div span {
    color: #EEE5D3;
}

.reviews h3 {
    margin: 7px 0;
}

.reviews p {
    color: var(--muted);
}


/* =========================================================
   ACCOUNT / ORDERS
   ========================================================= */

.order-row {
    display: grid;

    grid-template-columns:
        1fr auto auto;

    align-items: center;

    gap: 15px;

    padding: 15px 0;

    border-bottom:
        1px solid var(--line);
}

.order-row small {
    display: block;

    color: var(--muted-2);
}

.status-pill {
    padding: 7px 10px;

    border-radius: 999px;

    color: #FFFFFF;

    background:
        rgba(232, 215, 189, .20);

    border:
        1px solid rgba(232, 215, 189, .40);

    font-size: 11px;
    font-weight: 900;
}

.status-pill.shipped {
    background:
        rgba(232, 215, 189, .20);

    border-color:
        rgba(232, 215, 189, .40);
}

.status-pill.delivered {
    color: var(--#111111);

    background:
        rgba(232, 215, 189, .16);

    border-color:
        rgba(232, 215, 189, .40);
}

.status-pill.cancelled {
    color: #EEE5D3;

    background:
        rgba(232, 215, 189, .16);

    border-color:
        rgba(232, 215, 189, .40);
}

.notification {
    padding: 15px 0;

    border-bottom:
        1px solid var(--line);
}

.notification.unread {
    padding-left: 12px;

    border-left:
        3px solid var(--#EEE5D3);
}

.notification p {
    color: var(--muted);

    margin: 5px 0;
}


/* =========================================================
   EMPTY
   ========================================================= */

.empty {
    grid-column: 1 / -1;

    padding: 50px 20px;

    text-align: center;

    color: var(--muted);

    border:
        1px dashed rgba(232, 215, 189, .25);

    border-radius: 18px;

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

.empty.large {
    padding: 90px 20px;
}


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

footer {
    width:
        min(1320px,
            calc(100% - 36px));

    margin:
        0 auto 30px;

    padding:
        40px 32px;

    display: grid;

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

    gap: 30px;

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

    border-radius: 26px;

    background:
        linear-gradient(145deg,
            rgba(17, 17, 17, .94),
            rgba(17, 17, 17, .90));
}

footer strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    letter-spacing: .12em;
}

footer p {
    max-width: 300px;

    color: var(--muted);
}

footer span {
    display: block;

    margin-bottom: 10px;

    color: var(--#EEE5D3);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .14em;
}

footer a {
    display: block;

    margin: 7px 0;

    color: #EEE5D3;

    font-size: 14px;
}

footer a:hover {
    color: #FFFFFF;
}


/* =========================================================
   TOAST
   ========================================================= */

.toast-stack {
    position: fixed;

    right: 20px;
    top: 90px;

    z-index: 200;

    display: grid;

    gap: 8px;
}

.toast {
    padding: 13px 16px;

    border-radius: 12px;

    color: #FFFFFF;

    background: #111111;

    border:
        1px solid rgba(232, 215, 189, .35);

    box-shadow: var(--shadow);
}

.toast.hide {
    opacity: 0;

    transform:
        translateY(-10px);

    transition: .3s;
}


/* =========================================================
   ADMIN DASHBOARD
   ========================================================= */

.admin-body {
    background:
        linear-gradient(90deg,
            #111111,
            #111111,
            #111111);
    color: #111111;

    h1 {
        color: #FFFFFF;
    }

    span {
        color: #FFFFFF;
    }

}

.admin-nav {
    position: sticky;

    top: 0;

    z-index: 50;

    background:
        linear-gradient(90deg,
            #111111,
            #111111,
            #111111);

    border-bottom:
        linear-gradient(90deg,
            #111111,
            #111111,
            #111111);

    backdrop-filter: blur(18px);
}

.admin-main {
    max-width: 1440px;

    margin: auto;

    padding:
        42px 28px 80px;
    background: gradient(145deg,
            rgba(255, 255, 255, .95),
            rgba(255, 255, 255, .98));

    label {
        color: #FFFFFF;
    }
}

.admin-head {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 32px;
}

.admin-head h1 {
    margin: 4px 0 10px;

    font-size:
        clamp(38px, 6vw, 68px);

    line-height: .95;
}

.quick-grid,
.stat-grid {
    display: grid;

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

    gap: 15px;

    margin-bottom: 22px;
}

.quick-card {
    display: flex;
    flex-direction: column;

    gap: 8px;

    min-height: 145px;

    padding: 23px;

    border:
        1px solid #FFFFFF;

    border-radius: 20px;

    background: #FFFFFF;

    transition: .2s ease;
}

.quick-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(17, 17, 17, .08);
}

.quick-card strong {
    font-size: 17px;
}

.quick-card small {
    color: #EEE5D3;
}

.stat {
    padding: 24px;

    border-radius: 20px;

    color: #FFFFFF;

    background: #111111;
}

.stat span {
    display: block;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .12em;

    opacity: .55;
}

.stat strong {
    display: block;

    margin: 12px 0 7px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 34px;
}

.admin-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr;

    gap: 20px;
}

.panel {
    padding: 25px;

    margin-bottom: 20px;

    border:
        1px solid #FFFFFF;

    border-radius: 22px;

    background:
        #FFFFFF;
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

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

    .hero-art {
        min-height: 560px;
    }

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

    .new-drop-card {
        grid-template-columns: 1fr;
    }

    .new-drop-image {
        min-height: 600px;
    }

    .new-drop-feature {
        grid-template-columns: 1fr;
    }

    .new-drop-feature-image {
        min-height: 500px;
    }

    .product-page {
        grid-template-columns: 1fr;
    }

    .cart-layout,
    .checkout-layout,
    .order-layout,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .summary.sticky {
        position: static;
    }

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


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    body {
        font-size: 16px;
    }

    .nav {
        flex-wrap: wrap;
    }

    .nav nav {
        order: 3;

        width: 100%;

        justify-content: center;

        gap: 20px;
    }

    main {
        width:
            calc(100% - 22px);

        padding-top: 25px;
    }

    .hero {
        min-height: auto;

        padding:
            45px 22px;

        border-radius: 25px;
    }

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

    .hero-art {
        min-height: 470px;
    }

    .hero-card {
        width: 290px;
        height: 370px;
    }

    .hero-card strong {
        font-size: 125px;
    }

    .orbit.one {
        width: 350px;
        height: 350px;
    }

    .orbit.two {
        width: 260px;
        height: 260px;
    }

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

        gap: 11px;
    }

    .promo {
        flex-direction: column;

        align-items: flex-start;
    }

    .section-head,
    .page-head.split,
    .filter-row {
        align-items: flex-start;

        flex-direction: column;
    }

    .shop-head {
        padding: 28px 20px;
    }

    .new-drop-card {
        border-radius: 24px;
    }

    .new-drop-image {
        min-height: 470px;
    }

    .new-drop-image img {
        width: 100%;
        height: 90%;
    }

    .new-drop-content {
        padding: 35px 24px;
    }

    .new-drop-content h2 {
        font-size: 42px;
    }

    .new-drop-feature {
        padding: 16px;

        gap: 20px;
    }

    .new-drop-feature-image {
        min-height: 400px;
    }

    .new-drop-feature-content {
        padding: 10px;
    }

    .cart-item {
        grid-template-columns:
            76px 1fr auto;
    }

    .cart-thumb {
        width: 76px;
        height: 95px;
    }

    .cart-qty {
        grid-column: 2;
    }

    .cart-item>.icon-btn {
        grid-column: 3;
        grid-row: 2;
    }

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

    .timeline {
        grid-template-columns:
            1fr 1fr;

        gap: 22px;
    }

    .track-step::before {
        display: none;
    }

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

    .thumbs {
        order: 2;

        flex-direction: row;

        overflow-x: auto;
    }

    .thumb {
        flex: 0 0 65px;
    }

    .main-image {
        height: 470px;
    }

    footer {
        grid-template-columns: 1fr;
    }

    .auth-wrap,
    .auth-page {
        min-height:
            calc(100vh - 100px);

        padding:
            35px 15px;
    }

    .auth-card {
        padding:
            32px 23px;

        border-radius: 23px;
    }

    .auth-card h1 {
        font-size: 40px;
    }

    .quick-grid,
    .stat-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 460px) {

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

    .nav nav {
        gap: 13px;
    }

    .nav nav a {
        font-size: 13px;
    }

    .brand span {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-card {
        width: 260px;
        height: 340px;
    }

    .hero-card-product img {
        width: 220px;
        height: 230px;
    }

    .hero-card strong {
        font-size: 105px;
    }

    .new-drop-image {
        min-height: 390px;
    }

    .new-drop-content h2 {
        font-size: 36px;
    }

    .auth-card {
        padding:
            28px 20px;
    }

    .auth-card h1 {
        font-size: 36px;
    }

    .quick-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   NOVA ADMIN — ORDERS PAGE FIX
   ========================================================= */

.order-admin {
    display: grid !important;
    grid-template-columns: minmax(220px, 1.4fr) minmax(100px, .5fr) minmax(360px, 1.8fr);
    align-items: center;
    gap: 24px;

    width: 100%;
    min-height: 92px;

    padding: 20px 22px;

    box-sizing: border-box;

    background: rgba(17, 17, 17, .72);
    border: 1px solid rgba(232, 215, 189, .12);
    border-radius: 18px;

    margin-bottom: 12px;
}


/* =========================================================
   ORDER CUSTOMER / ID
   ========================================================= */

.order-admin>span:first-child {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-admin>span:first-child strong {
    display: block;

    color: #FFFFFF;

    font-size: 15px;
    font-weight: 900;

    letter-spacing: .02em;

    #FFFFFF-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-admin>span:first-child small {
    display: block;

    color: #EEE5D3;

    font-size: 13px;

    #FFFFFF-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
   ORDER TOTAL
   ========================================================= */

.order-admin>span:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;

    color: #FFFFFF;

    font-size: 17px;
    font-weight: 900;

    #FFFFFF-space: nowrap;
}

.order-admin>span:nth-child(2) small {
    color: #EEE5D3;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   ORDER CONTROLS
   ========================================================= */

.order-admin form {
    display: grid !important;

    grid-template-columns: minmax(150px, 1fr) minmax(170px, 1fr) 48px;

    align-items: center;

    gap: 10px;

    width: 100%;
    margin: 0 !important;
}


/* Select boxes */

.order-admin form select {
    width: 100% !important;
    min-width: 0;

    height: 46px;

    box-sizing: border-box;

    padding: 0 38px 0 13px;

    color: #FFFFFF !important;
    background-color: #111111 !important;

    border: 1px solid rgba(232, 215, 189, .20) !important;
    border-radius: 12px;

    font-size: 13px;
    font-weight: 700;

    outline: none;

    cursor: pointer;

    appearance: auto;
}

.order-admin form select:hover {
    border-color: rgba(232, 215, 189, .45) !important;
}

.order-admin form select:focus {
    border-color: #EEE5D3 !important;

    box-shadow:
        0 0 0 3px rgba(232, 215, 189, .08);
}


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

.order-admin .icon-btn {
    width: 46px;
    height: 46px;

    min-width: 46px;

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

    padding: 0;

    color: #FFFFFF;

    background:
        linear-gradient(135deg,
            #EEE5D3,
            #EEE5D3);

    border: 0;
    border-radius: 12px;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(232, 215, 189, .12);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.order-admin .icon-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(232, 215, 189, .22);
}

.order-admin .icon-btn svg {
    width: 19px;
    height: 19px;

    display: block;

    stroke: currentColor;

    pointer-events: none;
}


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

.panel .table {
    display: flex;
    flex-direction: column;

    gap: 0;

    width: 100%;
}


/* =========================================================
   EMPTY ORDERS
   ========================================================= */

.panel .muted {
    padding: 35px;

    color: #EEE5D3;

    text-align: center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1050px) {

    .order-admin {
        grid-template-columns: 1fr 120px;
        gap: 16px;
    }

    .order-admin form {
        grid-column: 1 / -1;

        grid-template-columns:
            minmax(150px, 1fr) minmax(170px, 1fr) 48px;
    }
}


@media (max-width: 650px) {

    .order-admin {
        display: flex !important;
        flex-direction: column;

        align-items: stretch;

        gap: 14px;

        padding: 18px;
    }

    .order-admin>span:first-child strong,
    .order-admin>span:first-child small {
        #FFFFFF-space: normal;
    }

    .order-admin>span:nth-child(2) {
        flex-direction: row;
        align-items: center;

        justify-content: space-between;
    }

    .order-admin form {
        display: flex !important;
        flex-direction: column;

        gap: 10px;
    }

    .order-admin form select,
    .order-admin .icon-btn {
        width: 100% !important;
    }

    .order-admin .icon-btn {
        height: 48px;
    }
}

/* =========================================================
   LATEST ORDERS — NOVA DARK THEME FIX
   ========================================================= */

/* Main Latest Orders panel */
.admin-main .panel {
    background: #111111 !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow: 0 18px 50px rgba(17, 17, 17, 0.30) !important;
}

/* Panel heading */
.admin-main .panel h2,
.admin-main .panel h3 {
    color: #FFFFFF !important;
}

/* Orders table */
.admin-main .table {
    width: 100% !important;
    background: transparent !important;
}

/* EACH ORDER = one horizontal row */
.admin-main .table-row {
    display: grid !important;
    grid-template-columns: minmax(260px, 1fr) 110px 110px !important;
    align-items: center !important;
    gap: 24px !important;

    width: 100% !important;
    min-height: 78px !important;
    padding: 16px 20px !important;
    box-sizing: border-box !important;

    background: #111111 !important;
    color: #FFFFFF !important;

    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 14px !important;

    margin-bottom: 10px !important;
}

/* Customer / order information */
.admin-main .table-row>span:first-child {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    min-width: 0 !important;
}

.admin-main .table-row>span:first-child strong {
    display: block !important;
    color: #FFFFFF !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.admin-main .table-row>span:first-child small {
    display: block !important;
    color: #EEE5D3 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Price */
.admin-main .table-row>span:nth-child(2) {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    color: #FFFFFF !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    #FFFFFF-space: nowrap !important;
}

/* Status */
.admin-main .table-row>span:nth-child(3) {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 90px !important;
}

/* Status badge */
.admin-main .table-row .status,
.admin-main .table-row>span:nth-child(3) strong,
.admin-main .table-row>span:nth-child(3) b {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 76px !important;
    height: 34px !important;
    padding: 0 12px !important;

    box-sizing: border-box !important;

    border-radius: 999px !important;

    background: rgba(232, 215, 189, .12) !important;
    border: 1px solid rgba(232, 215, 189, .30) !important;

    color: #EEE5D3 !important;

    font-size: 13px !important;
    font-weight: 700 !important;
}

/* Prevent SVG/icons from becoming huge */
.admin-main .table-row svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
}

/* Remove accidental #FFFFFF backgrounds */
.admin-main .panel *,
.admin-main .table *,
.admin-main .table-row * {
    box-sizing: border-box;
}

/* Mobile */
@media (max-width: 850px) {
    .admin-main .table-row {
        grid-template-columns: 1fr auto !important;
        gap: 12px !important;
    }

    .admin-main .table-row>span:nth-child(2) {
        justify-content: flex-end !important;
    }

    .admin-main .table-row>span:nth-child(3) {
        grid-column: 1 / -1 !important;
        justify-content: flex-start !important;
    }
}

@media (max-width: 550px) {
    .admin-main .table-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 16px !important;
    }

    .admin-main .table-row>span:nth-child(2),
    .admin-main .table-row>span:nth-child(3) {
        justify-content: flex-start !important;
    }
}

/* =========================================================
   NOVA BY ASH — DASHBOARD THEME
   ========================================================= */

:root {
    --nova-bg: #111111;
    --nova-bg-2: #111111;

    --nova-panel: #111111;
    --nova-panel-2: #111111;

    --nova-border: rgba(255, 255, 255, .10);

    --nova-text: #FFFFFF;
    --nova-muted: #EEE5D3;

    --nova-#EEE5D3: #EEE5D3;
    --nova-#EEE5D3: #EEE5D3;

    --nova-#111111: #EEE5D3;
    --nova-#EEE5D3: #EEE5D3;
    --nova-#111111: #EEE5D3;

    --nova-radius: 18px;
}


/* =========================================================
   PAGE BACKGROUND
   ========================================================= */

.admin-body {
    background:
        radial-gradient(circle at 15% 0%,
            rgba(232, 215, 189, .08),
            transparent 30%),
        radial-gradient(circle at 85% 10%,
            rgba(232, 215, 189, .10),
            transparent 30%),
        #111111 !important;

    color: var(--nova-text) !important;
}


.admin-main {
    background: transparent !important;
    color: var(--nova-text) !important;
    min-height: 100vh;
}


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

.admin-head {
    color: var(--nova-text) !important;
}

.admin-head h1 {
    color: #FFFFFF !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

.admin-head h2,
.admin-head h3 {
    color: #FFFFFF !important;
}

.admin-head p {
    color: var(--nova-muted) !important;
}

.eyebrow {
    color: var(--nova-#EEE5D3) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .18em !important;
}


/* =========================================================
   STATISTICS
   ========================================================= */

.stat-grid {
    display: grid !important;

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

    gap: 16px;

    margin-bottom: 22px;
}


.stat-card {
    background: var(--nova-panel) !important;

    color: var(--nova-text) !important;

    border:
        1px solid var(--nova-border) !important;

    border-radius:
        var(--nova-radius) !important;

    padding: 24px !important;

    box-shadow:
        0 18px 50px rgba(17, 17, 17, .25) !important;
}


.stat-card:hover {
    background: var(--nova-panel-2) !important;

    transform: translateY(-2px);

    transition:
        .2s ease;
}


.stat-card strong {
    display: block;

    margin-top: 8px;

    color: #FFFFFF !important;

    font-size: 30px !important;

    font-weight: 800 !important;
}


.stat-card small {
    display: block;

    margin-top: 6px;

    color: var(--nova-muted) !important;
}


.stat-label {
    color: var(--nova-#EEE5D3) !important;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .12em;
}


/* =========================================================
   PANELS
   ========================================================= */

.dashboard-panel,
.admin-main .panel {

    background:
        linear-gradient(145deg,
            rgba(17, 17, 17, .98),
            rgba(17, 17, 17, .98)) !important;

    color: var(--nova-text) !important;

    border:
        1px solid var(--nova-border) !important;

    border-radius:
        var(--nova-radius) !important;

    box-shadow:
        0 20px 60px rgba(17, 17, 17, .30) !important;

    overflow: hidden;

    margin-bottom: 22px;
}


.dashboard-panel {
    padding: 28px !important;
}


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

.panel-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}


.panel-head h2 {

    margin: 0;

    color: #FFFFFF !important;

    font-size: 27px !important;

    font-weight: 800 !important;
}


.panel-head .eyebrow {
    margin-bottom: 7px;
}


.admin-link {

    color: var(--nova-#EEE5D3) !important;

    text-decoration: none !important;

    font-size: 14px;

    font-weight: 700;

    #FFFFFF-space: nowrap;
}


.admin-link:hover {
    color: #EEE5D3 !important;
}


/* =========================================================
   REVENUE CHART
   ========================================================= */

.revenue-chart {

    position: relative;

    width: 100%;

    height: 300px;

    padding: 10px 0;
}


.revenue-chart canvas {

    width: 100% !important;

    height: 100% !important;

    background: transparent !important;
}


/* =========================================================
   LOW STOCK
   ========================================================= */

.inventory-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.inventory-row {

    display: grid;

    grid-template-columns:
        minmax(180px, 1fr) minmax(120px, 2fr);

    align-items: center;

    gap: 20px;

    padding: 16px;

    background: var(--nova-panel-2);

    border:
        1px solid rgba(255, 255, 255, .07);

    border-radius: 13px;
}


.inventory-info {

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.inventory-info strong {
    color: #FFFFFF;

    font-size: 14px;
}


.inventory-info small {
    color: var(--nova-muted);

    font-size: 12px;
}


.stock-indicator {

    height: 8px;

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

    border-radius: 999px;

    overflow: hidden;
}


.stock-indicator span {

    display: block;

    height: 100%;

    min-width: 5px;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            var(--nova-#EEE5D3),
            var(--nova-#EEE5D3));
}


.healthy-stock {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 18px;

    color: var(--nova-muted);

    background: rgba(232, 215, 189, .06);

    border:
        1px solid rgba(232, 215, 189, .15);

    border-radius: 13px;
}


.healthy-dot {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: var(--nova-#111111);

    box-shadow:
        0 0 12px rgba(232, 215, 189, .7);
}


/* =========================================================
   LATEST ORDERS
   ========================================================= */

.latest-orders-panel {

    background:
        linear-gradient(145deg,
            #111111,
            #111111) !important;

    min-width: 0;
}


.orders-list {

    display: flex;

    flex-direction: column;

    width: 100%;

    gap: 10px;
}


/* EACH ORDER IS A HORIZONTAL ROW */

.latest-order {

    display: grid !important;

    grid-template-columns:
        minmax(280px, 1fr) 120px 110px !important;

    align-items: center !important;

    gap: 25px;

    width: 100%;

    min-height: 76px;

    padding:
        15px 18px;

    box-sizing: border-box;

    background:
        #111111 !important;

    color:
        #FFFFFF !important;

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius:
        14px;

    transition:
        background .2s ease,
        transform .2s ease,
        border-color .2s ease;
}


.latest-order:hover {

    background:
        #111111 !important;

    border-color:
        rgba(232, 215, 189, .20);

    transform:
        translateY(-1px);
}


/* =========================================================
   ORDER INFORMATION
   ========================================================= */

.latest-order-main {

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;

    gap: 3px;
}


.order-number {

    display: block;

    color:
        #FFFFFF !important;

    font-size:
        14px;

    font-weight:
        800;

    letter-spacing:
        .01em;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    #FFFFFF-space:
        nowrap;
}


.customer-name {

    display: block;

    color:
        #EEE5D3 !important;

    font-size:
        13px;

    font-weight:
        600;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    #FFFFFF-space:
        nowrap;
}


.customer-email {

    display: block;

    color:
        #EEE5D3 !important;

    font-size:
        12px;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    #FFFFFF-space:
        nowrap;
}


/* =========================================================
   ORDER AMOUNT
   ========================================================= */

.latest-order-amount {

    display:
        flex;

    justify-content:
        flex-end;

    align-items:
        center;
}


.latest-order-amount strong {

    color:
        #FFFFFF !important;

    font-size:
        16px;

    font-weight:
        800;

    #FFFFFF-space:
        nowrap;
}


/* =========================================================
   ORDER STATUS
   ========================================================= */

.latest-order-status {

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    width:
        100%;

    min-width:
        0;
}


.order-status {

    display:
        inline-flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    width:
        88px !important;

    height:
        34px !important;

    padding:
        0 12px !important;

    box-sizing:
        border-box !important;

    border-radius:
        999px !important;

    font-size:
        12px !important;

    font-weight:
        800 !important;

    line-height:
        1 !important;

    #FFFFFF-space:
        nowrap !important;
}


/* PLACED */

.status-placed {

    color:
        #EEE5D3 !important;

    background:
        rgba(232, 215, 189, .16) !important;

    border:
        1px solid rgba(232, 215, 189, .45) !important;
}


/* READY */

.status-ready {

    color:
        #EEE5D3 !important;

    background:
        rgba(232, 215, 189, .10) !important;

    border:
        1px solid rgba(232, 215, 189, .30) !important;
}


/* SHIPPED */

.status-shipped {

    color:
        #EEE5D3 !important;

    background:
        rgba(232, 215, 189, .10) !important;

    border:
        1px solid rgba(232, 215, 189, .30) !important;
}


/* DELIVERED */

.status-delivered {

    color:
        #EEE5D3 !important;

    background:
        rgba(232, 215, 189, .10) !important;

    border:
        1px solid rgba(232, 215, 189, .30) !important;
}


/* CANCELLED */

.status-cancelled {

    color:
        #EEE5D3 !important;

    background:
        rgba(232, 215, 189, .10) !important;

    border:
        1px solid rgba(232, 215, 189, .30) !important;
}


/* =========================================================
   EMPTY ORDERS
   ========================================================= */

.empty-orders {

    padding:
        35px 20px;

    text-align:
        center;

    color:
        var(--nova-muted);
}


/* =========================================================
   REMOVE #FFFFFF BACKGROUNDS
   ========================================================= */

.admin-main .panel,
.admin-main .table,
.admin-main .table-row,
.admin-main .latest-orders-panel,
.admin-main .orders-list,
.admin-main .latest-order {

    background-color:
        transparent;
}


.admin-main .latest-orders-panel {

    background:
        linear-gradient(145deg,
            #111111,
            #111111) !important;
}


.admin-main .latest-order {

    background-color:
        #111111 !important;
}


/* =========================================================
   GENERAL TEXT FIX
   ========================================================= */

.admin-main,
.admin-main p,
.admin-main span,
.admin-main small {

    color: inherit;
}


.admin-main .muted {

    color:
        var(--nova-muted) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .stat-grid {

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


    .latest-order {

        grid-template-columns:
            minmax(200px, 1fr) 100px 100px !important;

        gap: 15px;
    }

}


@media (max-width: 650px) {

    .admin-head h1 {
        font-size: 34px !important;
    }


    .dashboard-panel {
        padding: 20px !important;
    }


    .stat-grid {

        grid-template-columns:
            1fr;
    }


    .panel-head {

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .latest-order {

        display:
            grid !important;

        grid-template-columns:
            1fr auto !important;

        gap:
            10px 15px;

        padding:
            16px;
    }


    .latest-order-main {

        grid-column:
            1 / -1;
    }


    .latest-order-amount {

        justify-content:
            flex-start;
    }


    .latest-order-status {

        justify-content:
            flex-end !important;
    }


    .inventory-row {

        grid-template-columns:
            1fr;
    }

}


@media (max-width: 450px) {

    .latest-order {

        display:
            flex !important;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            12px;
    }


    .latest-order-amount {

        justify-content:
            flex-start;
    }


    .latest-order-status {

        justify-content:
            flex-start !important;
    }

}

.panel {
    background: #FFFFFF;
}

.admin-product {
    background: #FFFFFF;
}

.admin-toolbar input {
    background: #FFFFFF;
}

/* =========================================================
   NOVA ADMIN — FINAL DARK THEME
   ========================================================= */

.admin-body,
body {
    background:
        radial-gradient(circle at 10% 0%,
            rgba(232, 215, 189, .08),
            transparent 30%),
        radial-gradient(circle at 90% 10%,
            rgba(232, 215, 189, .10),
            transparent 30%),
        #111111 !important;

    color: #FFFFFF;
}


/* MAIN ADMIN AREA */

.admin-main {
    background: transparent !important;
    color: #FFFFFF;
}


/* ALL PANELS */

.panel,
.form-card,
.summary,
.center-card {
    background: rgba(17, 17, 17, .92) !important;
    border: 1px solid rgba(232, 215, 189, .14) !important;
    color: #FFFFFF !important;
    box-shadow: 0 20px 60px rgba(17, 17, 17, .25);
}


/* SECTION HEADINGS */

.panel h1,
.panel h2,
.panel h3,
.form-card h1,
.form-card h2,
.form-card h3 {
    color: #FFFFFF !important;
}

.panel p,
.panel span,
.panel small {
    color: #EEE5D3;
}


/* LATEST ORDERS */

.latest-orders {
    width: 100%;
}

.latest-order {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(232, 215, 189, .10);
}

.latest-order:last-child {
    border-bottom: 0;
}

.latest-order-main {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.latest-order-main strong {
    color: #FFFFFF;
    font-size: 15px;
    letter-spacing: .02em;
}

.latest-order-main span {
    color: #FFFFFF;
    font-size: 14px;
}

.latest-order-main small {
    color: #EEE5D3;
    font-size: 12px;
}

.latest-order-price {
    display: flex;
    align-items: center;
    gap: 18px;
}

.latest-order-price>strong {
    color: #FFFFFF;
    font-size: 17px;
    #FFFFFF-space: nowrap;
}


/* STATUS */

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 80px;

    padding: 8px 13px;

    border-radius: 999px;

    background: rgba(232, 215, 189, .18) !important;
    border: 1px solid rgba(232, 215, 189, .35) !important;

    color: #EEE5D3 !important;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.status-pill.placed {
    background: rgba(232, 215, 189, .18) !important;
    border-color: rgba(232, 215, 189, .38) !important;
    color: #EEE5D3 !important;
}

.status-pill.ready {
    background: rgba(232, 215, 189, .16) !important;
    border-color: rgba(232, 215, 189, .35) !important;
    color: #FFFFFF !important;
}

.status-pill.shipped {
    background: rgba(232, 215, 189, .18) !important;
    border-color: rgba(232, 215, 189, .38) !important;
    color: #EEE5D3 !important;
}

.status-pill.delivered {
    background: rgba(232, 215, 189, .14) !important;
    border-color: rgba(232, 215, 189, .38) !important;
    color: #EEE5D3 !important;
}

.status-pill.cancelled {
    background: rgba(232, 215, 189, .14) !important;
    border-color: rgba(232, 215, 189, .35) !important;
    color: #EEE5D3 !important;
}


/* STAT CARDS */

.stat {
    background:
        linear-gradient(145deg,
            rgba(17, 17, 17, .96),
            rgba(17, 17, 17, .96)) !important;

    border: 1px solid rgba(232, 215, 189, .13) !important;
    color: #FFFFFF !important;
}

.stat strong {
    color: #FFFFFF !important;
}


/* STOCK */

.stock-row {
    border-bottom: 1px solid rgba(232, 215, 189, .10) !important;
}

.stock-row strong {
    color: #FFFFFF !important;
}

.stock-row span,
.stock-row small {
    color: #EEE5D3 !important;
}


/* TABLE */

.table-row {
    border-bottom: 1px solid rgba(232, 215, 189, .10) !important;
}

.table-row strong {
    color: #FFFFFF !important;
}

.table-row small {
    color: #EEE5D3 !important;
}


/* ADMIN PRODUCT CARDS */

.admin-product {
    background: rgba(17, 17, 17, .94) !important;
    border: 1px solid rgba(232, 215, 189, .14) !important;
}

.admin-product h2 {
    color: #FFFFFF !important;
}

.admin-product p,
.admin-product span {
    color: #EEE5D3;
}

.admin-photo {
    background: #111111 !important;
}


/* INPUTS */

.admin-toolbar input,
input,
textarea,
select {
    background-color: #111111 !important;
    color: #FFFFFF !important;
    border-color: rgba(232, 215, 189, .20) !important;
}

input::placeholder,
textarea::placeholder {
    color: #EEE5D3 !important;
}


/* LINKS */

.panel a,
.section-head a,
.text-link {
    color: #EEE5D3 !important;
}

.panel a:hover,
.section-head a:hover,
.text-link:hover {
    color: #FFFFFF !important;
}


/* EMPTY */

.empty {
    color: #EEE5D3 !important;
    padding: 35px 10px;
    text-align: center;
}


/* MOBILE */

@media (max-width: 700px) {

    .latest-order {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .latest-order-price {
        justify-content: space-between;
    }

}

/* =========================================================
   NOVA AUTH
   ========================================================= */

.auth-card-wide {
    max-width: 620px;
}

.auth-subtitle {
    color: var(--muted);
    margin-bottom: 22px;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding: 5px;
    background: var(--mint);
    border-radius: 14px;
    margin: 25px 0 20px;
}

.auth-tab {
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 13px 10px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
}

.auth-tab.active {
    background: #FFFFFF;
    box-shadow: 0 5px 18px rgba(17, 17, 17, .07);
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

.field-label {
    display: block;
    text-align: left;
    font-size: .82rem;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 6px;
}

.auth-note {
    color: var(--muted);
    font-size: .78rem;
    margin-top: 12px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0 15px;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.auth-divider:before,
.auth-divider:after {
    content: "";
    height: 1px;
    background: var(--line);
    flex: 1;
}

.signup-form {
    display: grid;
    gap: 10px;
}

.otp-channel-switch {
    margin-top: 0;
}

.otp-debug {
    margin: 18px 0;
    padding: 18px;
    border: 1px solid rgba(232, 215, 189, .35);
    background: rgba(232, 215, 189, .08);
    border-radius: 14px;
    text-align: center;
}

.otp-debug small,
.otp-debug span {
    display: block;
    color: var(--muted);
}

.otp-debug strong {
    display: block;
    font-size: 2.2rem;
    letter-spacing: .25em;
    color: #EEE5D3;
    margin: 4px 0;
}

.otp-input {
    text-align: center;
    font-size: 2rem !important;
    letter-spacing: .3em;
    font-weight: 700;
}

.resend-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.resend-row a {
    color: #EEE5D3;
    font-weight: 700;
    text-decoration: none;
}


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

.site-footer {
    display: block;
    background: #111111;
    color: #FFFFFF;
    border: 1px solid rgba(232, 215, 189, .35);
    border-radius: 26px;
    margin: 0 40px 18px;
    padding: 48px 40px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 35px;
}

.footer-brand strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    letter-spacing: .12em;
}

.footer-brand p {
    color: #EEE5D3;
    max-width: 310px;
    line-height: 1.65;
}

.footer-column span {
    display: block;
    color: #EEE5D3;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 13px;
}

.footer-column a {
    display: block;
    color: #EEE5D3;
    text-decoration: none;
    margin: 9px 0;
    transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
    color: #FFFFFF;
    transform: translateX(2px);
}

.footer-contact small {
    color: #EEE5D3;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 38px;
    padding-top: 18px;
    color: #EEE5D3;
    font-size: .75rem;
}


@media (max-width: 900px) {

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

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 700px) {

    .site-footer {
        margin: 0 12px 12px;
        padding: 35px 22px 20px;
        border-radius: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 18px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 5px;
    }

}

/* Dashboard product thumbnails */
.dashboard-products .product-image,
.dashboard-products .product-thumb,
.dashboard-products table img {
    width: 70px !important;
    height: 90px !important;
    max-width: 70px !important;
    max-height: 90px !important;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.dashboard-product-thumb {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 16px;

    width: 100%;
    min-height: 78px;

    padding: 18px 20px;
    box-sizing: border-box;

    border: 2px solid rgba(255, 255, 255, .12);
    border-radius: 16px;

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

    cursor: pointer;

    transition:
        .2s ease;
}

.payment-option:hover {
    border-color: #EEE5D3;
    transform: translateY(-2px);
}

.payment-option input[type="radio"] {
    display: block !important;

    width: 22px !important;
    height: 22px !important;

    min-width: 22px !important;

    margin: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;

    appearance: auto !important;
    -webkit-appearance: radio !important;

    accent-color: #EEE5D3;

    cursor: pointer;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: #EEE5D3;

    background:
        rgba(232, 215, 189, .14);
}

.payment-option-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-option-info strong {
    color: #111111;
    font-size: 17px;
    font-weight: 700;
}

.payment-option-info small {
    color: #111111;
    font-size: 13px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 78px;
    padding: 18px 20px;
    box-sizing: border-box;
    border: 2px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    transition: .2s ease;
}

.payment-option:hover {
    border-color: #EEE5D3;
    transform: translateY(-2px);
}

.payment-option input[type="radio"] {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    appearance: auto !important;
    -webkit-appearance: radio !important;
    accent-color: #EEE5D3;
    cursor: pointer;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: #EEE5D3;
    background: rgba(232, 215, 189, .14);
}

.payment-option-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-option-info strong {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
}

.payment-option-info small {
    color: #EEE5D3;
    font-size: 13px;
}

.coupon-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.coupon-row input {
    flex: 1;
}

.coupon-message {
    margin-top: 10px;
    font-size: 14px;
}

.coupon-message.success {
    color: #EEE5D3;
}

.coupon-message.error {
    color: #EEE5D3;
}

.mini-item span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-item span small {
    opacity: .65;
    font-size: 12px;
}

.form-errors {
    margin-top: 15px;
}

.form-errors p {
    color: #EEE5D3;
    margin: 5px 0;
}

/* =========================================================
   DASHBOARD FORM
   ========================================================= */

.dashboard-form-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px 20px 70px;
}

.dashboard-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-form-header h1 {
    margin: 5px 0 0;
    font-size: 32px;
}


.dashboard-form {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(17, 17, 17, .25);
}


.dashboard-field {
    margin-bottom: 22px;
}

.dashboard-field>label {
    display: block;
    margin-bottom: 9px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
}


.dashboard-field input:not([type="checkbox"]):not([type="file"]),
.dashboard-field textarea,
.dashboard-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: #FFFFFF;
    font-size: 15px;
}


.dashboard-field textarea {
    min-height: 130px;
    resize: vertical;
}


.dashboard-field input:focus,
.dashboard-field textarea:focus,
.dashboard-field select:focus {
    outline: none;
    border-color: #EEE5D3;
    box-shadow: 0 0 0 3px rgba(232, 215, 189, .15);
}


.dashboard-field input[type="file"] {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .04);
    color: #FFFFFF;
    box-sizing: border-box;
}


.field-help {
    display: block;
    margin-top: 7px;
    color: #EEE5D3;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   CHECKBOX CARDS
   ========================================================= */

.dashboard-checkbox-card {
    margin: 14px 0;
    padding: 0;
}


.dashboard-checkbox {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 72px;
    padding: 17px 20px;
    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;

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

    cursor: pointer;
    transition: all .2s ease;
}


.dashboard-checkbox:hover {
    border-color: #EEE5D3;
    background: rgba(232, 215, 189, .08);
    transform: translateY(-1px);
}


.dashboard-checkbox input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;

    width: 23px !important;
    height: 23px !important;
    min-width: 23px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 2px solid #EEE5D3 !important;
    border-radius: 7px !important;

    background: transparent !important;

    cursor: pointer;
    position: relative;

    opacity: 1 !important;
    visibility: visible !important;
}


.dashboard-checkbox input[type="checkbox"]:checked {
    background: #EEE5D3 !important;
    border-color: #EEE5D3 !important;
}


.dashboard-checkbox input[type="checkbox"]:checked::after {
    content: "✓";

    position: absolute;

    left: 50%;
    top: 50%;

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

    color: #FFFFFF;
    font-size: 16px;
    font-weight: 900;
}


.checkbox-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.checkbox-content strong {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}


.checkbox-content small {
    color: #EEE5D3;
    font-size: 13px;
    line-height: 1.45;
}


.dashboard-checkbox:has(input:checked) {
    border-color: #EEE5D3;
    background: rgba(232, 215, 189, .12);
}


/* =========================================================
   ERRORS
   ========================================================= */

.form-errors,
.field-error {
    color: #EEE5D3;
    font-size: 13px;
}


.field-error {
    margin-top: 7px;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.dashboard-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}


@media (max-width: 700px) {

    .dashboard-form-page {
        padding: 20px 14px 50px;
    }

    .dashboard-form-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-form {
        padding: 20px;
    }

    .dashboard-form-actions {
        flex-direction: column;
    }

}

/* =========================================================
   NOVA BY ASH - ANALYTICS DASHBOARDS
   ========================================================= */

.analytics-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 35px 24px 80px;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.analytics-header h1 {
    margin: 5px 0;
    font-size: 38px;
    font-weight: 800;
}


/* NAV */

.analytics-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.analytics-nav a {
    display: inline-flex;
    align-items: center;
    padding: 11px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    color: #EEE5D3;
    text-decoration: none;
    font-weight: 700;
    transition: .2s ease;
}

.analytics-nav a:hover,
.analytics-nav a.active {
    color: #FFFFFF;
    border-color: #EEE5D3;
    background: rgba(232, 215, 189, .15);
}


/* STATISTICS */

.analytics-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.analytics-stat {
    min-height: 130px;
    padding: 22px;
    box-sizing: border-box;

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .10);

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .07),
            rgba(255, 255, 255, .025));

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

.analytics-stat span {
    color: #EEE5D3;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.analytics-stat strong {
    color: #FFFFFF;
    font-size: 28px;
}


/* PANELS */

.analytics-panel {
    margin-bottom: 25px;
    padding: 25px;

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .10);

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


.analytics-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.analytics-panel-head h2 {
    margin: 5px 0 0;
    font-size: 24px;
}

.analytics-panel-head a {
    color: #EEE5D3;
    text-decoration: none;
    font-weight: 700;
}


/* TABLE */

.analytics-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.analytics-table {
    width: 100%;
    border-collapse: collapse;
}

.analytics-table th {
    text-align: left;
    padding: 14px 12px;
    color: #EEE5D3;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.analytics-table td {
    padding: 16px 12px;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.analytics-table tr:hover td {
    background: rgba(232, 215, 189, .05);
}


/* PAYMENT */

.payment-summary-grid,
.payment-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.payment-summary-grid>div,
.payment-dashboard-card {
    padding: 25px;
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.payment-summary-grid span {
    display: block;
    color: #EEE5D3;
    margin-bottom: 8px;
}

.payment-summary-grid strong {
    color: #FFFFFF;
    font-size: 22px;
}

.payment-dashboard-card h2 {
    margin: 10px 0;
    font-size: 42px;
}

.payment-dashboard-card p {
    color: #EEE5D3;
}

.payment-dashboard-card strong {
    color: #FFFFFF;
    font-size: 22px;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .analytics-stats {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 700px) {

    .analytics-page {
        padding: 22px 14px 60px;
    }

    .analytics-header h1 {
        font-size: 30px;
    }

    .analytics-stats {
        grid-template-columns: 1fr 1fr;
    }

    .payment-summary-grid,
    .payment-dashboard-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .analytics-stats {
        grid-template-columns: 1fr;
    }

    .analytics-panel {
        padding: 18px;
    }

    .analytics-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .analytics-nav a {
        justify-content: center;
    }

}

/* =========================
   COUPON DASHBOARD TABLE
   ========================= */

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    border-bottom: 1px solid #FFFFFF;
    background: #FFFFFF;
    transition: 0.2s ease;
}

.table-row:hover {
    background: #FFFFFF;
}

.table-row strong {
    font-size: 16px;
    color: #111111;
}

.muted {
    margin-top: 4px;
    color: #EEE5D3;
    font-size: 13px;
}

.status {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    background: #FFFFFF;
    color: #111111;
    font-size: 12px;
    font-weight: 700;
}

.status-success {
    background: #FFFFFF;
    color: #EEE5D3;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 8px;
    background: #111111;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
}

.btn-small:hover {
    background: #111111;
    transform: translateY(-1px);
}

.empty {
    padding: 40px 20px;
    text-align: center;
    color: #EEE5D3;
    font-size: 15px;
}

/* Mobile */
@media (max-width: 800px) {
    .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .table-row>div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 500px) {
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .table-row>div:last-child {
        grid-column: auto;
    }

    .btn-small {
        width: 100%;
    }
}

/* ==========================================
   OFFERS / COUPONS DASHBOARD
   ========================================== */

.offer-table {
    width: 100%;
    overflow-x: auto;
}

.offer-table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    align-items: center;
    gap: 20px;
    min-width: 750px;
}

.offer-table-header {
    padding: 14px 20px;
    background: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #EEE5D3;
}

.table-row {
    padding: 20px;
    border-bottom: 1px solid #FFFFFF;
    transition: .2s ease;
}

.table-row:hover {
    background: #FFFFFF;
}

.table-row strong {
    color: #111111;
    font-size: 16px;
}

.muted {
    color: #EEE5D3;
    font-size: 13px;
}

.table-row .muted {
    margin-top: 5px;
}

.status {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #FFFFFF;
    color: #111111;
    font-size: 12px;
    font-weight: 700;
}

.status-success {
    background: #FFFFFF;
    color: #EEE5D3;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 9px;
    background: #111111;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.btn-small:hover {
    background: #111111;
    transform: translateY(-1px);
}

.offer-empty {
    padding: 70px 20px;
    text-align: center;
}

.offer-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111111;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
}

.offer-empty h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.offer-empty p {
    margin: 0 0 24px;
    color: #EEE5D3;
}

.offer-empty .btn {
    display: inline-flex;
}


/* MOBILE */

@media (max-width: 800px) {

    .offer-table {
        overflow-x: auto;
    }

    .admin-head {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

}

/* =====================================================
   INTERACTIVE OFFERS / COUPONS DASHBOARD
   ===================================================== */

.offers-page {
    animation: offersFadeIn .35s ease;
}

@keyframes offersFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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


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

.offers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================
   STAT CARDS
   ========================= */

.offer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 25px 0;
}

.offer-stat {
    padding: 22px;
    border: 1px solid #FFFFFF;
    border-radius: 16px;
    background: linear-gradient(135deg,
            #111111,
            #111111 50%,
            #111111);
    transition: .25s ease;
}

.offer-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 17, 17, .08);
}

.offer-stat span {
    display: block;
    color: #EEE5D3;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.offer-stat strong {
    display: block;
    margin-top: 8px;
    color: #111111;
    font-size: 30px;
}


/* =========================
   TOOLBAR
   ========================= */

.offers-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid #FFFFFF;
}

.offer-search {
    position: relative;
    flex: 1;
}

.offer-search span {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #EEE5D3;
    font-size: 22px;
}

.offer-search input,
.offer-filter {
    box-sizing: border-box;
    height: 45px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    background: #FFFFFF;
    color: #111111;
    outline: none;
    font-size: 14px;
    transition: .2s ease;
}

.offer-search input {
    width: 100%;
    padding: 0 15px 0 42px;
}

.offer-filter {
    width: 190px;
    padding: 0 12px;
    cursor: pointer;
}

.offer-search input:focus,
.offer-filter:focus {
    border-color: #111111;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .05);
}


/* =========================
   TABLE
   ========================= */

.offer-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.offer-table {
    min-width: 800px;
}

.offer-table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 150px;
    align-items: center;
    gap: 20px;
}

.offer-table-header {
    padding: 14px 20px;
    background: linear-gradient(135deg,
            #111111,
            #111111 50%,
            #111111);
    border-bottom: 1px solid linear-gradient(135deg,
            #111111,
            #111111 50%,
            #111111);
    color: #EEE5D3;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.table-row {
    padding: 18px 20px;
    border-bottom: 1px solid #FFFFFF;
    background: #FFFFFF;
    transition: .2s ease;
}

.table-row:hover {
    background: #FFFFFF;
}


/* =========================
   COUPON INFO
   ========================= */

.coupon-info {
    display: flex;
    align-items: center;
    gap: 13px;
}

.coupon-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: #111111;
    color: #FFFFFF;
    font-weight: 800;
}

.coupon-info strong {
    display: block;
    color: #111111;
    font-size: 15px;
}

.coupon-code {
    display: block;
    padding: 0;
    margin-top: 4px;
    border: 0;
    background: transparent;
    color: #EEE5D3;
    font-family: monospace;
    font-size: 13px;
    cursor: pointer;
    transition: .2s ease;
}

.coupon-code:hover {
    color: #111111;
}

.coupon-code.copied {
    color: #EEE5D3;
    font-weight: 700;
}


/* =========================
   DISCOUNT
   ========================= */

.discount-value strong {
    color: #111111;
    font-size: 19px;
}

.discount-value span {
    margin-left: 3px;
    color: #EEE5D3;
    font-size: 12px;
}


/* =========================
   STATUS
   ========================= */

.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #FFFFFF;
    color: #EEE5D3;
    font-size: 12px;
    font-weight: 700;
}

.status i {
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
    background: #EEE5D3;
}

.status-success {
    background: #FFFFFF;
    color: #EEE5D3;
}

.status-success i {
    background: #EEE5D3;
}


/* =========================
   USAGE
   ========================= */

.usage-cell {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #EEE5D3;
}

.usage-cell strong {
    color: #111111;
}


/* =========================
   ACTIONS
   ========================= */

.coupon-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.view-btn {
    padding: 8px 12px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    background: #FFFFFF;
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.view-btn:hover {
    border-color: #111111;
    background: #111111;
    color: #FFFFFF;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 0;
    border-radius: 8px;
    background: #111111;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.btn-small:hover {
    background: #111111;
    transform: translateY(-1px);
}


/* =========================
   EMPTY STATE
   ========================= */

.offer-empty {
    padding: 75px 20px;
    text-align: center;
}

.offer-empty-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111111;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
}

.offer-empty h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 21px;
}

.offer-empty p {
    margin: 0 0 22px;
    color: #EEE5D3;
}


/* =========================
   NO RESULTS
   ========================= */

.no-results {
    display: none;
    padding: 45px;
    text-align: center;
    color: #EEE5D3;
}


/* =====================================================
   COUPON DETAILS MODAL
   ===================================================== */

.coupon-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.coupon-modal.open {
    display: flex;
}

.coupon-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .55);
    backdrop-filter: blur(5px);
}

.coupon-modal-card {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg,
            #111111,
            #111111 50%,
            #111111);
    box-shadow: 0 25px 80px rgba(17, 17, 17, .25);
    animation: modalIn .25s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #FFFFFF;
    color: #111111;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}

.modal-close:hover {
    background: #111111;
    color: #FFFFFF;
}

.coupon-modal-card h2 {
    margin: 5px 0 20px;
    color: #111111;
    font-size: 27px;
}


/* MODAL CODE */

.modal-code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px;
    border: 1px dashed #EEE5D3;
    border-radius: 12px;
    background: #FFFFFF;
}

.modal-code-box strong {
    color: #111111;
    font-family: monospace;
    font-size: 18px;
    letter-spacing: .08em;
}

.modal-code-box button {
    padding: 8px 13px;
    border: 0;
    border-radius: 8px;
    background: #111111;
    color: #FFFFFF;
    font-weight: 700;
    cursor: pointer;
}


/* MODAL DISCOUNT */

.modal-discount {
    padding: 25px 0;
    text-align: center;
}

.modal-discount span {
    display: block;
    color: #111111;
    font-size: 48px;
    font-weight: 900;
}

.modal-discount small {
    color: #EEE5D3;
    font-weight: 800;
    letter-spacing: .1em;
}


/* MODAL DETAILS */

.modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    border: 1px solid #FFFFFF;
    border-radius: 12px;
    background: #FFFFFF;
}

.modal-details>div {
    padding: 14px;
    background: #FFFFFF;
}

.modal-details span {
    display: block;
    margin-bottom: 4px;
    color: #EEE5D3;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-details strong {
    color: #111111;
    font-size: 14px;
}

.modal-edit {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 800px) {

    .offer-stats {
        grid-template-columns: 1fr 1fr;
    }

    .offers-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .offers-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .offer-filter {
        width: 100%;
    }

}

@media (max-width: 500px) {

    .offer-stats {
        grid-template-columns: 1fr;
    }

    .coupon-modal-card {
        padding: 23px;
    }

    .modal-details {
        grid-template-columns: 1fr;
    }

    .coupon-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .coupon-actions a,
    .coupon-actions button {
        width: 100%;
    }

}

/* =====================================================
   CREATE COUPON BUTTON - INTERACTIVE
   ===================================================== */

.admin-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 0 22px;

    border: 0;
    border-radius: 12px;

    background:
        linear-gradient(135deg,
            #111111,
            #EEE5D3,
            #EEE5D3);

    color: #FFFFFF !important;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    overflow: hidden;

    box-shadow:
        0 8px 24px rgba(232, 215, 189, .25);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}


/* Shine */

.admin-btn-primary::before {
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);

    transform: skewX(-20deg);

    transition: left .55s ease;
}


/* Hover */

.admin-btn-primary:hover {
    transform: translateY(-3px);

    filter: brightness(1.08);

    box-shadow:
        0 14px 32px rgba(232, 215, 189, .35);
}

.admin-btn-primary:hover::before {
    left: 140%;
}


/* Click */

.admin-btn-primary:active {
    transform: translateY(-1px) scale(.98);

    box-shadow:
        0 6px 16px rgba(232, 215, 189, .25);
}


/* Keyboard focus */

.admin-btn-primary:focus-visible {
    outline: 3px solid rgba(232, 215, 189, .35);
    outline-offset: 3px;
}


/* Mobile */

@media (max-width: 600px) {

    .admin-btn-primary {
        width: 100%;
    }

}

/* =====================================================
   INTERACTIVE NEON COUPON MODAL
   ===================================================== */

.coupon-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;

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

    padding: 25px;

    opacity: 0;
    visibility: hidden;

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


.coupon-modal.open {
    display: flex;

    opacity: 1;
    visibility: visible;
}


/* BACKDROP */

.coupon-modal-backdrop {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(232, 215, 189, .12),
            rgba(17, 17, 17, .88));

    backdrop-filter: blur(12px);
}


/* CARD */

.coupon-modal-card {
    position: relative;
    z-index: 2;

    width: min(570px, 100%);

    max-height: calc(100vh - 50px);

    overflow-y: auto;

    padding: 32px;

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

    border-radius: 24px;

    background:
        linear-gradient(145deg,
            #111111,
            #111111);

    color: #FFFFFF;

    box-shadow:
        0 30px 100px rgba(17, 17, 17, .65),
        0 0 50px rgba(232, 215, 189, .14);

    transform:
        translateY(20px) scale(.96);

    transition:
        transform .28s cubic-bezier(.2, .8, .2, 1);
}


.coupon-modal.open .coupon-modal-card {
    transform:
        translateY(0) scale(1);
}


/* SCROLLBAR */

.coupon-modal-card::-webkit-scrollbar {
    width: 6px;
}

.coupon-modal-card::-webkit-scrollbar-thumb {
    background: #EEE5D3;
    border-radius: 20px;
}


/* CLOSE */

.modal-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 40px;
    height: 40px;

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

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

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

    color: #FFFFFF;

    font-size: 24px;

    cursor: pointer;

    transition: .2s ease;
}


.modal-close:hover {
    background: #EEE5D3;

    transform:
        rotate(90deg) scale(1.08);

    box-shadow:
        0 0 20px rgba(232, 215, 189, .4);
}


/* HEADING */

.coupon-modal-heading {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    padding-right: 45px;
}


.coupon-modal-icon {
    width: 52px;
    height: 52px;

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

    flex-shrink: 0;

    border-radius: 15px;

    background:
        linear-gradient(135deg,
            #EEE5D3,
            #EEE5D3);

    color: #FFFFFF;

    font-size: 25px;
    font-weight: 900;

    box-shadow:
        0 8px 25px rgba(232, 215, 189, .35);
}


.coupon-modal-heading h2 {
    margin: 0;

    color: #FFFFFF;

    font-size: 25px;
    font-weight: 850;
}


.coupon-modal-heading p {
    margin: 4px 0 0;

    color: #EEE5D3;

    font-size: 13px;
}


/* CODE BOX */

.modal-code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 17px 18px;

    border: 1px dashed rgba(232, 215, 189, .35);

    border-radius: 14px;

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


.modal-code-box span {
    display: block;

    margin-bottom: 6px;

    color: #EEE5D3;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;
}


.modal-code-box strong {
    color: #FFFFFF;

    font-family: monospace;

    font-size: 19px;

    letter-spacing: .08em;
}


.modal-code-box button {
    min-width: 80px;

    padding: 10px 16px;

    border: 0;

    border-radius: 10px;

    background: #FFFFFF;

    color: #111111;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition: .2s ease;
}


.modal-code-box button:hover {
    background:
        linear-gradient(135deg,
            #EEE5D3,
            #EEE5D3);

    color: #FFFFFF;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(232, 215, 189, .3);
}


.modal-code-box button.copied {
    background: #EEE5D3;
    color: #111111;
}


/* DISCOUNT */

.modal-discount {
    padding: 28px 0;

    text-align: center;
}


.modal-discount span {
    display: block;

    background:
        linear-gradient(90deg,
            #FFFFFF,
            #EEE5D3,
            #EEE5D3);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

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

    font-weight: 950;
}


.modal-discount small {
    display: block;

    margin-top: 9px;

    color: #EEE5D3;

    font-size: 11px;
    font-weight: 850;

    letter-spacing: .16em;
}


/* DETAILS */

.modal-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 15px;

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


.modal-details>div {
    min-height: 76px;

    padding: 15px 16px;

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

    border-right: 1px solid rgba(255, 255, 255, .07);

    border-bottom: 1px solid rgba(255, 255, 255, .07);

    transition: .2s ease;
}


.modal-details>div:hover {
    background:
        rgba(232, 215, 189, .10);
}


.modal-details span {
    display: block;

    margin-bottom: 7px;

    color: #EEE5D3;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .06em;
}


.modal-details strong {
    color: #FFFFFF;

    font-size: 14px;
    font-weight: 750;
}


.modal-status-active {
    color: #EEE5D3 !important;
}


.modal-status-inactive {
    color: #EEE5D3 !important;
}


/* EDIT BUTTON */

.modal-edit {
    width: 100%;

    margin-top: 22px;

    min-height: 52px;

    justify-content: center;
}


/* BODY LOCK */

body.coupon-modal-open {
    overflow: hidden;
}


/* MOBILE */

@media (max-width: 600px) {

    .coupon-modal {
        padding: 12px;
    }


    .coupon-modal-card {
        padding: 22px;

        border-radius: 20px;

        max-height: calc(100vh - 24px);
    }


    .coupon-modal-heading h2 {
        font-size: 21px;
    }


    .modal-code-box {
        align-items: stretch;

        flex-direction: column;
    }


    .modal-code-box button {
        width: 100%;
    }


    .modal-discount span {
        font-size: 45px;
    }


    .modal-details {
        grid-template-columns: 1fr;
    }


    .modal-details>div {
        border-right: 0;
    }

}

/* =========================================================
   NOVA BY ASH — STOREFRONT INTERACTIVE UI
   ========================================================= */


/* =========================================================
   GLOBAL BUTTON SYSTEM
   ========================================================= */

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 0 22px;

    border: 0;
    border-radius: 12px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    cursor: pointer;

    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease,
        background .2s ease;
}


/* SHINE */

.btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .30),
            transparent);

    transform: skewX(-20deg);

    transition: left .55s ease;

    pointer-events: none;
}


.btn:hover::before {
    left: 140%;
}


/* PRIMARY */

.btn.primary {
    background:
        linear-gradient(135deg,
            #EEE5D3,
            #EEE5D3);

    color: #FFFFFF;

    box-shadow:
        0 9px 25px rgba(232, 215, 189, .25);
}


.btn.primary:hover {
    transform: translateY(-3px);

    filter: brightness(1.08);

    box-shadow:
        0 15px 35px rgba(232, 215, 189, .38);
}


.btn.primary:active {
    transform:
        translateY(-1px) scale(.97);

    box-shadow:
        0 6px 15px rgba(232, 215, 189, .25);
}


/* GHOST */

.btn.ghost {
    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(232, 215, 189, .25);

    color: inherit;
}


.btn.ghost:hover {
    transform: translateY(-2px);

    background: #111111;

    color: #FFFFFF;

    border-color: #111111;

    box-shadow:
        0 10px 25px rgba(17, 17, 17, .14);
}


.btn.ghost:active {
    transform: scale(.97);
}


/* FULL */

.btn.full {
    width: 100%;
}


/* GROW */

.btn.grow {
    flex: 1;
}


/* DISABLED */

.btn:disabled {
    opacity: .45;

    cursor: not-allowed;

    transform: none !important;

    box-shadow: none !important;

    filter: grayscale(.4);
}


/* FOCUS */

.btn:focus-visible {
    outline: 3px solid rgba(232, 215, 189, .35);

    outline-offset: 3px;
}


/* ICON ANIMATION */

.btn svg,
.btn i {
    transition:
        transform .2s ease;
}


.btn:hover svg,
.btn:hover i {
    transform: translateX(4px);
}


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

.nav nav a {
    position: relative;

    transition:
        color .2s ease,
        transform .2s ease;
}


.nav nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(90deg,
            #EEE5D3,
            #EEE5D3);

    transform: translateX(-50%);

    transition: width .25s ease;
}


.nav nav a:hover {
    transform: translateY(-2px);
}


.nav nav a:hover::after {
    width: 70%;
}


/* NAV ICON BUTTONS */

.icon-btn {
    position: relative;

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

    width: 44px;
    height: 44px;

    border-radius: 12px;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.icon-btn:hover {
    transform:
        translateY(-3px) scale(1.04);

    background: rgba(232, 215, 189, .10);

    box-shadow:
        0 8px 22px rgba(232, 215, 189, .15);
}


.icon-btn:active {
    transform: scale(.92);
}


.icon-btn svg {
    transition:
        transform .2s ease;
}


.icon-btn:hover svg {
    transform: scale(1.12);
}


/* =========================================================
   PRODUCT CARDS
   ========================================================= */

.product-card {
    position: relative;

    transition:
        transform .3s cubic-bezier(.2, .8, .2, 1),
        box-shadow .3s ease;
}


.product-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(17, 17, 17, .10);
}


/* PRODUCT IMAGE */

.product-media {
    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 16px;
}


.product-media img {
    display: block;

    width: 100%;

    transition:
        transform .55s cubic-bezier(.2, .8, .2, 1),
        filter .35s ease;
}


.product-card:hover .product-media img {
    transform: scale(1.06);

    filter: brightness(1.03);
}


/* IMAGE OVERLAY */

.product-media::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 60%,
            rgba(17, 17, 17, .08));

    opacity: 0;

    transition: opacity .3s ease;

    pointer-events: none;
}


.product-card:hover .product-media::after {
    opacity: 1;
}


/* =========================================================
   WISHLIST HEART
   ========================================================= */

.heart {
    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}


.heart:hover {
    transform:
        translateY(-2px) scale(1.08);

    box-shadow:
        0 8px 20px rgba(232, 215, 189, .15);
}


.heart:active {
    transform: scale(.86);
}


.heart svg {
    transition:
        transform .2s ease,
        fill .2s ease;
}


.heart:hover svg {
    transform: scale(1.15);
}


.heart.filled svg {
    fill: currentColor;
}


/* =========================================================
   PRODUCT THUMBNAILS
   ========================================================= */

.thumb {
    position: relative;

    overflow: hidden;

    border: 2px solid transparent;

    border-radius: 10px;

    cursor: pointer;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.thumb:hover {
    transform:
        translateY(-3px) scale(1.03);

    border-color: rgba(232, 215, 189, .55);

    box-shadow:
        0 8px 20px rgba(17, 17, 17, .10);
}


.thumb.active {
    border-color: #EEE5D3;

    box-shadow:
        0 0 0 3px rgba(232, 215, 189, .12);
}


.thumb img {
    transition:
        transform .3s ease;
}


.thumb:hover img {
    transform: scale(1.08);
}


/* =========================================================
   SIZE SELECTOR
   ========================================================= */

.size-row label span {
    display: inline-flex;

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

    min-width: 48px;
    height: 44px;

    padding: 0 14px;

    border: 1px solid #FFFFFF;

    border-radius: 10px;

    cursor: pointer;

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}


.size-row label span:hover {
    transform: translateY(-2px);

    border-color: #EEE5D3;

    box-shadow:
        0 7px 18px rgba(232, 215, 189, .12);
}


.size-row input:checked+span {
    background:
        linear-gradient(135deg,
            #EEE5D3,
            #EEE5D3);

    color: #FFFFFF;

    border-color: transparent;

    box-shadow:
        0 8px 20px rgba(232, 215, 189, .25);

    transform: translateY(-2px);
}


/* =========================================================
   QUANTITY CONTROLS
   ========================================================= */

.qty {
    transition:
        box-shadow .2s ease,
        transform .2s ease;
}


.qty:focus-within {
    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(232, 215, 189, .12);
}


.qty button {
    transition:
        background .2s ease,
        color .2s ease,
        transform .15s ease;
}


.qty button:hover {
    background:
        linear-gradient(135deg,
            #EEE5D3,
            #EEE5D3);

    color: #FFFFFF;
}


.qty button:active {
    transform: scale(.85);
}


.qty input {
    transition:
        background .2s ease;
}


.qty input:focus {
    background: #FFFFFF;

    outline: none;
}


/* =========================================================
   CART ITEMS
   ========================================================= */

.cart-item {
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.cart-item:hover {
    transform: translateX(4px);

    box-shadow:
        0 10px 30px rgba(17, 17, 17, .07);
}


/* CART IMAGE */

.cart-thumb {
    overflow: hidden;

    border-radius: 12px;
}


.cart-thumb img {
    transition:
        transform .35s ease;
}


.cart-item:hover .cart-thumb img {
    transform: scale(1.06);
}


/* =========================================================
   CHECKOUT SUMMARY
   ========================================================= */

.summary {
    transition:
        box-shadow .3s ease,
        transform .3s ease;
}


.summary:hover {
    transform: translateY(-3px);

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


/* =========================================================
   FORM INPUTS
   ========================================================= */

input,
textarea,
select {
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease,
        background .2s ease;
}


input:hover,
textarea:hover,
select:hover {
    border-color: rgba(232, 215, 189, .45);
}


input:focus,
textarea:focus,
select:focus {
    border-color: #EEE5D3 !important;

    box-shadow:
        0 0 0 4px rgba(232, 215, 189, .10) !important;

    outline: none;

    background: #FFFFFF;
}


/* =========================================================
   LOGIN / SIGNUP / OTP
   ========================================================= */

.auth-card {
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.auth-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 55px rgba(17, 17, 17, .10);
}


.segmented .seg {
    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}


.segmented .seg:hover {
    transform: translateY(-2px);
}


.segmented .seg:active {
    transform: scale(.96);
}


/* OTP */

.otp-input {
    letter-spacing: .3em;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


.otp-input:focus {
    transform: scale(1.02);
}


/* =========================================================
   TEXT LINKS
   ========================================================= */

.text-link,
.empty a,
.page-head a {
    position: relative;

    transition:
        color .2s ease;
}


.text-link:hover,
.empty a:hover,
.page-head a:hover {
    color: #EEE5D3;
}


/* =========================================================
   ANNOUNCEMENT
   ========================================================= */

.announcement {
    position: relative;

    overflow: hidden;
}


.announcement::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 40%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);

    transform: skewX(-20deg);

    animation:
        announcementShine 5s infinite;
}


@keyframes announcementShine {

    0% {
        left: -100%;
    }

    35% {
        left: 130%;
    }

    100% {
        left: 130%;
    }

}


/* =========================================================
   PAGE LOAD
   ========================================================= */

main {
    animation:
        novaPageIn .35s ease;
}


@keyframes novaPageIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

}


/* =========================================================
   HOVERABLE MICRO-GRID
   ========================================================= */

.micro-grid>div {
    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.micro-grid>div:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(17, 17, 17, .07);
}


/* =========================================================
   REVIEW PANEL
   ========================================================= */

.review-panel {
    transition:
        box-shadow .25s ease;
}


.review-panel:hover {
    box-shadow:
        0 15px 35px rgba(17, 17, 17, .06);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .btn {
        min-height: 50px;
    }

    .product-card:hover {
        transform: translateY(-4px);
    }

    .cart-item:hover {
        transform: none;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}

/* =========================================================
   NOVA BY ASH — FINAL WHITE / BLACK / BEIGE
   ATTRACTIVE INTERACTIVE MOTION LAYER
   ========================================================= */

:root {
    --bg: #FFFFFF;
    --bg-2: #FFFFFF;
    --surface: #FFFFFF;
    --surface-2: #EEE5D3;
    --surface-3: #EEE5D3;
    --text: #111111;
    --muted: #111111;
    --muted-2: #111111;
    --line: rgba(17, 17, 17, .14);
    --black: #111111;
    --white: #FFFFFF;
    --beige: #EEE5D3;
    --accent: #EEE5D3;
    --gradient: linear-gradient(135deg, #111111 0%, #EEE5D3 100%);
    --gradient-soft: linear-gradient(135deg, rgba(232, 215, 189, .34), rgba(255, 255, 255, .96));
    --shadow: 0 20px 60px rgba(17, 17, 17, .10);
    --shadow-hover: 0 28px 75px rgba(17, 17, 17, .16);
    --radius: 24px;
}

/* Global contrast guard */
body,
main,
section,
article,
aside,
header,
footer,
nav,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
label,
span,
small,
strong,
b,
li {
    text-shadow: none;
}

body {
    background: #FFFFFF !important;
    color: #111111 !important;
    overflow-x: hidden;
}

body::before {
    background-image:
        linear-gradient(rgba(17, 17, 17, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: novaGridDrift 18s linear infinite;
}

a {
    color: #111111;
}

a:hover {
    color: #111111;
}

/* Smooth page entrance */
main {
    animation: novaPageIn .65s ease both;
}

/* Announcement */
.announcement {
    background: #111111 !important;
    color: #FFFFFF !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
    position: relative;
    overflow: hidden;
}

.announcement span {
    color: #EEE5D3 !important;
}

.announcement::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    transform: translateX(-140%);
    animation: novaShimmer 5s ease-in-out infinite;
}

/* Navbar */
.nav {
    background: rgba(255, 255, 255, .94) !important;
    color: #111111 !important;
    border-bottom: 1px solid rgba(17, 17, 17, .12) !important;
    box-shadow: 0 8px 28px rgba(17, 17, 17, .05);
    backdrop-filter: blur(18px);
    transition: box-shadow .3s ease, background .3s ease, transform .3s ease;
}

.brand,
.brand span,
.nav nav a,
.nav .icon-btn {
    color: #111111 !important;
}

.brand small,
.eyebrow,
.text-link {
    color: #111111 !important;
}

.brand img {
    filter: none !important;
    transition: transform .35s ease;
}

.brand:hover img {
    transform: rotate(-4deg) scale(1.06);
}

.nav nav a::after {
    background: #111111 !important;
}

.nav nav a:hover {
    color: #111111 !important;
    transform: translateY(-1px);
}

.icon-btn {
    background: #FFFFFF !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .16) !important;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.icon-btn:hover {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: #111111 !important;
    box-shadow: 0 10px 25px rgba(17, 17, 17, .10) !important;
    transform: translateY(-3px) scale(1.03);
}

.count {
    background: #111111 !important;
    color: #FFFFFF !important;
}

/* Typography */
.eyebrow {
    color: #111111 !important;
}

.muted {
    color: #111111 !important;
}

.hint {
    color: #111111 !important;
}

.hero h1,
.page-head h1,
.shop-head h1,
.auth-card h1,
.center-card h1,
.section-head h2,
.form-card h2,
.summary h2 {
    color: #111111 !important;
}

.hero h1 em,
.statement h2 span {
    background: linear-gradient(90deg, #111111, #EEE5D3, #111111) !important;
    background-size: 220% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    animation: novaTextSweep 5s ease-in-out infinite;
}

/* Hero */
.hero {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .13) !important;
    box-shadow: var(--shadow) !important;
}

.hero::after {
    border-color: rgba(17, 17, 17, .13) !important;
    box-shadow: 0 0 70px rgba(17, 17, 17, .07) !important;
    animation: novaOrbitPulse 6s ease-in-out infinite;
}

.lead {
    color: #111111 !important;
}

.hero-card {
    background: #111111 !important;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, .18) !important;
    box-shadow: 0 28px 70px rgba(17, 17, 17, .20) !important;
    animation: novaFloat 5s ease-in-out infinite;
}

.hero-card:hover {
    box-shadow: 0 34px 85px rgba(17, 17, 17, .26) !important;
}

.hero-card span,
.hero-card small,
.hero-card b {
    color: #FFFFFF !important;
}

.hero-card strong {
    background: linear-gradient(135deg, #FFFFFF 20%, #EEE5D3 80%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

.orbit {
    border-color: rgba(17, 17, 17, .18) !important;
}

.orbit.two {
    border-color: rgba(17, 17, 17, .24) !important;
}

/* Buttons — high contrast and interactive */
.btn {
    position: relative;
    overflow: hidden;
    color: #FFFFFF !important;
    background: #111111 !important;
    border-color: #111111 !important;
    box-shadow: 0 10px 24px rgba(17, 17, 17, .10);
    transition: transform .25s cubic-bezier(.2, .8, .2, 1),
        box-shadow .25s ease,
        background .25s ease,
        color .25s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .18) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform .6s ease;
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn:hover {
    color: #FFFFFF !important;
    background: #111111 !important;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(17, 17, 17, .17);
}

.btn:active {
    transform: translateY(-1px) scale(.98);
}

.btn.ghost {
    color: #111111 !important;
    background: #FFFFFF !important;
    border-color: #111111 !important;
}

.btn.ghost:hover {
    color: #111111 !important;
    background: #EEE5D3 !important;
}

.btn.dark {
    color: #FFFFFF !important;
    background: #111111 !important;
}

.btn.primary {
    color: #FFFFFF !important;
    background: #111111 !important;
}

/* Promo */
.promo,
.shop-head {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .12) !important;
    box-shadow: var(--shadow);
}

.promo p,
.page-head p:not(.eyebrow),
.shop-head p:not(.eyebrow) {
    color: #111111 !important;
}

.promo strong,
.pill {
    color: #111111 !important;
}

.pill {
    background: #EEE5D3 !important;
}

/* New drop */
.new-drop-card,
.new-drop-feature {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .13) !important;
    box-shadow: var(--shadow) !important;
    transition: transform .35s ease, box-shadow .35s ease;
}

.new-drop-card:hover,
.new-drop-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover) !important;
}

.new-drop-card::before {
    border-color: rgba(17, 17, 17, .12) !important;
    box-shadow: none !important;
    animation: novaOrbitPulse 7s ease-in-out infinite;
}

.new-drop-image,
.new-drop-feature-image {
    background: #EEE5D3 !important;
}

.new-drop-image img,
.new-drop-feature-image img {
    filter: drop-shadow(0 25px 28px rgba(17, 17, 17, .20)) !important;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.new-drop-image:hover img,
.new-drop-feature-image:hover img {
    transform: scale(1.07) translateY(-8px) rotate(-1deg);
    filter: drop-shadow(0 32px 35px rgba(17, 17, 17, .24)) !important;
}

.new-drop-badge,
.new-drop-label {
    background: #111111 !important;
    color: #FFFFFF !important;
    border-color: #111111 !important;
}

.new-drop-category {
    color: #111111 !important;
}

.new-drop-description,
.new-drop-stock,
.stock-text {
    color: #111111 !important;
}

.new-drop-price strong {
    color: #111111 !important;
}

.new-drop-price del {
    color: #111111 !important;
}

.stock-dot {
    background: #111111 !important;
    box-shadow: 0 0 0 5px rgba(17, 17, 17, .08) !important;
    animation: novaDotPulse 1.8s ease-in-out infinite;
}

.stock-dot.out {
    background: #111111 !important;
    animation: none;
}

/* Product cards */
.product-card {
    background: #FFFFFF !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .13) !important;
    box-shadow: 0 8px 25px rgba(17, 17, 17, .05);
}

.product-card:hover {
    border-color: #111111 !important;
    box-shadow: 0 22px 50px rgba(17, 17, 17, .14) !important;
    transform: translateY(-9px) !important;
}

.product-media,
.placeholder {
    background: #EEE5D3 !important;
}

.product-media img {
    transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.07);
}

.product-meta p,
.cart-copy p,
.cart-copy span,
.price del {
    color: #111111 !important;
}

.product-meta h3,
.price {
    color: #111111 !important;
}

.heart {
    background: #FFFFFF !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .14) !important;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.heart:hover,
.heart.filled {
    color: #111111 !important;
    background: #EEE5D3 !important;
    border-color: #111111 !important;
    box-shadow: none !important;
    transform: scale(1.08) rotate(-4deg);
}

.save {
    color: #111111 !important;
}

.sale-badge,
.stock-badge,
.new-badge {
    background: #111111 !important;
    color: #FFFFFF !important;
    border-color: #111111 !important;
}

/* Statement */
.statement {
    border-color: rgba(17, 17, 17, .12) !important;
    background: #FFFFFF !important;
}

.statement p {
    color: #111111 !important;
}

/* Search + filters */
.searchbar {
    background: #FFFFFF !important;
    border-color: rgba(17, 17, 17, .16) !important;
    box-shadow: 0 8px 25px rgba(17, 17, 17, .06);
}

.searchbar input {
    color: #111111 !important;
    background: transparent !important;
}

.searchbar input::placeholder {
    color: #111111 !important;
}

.searchbar button {
    background: #111111 !important;
    color: #FFFFFF !important;
}

.chip {
    color: #111111 !important;
    background: #FFFFFF !important;
    border-color: rgba(17, 17, 17, .16) !important;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.chip:hover,
.chip.active {
    color: #111111 !important;
    background: #EEE5D3 !important;
    border-color: #111111 !important;
    transform: translateY(-2px);
}

/* Forms — explicit contrast */
input,
select,
textarea {
    color: #111111 !important;
    background: #FFFFFF !important;
    border-color: rgba(17, 17, 17, .18) !important;
    caret-color: #111111 !important;
}

input::placeholder,
textarea::placeholder {
    color: #111111 !important;
    opacity: 1 !important;
}

input:focus,
textarea:focus,
select:focus {
    color: #111111 !important;
    background: #FFFFFF !important;
    border-color: #111111 !important;
    box-shadow: 0 0 0 4px rgba(232, 215, 189, .70) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: #111111 !important;
    -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset !important;
    box-shadow: 0 0 0 1000px #FFFFFF inset !important;
    caret-color: #111111 !important;
}

/* Auth / OTP */
.auth-page,
.auth-wrap {
    background: #EEE5D3 !important;
    color: #111111 !important;
}

.auth-page::before,
.auth-wrap::before,
.auth-page::after,
.auth-wrap::after {
    background: rgba(17, 17, 17, .06) !important;
    filter: blur(90px) !important;
    animation: novaBlob 8s ease-in-out infinite alternate;
}

.auth-card {
    background: #FFFFFF !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .14) !important;
    box-shadow: 0 30px 80px rgba(17, 17, 17, .16) !important;
    animation: novaCardIn .7s cubic-bezier(.2, .8, .2, 1) both;
}

.auth-card h1,
.auth-card h2,
.auth-card h3,
.auth-card label,
.form-label {
    color: #111111 !important;
}

.auth-card>p:not(.eyebrow),
.auth-note,
.auth-card small,
.login-info {
    color: #111111 !important;
}

.auth-card .eyebrow,
.auth-card a {
    color: #111111 !important;
}

.auth-card a:hover {
    color: #111111 !important;
    text-decoration: underline;
}

.auth-logo {
    background: #111111 !important;
    border-color: #111111 !important;
    box-shadow: 0 12px 28px rgba(17, 17, 17, .15) !important;
    transition: transform .3s ease;
}

.auth-logo:hover {
    transform: translateY(-3px) rotate(-3deg);
}

.auth-card input:not([type="hidden"]),
.auth-input,
.otp-input {
    color: #111111 !important;
    background: #FFFFFF !important;
    border-color: rgba(17, 17, 17, .18) !important;
}

.auth-card input:not([type="hidden"])::placeholder,
.auth-input::placeholder,
.otp-input::placeholder {
    color: #111111 !important;
}

.auth-card input:not([type="hidden"]):focus,
.auth-input:focus,
.otp-input:focus {
    color: #111111 !important;
    background: #FFFFFF !important;
    border-color: #111111 !important;
    box-shadow: 0 0 0 4px rgba(232, 215, 189, .72) !important;
}

.segmented,
.login-switch {
    background: #EEE5D3 !important;
    border-color: rgba(17, 17, 17, .14) !important;
}

.seg,
.login-option span,
.login-tab {
    color: #111111 !important;
}

.seg.active,
.login-option input:checked+span,
.login-tab.active {
    color: #FFFFFF !important;
    background: #111111 !important;
    box-shadow: none !important;
}

.seg:hover,
.login-option span:hover,
.login-tab:hover {
    color: #111111 !important;
}

.otp-icon,
.secure-icon {
    color: #111111 !important;
    background: #EEE5D3 !important;
    box-shadow: none !important;
    animation: novaFloat 3.5s ease-in-out infinite;
}

.debug-otp {
    color: #FFFFFF !important;
    background: #111111 !important;
    border-color: #111111 !important;
}

.debug-otp small,
.debug-otp strong {
    color: #FFFFFF !important;
}

/* Cart / checkout / account */
.cart-list,
.form-card,
.summary {
    background: #FFFFFF !important;
    color: black !important;
    border-color: rgba(17, 17, 17, .13) !important;
    box-shadow: var(--shadow) !important;
}

.summary strong,
.total strong,
.cart-copy strong {
    color: #111111 !important;
}

.cart-thumb {
    background: #EEE5D3 !important;
}

.form-section,
.cart-item,
.summary .total,
.form-card .total {
    border-color: rgba(17, 17, 17, .12) !important;
}

/* Footer / intentionally dark areas */
footer,
.footer,
.dark-section,
.section-dark {
    background: #111111 !important;
    color: #FFFFFF !important;
}

footer a,
footer p,
footer span,
footer h1,
footer h2,
footer h3,
.footer a,
.footer p,
.footer span,
.footer h1,
.footer h2,
.footer h3,
.dark-section a,
.dark-section p,
.dark-section span,
.dark-section h1,
.dark-section h2,
.dark-section h3 {
    color: #FFFFFF !important;
}

footer a:hover,
.footer a:hover,
.dark-section a:hover {
    color: #EEE5D3 !important;
}

/* Modal / toast / overlays */
.modal,
.modal-content,
.dialog,
.dropdown-menu {
    background: #FFFFFF !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .14) !important;
}

.modal-backdrop,
.overlay {
    background: rgba(17, 17, 17, .62) !important;
}

.toast,
.notification {
    background: #111111 !important;
    color: #FFFFFF !important;
    border-color: #111111 !important;
    box-shadow: 0 18px 45px rgba(17, 17, 17, .20);
    animation: novaToastIn .45s cubic-bezier(.2, .8, .2, 1) both;
}

/* Tables */
table,
.table,
table tbody,
table tr,
table td {
    background: #FFFFFF !important;
    color: #111111 !important;
}

table th {
    background: #EEE5D3 !important;
    color: #111111 !important;
}

table td,
table th {
    border-color: rgba(17, 17, 17, .12) !important;
}

/* Generic selectable cards / admin cards */
.card,
.kpi-card,
.stat-card,
.dashboard-card {
    color: #111111 !important;
    background: #FFFFFF !important;
    border-color: rgba(17, 17, 17, .13) !important;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card:hover,
.kpi-card:hover,
.stat-card:hover,
.dashboard-card:hover {
    transform: translateY(-6px);
    border-color: #111111 !important;
    box-shadow: var(--shadow-hover) !important;
}

/* Icons and SVGs */
svg {
    color: currentColor;
}

svg * {
    stroke: currentColor;
}

/* Focus visibility */
:focus-visible {
    outline: 3px solid #111111 !important;
    outline-offset: 3px;
}

/* =========================================================
   ANIMATION SYSTEM
   ========================================================= */

@keyframes novaPageIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

@keyframes novaCardIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes novaFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

@keyframes novaShimmer {

    0%,
    55% {
        transform: translateX(-140%);
    }

    80%,
    100% {
        transform: translateX(420%);
    }
}

@keyframes novaGridDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 48px 48px;
    }
}

@keyframes novaOrbitPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .55;
    }

    50% {
        transform: scale(1.035);
        opacity: 1;
    }
}

@keyframes novaDotPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.28);
    }
}

@keyframes novaTextSweep {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes novaBlob {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(35px, -25px, 0) scale(1.12);
    }
}

@keyframes novaToastIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Smooth reveal for common sections when they enter/receive hover */
.section,
.promo,
.statement,
.new-drop-section {
    transition: transform .35s ease;
}

/* Better mobile interaction */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr !important;
    }

    .new-drop-card,
    .new-drop-feature {
        grid-template-columns: 1fr !important;
    }

    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .nav {
        min-height: 70px;
    }

    .hero {
        min-height: auto !important;
        padding: 45px 22px !important;
        border-radius: 26px !important;
    }

    .hero-card {
        width: min(100%, 330px);
        margin: 0 auto;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }

    .product-card:hover {
        transform: translateY(-5px) !important;
    }
}

/* Accessibility: respect users who request less motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* ============================================================
   1. GLOBAL — BEIGE PAGE / BLACK TEXT
   ============================================================ */

html {
    background: var(--nova-beige) !important;
    scroll-behavior: smooth;
}

body,
body.admin-body {
    margin: 0;
    min-height: 100vh;
    background: var(--nova-beige) !important;
    background-image: none !important;
    color: var(--nova-black) !important;
    overflow-x: hidden;
}

body::before,
body::after,
main::before,
main::after {
    background: none !important;
    background-image: none !important;
    box-shadow: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.admin-main,
main {
    min-height: calc(100vh - 78px);
    background: var(--nova-beige) !important;
    color: var(--nova-black) !important;
}

/* Never let the old neon theme force invisible text. */
.admin-main h1,
.admin-main h2,
.admin-main h3,
.admin-main h4,
.admin-main h5,
.admin-main h6,
.admin-main p,
.admin-main span,
.admin-main small,
.admin-main label,
.admin-main strong,
.admin-main li,
.admin-main td,
.admin-main .muted,
.admin-main .hint,
.admin-main .eyebrow {
    color: var(--nova-black) !important;
}

a {
    color: var(--nova-black) !important;
}

img {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ============================================================
   2. MAIN ADMIN NAVBAR — BLACK WITH WHITE CONTENT
   This is deliberately scoped so global text rules cannot
   turn navbar links black.
   ============================================================ */

.admin-nav.nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    min-height: 78px !important;
    padding: 12px clamp(18px, 4vw, 60px) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 22px !important;

    background: var(--nova-black) !important;
    background-image: none !important;
    color: var(--nova-white) !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 0 !important;

    box-shadow: 0 8px 30px rgba(17, 17, 17, .18) !important;
    backdrop-filter: blur(16px);
}

/* Navbar text MUST remain white. */
.admin-nav,
.admin-nav *,
.admin-nav a,
.admin-nav button,
.admin-nav span,
.admin-nav small,
.admin-nav i,
.admin-nav svg {
    color: var(--nova-white) !important;
}

.admin-nav .brand {
    flex: 0 0 auto;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: var(--nova-white) !important;
    text-decoration: none !important;
    font-weight: 900 !important;
    letter-spacing: .08em;
}

.admin-nav .brand img {
    width: 46px !important;
    height: 46px !important;
    object-fit: contain !important;
    display: block !important;
    filter: none !important;
}

.admin-nav .brand span {
    color: var(--nova-white) !important;
    font-size: 17px !important;
    line-height: 1 !important;
}

.admin-nav .brand small {
    display: block !important;
    margin-top: 4px !important;
    color: var(--nova-beige) !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: .24em !important;
}

.admin-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
}

.admin-nav .admin-links a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 42px !important;
    padding: 9px 15px !important;

    color: rgba(255, 255, 255, .78) !important;
    background: transparent !important;

    border: 1px solid transparent !important;
    border-radius: 10px !important;

    font-size: 14px !important;
    font-weight: 750 !important;
    text-decoration: none !important;

    transition:
        color .22s ease,
        background .22s ease,
        transform .22s ease,
        border-color .22s ease !important;
}

.admin-nav .admin-links a::after {
    content: "" !important;
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 5px !important;
    height: 2px !important;

    background: var(--nova-beige) !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: transform .22s ease !important;
}

.admin-nav .admin-links a:hover {
    color: var(--nova-black) !important;
    background: var(--nova-beige) !important;
    border-color: var(--nova-beige) !important;
    transform: translateY(-2px);
}

.admin-nav .admin-links a:hover::after {
    transform: scaleX(1) !important;
}

.admin-nav .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 0 0 auto;
}

/* Storefront button: black navbar -> beige button -> black text. */
.admin-nav .nav-actions .btn.dark,
.admin-nav .nav-actions .btn {
    min-height: 44px !important;
    padding: 10px 17px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    color: var(--nova-black) !important;
    background: var(--nova-beige) !important;
    border: 1px solid var(--nova-beige) !important;
    border-radius: 11px !important;

    font-weight: 850 !important;
    text-decoration: none !important;

    box-shadow: none !important;
    transition:
        transform .22s ease,
        background .22s ease,
        color .22s ease,
        box-shadow .22s ease !important;
}

.admin-nav .nav-actions .btn.dark *,
.admin-nav .nav-actions .btn * {
    color: var(--nova-black) !important;
}

.admin-nav .nav-actions .btn.dark:hover,
.admin-nav .nav-actions .btn:hover {
    color: var(--nova-white) !important;
    background: #111111 !important;
    border-color: var(--nova-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .24) !important;
}

.admin-nav .nav-actions .btn.dark:hover *,
.admin-nav .nav-actions .btn:hover * {
    color: var(--nova-white) !important;
}

/* ============================================================
   3. DASHBOARD MAIN / PAGE HEADERS
   ============================================================ */

.admin-main {
    padding: 0 !important;
}

.admin-head {
    width: min(1500px, calc(100% - 64px));
    margin: 0 auto 28px;
    padding-top: 42px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.admin-head h1 {
    margin: 4px 0 8px !important;
    color: var(--nova-black) !important;
    font-size: clamp(30px, 4vw, 46px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.04em !important;
}

.admin-head p:not(.eyebrow) {
    margin: 0 !important;
    color: rgba(17, 17, 17, .64) !important;
}

.eyebrow {
    margin: 0 0 8px !important;
    color: var(--nova-black) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase;
}

/* ============================================================
   4. UNIVERSAL BUTTON SYSTEM
   ============================================================ */

.btn,
.dashboard-edit-btn,
.gallery-btn,
.btn-small,
.admin-btn-primary,
.btn-primary,
.btn-secondary,
.view-btn,
.offer-save-btn,
.modal-edit {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer !important;
    text-decoration: none !important;
    transition:
        transform .20s ease,
        background .20s ease,
        color .20s ease,
        border-color .20s ease,
        box-shadow .20s ease !important;
}

.btn {
    min-height: 46px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 11px 18px !important;

    border: 1px solid var(--nova-black) !important;
    border-radius: 11px !important;

    font-weight: 850 !important;
}

.btn.primary,
.btn-primary,
.admin-btn-primary,
.offer-save-btn,
.submit-btn,
.save-btn {
    color: var(--nova-white) !important;
    background: var(--nova-black) !important;
    border-color: var(--nova-black) !important;
    box-shadow: 0 8px 20px rgba(17, 17, 17, .10) !important;
}

.btn.primary *,
.btn-primary *,
.admin-btn-primary *,
.offer-save-btn *,
.submit-btn *,
.save-btn * {
    color: var(--nova-white) !important;
}

.btn.primary:hover,
.btn-primary:hover,
.admin-btn-primary:hover,
.offer-save-btn:hover,
.submit-btn:hover,
.save-btn:hover {
    color: var(--nova-black) !important;
    background: var(--nova-beige) !important;
    border-color: var(--nova-black) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(17, 17, 17, .15) !important;
}

.btn.primary:hover *,
.btn-primary:hover *,
.admin-btn-primary:hover *,
.offer-save-btn:hover *,
.submit-btn:hover *,
.save-btn:hover {
    color: var(--nova-black) !important;
}

.btn.dark {
    color: var(--nova-white) !important;
    background: var(--nova-black) !important;
    border-color: var(--nova-black) !important;
}

.btn.ghost,
.btn-secondary,
.ghost {
    color: var(--nova-black) !important;
    background: var(--nova-white) !important;
    border: 1px solid var(--nova-black) !important;
}

.btn.ghost:hover,
.btn-secondary:hover,
.ghost:hover {
    color: var(--nova-white) !important;
    background: var(--nova-black) !important;
    transform: translateY(-2px);
}

/* ============================================================
   5. DASHBOARD STAT CARDS
   ============================================================ */

.stat-grid,
.analytics-stats {
    width: min(1500px, calc(100% - 64px));
    margin: 0 auto 28px;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px !important;
}

.stat-card,
.analytics-stat {
    position: relative;
    overflow: hidden;

    min-height: 145px;
    padding: 23px !important;

    background: var(--nova-black) !important;
    color: var(--nova-white) !important;

    border: 1px solid var(--nova-black) !important;
    border-radius: 18px !important;

    box-shadow: var(--nova-shadow) !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease !important;
}

.stat-card::before,
.analytics-stat::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -55px;
    top: -55px;
    border: 1px solid rgba(232, 215, 189, .28);
    border-radius: 50%;
    pointer-events: none;
    transition: transform .35s ease;
}

.stat-card:hover,
.analytics-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--nova-shadow-hover) !important;
}

.stat-card:hover::before,
.analytics-stat:hover::before {
    transform: scale(1.25);
}

.stat-card *,
.analytics-stat * {
    color: var(--nova-white) !important;
}

.stat-label,
.analytics-stat-label,
.stat-card span,
.analytics-stat span {
    display: block;
    color: rgba(255, 255, 255, .68) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .10em !important;
    text-transform: uppercase;
}

.stat-card strong,
.analytics-stat strong {
    display: block;
    margin-top: 12px;
    color: var(--nova-white) !important;
    font-size: 32px !important;
    line-height: 1.05;
}

/* ============================================================
   6. PANELS / CARDS
   ============================================================ */

.panel,
.dashboard-panel,
.latest-orders-panel,
.analytics-panel,
.analytics-shell,
.analytics-mini-card,
.payment-dashboard-card,
.form-card,
.admin-card,
.coupon-dashboard,
.panel-head {
    border: 1px solid var(--nova-border) !important;
}

.panel,
.dashboard-panel,
.latest-orders-panel,
.form-card,
.admin-card,
.analytics-panel,
.analytics-shell,
.payment-dashboard-card,
.coupon-dashboard {
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border-radius: 18px !important;
    box-shadow: var(--nova-shadow) !important;
}

.panel *,
.dashboard-panel *,
.latest-orders-panel *,
.form-card *,
.admin-card *,
.analytics-panel *,
.analytics-shell *,
.payment-dashboard-card *,
.coupon-dashboard * {
    color: var(--nova-black);
}

.panel,
.dashboard-panel,
.latest-orders-panel {
    padding: 24px !important;
}

.panel-head,
.section-head,
.analytics-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.panel-head {
    margin-bottom: 18px;
}

.panel-head h2,
.analytics-panel-head h2 {
    margin: 0 !important;
    color: var(--nova-black) !important;
    font-size: 20px !important;
}

.panel:hover,
.dashboard-panel:hover,
.latest-orders-panel:hover,
.analytics-panel:hover,
.payment-dashboard-card:hover {
    box-shadow: var(--nova-shadow-hover) !important;
}

/* Dashboard two-column area */
.admin-grid {
    width: min(1500px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 20px;
}

/* ============================================================
   7. DASHBOARD TABLES / LATEST ORDERS
   ============================================================ */

.admin-main table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid var(--nova-border) !important;
    border-radius: 14px !important;
    background: var(--nova-white) !important;
}

.admin-main th {
    padding: 13px 15px !important;
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    border: 0 !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: left;
}

.admin-main th * {
    color: var(--nova-white) !important;
}

.admin-main td {
    padding: 14px 15px !important;
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border-top: 1px solid var(--nova-border-soft) !important;
}

.admin-main tr {
    transition: background .18s ease;
}

.admin-main tbody tr:hover td {
    background: var(--nova-light) !important;
}

/* ============================================================
   8. ORDERS
   ============================================================ */

.order-card {
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-border) !important;
    border-radius: 18px !important;
    box-shadow: var(--nova-shadow) !important;
    transition: transform .22s ease, box-shadow .22s ease !important;
}

.order-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nova-shadow-hover) !important;
}

.order-card * {
    color: var(--nova-black) !important;
}

.status-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 30px;
    padding: 5px 11px !important;
    border-radius: 999px !important;
    border: 1px solid var(--nova-black) !important;
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    font-size: 11px !important;
    font-weight: 850 !important;
}

.status-pill.placed,
.status-pill.ready,
.status-pill.shipped,
.status-pill.success {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
}

/* ============================================================
   9. PRODUCTS PAGE
   ============================================================ */

.product-toolbar {
    width: min(1500px, calc(100% - 64px));
    margin: 0 auto 24px !important;
    padding: 13px !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;

    background: var(--nova-white) !important;
    border: 1px solid var(--nova-border) !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 24px rgba(17, 17, 17, .06) !important;
}

.product-toolbar input,
.product-toolbar select {
    flex: 1 1 210px;
    min-height: 46px;
}

.product-admin-grid {
    width: min(1500px, calc(100% - 64px));
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px !important;
}

.admin-product.product-card {
    overflow: hidden;
    padding: 0 !important;
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-border) !important;
    border-radius: 18px !important;
    box-shadow: var(--nova-shadow) !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease !important;
}

.admin-product.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nova-shadow-hover) !important;
    border-color: var(--nova-black) !important;
}

.admin-photo {
    position: relative;
    aspect-ratio: 4/4.8;
    overflow: hidden;
    background: var(--nova-light) !important;
}

.admin-photo img,
.dashboard-product-thumb {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    cursor: zoom-in;
    transition: transform .45s ease !important;
}

.admin-product:hover .admin-photo img,
.admin-product:hover .dashboard-product-thumb {
    transform: scale(1.045);
}

.admin-photo>span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
}

.product-info {
    padding: 20px !important;
}

.product-info>p {
    margin: 0 0 5px !important;
    color: rgba(17, 17, 17, .55) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.product-info h2 {
    margin: 0 0 9px !important;
    color: var(--nova-black) !important;
    font-size: 21px !important;
}

.product-price {
    color: var(--nova-black) !important;
    font-size: 20px !important;
}

.stock-bar {
    width: 100%;
    height: 7px;
    margin-top: 18px;
    overflow: hidden;
    background: var(--nova-beige) !important;
    border-radius: 99px;
}

.stock-fill {
    height: 100%;
    background: var(--nova-black) !important;
    border-radius: 99px;
    transition: width .5s ease;
}

.stock-text {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    font-size: 12px;
}

.stock-text span {
    color: rgba(17, 17, 17, .62) !important;
}

.admin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 17px;
}

.dashboard-edit-btn,
.gallery-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid var(--nova-black);
    border-radius: 9px;
    background: var(--nova-white);
    color: var(--nova-black) !important;
    font-size: 12px;
    font-weight: 850;
}

.dashboard-edit-btn:hover,
.gallery-btn:hover {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    transform: translateY(-2px);
}

.placeholder,
.empty,
.no-results {
    background: var(--nova-light) !important;
    color: var(--nova-black) !important;
}

.placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: grid;
    place-items: center;
}

.placeholder b {
    color: var(--nova-black) !important;
    font-size: 50px;
}

/* ============================================================
   10. GALLERY
   ============================================================ */

.gallery-box,
.gallery-modal,
.gallery-grid {
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
}

.gallery-box {
    padding: 20px;
    border: 1px solid var(--nova-border) !important;
    border-radius: 18px;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.gallery-header h2 {
    color: var(--nova-black) !important;
}

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

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--nova-border) !important;
    border-radius: 10px;
    background: var(--nova-light) !important;
    transition: transform .22s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* ============================================================
   11. OFFERS / COUPONS
   ============================================================ */

.offers-page {
    width: min(1500px, calc(100% - 64px));
    margin: 0 auto;
    padding: 42px 0 70px;
    color: var(--nova-black) !important;
}

.offers-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.offers-header h1 {
    color: var(--nova-black) !important;
    margin: 0;
}

.offer-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 22px;
}

.offer-stat {
    padding: 21px;
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    border-radius: 16px;
    box-shadow: var(--nova-shadow) !important;
}

.offer-stat * {
    color: var(--nova-white) !important;
}

.offers-toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.offer-search,
.offer-filter {
    min-height: 44px;
}

.offer-table-wrap {
    overflow: auto;
    background: var(--nova-white) !important;
    border: 1px solid var(--nova-border) !important;
    border-radius: 16px;
    box-shadow: var(--nova-shadow) !important;
}

.offer-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: var(--nova-white) !important;
}

.offer-table-header {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
}

.offer-table-header *,
.offer-table-header th {
    color: var(--nova-white) !important;
}

.offer-table td,
.offer-table th {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--nova-border-soft);
}

.table-row.coupon-row {
    background: var(--nova-white) !important;
    transition: background .18s ease;
}

.table-row.coupon-row:hover {
    background: var(--nova-light) !important;
}

.coupon-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coupon-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 11px;
    background: var(--nova-beige) !important;
    color: var(--nova-black) !important;
}

.coupon-code,
.discount-value {
    color: var(--nova-black) !important;
    font-weight: 900 !important;
}

.status.status-success {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    font-size: 11px;
    font-weight: 850;
}

.usage-cell {
    color: rgba(17, 17, 17, .62) !important;
}

.coupon-actions {
    display: flex;
    gap: 7px;
}

.view-btn,
.btn-small {
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid var(--nova-black);
    border-radius: 8px;
    background: var(--nova-white);
    color: var(--nova-black) !important;
    font-size: 11px;
    font-weight: 850;
}

.view-btn:hover,
.btn-small:hover {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    transform: translateY(-2px);
}

/* ============================================================
   12. OFFER FORM / NORMAL FORMS
   ============================================================ */

.dashboard-form,
.admin-form {
    width: min(1050px, calc(100% - 64px));
    margin: 0 auto;
    padding: 42px 0 70px;
}

.page-header {
    margin-bottom: 25px;
}

.page-header h1,
.admin-head h1 {
    color: var(--nova-black) !important;
}

.form-card {
    padding: 28px !important;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--nova-border-soft);
}

.form-section:first-child {
    padding-top: 0;
}

.form-section:last-child {
    border-bottom: 0;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label,
.checkbox-field label {
    color: var(--nova-black) !important;
    font-weight: 800 !important;
    font-size: 13px;
}

.field-help,
.form-field .field-help,
.muted {
    color: rgba(17, 17, 17, .60) !important;
}

.readonly-value {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 13px;
    background: var(--nova-light) !important;
    border: 1px solid var(--nova-border);
    border-radius: 10px;
    color: var(--nova-black) !important;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

/* ============================================================
   13. INPUTS — WHITE / BLACK / BEIGE
   ============================================================ */

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    box-sizing: border-box;

    color: var(--nova-black) !important;
    background: var(--nova-white) !important;

    border: 1px solid rgba(17, 17, 17, .24) !important;
    border-radius: 10px !important;

    padding: 10px 13px !important;
    outline: none !important;

    box-shadow: none !important;
    transition:
        border-color .20s ease,
        box-shadow .20s ease,
        background .20s ease,
        transform .20s ease !important;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: rgba(17, 17, 17, .48) !important;
    opacity: 1 !important;
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(17, 17, 17, .48) !important;
}

input:focus,
select:focus,
textarea:focus {
    color: var(--nova-black) !important;
    background: var(--nova-light) !important;
    border-color: var(--nova-black) !important;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .08) !important;
}

option {
    color: var(--nova-black) !important;
    background: var(--nova-white) !important;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    min-height: auto;
    accent-color: var(--nova-black);
}

/* ============================================================
   14. ANALYTICS / REVENUE / SALES / CUSTOMERS
   ============================================================ */

.analytics-page {
    width: min(1500px, 100%);
    margin: 0 auto;
    padding: 42px 32px 70px !important;
    background: var(--nova-beige) !important;
    color: var(--nova-black) !important;
}

.analytics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.analytics-header h1 {
    margin: 4px 0 8px !important;
    color: var(--nova-black) !important;
    font-size: 34px !important;
    letter-spacing: -.035em;
}

.analytics-header .muted {
    color: rgba(17, 17, 17, .62) !important;
}

/* The secondary analytics navigation is intentionally black. */
.analytics-nav {
    width: max-content;
    max-width: 100%;
    display: flex !important;
    align-items: center;
    gap: 5px !important;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 6px !important;

    background: var(--nova-black) !important;
    border-radius: 13px !important;
    border: 1px solid var(--nova-black) !important;
}

.analytics-nav a {
    color: rgba(255, 255, 255, .78) !important;
    background: transparent !important;
    padding: 9px 14px !important;
    border-radius: 9px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;

    transition:
        background .20s ease,
        color .20s ease,
        transform .20s ease !important;
}

.analytics-nav a:hover,
.analytics-nav a.active {
    color: var(--nova-black) !important;
    background: var(--nova-beige) !important;
    transform: translateY(-1px);
}

.analytics-nav a:hover *,
.analytics-nav a.active * {
    color: var(--nova-black) !important;
}

.analytics-stats {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.analytics-shell {
    padding: 25px !important;
    background: var(--nova-white) !important;
}

.analytics-data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.analytics-mini-card,
.analytics-tab-panel,
.customer-highlight,
.payment-box {
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-border) !important;
    border-radius: 14px !important;
}

.analytics-mini-card {
    padding: 18px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.analytics-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--nova-shadow);
}

.analytics-chart,
.revenue-chart,
.chart-toolbar,
.chart-range {
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
}

.analytics-chart,
.revenue-chart {
    min-height: 280px;
    border-radius: 14px;
}

.chart-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.analytics-table-wrap {
    width: 100%;
    overflow: auto;
    border: 1px solid var(--nova-border) !important;
    border-radius: 13px;
}

.analytics-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    background: var(--nova-white) !important;
}

.analytics-table th {
    padding: 13px;
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.analytics-table td {
    padding: 13px;
    color: var(--nova-black) !important;
    background: var(--nova-white) !important;
    border-top: 1px solid var(--nova-border-soft);
}

.analytics-table tr:hover td {
    background: var(--nova-light) !important;
}

.analytics-tab {
    color: var(--nova-black) !important;
    background: var(--nova-white) !important;
    border: 1px solid var(--nova-black) !important;
}

.analytics-tab.active {
    color: var(--nova-white) !important;
    background: var(--nova-black) !important;
}

/* ============================================================
   15. PAYMENTS
   ============================================================ */

.payment-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.payment-dashboard-card {
    padding: 22px;
}

.payment-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.payment-option {
    padding: 14px !important;
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-black) !important;
    border-radius: 11px !important;
}

.payment-option *,
.payment-option label {
    color: var(--nova-black) !important;
}

.payment-option:hover {
    background: var(--nova-beige) !important;
}

.payment-option.active {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
}

.payment-option.active * {
    color: var(--nova-white) !important;
}

/* ============================================================
   16. MODALS — WHITE CARD / BLACK TEXT / BEIGE DETAILS
   ============================================================ */

.modal,
.coupon-modal,
.gallery-modal,
.analytics-modal,
.overlay {
    z-index: 9999 !important;
}

.modal-backdrop,
.coupon-modal-backdrop {
    background: rgba(17, 17, 17, .68) !important;
    backdrop-filter: blur(5px);
}

.modal-content,
.coupon-modal-card,
.analytics-modal-card {
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-black) !important;
    border-radius: 18px !important;
    box-shadow: 0 30px 80px rgba(17, 17, 17, .28) !important;
}

.modal-content *,
.coupon-modal-card *,
.analytics-modal-card * {
    color: var(--nova-black) !important;
}

.modal-close {
    color: var(--nova-black) !important;
    background: var(--nova-beige) !important;
    border: 1px solid var(--nova-black) !important;
}

.modal-close:hover {
    color: var(--nova-white) !important;
    background: var(--nova-black) !important;
}

.modal-code-box,
.modal-details,
.modal-discount,
.customer-modal-item {
    background: var(--nova-light) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-border) !important;
    border-radius: 11px;
}

.modal-code-box *,
.modal-details *,
.modal-discount *,
.customer-modal-item * {
    color: var(--nova-black) !important;
}

/* ============================================================
   17. TOASTS
   ============================================================ */

.toast-stack {
    position: fixed;
    top: 92px;
    right: 22px;
    z-index: 11000;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: min(360px, calc(100% - 30px));
}

.toast {
    padding: 13px 15px;
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 11px;
    box-shadow: 0 16px 35px rgba(17, 17, 17, .22) !important;
    animation: novaToastIn .35s ease both;
}

.toast * {
    color: var(--nova-white) !important;
}

@keyframes novaToastIn {
    from {
        opacity: 0;
        transform: translateY(-10px) translateX(10px)
    }

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

/* ============================================================
   18. EMPTY STATES
   ============================================================ */

.empty.large,
.offer-empty,
.analytics-empty,
.no-results,
.empty {
    padding: 35px 20px !important;
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border: 1px dashed rgba(17, 17, 17, .30) !important;
    border-radius: 16px !important;
    text-align: center;
}

.empty *,
.offer-empty *,
.analytics-empty *,
.no-results * {
    color: var(--nova-black) !important;
}

/* ============================================================
   19. INTERACTION POLISH
   ============================================================ */

button:active,
.btn:active,
.btn-small:active,
.view-btn:active,
.dashboard-edit-btn:active,
.gallery-btn:active {
    transform: scale(.97) !important;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--nova-black) !important;
    outline-offset: 3px;
}

.text-link {
    color: var(--nova-black) !important;
    font-weight: 850;
    text-decoration: underline;
    text-decoration-color: var(--nova-beige-dark);
    text-underline-offset: 3px;
}

.text-link:hover {
    color: rgba(17, 17, 17, .62) !important;
}

/* ============================================================
   20. PAGE ENTRANCE
   ============================================================ */

.admin-main,
.analytics-page,
.offers-page,
.dashboard-form,
.admin-form {
    animation: novaPageIn .45s ease both;
}

@keyframes novaPageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* ============================================================
   21. RESPONSIVE — TABLET
   ============================================================ */

@media (max-width:1100px) {
    .admin-nav.nav {
        flex-wrap: wrap !important;
    }

    .admin-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }

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

    .product-admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .analytics-data-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================================
   22. RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width:700px) {
    .admin-nav.nav {
        min-height: 70px !important;
        padding: 10px 14px !important;
        gap: 10px !important;
    }

    .admin-nav .brand img {
        width: 40px !important;
        height: 40px !important;
    }

    .admin-nav .brand span {
        font-size: 15px !important;
    }

    .admin-links {
        gap: 4px !important;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .admin-links::-webkit-scrollbar {
        display: none;
    }

    .admin-nav .admin-links a {
        min-height: 38px !important;
        padding: 8px 11px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }

    .admin-nav .nav-actions {
        margin-left: auto;
    }

    .admin-nav .nav-actions .btn.dark,
    .admin-nav .nav-actions .btn {
        min-height: 40px !important;
        padding: 8px 11px !important;
        font-size: 12px !important;
    }

    .admin-head,
    .product-toolbar,
    .product-admin-grid {
        width: calc(100% - 28px);
    }

    .admin-head {
        padding-top: 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-head h1 {
        font-size: 32px !important;
    }

    .stat-grid,
    .offer-stats,
    .analytics-stats,
    .payment-dashboard-grid {
        width: calc(100% - 28px);
        grid-template-columns: 1fr !important;
    }

    .admin-grid {
        width: calc(100% - 28px);
    }

    .product-admin-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-form,
    .admin-form {
        width: calc(100% - 28px);
        padding-top: 28px;
    }

    .form-grid,
    .analytics-data-grid,
    .payment-status-grid {
        grid-template-columns: 1fr;
    }

    .form-card,
    .panel,
    .dashboard-panel,
    .analytics-shell,
    .analytics-panel {
        padding: 18px !important;
        border-radius: 15px !important;
    }

    .offers-page {
        width: calc(100% - 28px);
        padding-top: 28px;
    }

    .offers-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .analytics-page {
        padding: 28px 14px 55px !important;
    }

    .analytics-nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .analytics-nav::-webkit-scrollbar {
        display: none;
    }

    .analytics-nav a {
        white-space: nowrap;
        flex: 0 0 auto;
    }

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

/* ============================================================
   23. VERY SMALL SCREENS
   ============================================================ */

@media (max-width:480px) {
    .admin-nav .brand small {
        display: none !important;
    }

    .admin-nav .nav-actions .btn.dark,
    .admin-nav .nav-actions .btn {
        font-size: 0 !important;
        width: 40px !important;
        padding: 0 !important;
    }

    .admin-nav .nav-actions .btn.dark svg,
    .admin-nav .nav-actions .btn svg {
        width: 18px;
        height: 18px;
    }

    .stat-card,
    .analytics-stat {
        min-height: 125px;
    }

    .stat-card strong,
    .analytics-stat strong {
        font-size: 28px !important;
    }

    .product-info {
        padding: 16px !important;
    }
}

/* ============================================================
   24. ACCESSIBILITY / REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* LIGHT BEIGE BACKGROUND */

html,
body,
main,
.page,
.page-section,
.section {
    background: var(--background) !important;
    color: #111111 !important;
}

/* =========================
   SIZE CHART BUTTON
========================= */

.size-chart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 12px;

    padding: 11px 18px;

    border: 1px solid #111111;
    border-radius: 999px;

    background: #ffffff;
    color: #111111;

    font: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.size-chart-btn svg {
    width: 17px;
    height: 17px;
}


.size-chart-btn:hover {
    background: #111111;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, .12);
}



/* =========================
   MODAL
========================= */

.size-chart-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

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

    padding: 20px;

    visibility: hidden;
    opacity: 0;

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


.size-chart-modal.active {
    visibility: visible;
    opacity: 1;
}


.size-chart-overlay {
    position: absolute;
    inset: 0;

    background: rgba(17, 17, 17, .62);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


.size-chart-box {
    position: relative;
    z-index: 2;

    width: min(700px, 100%);

    max-height: 88vh;
    overflow-y: auto;

    padding: 34px;

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

    background: #EEE5D3;

    color: #111111;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .22);

    transform:
        translateY(25px) scale(.97);

    transition:
        transform .3s cubic-bezier(.2, .8, .2, 1);
}


.size-chart-modal.active .size-chart-box {
    transform:
        translateY(0) scale(1);
}



/* CLOSE */

.size-chart-close {
    position: absolute;

    top: 17px;
    right: 17px;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 50%;

    background: #ffffff;

    color: #111111;

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

    cursor: pointer;

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


.size-chart-close:hover {
    background: #111111;
    color: #ffffff;

    transform: rotate(90deg);
}



/* HEADER */

.size-chart-header {
    padding-right: 45px;
}


.size-chart-header h2 {
    margin: 4px 0 7px;

    font-size: clamp(28px, 4vw, 40px);

    letter-spacing: -1.2px;
}


.size-chart-header p {
    margin: 0;

    opacity: .72;
}



/* =========================
   INCH / CM SWITCH
========================= */

.measurement-switch {
    display: inline-flex;

    margin-top: 24px;
    margin-bottom: 22px;

    padding: 4px;

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

    background: #ffffff;
}


.measurement-button {
    min-width: 95px;

    padding: 10px 18px;

    border: 0;
    border-radius: 999px;

    background: transparent;

    color: #111111;

    font: inherit;
    font-weight: 700;

    cursor: pointer;

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


.measurement-button:hover {
    transform: translateY(-1px);
}


.measurement-button.active {
    background: #111111;
    color: #ffffff;
}



/* default cm hidden */

.measurement-cm {
    display: none;
}



/* =========================
   TABLE
========================= */

.size-table-wrap {
    overflow-x: auto;

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

    background: #ffffff;
}


.size-chart-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 530px;
}


.size-chart-table th,
.size-chart-table td {
    padding: 17px 18px;

    text-align: center;

    border-bottom:
        1px solid rgba(17, 17, 17, .09);
}


.size-chart-table th {
    background: #111111;
    color: #ffffff;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .8px;
}


.size-chart-table tbody tr {
    transition:
        background .2s ease,
        transform .2s ease;
}


.size-chart-table tbody tr:hover {
    background: #F7F5F0;
}


.size-chart-table tbody tr:last-child td {
    border-bottom: 0;
}


.size-chart-table td:first-child {
    font-size: 16px;
}



/* NOTE */

.size-chart-note {
    margin: 17px 0 0;

    font-size: 12px;

    line-height: 1.6;

    opacity: .65;
}


body.size-chart-open {
    overflow: hidden;
}



/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .size-chart-modal {
        align-items: flex-end;

        padding: 0;
    }


    .size-chart-box {
        width: 100%;

        max-height: 88vh;

        padding:
            28px 18px 24px;

        border-radius:
            24px 24px 0 0;
    }


    .size-chart-header h2 {
        font-size: 30px;
    }


    .measurement-switch {
        display: flex;

        width: 100%;
    }


    .measurement-button {
        flex: 1;
    }

}

/* =========================================================
   NOVA BY ASH — SIZE CHART MODAL FIX
========================================================= */

/* HIDE MODAL BY DEFAULT */
#sizeChartModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    z-index: 999999 !important;

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

    padding: 20px !important;
    box-sizing: border-box !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    overflow: hidden !important;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease !important;
}


/* SHOW MODAL */
#sizeChartModal.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}


/* DARK BACKGROUND */
#sizeChartModal .size-chart-overlay {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: rgba(0, 0, 0, 0.72) !important;

    backdrop-filter: blur(7px) !important;
    -webkit-backdrop-filter: blur(7px) !important;

    cursor: pointer !important;
}


/* MODAL BOX */
#sizeChartModal .size-chart-box {
    position: relative !important;

    z-index: 2 !important;

    width: min(720px, 94vw) !important;

    max-width: 720px !important;
    max-height: 88vh !important;

    margin: 0 !important;

    padding: 28px !important;

    box-sizing: border-box !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    background: #EEE5D3 !important;

    color: #111111 !important;

    border: 1px solid #111111 !important;

    border-radius: 22px !important;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4) !important;

    transform: translateY(25px) scale(0.96) !important;

    transition:
        transform 0.3s ease !important;
}


/* MODAL OPEN ANIMATION */
#sizeChartModal.active .size-chart-box {
    transform: translateY(0) scale(1) !important;
}


/* HEADER */
#sizeChartModal .size-chart-header {
    position: relative !important;

    display: flex !important;

    align-items: flex-start !important;
    justify-content: space-between !important;

    gap: 20px !important;

    margin: 0 0 22px 0 !important;
}


#sizeChartModal .size-chart-header h2 {
    margin: 5px 0 !important;

    font-size: 30px !important;
    line-height: 1.1 !important;

    color: #111111 !important;
}


#sizeChartModal .size-chart-header p {
    margin: 0 !important;

    color: #111111 !important;

    opacity: 0.65 !important;
}


/* CLOSE BUTTON */
#sizeChartModal .size-chart-close {
    position: relative !important;

    flex-shrink: 0 !important;

    width: 42px !important;
    height: 42px !important;

    padding: 0 !important;

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

    border: 1px solid #111111 !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    color: #111111 !important;

    font-size: 24px !important;
    line-height: 1 !important;

    cursor: pointer !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease !important;
}


#sizeChartModal .size-chart-close:hover {
    background: #111111 !important;

    color: #ffffff !important;

    transform: rotate(90deg) !important;
}


/* INCH / CM SWITCH */
#sizeChartModal .size-chart-switch {
    display: flex !important;

    align-items: center !important;

    gap: 5px !important;

    width: fit-content !important;

    margin: 0 0 20px 0 !important;

    padding: 4px !important;

    background: #111111 !important;

    border-radius: 999px !important;
}


#sizeChartModal .unit-btn {
    border: 0 !important;

    padding: 10px 20px !important;

    border-radius: 999px !important;

    background: transparent !important;

    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    cursor: pointer !important;

    transition:
        background 0.2s ease,
        color 0.2s ease !important;
}


#sizeChartModal .unit-btn.active {
    background: #EEE5D3 !important;

    color: #111111 !important;
}


/* TABLE CONTAINER */
#sizeChartModal .size-chart-table-wrapper {
    width: 100% !important;

    overflow-x: auto !important;

    border: 1px solid #111111 !important;

    border-radius: 14px !important;

    background: #ffffff !important;
}


/* TABLE */
#sizeChartModal .size-chart-table {
    width: 100% !important;

    min-width: 500px !important;

    border-collapse: collapse !important;

    background: #ffffff !important;
}


#sizeChartModal .size-chart-table th {
    padding: 15px !important;

    background: #111111 !important;

    color: #ffffff !important;

    text-align: center !important;

    font-size: 13px !important;

    text-transform: uppercase !important;

    letter-spacing: 0.06em !important;
}


#sizeChartModal .size-chart-table td {
    padding: 15px !important;

    background: #ffffff !important;

    color: #111111 !important;

    text-align: center !important;

    border-bottom: 1px solid #EEE5D3 !important;
}


#sizeChartModal .size-chart-table tr:last-child td {
    border-bottom: 0 !important;
}


#sizeChartModal .size-chart-table tbody tr:hover td {
    background: #EEE5D3 !important;
}


/* EMPTY SIZE CHART */
#sizeChartModal .no-size-chart {
    padding: 45px 20px !important;

    text-align: center !important;

    border: 1px dashed #111111 !important;

    border-radius: 14px !important;

    background: #ffffff !important;
}


/* FOOTER */
#sizeChartModal .size-chart-footer {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 15px !important;

    margin-top: 20px !important;
}


#sizeChartModal .size-chart-footer span {
    font-size: 12px !important;

    color: #111111 !important;

    opacity: 0.6 !important;
}


/* PREVENT PAGE SCROLL WHEN OPEN */
body.size-chart-open {
    overflow: hidden !important;
}


/* =========================================================
   SIZE CHART BUTTON
========================================================= */

.size-chart-btn {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;

    padding: 10px 16px !important;

    margin: 10px 0 15px !important;

    border: 1px solid #111111 !important;

    border-radius: 999px !important;

    background: #ffffff !important;

    color: #111111 !important;

    font-weight: 700 !important;

    cursor: pointer !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease !important;
}


.size-chart-btn:hover {
    background: #111111 !important;

    color: #ffffff !important;

    transform: translateY(-2px) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    #sizeChartModal {
        padding: 10px !important;
    }

    #sizeChartModal .size-chart-box {
        width: 96vw !important;

        max-height: 92vh !important;

        padding: 20px !important;

        border-radius: 18px !important;
    }

    #sizeChartModal .size-chart-header h2 {
        font-size: 25px !important;
    }

    #sizeChartModal .size-chart-table {
        min-width: 480px !important;
    }

    #sizeChartModal .size-chart-table th,
    #sizeChartModal .size-chart-table td {
        padding: 11px 9px !important;
    }

    #sizeChartModal .size-chart-footer {
        flex-direction: column !important;

        align-items: stretch !important;
    }

    #sizeChartModal .size-chart-footer .btn {
        width: 100% !important;
    }

}


/* ========================================================================
   NOVA BY ASH — OFF-WHITE / BLACK / BEIGE MASTER OVERRIDE
   Added to guarantee readable contrast across all attached store templates.
   ======================================================================== */

:root {
    --nova-offwhite: #F7F5F0;
    --nova-white: #FFFFFF;
    --nova-black: #111111;
    --nova-beige: #EEE5D3;
    --nova-beige-dark: #EEE5D3;
    --nova-line: rgba(17, 17, 17, .18);
    --nova-shadow: 0 18px 50px rgba(17, 17, 17, .10);
    --nova-shadow-hover: 0 24px 70px rgba(17, 17, 17, .16);
    --nova-radius: 22px;
}

/* ---------- GLOBAL ---------- */
html {
    scroll-behavior: smooth !important;
}

body {
    background: var(--nova-offwhite) !important;
    color: var(--nova-black) !important;
}

body::before {
    background:
        radial-gradient(circle at 10% 10%, rgba(200, 174, 137, .16), transparent 26%),
        radial-gradient(circle at 90% 20%, rgba(230, 213, 188, .24), transparent 30%),
        linear-gradient(rgba(17, 17, 17, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, .018) 1px, transparent 1px) !important;
    background-size: auto, auto, 42px 42px, 42px 42px !important;
    mask-image: none !important;
}

main,
.section,
.product-page,
.shop-head,
.page-head,
.auth-wrap,
.account-grid,
.checkout-layout,
.cart-layout,
.order-layout,
.center-card {
    color: var(--nova-black) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong,
small,
label,
li,
td,
th,
.product-info,
.product-meta,
.cart-copy,
.summary,
.form-card,
.auth-card,
.review-panel,
.tracking {
    text-shadow: none !important;
}

.muted,
.hint,
.description,
.product-meta p,
.cart-copy p,
.page-head p:not(.eyebrow),
.auth-card>p:not(.eyebrow),
small {
    color: rgba(17, 17, 17, .70) !important;
}

.eyebrow {
    color: var(--nova-black) !important;
    font-weight: 800 !important;
    letter-spacing: .15em !important;
}

/* ---------- ANNOUNCEMENT + NAVBAR ---------- */
.announcement {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .14) !important;
}

.announcement span {
    color: var(--nova-beige) !important;
}

.nav {
    background: rgba(17, 17, 17, .97) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .13) !important;
    box-shadow: 0 8px 30px rgba(17, 17, 17, .18) !important;
    backdrop-filter: blur(16px) !important;
}

.nav,
.nav a,
.nav nav a,
.nav .brand,
.nav .brand span,
.nav .brand small,
.nav .nav-actions,
.nav .nav-actions a,
.nav i,
.nav svg {
    color: var(--nova-white) !important;
    stroke: var(--nova-white) !important;
}

.nav .brand small {
    color: var(--nova-beige) !important;
}

.nav nav a::after {
    background: var(--nova-beige) !important;
}

.nav nav a:hover,
.nav .icon-btn:hover {
    color: var(--nova-white) !important;
}

.nav .icon-btn {
    background: rgba(255, 255, 255, .08) !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
}

.nav .icon-btn:hover {
    background: var(--nova-beige-dark) !important;
    border-color: var(--nova-beige-dark) !important;
    transform: translateY(-2px) scale(1.04);
}

.nav .icon-btn:hover i,
.nav .icon-btn:hover svg {
    color: var(--nova-black) !important;
    stroke: var(--nova-black) !important;
}

.count {
    background: var(--nova-beige-dark) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-black) !important;
}

/* ---------- OFF-WHITE PAGE SECTIONS ---------- */
.hero,
.page-head,
.shop-head,
.product-page,
.section,
.auth-wrap,
.checkout-layout,
.cart-layout,
.order-layout {
    background-color: transparent !important;
}

/* ---------- BEIGE SURFACES: ALWAYS BLACK TEXT ---------- */
.hero-card,
.new-drop-card,
.product-card,
.form-card,
.auth-card,
.summary,
.review-panel,
.buy-box,
.tracking,
.cart-item,
.center-card,
.micro-grid>div,
.payment-option,
.notification,
.empty,
.otp-debug,
.segmented,
.searchbar,
.checkout-section,
.form-section {
    background: var(--nova-beige) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-line) !important;
    box-shadow: var(--nova-shadow) !important;
}

.hero-card *,
.new-drop-card *,
.product-card *,
.form-card *,
.auth-card *,
.summary *,
.review-panel *,
.buy-box *,
.tracking *,
.cart-item *,
.center-card *,
.micro-grid>div *,
.payment-option *,
.notification *,
.empty *,
.otp-debug *,
.checkout-section *,
.form-section * {
    color: var(--nova-black);
}

.product-media,
.main-image,
.new-drop-image,
.cart-thumb {
    background: var(--nova-white) !important;
}

.placeholder,
.drop-placeholder {
    background: var(--nova-beige-dark) !important;
    color: var(--nova-black) !important;
}

/* ---------- BUTTON SYSTEM ---------- */
.btn,
button,
.searchbar button,
.size-chart-btn,
.qty button,
.cart-qty button,
.seg {
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background-color .22s ease,
        color .22s ease,
        border-color .22s ease !important;
}

.btn.primary,
button.btn.primary,
.searchbar button {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    border: 1px solid var(--nova-black) !important;
    box-shadow: 0 10px 24px rgba(17, 17, 17, .18) !important;
}

.btn.primary *,
button.btn.primary *,
.searchbar button * {
    color: var(--nova-white) !important;
    stroke: var(--nova-white) !important;
}

.btn.primary:hover,
button.btn.primary:hover,
.searchbar button:hover {
    background: var(--nova-beige-dark) !important;
    color: var(--nova-black) !important;
    border-color: var(--nova-black) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 34px rgba(17, 17, 17, .20) !important;
}

.btn.primary:hover *,
button.btn.primary:hover *,
.searchbar button:hover * {
    color: var(--nova-black) !important;
    stroke: var(--nova-black) !important;
}

.btn.dark {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    border: 1px solid var(--nova-black) !important;
}

.btn.dark *,
.btn.dark svg {
    color: var(--nova-white) !important;
    stroke: var(--nova-white) !important;
}

.btn.secondary,
.btn.ghost,
.size-chart-btn,
.seg {
    background: var(--nova-beige-dark) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-black) !important;
}

.btn.secondary:hover,
.btn.ghost:hover,
.size-chart-btn:hover,
.seg:hover,
.seg.active {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    transform: translateY(-2px) !important;
}

.btn.secondary:hover *,
.btn.ghost:hover *,
.size-chart-btn:hover *,
.seg:hover *,
.seg.active * {
    color: var(--nova-white) !important;
    stroke: var(--nova-white) !important;
}

button:disabled,
.btn:disabled {
    opacity: .55 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* ---------- FORMS ---------- */
input,
select,
textarea {
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border: 1px solid rgba(17, 17, 17, .30) !important;
    box-shadow: none !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(17, 17, 17, .48) !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    border-color: var(--nova-black) !important;
    box-shadow: 0 0 0 4px rgba(200, 174, 137, .30) !important;
    transform: translateY(-1px);
}

label {
    color: var(--nova-black) !important;
}

/* ---------- PRODUCT + SHOP ---------- */
.product-card {
    overflow: hidden;
}

.product-card:hover,
.new-drop-card:hover,
.hero-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--nova-shadow-hover) !important;
}

.product-card img,
.new-drop-card img,
.hero-card img,
.main-image img {
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), filter .35s ease !important;
}

.product-card:hover img,
.new-drop-card:hover img,
.hero-card:hover img {
    transform: scale(1.055) !important;
}

.heart,
.icon-btn {
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-black) !important;
}

.heart i,
.heart svg,
.icon-btn i,
.icon-btn svg {
    stroke: var(--nova-black) !important;
}

.heart:hover,
.heart.filled {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    transform: translateY(-2px) scale(1.05);
}

.heart:hover i,
.heart:hover svg,
.heart.filled i,
.heart.filled svg {
    stroke: var(--nova-white) !important;
}

.chip {
    background: var(--nova-white) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-black) !important;
}

.chip:hover,
.chip.active {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    transform: translateY(-2px);
}

/* ---------- CART / CHECKOUT / PAYMENT / ORDERS ---------- */
.summary,
.checkout-section,
.form-section,
.payment-option,
.tracking {
    background: var(--nova-beige-dark) !important;
    color: var(--nova-black) !important;
}

.payment-option:hover {
    background: var(--nova-beige) !important;
    transform: translateY(-2px);
    box-shadow: var(--nova-shadow-hover) !important;
}

.payment-option:has(input:checked) {
    background: var(--nova-white) !important;
    border: 2px solid var(--nova-black) !important;
}

.payment-option input {
    accent-color: var(--nova-black) !important;
}

.status-pill,
.stock-badge,
.save,
.new-drop-badge,
.progress {
    background: var(--nova-beige-dark) !important;
    color: var(--nova-black) !important;
    border: 1px solid var(--nova-black) !important;
}

.order-row {
    color: var(--nova-black) !important;
    border-color: rgba(17, 17, 17, .14) !important;
}

.order-row:hover {
    background: rgba(255, 255, 255, .55) !important;
    transform: translateX(4px);
}

/* ---------- AUTH ---------- */
.auth-card {
    animation: novaCardIn .55s cubic-bezier(.2, .8, .2, 1) both;
}

.auth-card a,
.text-link,
.resend-row a,
.auth-footer a {
    color: var(--nova-black) !important;
    font-weight: 800 !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.auth-card a:hover,
.text-link:hover,
.resend-row a:hover,
.auth-footer a:hover {
    opacity: .65;
}

/* ---------- TABLE / DIVIDERS / FOOTER ---------- */
hr {
    border: 0 !important;
    border-top: 1px solid rgba(17, 17, 17, .18) !important;
}

footer {
    background: var(--nova-black) !important;
    color: var(--nova-white) !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
}

footer,
footer p,
footer span,
footer a,
footer strong,
footer small {
    color: var(--nova-white) !important;
}

footer a:hover {
    color: var(--nova-beige) !important;
}

/* ---------- INTERACTION / MOTION ---------- */
a,
button,
.product-card,
.cart-item,
.form-card,
.summary,
.hero-card,
.new-drop-card,
.payment-option,
.notification {
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        background-color .24s ease,
        color .24s ease,
        border-color .24s ease,
        opacity .24s ease !important;
}

main>*,
.section,
.page-head,
.shop-head {
    animation: novaFadeUp .55s ease both;
}

.cart-item:hover,
.form-card:hover,
.summary:hover,
.notification:hover {
    transform: translateY(-4px);
    box-shadow: var(--nova-shadow-hover) !important;
}

.btn.primary,
.btn.dark {
    position: relative;
    overflow: hidden;
}

.btn.primary::after,
.btn.dark::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -130%;
    width: 70%;
    height: 190%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .30), transparent);
    transform: skewX(-20deg);
    transition: left .55s ease;
    pointer-events: none;
}

.btn.primary:hover::after,
.btn.dark:hover::after {
    left: 140%;
}

@keyframes novaFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes novaCardIn {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(.985);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 820px) {
    .nav {
        gap: 12px !important;
    }

    .nav nav {
        gap: 12px !important;
    }

    .hero,
    .product-page,
    .checkout-layout,
    .cart-layout,
    .order-layout,
    .account-grid {
        gap: 20px !important;
    }

    .form-card,
    .summary,
    .auth-card,
    .new-drop-card,
    .product-card {
        border-radius: 18px !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ============================================================
   NOVA BY ASH — FINAL THEME MASTER OVERRIDE
   Palette: OFF-WHITE #F7F5F0 / BLACK #111111 / BEIGE #EEE5D3 / WHITE #FFFFFF
   No brown, dark beige, grey, blue, purple or neon colours.
   ============================================================ */

:root {
    --nova-offwhite: #F7F5F0 !important;
    --nova-black: #111111 !important;
    --nova-beige: #EEE5D3 !important;
    --nova-white: #FFFFFF !important;
    --nova-line: rgba(17, 17, 17, .18) !important;
    --nova-shadow: 0 16px 45px rgba(17, 17, 17, .12) !important;
    --nova-shadow-hover: 0 22px 60px rgba(17, 17, 17, .16) !important;
}

html,
body {
    background: #F7F5F0 !important;
    color: #111111 !important;
}

body::before,
body::after,
main::before,
main::after {
    background: none !important;
    box-shadow: none !important;
    opacity: 0 !important;
}

/* BLACK NAVIGATION */
.nav,
.admin-nav.nav {
    background: #111111 !important;
    background-image: none !important;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, .14) !important;
}

.nav *,
.admin-nav * {
    color: #FFFFFF !important;
}

.nav .brand small,
.admin-nav .brand small {
    color: #EEE5D3 !important;
}

.nav a:hover,
.admin-nav a:hover {
    color: #111111 !important;
    background: #EEE5D3 !important;
}

.nav .icon-btn,
.admin-nav .icon-btn {
    color: #FFFFFF !important;
    background: transparent !important;
    border-color: rgba(255, 255, 255, .20) !important;
}

.nav .icon-btn:hover,
.admin-nav .icon-btn:hover {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: #EEE5D3 !important;
}

.nav .icon-btn:hover *,
.admin-nav .icon-btn:hover * {
    color: #111111 !important;
    stroke: #111111 !important;
}

/* PAGE / SECTION BASE */
main,
.admin-main {
    background: #F7F5F0 !important;
    color: #111111 !important;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main li,
main label,
main small,
main strong,
main span {
    color: #111111;
}

/* BEIGE FEATURE AREAS — BLACK TEXT */
.hero,
.new-drop-card,
.promo,
.shop-head,
.page-head,
.statement,
.admin-head,
.dashboard-card,
.stat-card,
.offer-stat,
.feature-card {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .18) !important;
    box-shadow: var(--nova-shadow) !important;
}

.hero *,
.new-drop-card *,
.promo *,
.shop-head *,
.page-head *,
.statement *,
.admin-head *,
.dashboard-card *,
.stat-card *,
.offer-stat *,
.feature-card * {
    color: #111111 !important;
}

/* WHITE CONTENT CARDS — BLACK TEXT */
.product-card,
.form-card,
.summary,
.cart-list,
.auth-card,
.center-card,
.review-panel,
.buy-box,
.tracking,
.cart-item,
.payment-option,
.notification,
.empty,
.otp-debug,
.segmented,
.searchbar,
.checkout-section,
.form-section,
.panel,
.table-row,
.coupon-modal-card {
    background: #FFFFFF !important;
    color: #111111 !important;
    border-color: rgba(17, 17, 17, .18) !important;
    box-shadow: var(--nova-shadow) !important;
}

.product-card *,
.form-card *,
.summary *,
.cart-list *,
.auth-card *,
.center-card *,
.review-panel *,
.buy-box *,
.tracking *,
.cart-item *,
.payment-option *,
.notification *,
.empty *,
.otp-debug *,
.segmented *,
.searchbar *,
.checkout-section *,
.form-section *,
.panel *,
.table-row *,
.coupon-modal-card * {
    color: #111111 !important;
}

/* IMAGE AREAS STAY CLEAN WHITE */
.product-media,
.main-image,
.new-drop-image,
.cart-thumb,
.product-gallery {
    background: #FFFFFF !important;
}

.placeholder,
.drop-placeholder {
    background: #EEE5D3 !important;
    color: #111111 !important;
}

/* FORMS */
input,
select,
textarea {
    background: #FFFFFF !important;
    color: #111111 !important;
    border: 1px solid rgba(17, 17, 17, .30) !important;
    box-shadow: none !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(17, 17, 17, .55) !important;
}

input:focus,
select:focus,
textarea:focus {
    background: #FFFFFF !important;
    color: #111111 !important;
    border-color: #111111 !important;
    box-shadow: 0 0 0 4px rgba(216, 199, 168, .45) !important;
}

label {
    color: #111111 !important;
}

/* BUTTONS — BLACK PRIMARY, BEIGE SECONDARY */
.btn.primary,
.btn.dark,
.btn-primary,
.admin-btn-primary,
.offer-save-btn,
.submit-btn,
.save-btn,
.searchbar button,
.btn-small {
    background: #111111 !important;
    color: #FFFFFF !important;
    border-color: #111111 !important;
}

.btn.primary *,
.btn.dark *,
.btn-primary *,
.admin-btn-primary *,
.offer-save-btn *,
.submit-btn *,
.save-btn *,
.searchbar button *,
.btn-small * {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

.btn.ghost,
.btn.secondary,
.size-chart-btn,
.seg {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: #111111 !important;
}

.btn.ghost *,
.btn.secondary *,
.size-chart-btn *,
.seg * {
    color: #111111 !important;
    stroke: #111111 !important;
}

.btn.primary:hover,
.btn.dark:hover,
.btn-primary:hover,
.admin-btn-primary:hover,
.offer-save-btn:hover,
.submit-btn:hover,
.save-btn:hover,
.searchbar button:hover,
.btn-small:hover {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: #111111 !important;
}

.btn.primary:hover *,
.btn.dark:hover *,
.btn-primary:hover *,
.admin-btn-primary:hover *,
.offer-save-btn:hover *,
.submit-btn:hover *,
.save-btn:hover *,
.searchbar button:hover *,
.btn-small:hover * {
    color: #111111 !important;
    stroke: #111111 !important;
}

.btn.ghost:hover,
.btn.secondary:hover,
.size-chart-btn:hover,
.seg:hover,
.seg.active {
    background: #111111 !important;
    color: #FFFFFF !important;
}

.btn.ghost:hover *,
.btn.secondary:hover *,
.size-chart-btn:hover *,
.seg:hover *,
.seg.active * {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

/* BADGES / STATUS / HIGHLIGHTS */
.pill,
.sale-badge,
.stock-badge,
.new-badge,
.status-pill,
.progress,
.save,
.new-drop-label,
.count {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: #111111 !important;
}

/* LINKS / ICONS */
a,
.text-link {
    color: #111111 !important;
}

.text-link:hover,
a:hover {
    color: #111111 !important;
}

.eyebrow {
    color: #111111 !important;
}

/* FOOTER */
footer {
    background: #111111 !important;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, .14) !important;
}

footer *,
footer a,
footer p,
footer span,
footer strong,
footer small {
    color: #FFFFFF !important;
}

footer a:hover {
    color: #EEE5D3 !important;
}

/* AUTH */
.auth-page,
.auth-wrap {
    background: #F7F5F0 !important;
    color: #111111 !important;
}

.auth-card {
    background: #FFFFFF !important;
    color: #111111 !important;
}

.auth-card h1,
.auth-card h2,
.auth-card h3,
.auth-card p,
.auth-card label,
.auth-card small,
.auth-card a {
    color: #111111 !important;
}

.auth-logo {
    background: #EEE5D3 !important;
    border-color: #111111 !important;
    box-shadow: none !important;
}

.auth-logo img {
    filter: none !important;
}

/* REMOVE OLD GRADIENT/NEON EFFECTS */
.hero,
.hero-card,
.new-drop-card,
.new-drop-feature,
.new-drop-image,
.product-media,
.placeholder,
.shop-head,
.promo,
.auth-page,
.auth-wrap,
.auth-card,
.coupon-modal-card,
.offer-stat {
    background-image: none !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .hero,
    .new-drop-card,
    .new-drop-feature {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   NOVA BY ASH — LIGHT BEIGE + PREMIUM INTERACTION / MOTION
   Beige: #EEE5D3 (lighter, softer and more premium)
   ============================================================ */
:root {
    --nova-offwhite: #F7F5F0 !important;
    --nova-white: #FFFFFF !important;
    --nova-black: #111111 !important;
    --nova-beige: #EEE5D3 !important;
    --nova-beige-dark: #EEE5D3 !important;
    --nova-line: rgba(17, 17, 17, .14) !important;
    --nova-shadow: 0 16px 45px rgba(17, 17, 17, .09) !important;
    --nova-shadow-hover: 0 24px 65px rgba(17, 17, 17, .15) !important;
}

/* Smooth page feel */
html {
    scroll-behavior: smooth !important;
}

body {
    overflow-x: hidden;
}

/* Animated entrance for the whole storefront */
main>*,
.section,
.product-page,
.checkout-layout,
.cart-layout,
.order-layout,
.account-grid,
.page-head,
.shop-head,
.admin-head {
    animation: novaReveal .7s cubic-bezier(.2, .75, .2, 1) both;
}

/* Stagger common cards without requiring HTML changes */
.product-card:nth-child(2),
.form-card:nth-child(2),
.cart-item:nth-child(2),
.notification:nth-child(2),
.dashboard-card:nth-child(2),
.stat-card:nth-child(2) {
    animation-delay: .06s;
}

.product-card:nth-child(3),
.form-card:nth-child(3),
.cart-item:nth-child(3),
.notification:nth-child(3),
.dashboard-card:nth-child(3),
.stat-card:nth-child(3) {
    animation-delay: .12s;
}

.product-card:nth-child(4),
.form-card:nth-child(4),
.cart-item:nth-child(4),
.notification:nth-child(4),
.dashboard-card:nth-child(4),
.stat-card:nth-child(4) {
    animation-delay: .18s;
}

.product-card:nth-child(5),
.form-card:nth-child(5),
.cart-item:nth-child(5),
.notification:nth-child(5),
.dashboard-card:nth-child(5),
.stat-card:nth-child(5) {
    animation-delay: .24s;
}

/* Universal interactive motion */
a,
button,
input,
select,
textarea,
.btn,
.product-card,
.cart-item,
.form-card,
.summary,
.new-drop-card,
.payment-option,
.notification,
.dashboard-card,
.stat-card,
.offer-stat,
.feature-card,
.thumbnail,
.nav a,
.icon-btn,
.product-image,
img {
    transition: transform .28s cubic-bezier(.2, .75, .2, 1),
        box-shadow .28s ease,
        background-color .28s ease,
        color .2s ease,
        border-color .2s ease,
        opacity .28s ease,
        filter .28s ease !important;
}

/* Navbar interactions */
.nav a {
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #EEE5D3;
    transform: translateX(-50%);
    transition: width .28s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 70%;
}

.nav a:hover {
    transform: translateY(-2px);
}

/* Cards lift + image zoom */
.product-card,
.new-drop-card,
.form-card,
.summary,
.cart-item,
.notification,
.dashboard-card,
.stat-card,
.offer-stat,
.feature-card,
.payment-option,
.tracking,
.review-panel {
    will-change: transform;
}

.product-card:hover,
.new-drop-card:hover,
.form-card:hover,
.summary:hover,
.cart-item:hover,
.notification:hover,
.dashboard-card:hover,
.stat-card:hover,
.offer-stat:hover,
.feature-card:hover,
.payment-option:hover,
.tracking:hover,
.review-panel:hover {
    transform: translateY(-7px) !important;
    box-shadow: var(--nova-shadow-hover) !important;
}

.product-card:hover img,
.new-drop-card:hover img,
.product-gallery img:hover {
    transform: scale(1.035);
    filter: brightness(1.02);
}

/* Product image area has a subtle moving highlight */
.product-image,
.main-product-image,
.product-gallery {
    position: relative;
    overflow: hidden;
}

.product-image::after,
.main-product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .55) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform .8s ease;
}

.product-card:hover .product-image::after,
.main-product-image:hover::after {
    transform: translateX(120%);
}

/* Buttons: press, lift and light sweep */
.btn,
button,
.icon-btn {
    position: relative;
    overflow: hidden;
}

.btn:hover,
button:hover,
.icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 17, 17, .14) !important;
}

.btn:active,
button:active,
.icon-btn:active {
    transform: translateY(1px) scale(.98) !important;
}

.btn::after,
button::after,
.icon-btn::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -120%;
    width: 55%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
    transform: skewX(-18deg);
    transition: left .65s ease;
    pointer-events: none;
}

.btn:hover::after,
button:hover::after,
.icon-btn:hover::after {
    left: 150%;
}

/* Inputs feel alive when focused */
input,
select,
textarea {
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    transform: translateY(-1px);
    border-color: #111111 !important;
    box-shadow: 0 0 0 4px rgba(238, 229, 211, .9), 0 8px 22px rgba(17, 17, 17, .08) !important;
}

/* Beige feature areas: lighter and gently breathing */
.hero,
.new-drop-card,
.promo,
.shop-head,
.page-head,
.statement,
.admin-head,
.dashboard-card,
.stat-card,
.offer-stat,
.feature-card,
.badge,
.status,
.highlight,
.placeholder {
    background: #EEE5D3 !important;
    color: #111111 !important;
}

.hero,
.new-drop-card,
.promo,
.statement {
    animation: novaFloatIn .8s cubic-bezier(.2, .75, .2, 1) both;
}

/* Subtle floating accents for decorative elements */
.hero::before,
.new-drop-card::before,
.promo::before {
    animation: novaDrift 8s ease-in-out infinite alternate;
}

/* Thumbnails */
.thumbnail:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: #111111 !important;
}

.thumbnail:active {
    transform: scale(.96);
}

/* Links */
a:hover {
    opacity: .82;
}

/* Footer reveal */
footer {
    animation: novaReveal .8s ease both;
}

footer a:hover {
    transform: translateX(4px);
    display: inline-block;
}

/* Gentle attention animation for important controls */
.checkout-btn,
.buy-now,
.add-to-cart,
.primary-action {
    animation: novaPulse 2.8s ease-in-out infinite;
}

.checkout-btn:hover,
.buy-now:hover,
.add-to-cart:hover,
.primary-action:hover {
    animation-play-state: paused;
}

@keyframes novaReveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes novaFloatIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes novaDrift {
    from {
        transform: translate3d(-8px, -4px, 0);
    }

    to {
        transform: translate3d(8px, 5px, 0);
    }
}

@keyframes novaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(17, 17, 17, 0);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(238, 229, 211, .7);
    }
}

/* Keep accessibility intact */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 820px) {

    .product-card:hover,
    .new-drop-card:hover,
    .form-card:hover,
    .summary:hover,
    .cart-item:hover,
    .notification:hover,
    .dashboard-card:hover,
    .stat-card:hover,
    .offer-stat:hover,
    .feature-card:hover,
    .payment-option:hover,
    .tracking:hover,
    .review-panel:hover {
        transform: translateY(-4px) !important;
    }
}


/* ================================================================
   NOVA BY ASH — SIGNATURE INTERACTION LAYER
   Comfortable luxury motion • mobile first • light beige only
   ================================================================ */
:root {
    --nova-offwhite: #F7F5F0;
    --nova-beige: #EEE5D3;
    --nova-white: #FFFFFF;
    --nova-black: #111111;
    --nova-radius: 20px;
    --nova-ease: cubic-bezier(.22, 1, .36, 1);
    --nova-fast: 180ms;
    --nova-med: 360ms;
    --nova-slow: 700ms;
}

html {
    scroll-behavior: smooth !important;
    background: #F7F5F0 !important;
}

body {
    background: #F7F5F0 !important;
    color: #111111 !important;
    overflow-x: hidden;
}

/* Clean color logic: light surfaces = black text, dark surfaces = white text */
.nav,
.admin-nav,
.nav *,
.admin-nav * {
    background-color: #111111;
    color: #FFFFFF;
}

footer,
footer * {
    background-color: #111111;
    color: #FFFFFF;
}

.hero,
.new-drop-card,
.promo,
.shop-head,
.page-head,
.statement,
.admin-head,
.dashboard-card,
.stat-card,
.offer-stat,
.feature-card,
.badge,
.status,
.highlight,
.placeholder {
    background: #EEE5D3 !important;
    color: #111111 !important;
}

.product-card,
.form-card,
.summary,
.cart-list,
.cart-item,
.auth-card,
.center-card,
.review-panel,
.buy-box,
.tracking,
.payment-option,
.notification,
.empty,
.searchbar,
.checkout-section,
.form-section,
.panel,
.table-row,
.coupon-modal-card,
.modal-content {
    background: #FFFFFF !important;
    color: #111111 !important;
}

/* ---------- PAGE ENTRANCE ---------- */
main {
    animation: novaPageIn .65s var(--nova-ease) both;
}

main>* {
    animation: novaSectionIn .65s var(--nova-ease) both;
}

main>*:nth-child(2) {
    animation-delay: 70ms;
}

main>*:nth-child(3) {
    animation-delay: 140ms;
}

main>*:nth-child(4) {
    animation-delay: 210ms;
}

main>*:nth-child(5) {
    animation-delay: 280ms;
}

@keyframes novaPageIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes novaSectionIn {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes novaScaleIn {
    from {
        opacity: 0;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

/* ---------- NAVBAR ---------- */
.nav,
.admin-nav {
    background: #111111 !important;
    color: #FFFFFF !important;
    border-bottom: 1px solid #FFFFFF !important;
    box-shadow: 0 8px 30px rgba(17, 17, 17, .12);
    transition: box-shadow var(--nova-med) var(--nova-ease), padding var(--nova-med) var(--nova-ease);
}

.nav a,
.admin-nav a,
.nav button,
.admin-nav button {
    color: #FFFFFF !important;
    position: relative;
}

.nav a::after,
.admin-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #EEE5D3;
    transform: translateX(-50%);
    transition: width var(--nova-med) var(--nova-ease);
}

.nav a:hover::after,
.admin-nav a:hover::after,
.nav a:focus-visible::after,
.admin-nav a:focus-visible::after {
    width: 70%;
}

.nav a:hover,
.admin-nav a:hover {
    color: #EEE5D3 !important;
    opacity: 1;
    transform: translateY(-1px);
}

/* ---------- PRODUCT CARDS ---------- */
.product-card,
.feature-card,
.dashboard-card,
.stat-card,
.offer-stat,
.new-drop-card,
.form-card,
.summary,
.cart-item,
.notification,
.payment-option,
.review-panel,
.tracking {
    border: 1px solid #111111 !important;
    border-radius: var(--nova-radius) !important;
    box-shadow: 0 8px 0 rgba(17, 17, 17, .05);
    transition: transform var(--nova-med) var(--nova-ease), box-shadow var(--nova-med) var(--nova-ease), border-color var(--nova-med) var(--nova-ease) !important;
    animation: novaScaleIn .7s var(--nova-ease) both;
}

.product-card:nth-child(2n) {
    animation-delay: 80ms;
}

.product-card:nth-child(3n) {
    animation-delay: 160ms;
}

.product-card:nth-child(4n) {
    animation-delay: 240ms;
}

@media (hover:hover) and (pointer:fine) {

    .product-card:hover,
    .feature-card:hover,
    .dashboard-card:hover,
    .stat-card:hover,
    .offer-stat:hover,
    .new-drop-card:hover,
    .form-card:hover,
    .summary:hover,
    .cart-item:hover,
    .notification:hover,
    .payment-option:hover,
    .review-panel:hover,
    .tracking:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 18px 38px rgba(17, 17, 17, .13) !important;
        border-color: #111111 !important;
    }

    .product-card:hover img {
        transform: scale(1.045);
    }
}

.product-card img,
.product-gallery img,
.main-product-image img,
.thumbnail img {
    transition: transform .7s var(--nova-ease), filter .45s ease !important;
}

.product-card .product-image,
.product-card .image-wrap,
.main-product-image {
    overflow: hidden;
}

/* ---------- IMAGE SHINE ---------- */
.product-card .product-image,
.product-card .image-wrap,
.hero,
.new-drop-card {
    position: relative;
    overflow: hidden;
}

.product-card .product-image::after,
.product-card .image-wrap::after,
.hero::after,
.new-drop-card::after {
    content: "";
    position: absolute;
    inset: -20%;
    width: 35%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: translateX(-260%) skewX(-18deg);
    pointer-events: none;
    transition: transform .9s var(--nova-ease);
}

@media (hover:hover) and (pointer:fine) {

    .product-card:hover .product-image::after,
    .product-card:hover .image-wrap::after,
    .hero:hover::after,
    .new-drop-card:hover::after {
        transform: translateX(520%) skewX(-18deg);
    }
}

/* ---------- BUTTONS: TAP + HOVER FEEDBACK ---------- */
.btn,
button,
input[type="submit"],
input[type="button"] {
    min-height: 44px;
    border-radius: 12px !important;
    cursor: pointer;
    transition: transform var(--nova-fast) var(--nova-ease), background-color var(--nova-med) var(--nova-ease), color var(--nova-med) var(--nova-ease), box-shadow var(--nova-med) var(--nova-ease) !important;
}

.btn.primary,
.btn.dark,
.checkout-btn,
.buy-now,
.add-to-cart,
.primary-action {
    background: #111111 !important;
    color: #FFFFFF !important;
    border: 1px solid #111111 !important;
    box-shadow: 0 7px 0 rgba(17, 17, 17, .14);
}

.btn.secondary,
.btn.light {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border: 1px solid #111111 !important;
}

@media (hover:hover) and (pointer:fine) {

    .btn.primary:hover,
    .btn.dark:hover,
    .checkout-btn:hover,
    .buy-now:hover,
    .add-to-cart:hover,
    .primary-action:hover {
        background: #EEE5D3 !important;
        color: #111111 !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 0 rgba(17, 17, 17, .10) !important;
    }

    .btn.secondary:hover,
    .btn.light:hover {
        background: #111111 !important;
        color: #FFFFFF !important;
        transform: translateY(-3px);
    }
}

.btn:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
    transform: translateY(2px) scale(.98) !important;
    box-shadow: 0 3px 0 rgba(17, 17, 17, .10) !important;
}

/* ---------- INPUTS / FORMS ---------- */
input,
select,
textarea {
    background: #FFFFFF !important;
    color: #111111 !important;
    border: 1px solid #111111 !important;
    border-radius: 12px !important;
    min-height: 44px;
    transition: transform var(--nova-fast) var(--nova-ease), box-shadow var(--nova-med) var(--nova-ease), background-color var(--nova-med) var(--nova-ease) !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(17, 17, 17, .55) !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(238, 229, 211, .95) !important;
}

/* ---------- QUANTITY / THUMBNAILS / CHOICES ---------- */
.quantity button,
.qty-btn,
.thumbnail,
.size-option,
.color-option,
.payment-option {
    min-width: 44px;
    min-height: 44px;
    transition: all var(--nova-fast) var(--nova-ease) !important;
}

.thumbnail {
    background: #FFFFFF !important;
    color: #111111 !important;
    border: 1px solid #111111 !important;
}

.thumbnail:hover,
.thumbnail.active,
.size-option:hover,
.size-option.active,
.color-option:hover,
.color-option.active {
    background: #EEE5D3 !important;
    color: #111111 !important;
    border-color: #111111 !important;
    transform: translateY(-3px) scale(1.02);
}

.quantity button:active,
.qty-btn:active {
    transform: scale(.92) !important;
}

/* ---------- BEIGE FEATURE AREAS ---------- */
.hero,
.new-drop-card,
.promo,
.statement,
.shop-head,
.page-head,
.admin-head {
    border: 1px solid #111111 !important;
    box-shadow: 0 12px 34px rgba(17, 17, 17, .08);
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero span,
.hero a,
.new-drop-card h1,
.new-drop-card h2,
.new-drop-card h3,
.new-drop-card p,
.new-drop-card span,
.promo h1,
.promo h2,
.promo h3,
.promo p,
.statement h1,
.statement h2,
.statement p,
.shop-head h1,
.shop-head h2,
.shop-head p,
.page-head h1,
.page-head h2,
.page-head p,
.admin-head h1,
.admin-head h2,
.admin-head p {
    color: #111111 !important;
}

/* ---------- MODALS / MENUS ---------- */
.modal,
.modal-overlay,
.overlay {
    animation: novaFadeOverlay .25s ease both;
}

.modal-content,
.coupon-modal-card {
    animation: novaModalIn .42s var(--nova-ease) both;
    border: 1px solid #111111 !important;
}

@keyframes novaFadeOverlay {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes novaModalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.97)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ---------- FOCUS ACCESSIBILITY ---------- */
:focus-visible {
    outline: 2px solid #111111 !important;
    outline-offset: 3px !important;
}

/* ---------- MOBILE COMFORT ---------- */
@media (max-width:820px) {
    body {
        font-size: 15px;
    }

    .nav,
    .admin-nav {
        padding: 10px 14px !important;
    }

    .nav nav,
    .admin-nav nav {
        gap: 8px !important;
    }

    main {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero,
    .new-drop-card,
    .promo,
    .shop-head,
    .page-head,
    .statement,
    .admin-head,
    .product-card,
    .form-card,
    .summary,
    .cart-item,
    .auth-card,
    .review-panel,
    .tracking,
    .payment-option {
        border-radius: 16px !important;
    }

    .product-card {
        box-shadow: 0 6px 0 rgba(17, 17, 17, .05);
    }

    .product-card:hover,
    .feature-card:hover,
    .dashboard-card:hover,
    .stat-card:hover,
    .offer-stat:hover,
    .new-drop-card:hover,
    .form-card:hover,
    .summary:hover,
    .cart-item:hover,
    .notification:hover,
    .payment-option:hover,
    .review-panel:hover,
    .tracking:hover {
        transform: none !important;
    }

    .product-card:active,
    .new-drop-card:active,
    .form-card:active,
    .payment-option:active {
        transform: scale(.985) !important;
    }

    .btn,
    button,
    input[type="submit"],
    input[type="button"],
    input,
    select,
    textarea {
        min-height: 46px;
    }

    .btn {
        width: auto;
    }

    .product-card img {
        transition: transform .55s var(--nova-ease) !important;
    }

    .product-card:active img {
        transform: scale(1.025);
    }

    .checkout-btn,
    .buy-now,
    .add-to-cart,
    .primary-action {
        width: 100%;
        min-height: 50px;
    }

    .checkout-layout,
    .cart-layout,
    .product-page,
    .order-layout,
    .account-grid {
        gap: 16px !important;
    }

    .form-card,
    .summary,
    .auth-card,
    .new-drop-card,
    .product-card {
        padding: 16px !important;
    }

    .page-head h1,
    .shop-head h1 {
        font-size: clamp(28px, 8vw, 42px) !important;
        line-height: 1.05 !important;
    }
}

@media (max-width:380px) {
    main {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .nav,
    .admin-nav {
        padding: 8px 10px !important;
    }

    .btn {
        font-size: 14px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

/* Reduce motion when the visitor requests it. */
@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================================================================
   NOVA BY ASH — FINAL POLISH / INTERACTION OVERRIDE
   Purpose: remove boxed borders, fix hover hand-off, and make the
   storefront feel fluid, premium, touch-friendly and alive.
   ================================================================ */

:root {
    --nova-bg: #F7F5F0;
    --nova-paper: #FFFFFF;
    --nova-beige: #EEE5D3;
    --nova-ink: #111111;
    --nova-soft-ink: rgba(17, 17, 17, .68);
    --nova-line: rgba(17, 17, 17, .10);
    --nova-shadow: 0 18px 55px rgba(17, 17, 17, .09);
    --nova-shadow-hover: 0 28px 80px rgba(17, 17, 17, .14);
    --nova-radius: 24px;
    --nova-ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- REMOVE THE 'EVERYTHING IS A BOX' LOOK ---------- */
.product-card,
.feature-card,
.dashboard-card,
.stat-card,
.offer-stat,
.form-card,
.summary,
.cart-list,
.cart-item,
.auth-card,
.center-card,
.review-panel,
.tracking,
.payment-option,
.notification,
.empty,
.searchbar,
.checkout-section,
.form-section,
.panel,
.table-row,
.promo,
.shop-head,
.page-head,
.statement,
.admin-head,
.hero,
.new-drop-card {
    border: 0 !important;
    outline: 0 !important;
}

.product-card,
.feature-card,
.dashboard-card,
.stat-card,
.offer-stat,
.form-card,
.summary,
.cart-item,
.auth-card,
.center-card,
.review-panel,
.tracking,
.payment-option,
.notification {
    box-shadow: var(--nova-shadow) !important;
}

/* Floating surfaces instead of bordered rectangles */
.product-card,
.feature-card,
.dashboard-card,
.stat-card,
.offer-stat,
.form-card,
.summary,
.cart-item,
.auth-card,
.center-card,
.review-panel,
.tracking,
.payment-option,
.notification {
    border-radius: 22px !important;
}

/* ---------- PRODUCT GRID ---------- */
.product-grid,
.products-grid,
.shop-grid,
.product-list {
    align-items: stretch;
}

.product-card {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
    background: #FFFFFF !important;
    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow;
    animation: novaCardReveal .7s var(--nova-ease) both !important;
    transition:
        transform .55s var(--nova-ease),
        box-shadow .55s var(--nova-ease),
        background-color .35s ease !important;
}

@keyframes novaCardReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.product-card:nth-child(2n) {
    animation-delay: 70ms !important
}

.product-card:nth-child(3n) {
    animation-delay: 140ms !important
}

.product-card:nth-child(4n) {
    animation-delay: 210ms !important
}

@media (hover:hover) and (pointer:fine) {
    .product-card:hover {
        transform: translate3d(0, -9px, 0) !important;
        box-shadow: var(--nova-shadow-hover) !important;
        z-index: 4;
    }
}

.product-card .product-image,
.product-card .image-wrap,
.product-card .product-media {
    position: relative;
    overflow: hidden;
    background: #F7F5F0 !important;
    border: 0 !important;
    border-radius: 20px !important;
}

.product-card .product-image img,
.product-card .image-wrap img,
.product-card .product-media img {
    display: block;
    width: 100%;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: transform;
    transition: transform .75s var(--nova-ease), filter .45s ease !important;
}

@media (hover:hover) and (pointer:fine) {

    .product-card:hover .product-image img,
    .product-card:hover .image-wrap img,
    .product-card:hover .product-media img {
        transform: translate3d(0, -2px, 0) scale(1.055) !important;
    }
}

/* soft image wash, not a hard rectangular shine */
.product-card .product-image::before,
.product-card .image-wrap::before,
.product-card .product-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .42), transparent 48%);
    opacity: 0;
    transition: opacity .55s ease;
}

@media (hover:hover) and (pointer:fine) {

    .product-card:hover .product-image::before,
    .product-card:hover .image-wrap::before,
    .product-card:hover .product-media::before {
        opacity: 1
    }
}

/* ---------- HEART / WISHLIST ---------- */
.product-card .wishlist,
.product-card .wishlist-btn,
.product-card .heart,
.product-card .heart-btn,
.product-card .favorite,
.product-card .favorite-btn,
.product-card .favourite,
.product-card .favourite-btn,
.product-card [class*="wishlist"],
.product-card [class*="heart"],
.product-card [class*="favorite"],
.product-card [class*="favourite"],
.product-card button[aria-label*="wish" i],
.product-card button[aria-label*="heart" i],
.product-card button[aria-label*="favorite" i],
.product-card button[aria-label*="favourite" i] {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 10 !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .94) !important;
    color: #111111 !important;
    box-shadow: 0 8px 25px rgba(17, 17, 17, .13) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transform: translate3d(0, 0, 0) scale(1) !important;
    transition:
        transform .4s var(--nova-ease),
        background-color .3s ease,
        color .3s ease,
        box-shadow .4s var(--nova-ease) !important;
}

.product-card .wishlist svg,
.product-card .wishlist-btn svg,
.product-card .heart svg,
.product-card .heart-btn svg,
.product-card .favorite svg,
.product-card .favorite-btn svg,
.product-card .favourite svg,
.product-card .favourite-btn svg,
.product-card [class*="wishlist"] svg,
.product-card [class*="heart"] svg,
.product-card [class*="favorite"] svg,
.product-card [class*="favourite"] svg {
    width: 19px !important;
    height: 19px !important;
    stroke: #111111 !important;
    color: #111111 !important;
    fill: none !important;
    transition: transform .35s var(--nova-ease), fill .25s ease, stroke .25s ease !important;
}

@media (hover:hover) and (pointer:fine) {

    .product-card .wishlist:hover,
    .product-card .wishlist-btn:hover,
    .product-card .heart:hover,
    .product-card .heart-btn:hover,
    .product-card .favorite:hover,
    .product-card .favorite-btn:hover,
    .product-card .favourite:hover,
    .product-card .favourite-btn:hover,
    .product-card [class*="wishlist"]:hover,
    .product-card [class*="heart"]:hover,
    .product-card [class*="favorite"]:hover,
    .product-card [class*="favourite"]:hover {
        background: #111111 !important;
        color: #FFFFFF !important;
        transform: translate3d(0, -3px, 0) scale(1.08) !important;
        box-shadow: 0 14px 32px rgba(17, 17, 17, .20) !important;
    }

    .product-card .wishlist:hover svg,
    .product-card .wishlist-btn:hover svg,
    .product-card .heart:hover svg,
    .product-card .heart-btn:hover svg,
    .product-card .favorite:hover svg,
    .product-card .favorite-btn:hover svg,
    .product-card .favourite:hover svg,
    .product-card .favourite-btn:hover svg,
    .product-card [class*="wishlist"]:hover svg,
    .product-card [class*="heart"]:hover svg,
    .product-card [class*="favorite"]:hover svg,
    .product-card [class*="favourite"]:hover svg {
        stroke: #FFFFFF !important;
        color: #FFFFFF !important;
        transform: scale(1.1);
    }
}

.product-card .wishlist.active,
.product-card .wishlist-btn.active,
.product-card .heart.active,
.product-card .heart-btn.active,
.product-card .favorite.active,
.product-card .favorite-btn.active,
.product-card .favourite.active,
.product-card .favourite-btn.active,
.product-card [class*="wishlist"].active,
.product-card [class*="heart"].active,
.product-card [class*="favorite"].active,
.product-card [class*="favourite"].active,
.product-card [aria-pressed="true"] {
    background: #EEE5D3 !important;
    color: #111111 !important;
}

.product-card .wishlist.active svg,
.product-card .wishlist-btn.active svg,
.product-card .heart.active svg,
.product-card .heart-btn.active svg,
.product-card .favorite.active svg,
.product-card .favorite-btn.active svg,
.product-card .favourite.active svg,
.product-card .favourite-btn.active svg,
.product-card [class*="wishlist"].active svg,
.product-card [class*="heart"].active svg,
.product-card [class*="favorite"].active svg,
.product-card [class*="favourite"].active svg,
.product-card [aria-pressed="true"] svg {
    fill: #111111 !important;
    stroke: #111111 !important;
}

.product-card .wishlist:active,
.product-card .wishlist-btn:active,
.product-card .heart:active,
.product-card .heart-btn:active,
.product-card .favorite:active,
.product-card .favorite-btn:active,
.product-card .favourite:active,
.product-card .favourite-btn:active {
    transform: scale(.88) !important;
}

/* ---------- NEW DROP — NO SUDDEN HOVER STOP ---------- */
.new-drop-section {
    position: relative
}

.new-drop-card {
    position: relative !important;
    display: grid;
    overflow: hidden !important;
    isolation: isolate;
    min-height: 620px;
    background: #EEE5D3 !important;
    border-radius: 30px !important;
    box-shadow: 0 24px 70px rgba(17, 17, 17, .11) !important;
    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow;
    animation: novaDropReveal .8s var(--nova-ease) both !important;
    transition:
        transform .7s var(--nova-ease),
        box-shadow .7s var(--nova-ease),
        background-color .45s ease !important;
}

@keyframes novaDropReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

/* Keep hover transform separate from the old shine animation.
   This prevents the card from snapping when the pointer enters/leaves. */
.new-drop-card::after {
    content: "" !important;
    position: absolute !important;
    top: -30% !important;
    left: -55% !important;
    width: 30% !important;
    height: 160% !important;
    z-index: 8 !important;
    pointer-events: none !important;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .48), transparent) !important;
    transform: translate3d(-120%, 0, 0) skewX(-18deg) !important;
    opacity: 0;
    transition: transform 1.15s var(--nova-ease), opacity .25s ease !important;
}

@media (hover:hover) and (pointer:fine) {
    .new-drop-card:hover {
        transform: translate3d(0, -8px, 0) !important;
        box-shadow: 0 34px 95px rgba(17, 17, 17, .15) !important;
    }

    .new-drop-card:hover::after {
        opacity: 1;
        transform: translate3d(560%, 0, 0) skewX(-18deg) !important;
    }
}

.new-drop-image {
    position: relative;
    overflow: hidden !important;
    background: #F7F5F0 !important;
    border: 0 !important;
}

.new-drop-image img {
    transform: translate3d(0, 0, 0) scale(1);
    will-change: transform;
    transition: transform 1s var(--nova-ease), filter .5s ease !important;
}

@media (hover:hover) and (pointer:fine) {
    .new-drop-card:hover .new-drop-image img {
        transform: translate3d(0, -6px, 0) scale(1.065) !important;
    }
}

/* New-drop text/content should glide rather than jump */
.new-drop-card .new-drop-content,
.new-drop-card .new-drop-copy,
.new-drop-card .drop-content,
.new-drop-card .feature-content {
    transition: transform .65s var(--nova-ease), opacity .45s ease !important;
}

@media (hover:hover) and (pointer:fine) {

    .new-drop-card:hover .new-drop-content,
    .new-drop-card:hover .new-drop-copy,
    .new-drop-card:hover .drop-content,
    .new-drop-card:hover .feature-content {
        transform: translate3d(6px, 0, 0);
    }
}

/* ---------- HERO / FEATURE SECTIONS: FLOATING, NOT BOXED ---------- */
.hero,
.promo,
.shop-head,
.page-head,
.statement,
.admin-head {
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 28px !important;
}

/* subtle depth comes from shadows and background layers, not outlines */
.hero {
    box-shadow: 0 25px 80px rgba(17, 17, 17, .10) !important
}

.promo {
    box-shadow: 0 18px 50px rgba(17, 17, 17, .07) !important
}

/* ---------- FORMS: CLEAN EDGES, NOT BOXED CARDS ---------- */
.form-card,
.summary,
.auth-card,
.center-card,
.checkout-section,
.form-section {
    border: 0 !important;
    box-shadow: 0 16px 45px rgba(17, 17, 17, .07) !important;
}

input,
select,
textarea {
    border: 1px solid rgba(17, 17, 17, .20) !important;
    box-shadow: 0 4px 14px rgba(17, 17, 17, .035) !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #111111 !important;
    box-shadow: 0 8px 25px rgba(17, 17, 17, .08), 0 0 0 4px rgba(238, 229, 211, .90) !important;
}

/* ---------- BADGES / CHIPS: PILL SHAPES ONLY ---------- */
.pill,
.sale-badge,
.stock-badge,
.new-badge,
.status-pill,
.save,
.new-drop-label,
.count {
    border: 0 !important;
    border-radius: 999px !important;
}

/* ---------- NAV ICONS: CLEAN CIRCULAR CONTROLS ---------- */
.nav .icon-btn,
.admin-nav .icon-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .07) !important;
    box-shadow: none !important;
}

@media (hover:hover) and (pointer:fine) {

    .nav .icon-btn:hover,
    .admin-nav .icon-btn:hover {
        background: #EEE5D3 !important;
        color: #111111 !important;
        transform: translateY(-2px) scale(1.05) !important;
    }
}

/* ---------- BUTTONS: NO RECTANGULAR BORDER ---------- */
.btn,
.checkout-btn,
.buy-now,
.add-to-cart,
.primary-action {
    border: 0 !important;
    border-radius: 999px !important;
}

.btn.primary,
.btn.dark,
.checkout-btn,
.buy-now,
.add-to-cart,
.primary-action {
    box-shadow: 0 10px 28px rgba(17, 17, 17, .16) !important;
}

.btn.secondary,
.btn.light,
.btn.ghost {
    border: 0 !important;
}

/* ---------- GENERAL INTERACTIVE ELEMENTS ---------- */
a,
button,
.btn,
.product-card,
.new-drop-card,
.thumbnail,
.size-option,
.color-option {
    -webkit-tap-highlight-color: transparent;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: 0 !important
}

/* ---------- TOUCH / MOBILE ---------- */
@media (max-width:820px) {

    .product-card,
    .feature-card,
    .dashboard-card,
    .stat-card,
    .offer-stat,
    .form-card,
    .summary,
    .cart-item,
    .auth-card,
    .center-card,
    .review-panel,
    .tracking,
    .payment-option,
    .notification {
        border-radius: 18px !important;
        box-shadow: 0 10px 32px rgba(17, 17, 17, .075) !important;
    }

    .product-card .product-image,
    .product-card .image-wrap,
    .product-card .product-media {
        border-radius: 16px !important
    }

    .product-card:active {
        transform: scale(.985) !important;
    }

    .new-drop-card {
        min-height: unset !important;
        border-radius: 20px !important;
    }

    .new-drop-card:active {
        transform: scale(.992) !important
    }

    .new-drop-card::after {
        display: none !important
    }

    .product-card .wishlist,
    .product-card .wishlist-btn,
    .product-card .heart,
    .product-card .heart-btn,
    .product-card .favorite,
    .product-card .favorite-btn,
    .product-card .favourite,
    .product-card .favourite-btn,
    .product-card [class*="wishlist"],
    .product-card [class*="heart"],
    .product-card [class*="favorite"],
    .product-card [class*="favourite"] {
        top: 10px !important;
        right: 10px !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }

    .btn,
    .checkout-btn,
    .buy-now,
    .add-to-cart,
    .primary-action {
        min-height: 48px !important;
    }
}

/* ---------- SMALL SCREENS ---------- */
@media (max-width:480px) {

    .hero,
    .promo,
    .shop-head,
    .page-head,
    .statement,
    .admin-head {
        border-radius: 20px !important
    }

    .product-card {
        border-radius: 18px !important
    }

    .new-drop-card {
        border-radius: 18px !important
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion:reduce) {

    .product-card,
    .new-drop-card {
        animation: none !important;
        transition: none !important
    }

    .product-card img,
    .new-drop-card img {
        transition: none !important
    }
}