/* Nova Pro — Slate base + Brand Red accent (#981617)
   Coolors blend: slate structure + signature deep red identity */
:root {
    --nova-bg: #f1f5f9;
    --nova-surface: #ffffff;
    --nova-ink: #0f172a;
    --nova-muted: #64748b;
    --nova-line: #e2e8f0;
    --nova-navy: #0f172a;
    --nova-navy-soft: #1e293b;
    --nova-teal: #981617;
    --nova-teal-dark: #7a1213;
    --nova-teal-soft: #f8e8e8;
    --nova-accent: #b51c1e;
    --nova-accent-soft: rgba(152, 22, 23, 0.12);
    --nova-radius: 14px;
    --nova-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --nova-cinema-pattern: none;
    --nova-hero-accent: #f0c9c9;
    --nova-card-soft: #fbf5f5;
}

html.nova-theme-dark {
    --nova-bg: #0b1220;
    --nova-surface: #111827;
    --nova-ink: #e2e8f0;
    --nova-muted: #94a3b8;
    --nova-line: #1e293b;
    --nova-navy: #020617;
    --nova-navy-soft: #0f172a;
    --nova-teal: #c43a3c;
    --nova-teal-dark: #981617;
    --nova-teal-soft: #3a1516;
    --nova-accent: #e05a5c;
    --nova-accent-soft: rgba(152, 22, 23, 0.22);
    --nova-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    --nova-hero-accent: #f0c9c9;
    --nova-card-soft: #1a1010;
}

/* Prevent horizontal page scroll (100vw / full-bleed leftovers) */
html:has(body.storefront-nova),
body.storefront-nova {
    overflow-x: hidden;
    max-width: 100%;
}
body.storefront-nova {
    width: 100%;
    position: relative;
}

body.storefront-nova {
    background: var(--nova-bg);
    color: var(--nova-ink);
    font-family: "Plus Jakarta Sans", "IBM Plex Sans Arabic", system-ui, sans-serif;
    transition: background-color .25s ease, color .25s ease;
}
html[dir="rtl"] body.storefront-nova {
    font-family: "IBM Plex Sans Arabic", "Plus Jakarta Sans", system-ui, sans-serif;
}

/* Hide abstore orbs */
.storefront-nova .orb { display: none; }
.storefront-nova main { padding-top: .75rem !important; }
body.storefront-nova { --nova-nav-offset: 6.35rem; }
html.nova-topbar-hidden body.storefront-nova { --nova-nav-offset: 4.85rem; }

.nova-nav .sf-brand img {
    display: block;
    max-height: 52px;
    max-width: min(240px, 42vw);
    width: auto;
    height: auto;
    object-fit: contain;
}
.nova-footer .sf-brand img {
    display: block;
    max-height: 48px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.nova-nav .sf-brand {
    min-height: 44px;
    min-width: 0;
    max-width: min(46vw, 200px);
}
/* ── Nav ── */
.nova-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: transparent;
    transition: box-shadow .25s, background .25s;
}
.nova-topbar {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    gap: .75rem; min-height: 2rem;
    padding: .35rem 1rem;
    background: linear-gradient(90deg, #0f172a, #981617 50%, #0f172a);
    color: #fff;
    font-size: .78rem; font-weight: 600;
}
.nova-topbar-link {
    display: inline-flex; align-items: center; gap: .45rem;
    color: #fff; text-decoration: none;
    cursor: default;
    pointer-events: none;
}
.nova-topbar-link strong { font-weight: 800; letter-spacing: .02em; }
.nova-topbar-close {
    position: absolute; inset-inline-end: .75rem;
    background: transparent; border: 0; color: rgba(255,255,255,.85);
    font-size: 1.1rem; line-height: 1; cursor: pointer;
}
.nova-nav-shell {
    max-width: 72rem; margin: .55rem auto 0;
    padding: 0 .85rem;
    width: 100%;
    box-sizing: border-box;
}
.nova-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: .85rem 1.15rem;
    min-width: 0;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(238,221,225,.9);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.nova-nav.is-scrolled .nova-nav-inner {
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.12);
}
.nova-nav-links { display: none; align-items: center; gap: 1.35rem; }
@media (min-width: 900px) { .nova-nav-links { display: flex; } }
.nova-nav-link {
    position: relative;
    font-size: .84rem; font-weight: 650; color: var(--nova-muted);
    text-decoration: none; transition: color .2s;
}
.nova-nav-link:hover, .nova-nav-link.is-active { color: var(--nova-teal); }
.nova-nav-link.is-active::after {
    content: ""; position: absolute; left: 20%; right: 20%; bottom: -.35rem;
    height: 2px; border-radius: 999px; background: var(--nova-teal);
}
.nova-nav-actions { display: flex; align-items: center; gap: .55rem; }
.nova-lang {
    display: flex; border: 1px solid var(--nova-line); border-radius: 999px; overflow: hidden;
}
.nova-lang a {
    padding: .32rem .62rem; font-size: .72rem; font-weight: 700; color: var(--nova-muted);
    text-decoration: none; transition: background .2s, color .2s;
}
.nova-lang a.is-active { background: var(--nova-teal-soft); color: var(--nova-teal-dark); }
.nova-cart-btn {
    position: relative; display: grid; place-items: center;
    width: 40px; height: 40px; border-radius: 999px;
    color: var(--nova-muted); transition: background .2s, color .2s;
}
.nova-cart-btn:hover { background: var(--nova-teal-soft); color: var(--nova-teal); }
.nova-cart-badge {
    position: absolute; top: 2px; right: 2px;
    min-width: 16px; height: 16px; padding: 0 4px;
    border-radius: 999px; background: var(--nova-teal);
    color: #fff; font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.nova-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .65rem 1.15rem; border-radius: 999px;
    font-size: .84rem; font-weight: 700; text-decoration: none;
    border: 1px solid transparent; cursor: pointer; transition: all .2s;
    white-space: nowrap;
}
.nova-btn-primary { background: var(--nova-teal); color: #fff; }
.nova-btn-primary:hover { background: var(--nova-accent); color: #fff !important; }
.nova-btn-outline { background: #fff; border-color: var(--nova-line); color: var(--nova-ink); }
.nova-btn-outline:hover { border-color: var(--nova-teal); color: var(--nova-teal) !important; }
.nova-btn-ghost { background: transparent; color: var(--nova-muted); border: none; padding: .5rem .75rem; }
.nova-btn-ghost:hover { color: var(--nova-teal); }
.nova-btn-login { padding: .55rem 1rem; }
.nova-btn-light { background: #fff; color: var(--nova-navy); }
.nova-btn-light:hover { background: var(--nova-teal-soft); color: var(--nova-teal-dark) !important; }
.nova-btn-outline-light { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.nova-btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff !important; }
.nova-mobile-toggle { background: none; border: none; color: var(--nova-muted); cursor: pointer; }
.nova-mobile-menu {
    margin-top: .55rem;
    border: 1px solid var(--nova-line); border-radius: 18px; padding: 1rem 1.15rem;
    display: flex; flex-direction: column; gap: .75rem; background: #fff;
    box-shadow: var(--nova-shadow);
}
.nova-mobile-menu a { font-size: .875rem; font-weight: 600; color: var(--nova-muted); text-decoration: none; }
.nova-mobile-menu .nova-lang-mobile {
    align-self: flex-start;
    width: auto;
}
.nova-mobile-menu .nova-lang-mobile a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nova-account-menu { position: relative; }
.nova-account-menu summary {
    display: flex; align-items: center; gap: .4rem; cursor: pointer; list-style: none;
    font-size: .84rem; font-weight: 600; color: var(--nova-muted);
}
.nova-account-menu summary::-webkit-details-marker { display: none; }
.nova-account-dropdown {
    position: absolute; right: 0; top: calc(100% + 8px); min-width: 180px;
    background: #fff; border: 1px solid var(--nova-line); border-radius: 12px;
    padding: .5rem; box-shadow: var(--nova-shadow);
}
.nova-account-dropdown a, .nova-account-dropdown button {
    display: block; width: 100%; padding: .5rem .75rem; text-align: start;
    font-size: .82rem; color: var(--nova-muted); text-decoration: none;
    background: none; border: none; cursor: pointer; border-radius: 8px;
}
.nova-account-dropdown a:hover, .nova-account-dropdown button:hover { background: var(--nova-teal-soft); color: var(--nova-teal); }

/* Keep top bar stable on small phones */
@media (max-width: 899px) {
    .nova-nav-inner {
        gap: .5rem;
        padding: .65rem .8rem;
        border-radius: 18px;
    }
    .nova-nav-actions {
        margin-inline-start: auto;
        gap: .35rem;
    }
    .nova-nav-actions .nova-btn,
    .nova-nav-actions .nova-account-menu {
        display: none;
    }
    .nova-lang a {
        padding: .3rem .5rem;
        font-size: .68rem;
    }
    .nova-cart-btn {
        width: 36px;
        height: 36px;
    }
    .nova-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
    }
}

/* ── Footer ── */
.nova-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(700px 260px at 10% 0%, rgba(152, 22, 23, .26), transparent 60%),
        radial-gradient(700px 260px at 90% 0%, rgba(181, 28, 30, .18), transparent 62%),
        #050b18;
    color: #f1f5f9;
    margin-top: 3.5rem;
    padding: 3.2rem 1.25rem 1.5rem;
}
.nova-footer-shell {
    width: 100%;
    max-width: min(72rem, 100%);
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}
.nova-footer-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    backdrop-filter: blur(8px);
    margin-bottom: 1.9rem;
}
@media (min-width: 900px) {
    .nova-footer-cta {
        grid-template-columns: 1.2fr auto;
        align-items: center;
        padding: 1.45rem 1.6rem;
    }
}
.nova-footer-kicker {
    margin: 0 0 .35rem;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255,255,255,.75);
}
.nova-footer-cta h3 {
    margin: 0 0 .45rem;
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
}
.nova-footer-cta p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: .86rem;
    line-height: 1.6;
}
.nova-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}
.nova-footer-cta-actions .nova-btn {
    display: inline-flex;
    margin-bottom: 0;
    white-space: nowrap;
}
.nova-footer-cta-actions .nova-btn-light {
    background: #fff;
    color: #0f172a !important;
}
.nova-footer-cta-actions .nova-btn-light:hover {
    background: #f8e8e8;
    color: #7a1213 !important;
}
.nova-footer-cta-actions .nova-btn-outline-light {
    color: #fff !important;
}
.nova-footer-cta-actions .nova-btn-outline-light:hover {
    color: #fff !important;
}
@media (max-width: 640px) {
    .nova-footer-cta-actions {
        width: 100%;
    }
    .nova-footer-cta-actions .nova-btn {
        width: 100%;
    }
}
.nova-footer-grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid; gap: 2rem;
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1.8rem;
}
@media (min-width: 768px) {
    .nova-footer-grid {
        grid-template-columns: 1.35fr .85fr .85fr 1.35fr;
        align-items: start;
    }
}
.nova-footer h4 { color: #fff; font-size: .82rem; font-weight: 800; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.nova-footer a { display: block; font-size: .84rem; color: rgba(255,255,255,.72); text-decoration: none; margin-bottom: .5rem; transition: color .2s; }
.nova-footer a:hover { color: #fff; }
.nova-footer .storefront-social__intro {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin: .2rem 0 .65rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.nova-footer .storefront-social__intro::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #981617;
    box-shadow: 0 0 0 2px rgba(152, 22, 23, .28);
}
.nova-footer .storefront-social__icons {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.nova-footer .storefront-social--icons .storefront-social__icon,
.nova-footer .storefront-social--pills .storefront-social__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    min-height: 0;
    padding: 0;
    margin-bottom: 0;
    border-radius: 999px;
    border: 0;
    color: #fff !important;
    font-size: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.16);
    transition: transform .2s ease, filter .2s ease;
}
.nova-footer .storefront-social--pills .storefront-social__icon {
    width: auto;
    height: auto;
    min-height: 1.7rem;
    padding: .28rem .55rem;
    gap: .3rem;
    font-size: .65rem;
    font-weight: 700;
}
.nova-footer .storefront-social--icons .storefront-social__icon:hover,
.nova-footer .storefront-social--pills .storefront-social__icon:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    color: #fff !important;
}
.nova-footer .storefront-social--icons .storefront-social__icon svg,
.nova-footer .storefront-social--pills .storefront-social__icon svg {
    display: block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.nova-footer .storefront-social--icons .storefront-social__label {
    display: none;
}
.nova-footer .storefront-social--pills .storefront-social__label {
    line-height: 1;
    white-space: nowrap;
}
.nova-footer .storefront-social__icon--facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}
.nova-footer .storefront-social__icon--instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
}
.nova-footer .storefront-social__icon--whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}
.nova-footer .storefront-social__icon--telegram {
    background: linear-gradient(135deg, #2aabee, #229ed9);
}
.nova-footer .storefront-social__icon--tiktok {
    background: linear-gradient(135deg, #25f4ee, #111 48%, #fe2c55);
}
.nova-footer .storefront-social__icon--youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}
.nova-footer-brand p { font-size: .84rem; line-height: 1.65; margin: .75rem 0 1rem; color: rgba(255,255,255,.72); }
.nova-footer-payments {
    min-width: 0;
}
.nova-footer-payments h4 { margin-bottom: .65rem; }
.nova-pay-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .35rem;
    width: 100%;
    max-width: 100%;
}
@media (min-width: 640px) {
    .nova-pay-methods {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.nova-pay-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 1.85rem;
    padding: .3rem .4rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .9);
    font-size: .65rem;
    font-weight: 650;
    letter-spacing: .01em;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}
.nova-footer-bottom {
    max-width: 72rem;
    margin: 2rem auto 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: .75rem;
    color: rgba(255,255,255,.55);
    text-align: center;
}

/* ── Home ── */
.nova-home { max-width: 72rem; margin: 0 auto; }
.nova-hero-stage {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    background:
        radial-gradient(1200px 520px at 50% -10%, rgba(255,255,255,.14), transparent 55%),
        radial-gradient(900px 480px at 80% 20%, rgba(181, 28, 30, .22), transparent 50%),
        linear-gradient(145deg, #1e293b 0%, #0f172a 46%, #b51c1e 78%, #981617 100%);
    color: #fff;
    margin-bottom: 2rem;
}
.nova-hero-glow {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    opacity: .55;
}
.nova-hero-inner {
    position: relative; z-index: 1;
    max-width: 72rem; margin: 0 auto;
    display: grid; gap: 2rem; align-items: center;
    padding: 2.4rem 1.25rem 2.6rem;
}
@media (min-width: 980px) {
    .nova-hero-inner { grid-template-columns: 1.15fr .85fr; gap: 2.5rem; padding: 3.2rem 1.5rem 3.4rem; }
}
.nova-hero-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .45rem .9rem; border-radius: 999px;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
    color: #fff; font-size: .78rem; font-weight: 700; text-decoration: none;
}
.nova-hero-copy h1 {
    margin: 1rem 0 .75rem;
    font-size: clamp(2.1rem, 5.2vw, 3.6rem);
    font-weight: 800; line-height: 1.08; letter-spacing: -.035em;
    text-transform: none; color: #fff;
}
.nova-hero-copy h1 span {
    color: var(--nova-hero-accent);
    text-shadow: 0 0 24px rgba(240, 201, 201, .28);
}
.nova-hero-copy > p {
    max-width: 540px; color: rgba(255,255,255,.84);
    line-height: 1.7; font-size: 1.02rem; margin-bottom: 1.25rem;
}
.nova-search {
    display: flex; align-items: center; gap: .35rem;
    width: 100%; max-width: 640px;
    padding: .4rem .4rem .4rem .9rem;
    background: rgba(255,255,255,.95);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.nova-search-icon { color: #64748b; flex-shrink: 0; width: 18px; height: 18px; }
.nova-search input {
    flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
    font-size: .92rem; color: var(--nova-ink); padding: .55rem .35rem;
}
.nova-search-select {
    max-width: 150px; border: 0; border-inline-start: 1px solid #e2e8f0;
    background: transparent; color: var(--nova-muted);
    font-size: .78rem; font-weight: 600; padding: .4rem .55rem;
}
.nova-search-btn {
    width: 42px; height: 42px; border: 0; border-radius: 12px;
    background: var(--nova-teal); color: #fff; cursor: pointer;
    display: grid; place-items: center; flex-shrink: 0;
}
.nova-search-btn:hover { background: var(--nova-teal-dark); }
.nova-popular {
    display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
    margin-top: .9rem; font-size: .8rem; color: rgba(255,255,255,.78);
}
.nova-popular a {
    display: inline-flex; padding: .28rem .7rem; border-radius: 999px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    color: #fff; text-decoration: none; font-weight: 650; font-size: .75rem;
    transition: background .2s;
}
.nova-popular a:hover { background: rgba(255,255,255,.22); }
.nova-hero-visual { position: relative; display: grid; gap: 1rem; }
.nova-cinema-card {
    border-radius: 22px; overflow: hidden;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.nova-cinema-screen { padding: 1.1rem 1.15rem 1.25rem; }
.nova-cinema-bar { display: flex; gap: .35rem; margin-bottom: .9rem; }
.nova-cinema-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); display: block; }
.nova-cinema-platforms {
    font-size: .95rem; font-weight: 750; margin-bottom: .85rem; color: #fff;
}
.nova-chip-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.nova-chip-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: .55rem;
    animation: novaChipSlide 18s linear infinite;
}
.nova-chip-track span {
    flex: 0 0 auto;
    padding: .35rem .78rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
@keyframes novaChipSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
html[dir="rtl"] .nova-chip-track {
    animation-name: novaChipSlideRtl;
}
@keyframes novaChipSlideRtl {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}
.nova-hero-panel--float {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.5);
}
.nova-hero-panel {
    display: grid; gap: .65rem; padding: 1rem;
    background: var(--nova-surface); border: 1px solid var(--nova-line);
    border-radius: 18px; box-shadow: var(--nova-shadow);
}
.nova-hero-stat {
    display: flex; align-items: flex-start; gap: .85rem; padding: .75rem;
    border-radius: 12px; background: var(--nova-bg);
}
.nova-hero-stat-icon {
    flex: 0 0 40px; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; background: var(--nova-teal-soft); color: var(--nova-teal);
}
.nova-hero-stat strong { display: block; font-size: .86rem; color: var(--nova-ink); }
.nova-hero-stat small { display: block; font-size: .74rem; color: var(--nova-muted); margin-top: .15rem; line-height: 1.4; }

@media (max-width: 720px) {
    .nova-search { flex-wrap: wrap; border-radius: 18px; padding: .55rem; }
    .nova-search-icon { display: none; }
    .nova-search input { width: 100%; flex: 1 1 100%; }
    .nova-search-select { border-inline-start: 0; max-width: none; flex: 1; }
    .nova-hero-stage { border-radius: 0 0 20px 20px; }
}

/* Pillars */
.nova-pillars {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .nova-pillars { grid-template-columns: repeat(4, 1fr); } }
.nova-pillar-card {
    padding: 1.15rem; background: var(--nova-surface);
    border: 1px solid var(--nova-line); border-radius: var(--nova-radius);
    transition: border-color .2s, box-shadow .2s;
}
.nova-pillar-card:hover { border-color: #99f6e4; box-shadow: var(--nova-shadow); }
.nova-pillar-icon {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 10px; background: var(--nova-teal-soft); color: var(--nova-teal); margin-bottom: .75rem;
}
.nova-pillar-card h3 { font-size: .88rem; font-weight: 800; margin: 0 0 .25rem; }
.nova-pillar-card p { font-size: .74rem; color: var(--nova-muted); line-height: 1.45; margin: 0; }

/* Sections */
.nova-section { padding: 3rem 0; }
.nova-section-muted { background: var(--nova-surface); border-block: 1px solid var(--nova-line); margin-inline: -1rem; padding-inline: 1rem; }
@media (min-width: 640px) { .nova-section-muted { margin-inline: -1.5rem; padding-inline: 1.5rem; border-radius: 0; } }
.nova-section-head { margin-bottom: 1.75rem; max-width: 560px; }
.nova-eyebrow { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--nova-teal); margin: 0 0 .4rem; }
.nova-eyebrow-light { color: #fff; }
.nova-section-head h2, .nova-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; margin: 0; line-height: 1.1; }
.nova-section-head h2 em, .nova-section h2 em { font-style: normal; color: var(--nova-teal); }
.nova-section-sub { color: var(--nova-muted); font-size: .92rem; line-height: 1.65; margin: .5rem 0 0; }

/* Categories */
.nova-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.05rem;
}
.nova-category-grid--catalog {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.15rem;
}
.nova-category-card {
    position: relative;
    display: block;
    padding: 1.1rem 1.1rem 1.25rem;
    min-height: 138px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #efd8df;
    border-radius: 18px;
    text-decoration: none;
    color: var(--nova-ink);
    border-left: 4px solid var(--nova-teal);
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
    transition: transform .26s cubic-bezier(.2,.7,.2,1), box-shadow .26s ease, border-color .26s ease, background .26s ease;
}
.nova-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(240px 110px at 100% 0, rgba(152, 22, 23), .14), transparent 70%),
        linear-gradient(180deg, transparent, rgba(152, 22, 23), .03));
    opacity: 0;
    transition: opacity .26s ease;
}
.nova-category-card::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(152, 22, 23), .28), rgba(152, 22, 23), 0));
    opacity: .45;
}
html[dir="rtl"] .nova-category-card { border-left: none; border-right: 3px solid var(--nova-teal); }
.nova-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, .14);
    border-color: #e8b6c3;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--nova-ink) !important;
}
.nova-category-card:hover::before { opacity: 1; }
.nova-category-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(145deg, #f8e8e8, #f0c9c9);
    color: var(--nova-teal);
    margin-bottom: .9rem;
    box-shadow: inset 0 0 0 1px #f2c4d0, 0 8px 18px rgba(152, 22, 23), .12);
}
.nova-category-card h3 {
    font-size: 1rem;
    font-weight: 860;
    margin: 0 0 .36rem;
    letter-spacing: -.012em;
    line-height: 1.24;
    color: #0f172a;
}
.nova-category-card p {
    display: inline-flex;
    align-items: center;
    padding: .2rem .55rem;
    border-radius: 999px;
    font-size: .72rem;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    margin: 0;
    font-weight: 700;
}
.nova-category-arrow {
    position: absolute;
    bottom: .9rem;
    right: .9rem;
    color: #981617;
    opacity: 1;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8e8e8;
    border: 1px solid #e05a5c;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
html[dir="rtl"] .nova-category-arrow { right: auto; left: 1rem; }
.nova-category-card:hover .nova-category-arrow {
    transform: translateX(2px);
    background: #f0c9c9;
    border-color: #e05a5c;
}
html[dir="rtl"] .nova-category-card:hover .nova-category-arrow {
    transform: translateX(-2px);
}

/* Steps */
.nova-steps { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .nova-steps { grid-template-columns: repeat(3, 1fr); } }
.nova-steps article { padding: 1.25rem; background: var(--nova-bg); border-radius: var(--nova-radius); }
.nova-steps article span {
    display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center;
    border-radius: 8px; background: var(--nova-teal-soft); color: var(--nova-teal);
    font-size: .72rem; font-weight: 900;
}
.nova-steps article h3 { margin: .75rem 0 .25rem; font-size: .92rem; font-weight: 800; }
.nova-steps article p { margin: 0; font-size: .82rem; color: var(--nova-muted); line-height: 1.55; }

/* Reviews carousel */
.nova-reviews-head {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
}
.nova-reviews-rating {
    margin-top: .6rem;
    font-size: .8rem;
    color: #64748b;
    font-weight: 700;
}
.nova-reviews-rating span {
    color: #f5b301;
    letter-spacing: .08em;
    margin-inline-end: .25rem;
}
.nova-reviews-wrap {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "prev viewport next"
        "dots dots dots";
    align-items: center;
    gap: .7rem .75rem;
}
.nova-reviews-wrap > [data-reviews-prev] { grid-area: prev; }
.nova-reviews-wrap > .nova-reviews-viewport { grid-area: viewport; }
.nova-reviews-wrap > [data-reviews-next] { grid-area: next; }
.nova-reviews-dots { grid-area: dots; }
.nova-reviews-viewport {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}
.nova-reviews-track {
    display: flex;
    gap: .9rem;
    will-change: transform;
    transition: transform .55s cubic-bezier(.22, .7, .2, 1);
}
.nova-review-card {
    position: relative;
    flex: 0 0 calc((100% - 1.8rem) / 3);
    min-height: 210px;
    padding: 1.05rem 1rem .95rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
    display: flex;
    flex-direction: column;
}
.nova-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .55rem;
}
.nova-review-quote {
    color: #94a3b8;
}
.nova-review-stars {
    color: #f5b301;
    font-size: .78rem;
    letter-spacing: .05em;
}
.nova-review-card p {
    margin: 0;
    color: #64748b;
    font-size: .84rem;
    line-height: 1.7;
    flex: 1;
}
.nova-review-card footer {
    margin-top: 1.1rem;
    padding-top: .75rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
}
.nova-review-card footer > div {
    display: flex;
    flex-direction: column;
    gap: .12rem;
}
.nova-review-card strong {
    font-size: .78rem;
    color: #0f172a;
    font-weight: 800;
}
.nova-review-card small {
    font-size: .7rem;
    color: #64748b;
}
.nova-review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #b51c1e, #0f172a);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .03em;
    flex-shrink: 0;
}
.nova-review-nav {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .10);
    cursor: pointer;
    transition: color .2s, border-color .2s, transform .2s;
}
.nova-review-nav:hover {
    color: #7a1213;
    border-color: #b51c1e;
    transform: scale(1.05);
}
.nova-reviews-dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: .15rem;
}
.nova-reviews-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #cbd5e1;
    cursor: pointer;
    transition: width .2s, background .2s;
}
.nova-reviews-dots button.is-active {
    width: 22px;
    background: #981617;
}
@media (max-width: 980px) {
    .nova-review-card {
        flex-basis: calc((100% - .9rem) / 2);
    }
}
@media (max-width: 720px) {
    .nova-reviews-wrap {
        grid-template-columns: 1fr;
        grid-template-areas:
            "viewport"
            "dots";
    }
    .nova-review-nav {
        display: none;
    }
    .nova-review-card {
        flex-basis: 100%;
    }
}

/* Split / web dev home */
.nova-split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .nova-split { grid-template-columns: 1fr 1fr; } }
.nova-code-preview {
    padding: 1rem; background: var(--nova-navy); border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .28);
    background-image: var(--nova-cinema-pattern);
}
.nova-code-bar { display: flex; gap: 5px; padding-bottom: .85rem; }
.nova-code-bar i { width: 8px; height: 8px; border-radius: 50%; background: #fff; display: block; }
.nova-code-body { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; min-height: 140px; }
.nova-code-body span { border-radius: 8px; background: rgba(255,255,255,.08); }
.nova-code-body span:first-child { grid-row: span 2; background: rgba(255,255,255,.16); }

/* Wholesale banner */
.nova-wholesale-banner {
    padding: 2.5rem; border-radius: 18px;
    background: linear-gradient(135deg, #0f172a 0%, #b51c1e 55%, #981617 100%);
    background-image: var(--nova-cinema-pattern), linear-gradient(135deg, #0f172a 0%, #b51c1e 55%, #981617 100%);
    color: #fff;
}
.nova-wholesale-banner h2 { color: #fff; margin: .35rem 0 .75rem; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.nova-wholesale-banner p { color: rgba(255,255,255,.82); max-width: 520px; line-height: 1.65; margin-bottom: 1.25rem; }

/* Close section — premium promo banner */
.nova-close {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 3.4rem 1.5rem 2rem;
    margin-top: 1.25rem;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(720px 280px at 12% 20%, rgba(152, 22, 23, .45), transparent 60%),
        radial-gradient(640px 260px at 88% 30%, rgba(181, 28, 30, .35), transparent 62%),
        linear-gradient(120deg, #1e293b 0%, #0f172a 42%, #3a1516 78%, #981617 100%);
}
.nova-close-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse at center, #000 28%, transparent 78%);
    opacity: .55;
}
.nova-close-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}
.nova-close h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin: 0 0 .75rem;
    color: #fff;
    letter-spacing: -.02em;
}
.nova-close p {
    color: rgba(255,255,255,.86);
    max-width: 560px;
    margin: 0 auto 1.4rem;
    line-height: 1.7;
    font-size: 1rem;
}
.nova-close-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 1.8rem;
}
.nova-close .nova-btn-primary {
    background: #981617;
    box-shadow: 0 10px 24px rgba(152, 22, 23, .35);
}
.nova-close .nova-btn-primary:hover {
    background: #b51c1e;
}
.nova-close .nova-btn-outline-light {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.35);
    backdrop-filter: blur(6px);
}
.nova-close-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .7rem;
    max-width: 860px;
    margin: 0 auto;
}
.nova-close-stats article {
    padding: .9rem .7rem;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.nova-close-stats strong {
    display: block;
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    font-weight: 850;
    color: #fff;
    letter-spacing: -.02em;
}
.nova-close-stats span {
    display: block;
    margin-top: .2rem;
    font-size: .72rem;
    color: rgba(255,255,255,.78);
    font-weight: 600;
}
.nova-close-float {
    position: absolute;
    top: 18%;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    z-index: 0;
    opacity: .28;
    pointer-events: none;
}
.nova-close-float span {
    display: inline-flex;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
}
.nova-close-float-left { inset-inline-start: 1.2rem; }
.nova-close-float-right { inset-inline-end: 1.2rem; align-items: flex-end; }
.nova-close-compact { padding: 2.5rem; margin-bottom: 2rem; }
@media (max-width: 900px) {
    .nova-close-float { display: none; }
    .nova-close-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .nova-close { padding: 2.4rem 1rem 1.4rem; border-radius: 18px; }
    .nova-close-stats { gap: .55rem; }
}

/* Page templates */
.nova-page { max-width: 72rem; margin: 0 auto; }
.nova-page-hero {
    padding: 2.5rem; border-radius: 20px; margin-bottom: 1rem; color: #fff;
    background: linear-gradient(135deg, #0f172a, #b51c1e 55%, #981617);
    background-image: var(--nova-cinema-pattern), linear-gradient(135deg, #0f172a, #b51c1e 55%, #981617);
}
.nova-page-hero-sm { padding: 2rem; }
.nova-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.08; margin: .5rem 0; color: #fff; }
.nova-page-hero h1 em { font-style: normal; color: #fff; text-decoration: underline; text-underline-offset: .18em; }
.nova-page-hero p { color: rgba(255,255,255,.82); max-width: 560px; line-height: 1.7; margin: 0; }

/* Service grid (webdev page) */
.nova-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; margin-top: 1rem; }
@media (min-width: 768px) { .nova-service-grid { grid-template-columns: repeat(4, 1fr); } }
.nova-service-grid article {
    padding: 1.15rem; background: var(--nova-surface); border: 1px solid var(--nova-line);
    border-radius: var(--nova-radius); transition: border-color .2s;
}
.nova-service-grid article:hover { border-color: #99f6e4; }
.nova-service-grid i { color: var(--nova-teal); margin-bottom: .5rem; }
.nova-service-grid h3 { font-size: .84rem; font-weight: 800; margin: 0; }

/* Wholesale offers */
.nova-offer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.nova-offer-card { background: var(--nova-surface); border: 1px solid var(--nova-line); border-radius: var(--nova-radius); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.nova-offer-card:hover { box-shadow: var(--nova-shadow); transform: translateY(-3px); }
.nova-offer-card img, .nova-offer-placeholder { width: 100%; height: 160px; object-fit: cover; background: var(--nova-teal-soft); display: flex; align-items: center; justify-content: center; color: var(--nova-teal); }
.nova-offer-body { padding: 1.15rem; }
.nova-offer-body h3 { font-size: 1rem; font-weight: 800; margin: 0 0 .4rem; }
.nova-offer-body > p { font-size: .82rem; color: var(--nova-muted); line-height: 1.55; margin-bottom: .75rem; min-height: 40px; }
.nova-offer-meta { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; margin-bottom: .85rem; }
.nova-offer-meta--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nova-offer-meta span { padding: .35rem .4rem; background: var(--nova-bg); border-radius: 8px; }
.nova-offer-meta small { display: block; font-size: .58rem; color: var(--nova-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .12rem; line-height: 1.2; }
.nova-offer-meta strong { font-size: .72rem; word-break: break-word; line-height: 1.25; }
.nova-offer-price {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .2rem;
    unicode-bidi: isolate;
    direction: ltr;
}
html[dir="rtl"] .nova-offer-meta--3 {
    direction: rtl;
}
@media (max-width: 420px) {
    .nova-offer-meta--3 { grid-template-columns: 1fr; }
}

.nova-empty { text-align: center; color: var(--nova-muted); padding: 2rem; grid-column: 1 / -1; }

/* ── Shared Livewire / catalog overrides ── */
.storefront-nova .btn-primary {
    background: var(--nova-teal) !important; color: #fff !important;
    border-radius: 10px !important; box-shadow: none !important;
    display: inline-flex; align-items: center; gap: .4rem;
}
.storefront-nova .btn-primary:hover { background: var(--nova-teal-dark) !important; }
.storefront-nova .btn-outline {
    border-color: var(--nova-line) !important; color: var(--nova-ink) !important;
    background: #fff !important; border-radius: 10px !important;
}
.storefront-nova .btn-outline:hover { border-color: var(--nova-teal) !important; color: var(--nova-teal) !important; }
.storefront-nova .glass-card {
    background: var(--nova-surface) !important; border: 1px solid var(--nova-line) !important;
    border-radius: var(--nova-radius) !important; box-shadow: var(--nova-shadow) !important;
}
.storefront-nova .page-title {
    color: var(--nova-ink); font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800; letter-spacing: -.03em;
}
.storefront-nova .text-\[\#c92a3d\], .storefront-nova .text-\[\#6b7280\] { color: var(--nova-teal) !important; }
.storefront-nova .text-\[\#00f5d4\] { color: var(--nova-teal) !important; }
.storefront-nova .category-back-link { color: var(--nova-teal) !important; }
.storefront-nova .ab-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.storefront-nova .search-input, .storefront-nova .sort-select {
    background: #fff !important; border: 1px solid var(--nova-line) !important;
    color: var(--nova-ink) !important; border-radius: 10px !important;
}
.storefront-nova .search-input:focus { border-color: var(--nova-teal) !important; outline: none; box-shadow: 0 0 0 3px rgba(13,148,136,.12) !important; }

/* Checkout/customer form fields: add subtle visible border */
.storefront-nova .sf-input {
    border: 1px solid #e2e8f0 !important;
    background: #fff !important;
    color: var(--nova-ink) !important;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.storefront-nova .sf-input::placeholder {
    color: #64748b !important;
}
.storefront-nova .sf-input:hover {
    border-color: #b51c1e !important;
}
.storefront-nova .sf-input:focus {
    border-color: var(--nova-teal) !important;
    box-shadow: 0 0 0 3px rgba(152, 22, 23), 0.12) !important;
    outline: none;
}

/* Lucide icons global fix */
.storefront-nova svg.lucide, .storefront-nova [data-lucide] + svg {
    width: 1.25rem; height: 1.25rem; flex-shrink: 0;
}
.nova-pillar-icon svg, .nova-hero-stat-icon svg, .nova-category-icon svg { width: 1.25rem; height: 1.25rem; }

/* Scroll reveal */
.storefront-nova .reveal-on-scroll { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.storefront-nova .reveal-on-scroll.is-visible { opacity: 1; transform: none; }

@media (max-width: 600px) {
    .nova-hero-cta, .nova-close-actions { flex-direction: column; }
    .nova-hero-cta .nova-btn, .nova-close-actions .nova-btn { width: 100%; }
    .nova-pillars { grid-template-columns: 1fr; }
}

/* ── Nova v2: Aceternity + MagicUI + shadcn inspired system ── */
.storefront-nova .nova-home,
.storefront-nova .nova-page {
    position: relative;
}
.storefront-nova .nova-home::before,
.storefront-nova .nova-page::before {
    content: "";
    position: absolute;
    inset: -24px -24px auto;
    height: 300px;
    pointer-events: none;
    background:
        radial-gradient(420px 240px at 12% 16%, rgba(152, 22, 23), .10), transparent 62%),
        radial-gradient(360px 220px at 88% 8%, rgba(122, 18, 19), .10), transparent 68%);
    z-index: 0;
}
.storefront-nova .nova-home > *,
.storefront-nova .nova-page > * {
    position: relative;
    z-index: 1;
}

.storefront-nova .nova-btn {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 1px 0 rgba(255,255,255,.45) inset, 0 8px 20px rgba(15, 23, 42,.08);
}
.storefront-nova .nova-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.32) 48%, transparent 65%);
    transition: transform .55s ease;
}
.storefront-nova .nova-btn:hover::after {
    transform: translateX(130%);
}

.storefront-nova .nova-hero,
.storefront-nova .nova-page-hero,
.storefront-nova .nova-wholesale-banner,
.storefront-nova .nova-close {
    border: 1px solid rgba(255,255,255,.18);
}

.storefront-nova .nova-hero-panel,
.storefront-nova .nova-pillar-card,
.storefront-nova .nova-category-card,
.storefront-nova .nova-service-grid article,
.storefront-nova .nova-offer-card,
.storefront-nova .glass-card {
    backdrop-filter: blur(6px);
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(125deg, rgba(152, 22, 23),.24), rgba(152, 22, 23),.05)) border-box;
}

.storefront-nova .nova-nav-link {
    position: relative;
}
.storefront-nova .nova-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nova-teal-dark), var(--nova-teal));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.storefront-nova .nova-nav-link:hover::after,
.storefront-nova .nova-nav-link.is-active::after {
    transform: scaleX(1);
}

/* React-bits inspired subtle float/parallax vibe */
.storefront-nova .nova-hero-panel .nova-hero-stat:nth-child(1) { animation: novaFloat 4.8s ease-in-out infinite; }
.storefront-nova .nova-hero-panel .nova-hero-stat:nth-child(2) { animation: novaFloat 5.2s ease-in-out .3s infinite; }
.storefront-nova .nova-hero-panel .nova-hero-stat:nth-child(3) { animation: novaFloat 5.6s ease-in-out .5s infinite; }
@keyframes novaFloat { 50% { transform: translateY(-4px); } }

.storefront-nova .nova-pillar-card,
.storefront-nova .nova-service-grid article,
.storefront-nova .nova-offer-card,
.storefront-nova .ab-product-card {
    transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.storefront-nova .nova-pillar-card:hover,
.storefront-nova .nova-service-grid article:hover,
.storefront-nova .nova-offer-card:hover,
.storefront-nova .ab-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(15, 23, 42,.14);
}

/* Shared storefront cards (catalog / category / best sellers) */
.storefront-nova .ab-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
    color: var(--nova-ink) !important;
    text-decoration: none;
}
.storefront-nova .ab-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(170deg, transparent 70%, rgba(152, 22, 23), .08));
    opacity: 0;
    transition: opacity .25s ease;
}
.storefront-nova .ab-product-card:hover::before { opacity: 1; }
.storefront-nova .ab-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 38px rgba(15, 23, 42, .16);
    border-color: #e05a5c;
}
.storefront-nova .ab-card-thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background: linear-gradient(160deg, #f1f5f9, #fff);
}
.storefront-nova .ab-card-thumb::after {
    content: "";
    position: absolute;
    inset: auto -15% -45% -15%;
    height: 70%;
    background: radial-gradient(circle at center, rgba(152, 22, 23), .20), transparent 64%);
    pointer-events: none;
}
.storefront-nova .ab-card-thumb-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    image-rendering: auto;
}
.storefront-nova .ab-product-card:hover .ab-card-thumb-img {
    transform: scale(1.055);
}
.storefront-nova .ab-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem 1rem 1.02rem;
}
.storefront-nova .ab-card-tag {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: #64748b;
    font-size: .64rem;
    font-weight: 820;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.storefront-nova .ab-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--nova-teal); }
.storefront-nova .ab-card-title {
    margin: .58rem 0 .32rem;
    line-height: 1.25;
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: -.015em;
}
.storefront-nova .ab-card-desc {
    color: #64748b !important;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 0;
    font-size: .78rem;
    line-height: 1.55;
}
.storefront-nova .ab-card-variants {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem;
    margin-top: .85rem;
    padding: .35rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e8edf3;
}
.storefront-nova .ab-badge-premium,
.storefront-nova .ab-badge-discount {
    position: absolute;
    top: .7rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .34rem .55rem;
    border-radius: 999px;
    font-size: .61rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .04em;
}
.storefront-nova .ab-badge-premium { inset-inline-end: .7rem; }
.storefront-nova .ab-badge-discount {
    inset-inline-start: .7rem;
    background: var(--nova-teal);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .45);
}
.storefront-nova .ab-variant-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.7rem;
    padding: .28rem .7rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #fff;
    color: #475569;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.storefront-nova .ab-variant-chip.is-featured {
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    border-color: rgba(152, 22, 23, .22);
    color: #981617;
    box-shadow: 0 2px 6px rgba(152, 22, 23, .1);
}
.storefront-nova .ab-product-card:hover .ab-variant-chip {
    border-color: #e2e8f0;
}
.storefront-nova .ab-product-card:hover .ab-variant-chip.is-featured {
    border-color: rgba(152, 22, 23, .35);
    background: linear-gradient(135deg, #fff0f0, #ffdede);
}
.storefront-nova .ab-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: .65rem;
    margin-top: auto;
    padding-top: .95rem;
}
.storefront-nova .ab-price-from {
    margin-bottom: .15rem;
    color: #64748b;
    font-size: .6rem;
    font-weight: 820;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.storefront-nova .ab-price-value {
    color: #7a1213 !important;
    font-size: 1.04rem;
    font-weight: 850;
    letter-spacing: -.02em;
}
.storefront-nova .ab-price-period {
    color: #64748b;
    font-size: .66rem;
    font-weight: 700;
}
.storefront-nova .ab-btn-detail {
    padding: .58rem .72rem;
    border-radius: 11px;
    border: 1px solid #e05a5c;
    background: #f8e8e8;
    color: #0f172a !important;
    font-size: .7rem;
    font-weight: 900;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.storefront-nova .ab-btn-detail:hover {
    background: var(--nova-teal);
    border-color: var(--nova-teal);
    color: #fff !important;
}

/* Better spacing/typography harmony like shadcn */
.storefront-nova .nova-section h2,
.storefront-nova .nova-page h1,
.storefront-nova .page-title {
    text-wrap: balance;
}
.storefront-nova .nova-section-sub,
.storefront-nova .ab-card-desc,
.storefront-nova .nova-offer-body > p {
    text-wrap: pretty;
}

/* Product page overhaul for Nova theme */
.storefront-nova .ab-detail-root {
    --ab-bg3: #f1f5f9;
    --ab-text: var(--nova-ink);
    --ab-text2: var(--nova-muted);
    --ab-text3: #64748b;
    --ab-card: #ffffff;
    --ab-border: #e2e8f0;
    --ab-border-strong: #e05a5c;
    --ab-accent: var(--nova-teal);
    --ab-accent-strong: var(--nova-teal-dark);
    --ab-gold: var(--nova-teal);
}
.storefront-nova .ab-breadcrumb {
    margin-bottom: 1rem;
    color: #64748b;
}
.storefront-nova .ab-breadcrumb a {
    color: #8f6673;
}
.storefront-nova .ab-breadcrumb a:hover {
    color: var(--nova-teal-dark);
}

.storefront-nova .ab-detail-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 1.6rem;
}
@media (max-width: 1024px) {
    .storefront-nova .ab-detail-grid {
        grid-template-columns: 1fr;
    }
}

.storefront-nova .ab-detail-media {
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at 50% 50%, rgba(152, 22, 23), 0.2), transparent 62%),
        linear-gradient(150deg, #300b13, #5d1222 55%, #3c0c18);
}
.storefront-nova .ab-detail-media::before {
    background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.04), transparent 68%);
    opacity: .5;
}
.storefront-nova .ab-media-watermark {
    color: rgba(255, 255, 255, 0.11);
    font-size: clamp(1.5rem, 5vw, 3rem);
}
.storefront-nova .ab-media-badge {
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.storefront-nova .ab-thumb-btn {
    border-color: #e2e8f0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}
.storefront-nova .ab-thumb-btn.is-active {
    border-color: var(--nova-teal);
}

.storefront-nova .ab-detail-title {
    font-size: clamp(1.9rem, 4.4vw, 2.7rem);
    letter-spacing: -0.03em;
    color: var(--nova-ink);
}
.storefront-nova .ab-detail-short,
.storefront-nova .ab-detail-desc {
    color: var(--nova-muted);
}

.storefront-nova .ab-features-list {
    gap: 0.75rem 1rem;
}
.storefront-nova .ab-feature-item {
    padding: 0.6rem 0.75rem;
    border: 1px solid #f2dfe4;
    border-radius: 10px;
    background: #fff;
}
.storefront-nova .ab-feature-check {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.storefront-nova .ab-ratings-row {
    margin-top: 0.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem;
    background: #fff;
}
.storefront-nova .ab-rating-value {
    color: var(--nova-ink);
}
.storefront-nova .ab-rating-label {
    color: #64748b;
}
.storefront-nova .ab-rating-stars {
    color: #d97706;
}

.storefront-nova .ab-purchase-panel {
    top: 88px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(145deg, rgba(152, 22, 23),.18), rgba(152, 22, 23),.05)) border-box;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}
.storefront-nova .ab-panel-title {
    color: #64748b;
    border-bottom-color: #f3e5e9;
}
.storefront-nova .ab-variant-group-label {
    color: var(--nova-muted);
}
.storefront-nova .ab-variant-selected {
    color: var(--nova-ink);
}
.storefront-nova .ab-vopt,
.storefront-nova .ab-aopt {
    border-color: #efd5dc;
    background: #fff;
    color: #6f4f5b;
}
.storefront-nova .ab-vopt:hover:not(.is-disabled),
.storefront-nova .ab-aopt:hover:not(.is-disabled) {
    border-color: #de9db0;
    background: #fff2f5;
    color: #0f172a;
}
.storefront-nova .ab-vopt.is-active,
.storefront-nova .ab-aopt.is-active {
    border-color: var(--nova-teal);
    background: #f8e8e8;
    color: #0f172a;
    box-shadow: 0 0 0 2px rgba(152, 22, 23), 0.1);
}
.storefront-nova .ab-vopt-sub,
.storefront-nova .ab-aopt-desc {
    color: #a17a86;
}
.storefront-nova .ab-vopt.is-active .ab-vopt-sub {
    color: #0f172a;
}

.storefront-nova .ab-qty-input {
    border-color: #efd5dc;
    border-radius: 10px;
    background: #fff;
    color: var(--nova-ink);
}
.storefront-nova .ab-qty-input:focus {
    border-color: var(--nova-teal);
    box-shadow: 0 0 0 3px rgba(152, 22, 23), 0.1);
}

.storefront-nova .ab-price-summary {
    background: #f8fafc;
    border-color: #efd8df;
    border-radius: 12px;
}
.storefront-nova .ab-price-row-label {
    color: var(--nova-muted);
}
.storefront-nova .ab-price-row-val {
    color: var(--nova-ink);
}
.storefront-nova .ab-price-total-val {
    color: var(--nova-teal);
}
.storefront-nova .ab-price-compare {
    color: #a17a86;
}

.storefront-nova .ab-notice {
    background: #f8e8e8;
    border-color: #f2d5dd;
    color: #7a4b59;
    border-radius: 10px;
}
.storefront-nova .ab-notice svg {
    color: var(--nova-teal);
}

.storefront-nova .ab-btn-buy {
    background: linear-gradient(145deg, var(--nova-teal), var(--nova-teal-dark));
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
}
.storefront-nova .ab-btn-buy:hover:not(:disabled) {
    background: linear-gradient(145deg, #cf2744, var(--nova-teal-dark));
}
.storefront-nova .ab-btn-cart {
    border-color: #e05a5c;
    color: #0f172a;
    background: #fff;
    border-radius: 12px;
}
.storefront-nova .ab-btn-cart:hover:not(:disabled) {
    border-color: var(--nova-teal);
    background: #f8e8e8;
}
.storefront-nova .ab-guarantee {
    color: #876470;
}

.storefront-nova .ab-share-block,
.storefront-nova .ab-product-social--nested {
    border-top-color: #e2e8f0;
}
.storefront-nova .ab-pay-hint {
    background: linear-gradient(135deg, #fff5f5, #fffaf8);
    border-color: #f0d0d2;
    color: #5c4a4e;
}
.storefront-nova .ab-pay-hint svg { color: #981617; }
.storefront-nova .ab-pay-hint__label {
    background: rgba(152, 22, 23, 0.1);
    color: #981617;
}
.storefront-nova .ab-product-social .storefront-social__intro {
    color: #64748b;
}
.storefront-nova .ab-product-social .storefront-social__intro {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin: 0 0 .75rem;
    padding: .28rem .7rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.storefront-nova .ab-product-social .storefront-social__intro::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #981617;
    box-shadow: 0 0 0 3px rgba(152, 22, 23, .18);
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icons {
    gap: .45rem;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon {
    width: auto !important;
    height: auto !important;
    min-height: 2.15rem;
    padding: .42rem .72rem !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-size: .72rem;
    font-weight: 700;
    gap: .4rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, .10);
    transition: transform .2s ease, filter .2s ease;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon:hover,
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon:focus,
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon:active {
    transform: translateY(-2px);
    filter: brightness(1.06);
    color: #fff !important;
    border-color: transparent !important;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon svg {
    width: 14px;
    height: 14px;
    color: #fff !important;
    fill: currentColor;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__label {
    line-height: 1;
    white-space: nowrap;
    color: #fff !important;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon--facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9) !important;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon--instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af) !important;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon--whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon--telegram {
    background: linear-gradient(135deg, #2aabee, #229ed9) !important;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon--tiktok {
    background: linear-gradient(135deg, #25f4ee, #111 48%, #fe2c55) !important;
}
.storefront-nova .ab-product-social .storefront-social--pills .storefront-social__icon--youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000) !important;
}

@media (max-width: 640px) {
    .storefront-nova .ab-purchase-panel {
        padding: 1.1rem;
    }
    .storefront-nova .ab-detail-title {
        font-size: 1.8rem;
    }
}

/* Accessibility + reduced motion */
@media (prefers-reduced-motion: reduce) {
    .storefront-nova .nova-btn::after,
    .storefront-nova .nova-pillar-card,
    .storefront-nova .nova-category-card,
    .storefront-nova .nova-service-grid article,
    .storefront-nova .nova-offer-card,
    .storefront-nova .ab-product-card,
    .storefront-nova .nova-hero-panel .nova-hero-stat {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
    .nova-chip-track {
        animation: none !important;
        transform: none !important;
    }
}

/* Theme toggle */
.nova-theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--nova-line);
    background: var(--nova-surface);
    color: var(--nova-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.nova-theme-toggle:hover {
    color: var(--nova-teal);
    border-color: var(--nova-teal);
}
.nova-theme-icon-sun { display: none; }
html.nova-theme-dark .nova-theme-icon-moon { display: none; }
html.nova-theme-dark .nova-theme-icon-sun { display: block; }

/* Night mode surface overrides for hardcoded whites */
html.nova-theme-dark .nova-nav-inner,
html.nova-theme-dark .nova-mobile-menu,
html.nova-theme-dark .nova-account-dropdown,
html.nova-theme-dark .nova-search,
html.nova-theme-dark .nova-pillar-card,
html.nova-theme-dark .nova-category-card,
html.nova-theme-dark .nova-review-card,
html.nova-theme-dark .nova-review-nav,
html.nova-theme-dark .storefront-nova .ab-product-card,
html.nova-theme-dark .storefront-nova .glass-card,
html.nova-theme-dark .storefront-nova .ab-card-body,
html.nova-theme-dark .nova-btn-outline {
    background: var(--nova-surface) !important;
    border-color: var(--nova-line) !important;
    color: var(--nova-ink);
}
html.nova-theme-dark .nova-hero-panel,
html.nova-theme-dark .nova-hero-stat {
    background: rgba(17, 24, 39, .92);
    border-color: rgba(148, 163, 184, .2);
}
html.nova-theme-dark .nova-hero-stat strong { color: #e2e8f0; }
html.nova-theme-dark .nova-hero-stat small { color: #94a3b8; }
html.nova-theme-dark .nova-search input,
html.nova-theme-dark .nova-search-select {
    color: var(--nova-ink);
}
html.nova-theme-dark .nova-section-muted {
    background: #0f172a;
    border-color: var(--nova-line);
}
html.nova-theme-dark .nova-footer {
    background: #020617;
}
html.nova-theme-dark .storefront-nova .ab-card-thumb {
    background: linear-gradient(160deg, #1e293b, #0f172a);
}
html.nova-theme-dark .storefront-nova .ab-card-variants {
    background: #151c2c !important;
    border-color: var(--nova-line) !important;
}
html.nova-theme-dark .storefront-nova .ab-variant-chip {
    background: #1a2234 !important;
    border-color: transparent !important;
    color: #94a3b8 !important;
    box-shadow: none !important;
}
html.nova-theme-dark .storefront-nova .ab-variant-chip.is-featured {
    background: linear-gradient(135deg, #3a1516, #2a1012) !important;
    border-color: rgba(196, 58, 60, .35) !important;
    color: #f0c9c9 !important;
}
html.nova-theme-dark .storefront-nova .ab-btn-detail {
    background: #3a1516;
    border-color: #334155;
    color: #e05a5c !important;
}
html.nova-theme-dark .storefront-nova .page-title,
html.nova-theme-dark .nova-category-card h3,
html.nova-theme-dark .nova-pillar-card h3,
html.nova-theme-dark .ab-card-title {
    color: var(--nova-ink) !important;
}
html.nova-theme-dark .nova-category-card {
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
}
html.nova-theme-dark .nova-category-card p {
    background: #1e293b;
    border-color: #334155;
    color: #94a3b8;
}
html.nova-theme-dark .nova-category-icon {
    background: linear-gradient(145deg, #3a1516, #1e293b);
    box-shadow: inset 0 0 0 1px #334155;
}
html.nova-theme-dark .nova-category-arrow {
    background: #1e293b;
    border-color: #334155;
    color: #b51c1e;
}
html.nova-theme-dark .nova-review-avatar {
    background: linear-gradient(145deg, #981617, #0f172a);
}

/* Product detail: light boxes kept white text tokens → unreadable in night mode */
html.nova-theme-dark .storefront-nova .ab-detail-root {
    --ab-bg3: #1a2234;
    --ab-text: var(--nova-ink);
    --ab-text2: var(--nova-muted);
    --ab-text3: #94a3b8;
    --ab-card: var(--nova-surface);
    --ab-border: var(--nova-line);
    --ab-border-strong: #334155;
}
html.nova-theme-dark .storefront-nova .ab-ratings-row,
html.nova-theme-dark .storefront-nova .ab-purchase-panel,
html.nova-theme-dark .storefront-nova .ab-feature-item,
html.nova-theme-dark .storefront-nova .ab-price-summary,
html.nova-theme-dark .storefront-nova .ab-vopt,
html.nova-theme-dark .storefront-nova .ab-aopt,
html.nova-theme-dark .storefront-nova .ab-qty-input,
html.nova-theme-dark .storefront-nova .ab-btn-cart {
    background: var(--nova-surface) !important;
    border-color: var(--nova-line) !important;
    color: var(--nova-ink) !important;
}
html.nova-theme-dark .storefront-nova .ab-purchase-panel {
    background:
        linear-gradient(var(--nova-surface), var(--nova-surface)) padding-box,
        linear-gradient(145deg, rgba(152, 22, 23, .35), rgba(152, 22, 23, .08)) border-box !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .35);
}
html.nova-theme-dark .storefront-nova .ab-ratings-row {
    background: var(--nova-surface) !important;
}
html.nova-theme-dark .storefront-nova .ab-rating-value,
html.nova-theme-dark .storefront-nova .ab-price-row-val,
html.nova-theme-dark .storefront-nova .ab-price-total-label,
html.nova-theme-dark .storefront-nova .ab-detail-title {
    color: var(--nova-ink) !important;
}
html.nova-theme-dark .storefront-nova .ab-rating-label,
html.nova-theme-dark .storefront-nova .ab-panel-title,
html.nova-theme-dark .storefront-nova .ab-price-row-label,
html.nova-theme-dark .storefront-nova .ab-guarantee,
html.nova-theme-dark .storefront-nova .ab-qty-label,
html.nova-theme-dark .storefront-nova .ab-stock-hint {
    color: var(--nova-muted) !important;
}
html.nova-theme-dark .storefront-nova .ab-price-summary {
    background: #151c2c !important;
}
html.nova-theme-dark .storefront-nova .ab-price-total-val {
    color: #e05a5c !important;
}
html.nova-theme-dark .storefront-nova .ab-vopt.is-active,
html.nova-theme-dark .storefront-nova .ab-aopt.is-active {
    background: #3a1516 !important;
    border-color: #c43a3c !important;
    color: #f8e8e8 !important;
}
html.nova-theme-dark .storefront-nova .ab-vopt:hover:not(.is-disabled),
html.nova-theme-dark .storefront-nova .ab-aopt:hover:not(.is-disabled) {
    background: #2a1218 !important;
    border-color: #c43a3c !important;
    color: #f1f5f9 !important;
}
html.nova-theme-dark .storefront-nova .ab-notice {
    background: #3a1516 !important;
    border-color: #5c2224 !important;
    color: #e7c9cc !important;
}
html.nova-theme-dark .storefront-nova .ab-btn-cart:hover:not(:disabled) {
    background: #3a1516 !important;
    border-color: #c43a3c !important;
    color: #f8e8e8 !important;
}
html.nova-theme-dark .storefront-nova .ab-pay-hint {
    background: linear-gradient(135deg, rgba(152, 22, 23, .18), rgba(152, 22, 23, .08)) !important;
    border-color: rgba(196, 58, 60, .35) !important;
    color: #e7c9cc !important;
}
html.nova-theme-dark .storefront-nova .ab-pay-hint__label {
    background: rgba(152, 22, 23, .28) !important;
    color: #f0c9c9 !important;
}
html.nova-theme-dark .storefront-nova .ab-product-social .storefront-social__intro {
    background: #1a2234 !important;
    border-color: var(--nova-line) !important;
    color: var(--nova-ink) !important;
}
html.nova-theme-dark .storefront-nova .ab-feature-item {
    background: #151c2c !important;
    border-color: var(--nova-line) !important;
}
html.nova-theme-dark .storefront-nova .ab-detail-short,
html.nova-theme-dark .storefront-nova .ab-detail-desc {
    color: var(--nova-muted) !important;
}
@media (max-width: 899px) {
    .nova-theme-toggle {
        width: 34px;
        height: 34px;
    }
}
