@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --bg: #1f2937;
    --line: rgba(255, 255, 255, 0.1);
    --brand: #3b82f6;
    --brand-soft: rgba(59, 130, 246, 0.14);
    --text-muted: rgba(226, 232, 240, 0.74);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8.5rem;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background:
        linear-gradient(180deg, #1f2937 0%, #111827 48%, #0f172a 100%);
    color: #ffffff;
    min-height: 100vh;
}

.font-special {
    font-family: 'Orbitron', sans-serif;
}

.page-shell {
    position: relative;
    overflow-x: hidden;
}

.page-shell > * {
    position: relative;
    z-index: 1;
}

.card-glow {
    background: rgba(17, 24, 39, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(2, 8, 23, 0.35);
}

.premium-gradient {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 55%, #60a5fa 100%);
}

.nav-link {
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link-active {
    color: #ffffff;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.6rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link-active::after {
    transform: scaleX(1);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #93c5fd;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
}

.section-eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: rgba(147, 197, 253, 0.7);
}

.mini-stat {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    background: rgba(15, 23, 42, 0.45);
    padding: 1rem 1.25rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mini-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 16px 30px rgba(2, 8, 23, 0.28);
}

.stat-number {
    display: inline-flex;
    align-items: baseline;
    gap: 0.1em;
}

.stat-suffix {
    font-size: 0.45em;
    color: rgba(191, 219, 254, 0.88);
    letter-spacing: 0.08em;
}

.soft-button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.soft-button:hover {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.5);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.filter-chip {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(226, 232, 240, 0.84);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-chip:hover,
.filter-chip-active {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.55);
    background: rgba(59, 130, 246, 0.15);
    color: #ffffff;
}

.product-card {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.28);
    box-shadow: 0 20px 40px rgba(2, 8, 23, 0.28);
}

.product-visual {
    min-height: 14rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.74));
    position: relative;
    overflow: hidden;
}

.product-visual::after {
    content: "";
    position: absolute;
    inset: auto -20% -45% 25%;
    height: 9rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
    pointer-events: none;
}

.product-visual-large {
    min-height: 27rem;
}

.product-visual-energy {
    background: linear-gradient(160deg, rgba(14, 62, 145, 0.95), rgba(3, 20, 46, 0.88));
}

.product-visual-stream {
    background: linear-gradient(160deg, rgba(29, 78, 216, 0.92), rgba(12, 18, 44, 0.88));
}

.product-visual-pro {
    background: linear-gradient(160deg, rgba(4, 120, 87, 0.88), rgba(4, 24, 23, 0.92));
}

.product-chip {
    display: inline-flex;
    align-self: flex-start;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.55rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.product-art-icon {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.92);
    transform: translateZ(0);
}

.product-visual-large .product-art-icon {
    font-size: 6.5rem;
}

.product-note {
    max-width: 20rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.list-check li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.list-check i {
    color: #60a5fa;
    margin-top: 0.2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.hero-spotlight {
    position: relative;
    overflow: hidden;
}

.hero-spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.07) 40%, transparent 78%);
    transform: translateX(-120%);
    animation: spotlightSweep 8s ease-in-out infinite;
    pointer-events: none;
}

.spotlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.spotlight-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.simulator-option {
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.simulator-option:hover,
.simulator-option-active {
    transform: translateY(-2px);
    background: rgba(37, 99, 235, 0.85);
    border-color: rgba(147, 197, 253, 0.55);
}

.simulator-option-active .simulator-option-price,
.simulator-option:hover .simulator-option-price {
    color: rgba(255, 255, 255, 0.82);
}

.insight-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.insight-bar {
    position: relative;
    width: 100%;
    height: 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.insight-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(191, 219, 254, 1));
    transition: width 0.55s ease;
}

.catalogue-status {
    color: var(--text-muted);
}

.trust-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1.75rem;
    padding: 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.38);
    background: rgba(59, 130, 246, 0.08);
}

.step-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(96, 165, 250, 0.12));
    border: 1px solid rgba(96, 165, 250, 0.28);
    color: #bfdbfe;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.faq-item[open] {
    border-color: rgba(96, 165, 250, 0.42);
    background: rgba(59, 130, 246, 0.08);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #bfdbfe;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-answer {
    padding: 0 1.4rem 1.3rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.policy-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 999px;
    padding: 0.85rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-weight: 700;
}

.policy-pill i {
    color: #93c5fd;
}

@keyframes spotlightSweep {
    0%,
    72%,
    100% {
        transform: translateX(-130%);
    }
    82% {
        transform: translateX(130%);
    }
}

@media (max-width: 640px) {
    .product-visual-large {
        min-height: 21rem;
    }
}

/* Admin product manager */
.admin-panel-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.admin-panel-tab {
    min-height: 2.8rem;
    background: rgba(15, 23, 42, 0.07);
    color: #0f172a;
    font-weight: 950;
    transition: transform 0.18s ease, background 0.18s ease;
}

.admin-panel-tab:hover,
.admin-panel-tab-active {
    transform: translateY(-1px);
    background: #0f766e;
    color: #ffffff;
}

.admin-chat-panel-live {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
}

.admin-products-panel {
    min-height: 0;
    overflow-y: auto;
    padding: 1rem;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        #f8fafc;
    background-size: 64px 64px;
}

.admin-products-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
    gap: 1rem;
}

.admin-products-list,
.admin-product-form {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.admin-products-list {
    display: grid;
    align-content: start;
    gap: 0.8rem;
    padding: 0.85rem;
}

.admin-products-list-head,
.admin-product-form-head,
.admin-product-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.admin-products-list-head h3,
.admin-product-form-head h3 {
    color: #0f172a;
    font-size: 1.45rem;
    font-weight: 950;
}

.admin-products-list-head button,
.admin-product-form-actions button {
    min-height: 2.6rem;
    padding: 0 0.85rem;
    background: #0f172a;
    color: #ffffff;
    font-weight: 950;
}

.admin-product-form-actions button:first-child {
    background: #fee2e2;
    color: #991b1b;
}

.admin-products-items {
    display: grid;
    gap: 0.55rem;
}

.admin-product-item {
    display: grid;
    gap: 0.2rem;
    width: 100%;
    padding: 0.8rem;
    background: rgba(15, 23, 42, 0.055);
    color: #0f172a;
    text-align: left;
}

.admin-product-item:hover,
.admin-product-item-active {
    background: rgba(14, 165, 233, 0.14);
}

.admin-product-item strong {
    font-weight: 950;
}

.admin-product-item span {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 850;
}

.admin-product-form {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.admin-field {
    display: grid;
    gap: 0.35rem;
}

.admin-field-wide {
    grid-column: 1 / -1;
}

.admin-field span {
    color: #475569;
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    width: 100%;
    min-height: 2.9rem;
    padding: 0.75rem 0.85rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    outline: none;
    font-weight: 800;
}

.admin-field textarea {
    min-height: 6rem;
    resize: vertical;
    line-height: 1.5;
}

.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.admin-products-help,
.admin-products-loading,
.admin-products-error {
    padding: 0.85rem;
    background: rgba(245, 197, 66, 0.14);
    border: 1px solid rgba(245, 197, 66, 0.28);
    color: #713f12;
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.55;
}

.admin-products-error {
    background: #fee2e2;
    border-color: #fecaca;
    color: #991b1b;
}

@media (max-width: 1100px) {
    .admin-products-layout,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-product-form-head,
    .admin-product-form-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Readability, theme switcher and compact mobile navigation */
.theme-toggle {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(16, 32, 43, 0.08);
    color: var(--showroom-ink);
    font-size: 0.82rem;
    font-weight: 950;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    background: var(--showroom-ink);
    color: #ffffff;
}

html[data-theme="light"] body {
    background:
        radial-gradient(circle at 7% 5%, rgba(242, 184, 50, 0.32), transparent 24rem),
        radial-gradient(circle at 88% 4%, rgba(18, 167, 201, 0.24), transparent 30rem),
        linear-gradient(180deg, #fffaf0 0%, #edf9fc 42%, #f8fbf4 100%) !important;
    color: var(--showroom-ink);
}

html[data-theme="dark"] {
    --showroom-ink: #f8fafc;
    --showroom-muted: #cbd5e1;
    --showroom-paper: #0f172a;
    --showroom-mist: #142b36;
    --showroom-line: rgba(255, 255, 255, 0.14);
    --showroom-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] body {
    background:
        radial-gradient(circle at 8% 0%, rgba(242, 184, 50, 0.13), transparent 28rem),
        radial-gradient(circle at 88% 4%, rgba(18, 167, 201, 0.14), transparent 30rem),
        linear-gradient(180deg, #071018 0%, #0f172a 46%, #111827 100%) !important;
    color: #f8fafc;
}

html[data-theme="dark"] nav > div {
    background: rgba(8, 15, 23, 0.82) !important;
    border-color: rgba(255, 255, 255, 0.13) !important;
}

html[data-theme="dark"] .brand-link,
html[data-theme="dark"] .brand-wordmark,
html[data-theme="dark"] .nav-link,
html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .nav-link-active,
html[data-theme="dark"] .theme-toggle {
    color: #f8fafc !important;
}

html[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .store-hero {
    background:
        radial-gradient(circle at 86% 12%, rgba(18, 167, 201, 0.16), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(8, 24, 32, 0.94)),
        #0f172a;
    color: #f8fafc;
}

html[data-theme="dark"] .store-hero::before {
    background:
        linear-gradient(135deg, rgba(18, 167, 201, 0.24), rgba(242, 184, 50, 0.12)),
        radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.12), transparent 42%);
    border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .store-hero::after {
    background: linear-gradient(0deg, #071018 0%, rgba(7, 16, 24, 0) 100%);
}

html[data-theme="dark"] .store-hero-shade {
    background:
        linear-gradient(90deg, rgba(7, 16, 24, 0.96) 0%, rgba(15, 23, 42, 0.84) 44%, rgba(15, 23, 42, 0.24) 78%, rgba(15, 23, 42, 0.08) 100%) !important;
}

html[data-theme="dark"] .store-hero-title,
html[data-theme="dark"] .home-gallery-heading,
html[data-theme="dark"] .featured-heading,
html[data-theme="dark"] .packs-heading,
html[data-theme="dark"] .use-case-heading,
html[data-theme="dark"] .contact-section,
html[data-theme="dark"] .catalogue-intro,
html[data-theme="dark"] main > section > .text-center {
    color: #f8fafc;
}

html[data-theme="dark"] .store-hero-subtitle,
html[data-theme="dark"] .home-gallery-heading p:not(.section-eyebrow),
html[data-theme="dark"] .packs-heading p,
html[data-theme="dark"] .use-case-heading p,
html[data-theme="dark"] .contact-card p:not(.section-eyebrow),
html[data-theme="dark"] .catalogue-intro .text-slate-300,
html[data-theme="dark"] main > section > .text-center .text-slate-300 {
    color: #cbd5e1 !important;
}

html[data-theme="dark"] .hero-promo-chip,
html[data-theme="dark"] .momentum-marquee,
html[data-theme="dark"] .home-gallery-shell,
html[data-theme="dark"] .featured-product-card,
html[data-theme="dark"] .pack-card,
html[data-theme="dark"] .use-case-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .card-glow,
html[data-theme="dark"] .catalogue-toolbar,
html[data-theme="dark"] .promo-card,
html[data-theme="dark"] .promo-inline,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .trust-card,
html[data-theme="dark"] .finder-panel,
html[data-theme="dark"] .spotlight-panel,
html[data-theme="dark"] .result-panel,
html[data-theme="dark"] .hero-showcase {
    background:
        radial-gradient(circle at 90% 0%, rgba(18, 167, 201, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(21, 38, 48, 0.82)),
        #0f172a;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    box-shadow: var(--showroom-shadow);
}

html[data-theme="dark"] .featured-product-card p,
html[data-theme="dark"] .pack-card p,
html[data-theme="dark"] .use-case-card p,
html[data-theme="dark"] .card-glow .text-slate-300,
html[data-theme="dark"] .finder-panel .text-slate-300,
html[data-theme="dark"] .spotlight-panel .text-slate-300,
html[data-theme="dark"] .result-panel .text-slate-300,
html[data-theme="dark"] .product-card .text-slate-300,
html[data-theme="dark"] .trust-card .text-slate-300,
html[data-theme="dark"] .faq-item .text-slate-300,
html[data-theme="dark"] .list-check {
    color: #cbd5e1 !important;
}

html[data-theme="dark"] .home-gallery-info,
html[data-theme="dark"] .promo-prices div,
html[data-theme="dark"] .finder-option,
html[data-theme="dark"] .product-card-facts span,
html[data-theme="dark"] .store-hero-proof span {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
}

html[data-theme="dark"] .current-price,
html[data-theme="dark"] .promo-title,
html[data-theme="dark"] .promo-prices strong,
html[data-theme="dark"] .contact-card h2,
html[data-theme="dark"] .home-gallery-card,
html[data-theme="dark"] .home-gallery-info strong,
html[data-theme="dark"] .featured-product-card h3,
html[data-theme="dark"] .pack-card h3 {
    color: #f8fafc;
}

html[data-theme="dark"] .home-gallery-info em,
html[data-theme="dark"] .promo-text,
html[data-theme="dark"] .promo-label,
html[data-theme="dark"] .promo-inline p:not(.promo-inline-kicker),
html[data-theme="dark"] .old-price,
html[data-theme="dark"] .store-hero-proof span,
html[data-theme="dark"] .hero-promo-chip span,
html[data-theme="dark"] .hero-promo-chip em {
    color: #cbd5e1 !important;
}

html[data-theme="dark"] .floating-cta {
    background: rgba(15, 23, 42, 0.94);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f8fafc;
}

html[data-theme="dark"] .floating-cta-copy span {
    color: #cbd5e1;
}

/* Force readable text on light cards while preserving product-visual contrast. */
html[data-theme="light"] .card-glow,
html[data-theme="light"] .featured-product-card:not(.featured-product-hot),
html[data-theme="light"] .pack-card:not(.pack-card-dark),
html[data-theme="light"] .use-case-card:not(.use-case-card-hot),
html[data-theme="light"] .contact-card,
html[data-theme="light"] .promo-card,
html[data-theme="light"] .finder-panel,
html[data-theme="light"] .spotlight-panel,
html[data-theme="light"] .catalogue-toolbar,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .trust-card {
    color: #10202b !important;
}

html[data-theme="light"] .card-glow :is(p, li, span):not(.product-visual *):not(.premium-gradient *),
html[data-theme="light"] .featured-product-card:not(.featured-product-hot) :is(p, li, span):not(.premium-gradient *),
html[data-theme="light"] .pack-card:not(.pack-card-dark) :is(p, li, span):not(.premium-gradient *),
html[data-theme="light"] .use-case-card:not(.use-case-card-hot) :is(p, li, span),
html[data-theme="light"] .finder-panel :is(p, li, span):not(.premium-gradient *),
html[data-theme="light"] .spotlight-panel :is(p, li, span):not(.product-visual *),
html[data-theme="light"] .trust-card :is(p, li, span) {
    color: #334155 !important;
}

.site-chat-toggle {
    width: auto;
    min-height: 3.25rem;
    grid-template-columns: auto auto;
    gap: 0.55rem;
    padding: 0.45rem 0.7rem 0.45rem 0.45rem;
    border-radius: 999px;
}

.site-chat-toggle strong {
    font-size: 0.86rem;
    white-space: nowrap;
}

.site-chat-toggle em {
    display: none !important;
}

.site-chat-toggle-icon {
    width: 2.35rem;
    height: 2.35rem;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 7rem;
    }

    nav {
        top: 0.35rem;
        padding: 0.45rem 0.6rem !important;
    }

    nav > div {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        gap: 0.55rem !important;
        align-items: center;
        padding: 0.55rem 0.65rem !important;
        border-radius: 1.35rem !important;
        background: rgba(255, 255, 255, 0.86) !important;
    }

    .brand-link {
        min-width: 0;
    }

    .brand-logo {
        width: 2.25rem;
        height: 2.25rem;
    }

    .brand-wordmark {
        max-width: 6.7rem;
        overflow: hidden;
        font-size: 0.82rem !important;
        text-overflow: ellipsis;
    }

    nav .flex.gap-6 {
        justify-self: center;
        gap: 0.25rem !important;
        padding: 0.25rem;
        border-radius: 999px;
        background: rgba(16, 32, 43, 0.06);
        font-size: 0.65rem !important;
        letter-spacing: 0.04em !important;
    }

    .nav-link {
        padding: 0.42rem 0.48rem;
        border-radius: 999px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link-active {
        background: var(--showroom-ink);
        color: #ffffff !important;
    }

    .nav-social-actions {
        width: auto !important;
        display: inline-flex;
        justify-content: flex-end;
        gap: 0.35rem;
    }

    .nav-social-actions a {
        flex: 0 0 auto !important;
    }

    .nav-social-actions > a:first-of-type {
        width: 2.45rem;
        min-height: 2.45rem;
        padding: 0 !important;
        overflow: hidden;
        color: transparent !important;
        font-size: 0 !important;
        position: relative;
    }

    .nav-social-actions > a:first-of-type::before {
        content: "\f232";
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: #ffffff;
        font-family: "Font Awesome 6 Brands";
        font-size: 1rem;
    }

    .facebook-nav-link {
        display: none;
    }

    .theme-toggle {
        width: 2.45rem;
        min-height: 2.45rem;
        padding: 0;
    }

    .theme-toggle span {
        display: none;
    }

    html[data-theme="dark"] nav > div {
        background: rgba(8, 15, 23, 0.88) !important;
    }

    html[data-theme="dark"] nav .flex.gap-6 {
        background: rgba(255, 255, 255, 0.08);
    }

    html[data-theme="dark"] .nav-link-active {
        background: #ffffff;
        color: #0f172a !important;
    }

    .store-hero {
        padding-top: 7rem !important;
    }

    .site-chat-widget {
        width: auto;
        left: 0.75rem;
        bottom: 0.75rem;
    }

    .site-chat-panel {
        width: min(92vw, 360px);
    }

    .site-chat-toggle {
        min-height: 3rem;
        padding-right: 0.7rem;
    }
}

@media (max-width: 430px) {
    nav > div {
        grid-template-columns: auto 1fr auto;
    }

    .brand-wordmark {
        display: none;
    }

    nav .flex.gap-6 {
        font-size: 0.59rem !important;
    }

    .nav-link {
        padding: 0.38rem 0.38rem;
    }
}

/* Final priority layer: readable text, compact chat and mobile header */
html[data-theme="light"] body {
    color: #10202b !important;
}

html[data-theme="light"] :is(.card-glow, .featured-product-card:not(.featured-product-hot), .pack-card:not(.pack-card-dark), .use-case-card:not(.use-case-card-hot), .contact-card, .promo-card, .finder-panel, .spotlight-panel, .catalogue-toolbar, .faq-item, .trust-card) {
    color: #10202b !important;
}

html[data-theme="light"] :is(.card-glow, .featured-product-card:not(.featured-product-hot), .pack-card:not(.pack-card-dark), .use-case-card:not(.use-case-card-hot), .contact-card, .promo-card, .finder-panel, .spotlight-panel, .catalogue-toolbar, .faq-item, .trust-card) :is(p, li, span):not(.product-visual *):not(.premium-gradient *):not(.current-price):not(.old-price):not(.promo-badge):not(.contact-email-link *) {
    color: #334155 !important;
}

html[data-theme="light"] :is(.card-glow, .featured-product-card, .pack-card, .use-case-card, .contact-card, .promo-card, .finder-panel, .spotlight-panel, .catalogue-toolbar, .faq-item, .trust-card) :is(h1, h2, h3, h4, strong):not(.product-visual *):not(.premium-gradient *):not(.contact-email-link *) {
    color: #10202b !important;
}

html[data-theme="light"] .contact-email-link,
html[data-theme="light"] .contact-email-link *,
html[data-theme="dark"] .contact-email-link,
html[data-theme="dark"] .contact-email-link * {
    color: #ffffff !important;
}

html[data-theme="light"] .contact-email-link,
html[data-theme="dark"] .contact-email-link {
    background: #0b1f2c !important;
}

html[data-theme="light"] .product-visual,
html[data-theme="light"] .product-visual :is(h1, h2, h3, h4, p, span, strong),
html[data-theme="light"] .featured-product-hot,
html[data-theme="light"] .featured-product-hot :is(h1, h2, h3, h4, p, span, strong),
html[data-theme="light"] .pack-card-dark,
html[data-theme="light"] .pack-card-dark :is(h1, h2, h3, h4, p, span, strong),
html[data-theme="light"] .use-case-card-hot,
html[data-theme="light"] .use-case-card-hot :is(h1, h2, h3, h4, p, span, strong) {
    color: #ffffff !important;
}

html[data-theme="light"] :is(.featured-product-hot, .pack-card-dark, .use-case-card-hot) p {
    color: rgba(255, 255, 255, 0.86) !important;
}

html[data-theme="dark"] body {
    background:
        radial-gradient(circle at 8% 0%, rgba(242, 184, 50, 0.13), transparent 28rem),
        radial-gradient(circle at 88% 4%, rgba(18, 167, 201, 0.14), transparent 30rem),
        linear-gradient(180deg, #071018 0%, #0f172a 46%, #111827 100%) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] :is(.store-hero-title, .home-gallery-heading, .featured-heading, .packs-heading, .use-case-heading, .contact-section, .catalogue-intro, main > section > .text-center, .card-glow, .featured-product-card, .pack-card, .use-case-card, .contact-card, .promo-card, .finder-panel, .spotlight-panel, .catalogue-toolbar, .faq-item, .trust-card) {
    color: #f8fafc !important;
}

html[data-theme="dark"] :is(.store-hero-subtitle, .home-gallery-heading p:not(.section-eyebrow), .featured-product-card p, .pack-card p, .use-case-card p, .contact-card p:not(.section-eyebrow), .promo-text, .finder-panel .text-slate-300, .spotlight-panel .text-slate-300, .card-glow .text-slate-300, .product-card .text-slate-300, .trust-card .text-slate-300, .faq-item .text-slate-300, .list-check) {
    color: #d7e1ea !important;
}

html[data-theme="dark"] :is(.hero-promo-chip, .momentum-marquee, .home-gallery-shell, .featured-product-card, .pack-card, .use-case-card, .contact-card, .card-glow, .catalogue-toolbar, .promo-card, .promo-inline, .faq-item, .trust-card, .finder-panel, .spotlight-panel, .result-panel, .hero-showcase) {
    background:
        radial-gradient(circle at 90% 0%, rgba(18, 167, 201, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(21, 38, 48, 0.82)),
        #0f172a !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
}

.site-chat-toggle {
    width: auto !important;
    min-height: 3.15rem !important;
    display: inline-grid !important;
    grid-template-columns: auto auto !important;
    align-items: center !important;
    gap: 0.55rem !important;
    padding: 0.42rem 0.72rem 0.42rem 0.42rem !important;
    border-radius: 999px !important;
}

.site-chat-toggle strong {
    display: block !important;
    color: #10202b !important;
    font-size: 0.86rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.site-chat-toggle em {
    display: none !important;
}

.site-chat-toggle-icon {
    width: 2.32rem !important;
    height: 2.32rem !important;
    font-size: 1rem !important;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 7rem !important;
    }

    nav {
        top: 0.35rem !important;
        padding: 0.45rem 0.6rem !important;
    }

    nav > div {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        gap: 0.55rem !important;
        align-items: center !important;
        padding: 0.55rem 0.65rem !important;
        border-radius: 1.35rem !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 14px 40px rgba(16, 32, 43, 0.14) !important;
    }

    .brand-logo {
        width: 2.25rem !important;
        height: 2.25rem !important;
    }

    .brand-wordmark {
        max-width: 6.6rem !important;
        overflow: hidden !important;
        font-size: 0.82rem !important;
        text-overflow: ellipsis !important;
    }

    nav .flex.gap-6 {
        justify-self: center !important;
        gap: 0.25rem !important;
        padding: 0.25rem !important;
        border-radius: 999px !important;
        background: rgba(16, 32, 43, 0.06) !important;
        font-size: 0.65rem !important;
        letter-spacing: 0.04em !important;
    }

    .nav-link {
        padding: 0.42rem 0.48rem !important;
        border-radius: 999px !important;
    }

    .nav-link::after {
        display: none !important;
    }

    .nav-link-active {
        background: #10202b !important;
        color: #ffffff !important;
    }

    .nav-social-actions {
        width: auto !important;
        display: inline-flex !important;
        justify-content: flex-end !important;
        gap: 0.35rem !important;
    }

    .facebook-nav-link {
        display: none !important;
    }

    .nav-social-actions > a:first-of-type {
        width: 2.45rem !important;
        min-height: 2.45rem !important;
        padding: 0 !important;
        overflow: hidden !important;
        color: transparent !important;
        font-size: 0 !important;
        position: relative !important;
        flex: 0 0 auto !important;
    }

    .nav-social-actions > a:first-of-type::before {
        content: "\f232";
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: #ffffff;
        font-family: "Font Awesome 6 Brands";
        font-size: 1rem;
    }

    .theme-toggle {
        width: 2.45rem !important;
        min-height: 2.45rem !important;
        padding: 0 !important;
        flex: 0 0 auto !important;
    }

    .theme-toggle span {
        display: none !important;
    }

    html[data-theme="dark"] nav > div {
        background: rgba(8, 15, 23, 0.9) !important;
    }

    html[data-theme="dark"] nav .flex.gap-6 {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    html[data-theme="dark"] .nav-link-active {
        background: #ffffff !important;
        color: #0f172a !important;
    }

    .store-hero {
        padding-top: 7rem !important;
    }

    .site-chat-widget {
        width: auto !important;
        left: 0.75rem !important;
        bottom: 0.75rem !important;
    }

    .site-chat-panel {
        width: min(92vw, 360px) !important;
    }
}

@media (max-width: 430px) {
    .brand-wordmark {
        display: none !important;
    }

    nav .flex.gap-6 {
        font-size: 0.58rem !important;
    }

    .nav-link {
        padding: 0.38rem 0.36rem !important;
    }
}

/* Mobile polish priority layer */
.featured-product-card > strong,
.hero-product-price,
.pack-price strong,
.promo-prices strong:not(.promo-old),
.simulator-option-price {
    background: #16a34a !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.24) !important;
}

.featured-product-card > strong,
.hero-product-price,
.pack-price strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 2.45rem !important;
    padding: 0 0.95rem !important;
    border-radius: 999px !important;
    font-weight: 950 !important;
}

.featured-product-card > strong::after,
.pack-price strong::after {
    opacity: 0.22 !important;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 9.25rem !important;
    }

    nav {
        left: 0 !important;
        right: 0 !important;
    }

    nav > div {
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        gap: 0.42rem !important;
        width: calc(100vw - 1rem) !important;
        max-width: none !important;
        margin-inline: auto !important;
        padding: 0.48rem !important;
        backdrop-filter: blur(18px) !important;
    }

    nav .flex.gap-6 {
        justify-self: stretch !important;
        justify-content: center !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        white-space: nowrap !important;
    }

    nav .flex.gap-6::-webkit-scrollbar {
        display: none !important;
    }

    .nav-link {
        flex: 0 0 auto !important;
        min-height: 2.18rem !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .store-hero {
        padding-top: 6.35rem !important;
    }

    .store-hero-title {
        line-height: 0.92 !important;
        letter-spacing: -0.055em !important;
    }

    .featured-product-card,
    .pack-card,
    .use-case-card,
    .card-glow {
        padding: 1.15rem !important;
    }

    .featured-product-card img {
        height: clamp(7.6rem, 34vw, 9.2rem) !important;
        object-fit: contain !important;
        padding: 0.35rem !important;
        border-radius: 1rem !important;
        background: rgba(255, 255, 255, 0.92) !important;
    }

    .featured-product-card h3,
    .pack-card h3 {
        font-size: clamp(1.35rem, 7vw, 1.8rem) !important;
        line-height: 1.05 !important;
    }

    .featured-product-card p,
    .pack-card p,
    .use-case-card p {
        font-size: 0.98rem !important;
        line-height: 1.45 !important;
    }

    .featured-product-card > strong,
    .current-price,
    .hero-product-price,
    .pack-price strong {
        min-height: 2.35rem !important;
        font-size: 1.08rem !important;
    }

    .floating-cta {
        left: 0.65rem !important;
        right: 0.65rem !important;
        bottom: 0.65rem !important;
        width: auto !important;
        min-height: 3.45rem !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 0.55rem !important;
        padding: 0.55rem !important;
        border-radius: 1.15rem !important;
        z-index: 76 !important;
    }

    .floating-cta-copy {
        min-width: 0 !important;
    }

    .floating-cta-copy strong {
        overflow: hidden !important;
        font-size: 0.82rem !important;
        line-height: 1.1 !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .floating-cta-copy span {
        font-size: 0.68rem !important;
        line-height: 1.1 !important;
    }

    .floating-cta-button {
        width: auto !important;
        min-height: 2.35rem !important;
        padding: 0 0.85rem !important;
        border-radius: 0.85rem !important;
        font-size: 0.84rem !important;
        white-space: nowrap !important;
    }

    .site-chat-widget:not(.site-chat-widget-open) {
        left: 0.75rem !important;
        right: auto !important;
        bottom: 4.65rem !important;
        width: auto !important;
        z-index: 84 !important;
    }

    .site-chat-widget-open {
        left: 0.65rem !important;
        right: 0.65rem !important;
        bottom: 0.65rem !important;
        width: auto !important;
        z-index: 90 !important;
    }

    .site-chat-widget-open .site-chat-toggle {
        display: none !important;
    }

    .site-chat-panel {
        width: 100% !important;
        max-height: calc(100vh - 2rem) !important;
        overflow: auto !important;
        border-radius: 1.2rem !important;
    }

    .site-chat-toggle {
        min-height: 2.9rem !important;
        padding: 0.36rem 0.62rem 0.36rem 0.36rem !important;
        box-shadow: 0 16px 38px rgba(16, 32, 43, 0.22) !important;
    }

    .site-chat-toggle strong {
        font-size: 0.82rem !important;
    }
}

@media (max-width: 380px) {
    nav .flex.gap-6 {
        justify-content: flex-start !important;
    }

    .nav-link {
        padding-inline: 0.34rem !important;
    }

    .theme-toggle,
    .nav-social-actions > a:first-of-type {
        width: 2.2rem !important;
        min-height: 2.2rem !important;
    }

    .floating-cta-button {
        padding-inline: 0.62rem !important;
    }
}

/* Final mobile polish */
.featured-product-card > strong,
.hero-product-price,
.pack-price strong,
.promo-prices strong:not(.promo-old),
.simulator-option-price {
    background: #16a34a !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.24) !important;
}

.featured-product-card > strong,
.hero-product-price,
.pack-price strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 2.45rem !important;
    padding: 0 0.95rem !important;
    border-radius: 999px !important;
    font-weight: 950 !important;
}

.featured-product-card > strong::after,
.pack-price strong::after {
    opacity: 0.22 !important;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 9.25rem !important;
    }

    nav {
        left: 0 !important;
        right: 0 !important;
    }

    nav > div {
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        gap: 0.42rem !important;
        width: calc(100vw - 1rem) !important;
        max-width: none !important;
        margin-inline: auto !important;
        padding: 0.48rem !important;
        backdrop-filter: blur(18px) !important;
    }

    nav .flex.gap-6 {
        justify-self: stretch !important;
        justify-content: center !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        white-space: nowrap !important;
    }

    nav .flex.gap-6::-webkit-scrollbar {
        display: none !important;
    }

    .nav-link {
        flex: 0 0 auto !important;
        min-height: 2.18rem !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .store-hero {
        padding-top: 6.35rem !important;
    }

    .store-hero-title {
        line-height: 0.92 !important;
        letter-spacing: -0.055em !important;
    }

    .featured-product-card,
    .pack-card,
    .use-case-card,
    .card-glow {
        padding: 1.15rem !important;
    }

    .featured-product-card img {
        height: clamp(7.6rem, 34vw, 9.2rem) !important;
        object-fit: contain !important;
        padding: 0.35rem !important;
        border-radius: 1rem !important;
        background: rgba(255, 255, 255, 0.92) !important;
    }

    .featured-product-card h3,
    .pack-card h3 {
        font-size: clamp(1.35rem, 7vw, 1.8rem) !important;
        line-height: 1.05 !important;
    }

    .featured-product-card p,
    .pack-card p,
    .use-case-card p {
        font-size: 0.98rem !important;
        line-height: 1.45 !important;
    }

    .featured-product-card > strong,
    .current-price,
    .hero-product-price,
    .pack-price strong {
        min-height: 2.35rem !important;
        font-size: 1.08rem !important;
    }

    .floating-cta {
        left: 0.65rem !important;
        right: 0.65rem !important;
        bottom: 0.65rem !important;
        width: auto !important;
        min-height: 3.45rem !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 0.55rem !important;
        padding: 0.55rem !important;
        border-radius: 1.15rem !important;
        z-index: 76 !important;
    }

    .floating-cta-copy {
        min-width: 0 !important;
    }

    .floating-cta-copy strong {
        overflow: hidden !important;
        font-size: 0.82rem !important;
        line-height: 1.1 !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .floating-cta-copy span {
        font-size: 0.68rem !important;
        line-height: 1.1 !important;
    }

    .floating-cta-button {
        width: auto !important;
        min-height: 2.35rem !important;
        padding: 0 0.85rem !important;
        border-radius: 0.85rem !important;
        font-size: 0.84rem !important;
        white-space: nowrap !important;
    }

    .site-chat-widget:not(.site-chat-widget-open) {
        left: 0.75rem !important;
        right: auto !important;
        bottom: 4.65rem !important;
        width: auto !important;
        z-index: 84 !important;
    }

    .site-chat-widget-open {
        left: 0.65rem !important;
        right: 0.65rem !important;
        bottom: 0.65rem !important;
        width: auto !important;
        z-index: 90 !important;
    }

    .site-chat-widget-open .site-chat-toggle {
        display: none !important;
    }

    .site-chat-panel {
        width: 100% !important;
        max-height: calc(100vh - 2rem) !important;
        overflow: auto !important;
        border-radius: 1.2rem !important;
    }

    .site-chat-toggle {
        min-height: 2.9rem !important;
        padding: 0.36rem 0.62rem 0.36rem 0.36rem !important;
        box-shadow: 0 16px 38px rgba(16, 32, 43, 0.22) !important;
    }

    .site-chat-toggle strong {
        font-size: 0.82rem !important;
    }
}

@media (max-width: 380px) {
    nav .flex.gap-6 {
        justify-content: flex-start !important;
    }

    .nav-link {
        padding-inline: 0.34rem !important;
    }

    .theme-toggle,
    .nav-social-actions > a:first-of-type {
        width: 2.2rem !important;
        min-height: 2.2rem !important;
    }

    .floating-cta-button {
        padding-inline: 0.62rem !important;
    }
}

/* Admin readability fixes */
.admin-chat-page {
    background:
        radial-gradient(circle at 12% 8%, rgba(18, 167, 201, 0.22), transparent 28rem),
        radial-gradient(circle at 92% 16%, rgba(242, 184, 50, 0.18), transparent 26rem),
        linear-gradient(135deg, #071018 0%, #10202b 54%, #15313f 100%) !important;
    color: #10202b !important;
}

.admin-login-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 250, 0.96)) !important;
    border: 1px solid rgba(16, 32, 43, 0.12) !important;
    border-radius: 1.8rem !important;
    color: #10202b !important;
}

.admin-login-card .section-eyebrow,
.admin-login-card h1,
.admin-login-card p,
.admin-login-card label {
    color: #10202b !important;
}

.admin-login-card h1 {
    text-shadow: none !important;
}

.admin-password-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 43, 0.14);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.admin-password-field:focus-within {
    border-color: #0f9f8f;
    box-shadow: 0 0 0 4px rgba(15, 159, 143, 0.14);
}

.admin-login-card .admin-password-field input,
.admin-login-card input {
    min-height: 3.35rem !important;
    color: #071018 !important;
    background: #ffffff !important;
    border: 0 !important;
    font-size: 1rem !important;
    caret-color: #0f9f8f !important;
    -webkit-text-fill-color: #071018 !important;
}

.admin-login-card input::placeholder {
    color: #64748b !important;
    opacity: 1 !important;
}

.admin-password-toggle {
    min-height: 3.35rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    padding: 0 0.95rem !important;
    border-left: 1px solid rgba(16, 32, 43, 0.1) !important;
    background: #eef7f8 !important;
    color: #0f766e !important;
    font-size: 0.82rem !important;
    font-weight: 950 !important;
}

.admin-password-toggle:hover {
    background: #d8f1ee !important;
    color: #0f5f59 !important;
}

#admin-login-submit {
    border-radius: 1rem !important;
}

@media (max-width: 540px) {
    .admin-login-card {
        border-radius: 1.25rem !important;
    }

    .admin-password-toggle span {
        display: none !important;
    }
}

/* ABSOLUTE FINAL VISIBILITY FIXES - must stay at EOF */
.contact-email-link,
.contact-email-link:visited,
html[data-theme="light"] .contact-email-link,
html[data-theme="light"] .contact-email-link:visited,
html[data-theme="dark"] .contact-email-link,
html[data-theme="dark"] .contact-email-link:visited {
    background: #0b1f2c !important;
    color: #ffffff !important;
}

.contact-email-link *,
.contact-email-link span,
.contact-email-link strong {
    color: #ffffff !important;
}

.contact-email-link i {
    color: #f2b832 !important;
}

.filter-chip,
.filter-chip:visited,
html[data-theme="light"] .filter-chip {
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(14, 165, 233, 0.42) !important;
    color: #10202b !important;
    box-shadow: 0 10px 24px rgba(16, 32, 43, 0.08) !important;
}

.filter-chip:hover,
.filter-chip-active,
html[data-theme="light"] .filter-chip:hover,
html[data-theme="light"] .filter-chip-active {
    background: #0b1f2c !important;
    border-color: #0b1f2c !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .filter-chip {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .filter-chip:hover,
html[data-theme="dark"] .filter-chip-active {
    background: #f8fafc !important;
    color: #0f172a !important;
}

.price-stack {
    align-items: flex-start !important;
    gap: 0.3rem !important;
}

.current-price,
html[data-theme="light"] .current-price,
html[data-theme="dark"] .current-price {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 2.45rem !important;
    padding: 0 0.9rem !important;
    border-radius: 999px !important;
    background: #0b1f2c !important;
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 950 !important;
    opacity: 1 !important;
    box-shadow: 0 12px 28px rgba(16, 32, 43, 0.14) !important;
}

.old-price,
html[data-theme="light"] .old-price,
html[data-theme="dark"] .old-price {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.18rem 0.55rem !important;
    border-radius: 999px !important;
    background: rgba(15, 23, 42, 0.08) !important;
    color: #475569 !important;
    font-weight: 900 !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .old-price {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #d7e1ea !important;
}

.promo-badge,
html[data-theme="light"] .promo-badge,
html[data-theme="dark"] .promo-badge {
    display: inline-flex !important;
    align-items: center !important;
    align-self: flex-start !important;
    min-height: 1.8rem !important;
    background: #f2b832 !important;
    color: #10202b !important;
    opacity: 1 !important;
    box-shadow: 0 8px 20px rgba(242, 184, 50, 0.24) !important;
}

.featured-product-card .current-price,
.pack-card .current-price,
.spotlight-panel .current-price,
.finder-panel .current-price,
#p-price .current-price {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Visibility fixes from screenshots */
.contact-email-link,
.contact-email-link:visited,
html[data-theme="light"] .contact-email-link,
html[data-theme="light"] .contact-email-link:visited,
html[data-theme="dark"] .contact-email-link,
html[data-theme="dark"] .contact-email-link:visited {
    background: #0b1f2c !important;
    color: #ffffff !important;
}

.contact-email-link *,
.contact-email-link span,
.contact-email-link strong {
    color: #ffffff !important;
}

.contact-email-link i {
    color: #f2b832 !important;
}

.filter-chip,
.filter-chip:visited,
html[data-theme="light"] .filter-chip {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.36) !important;
    color: #10202b !important;
    box-shadow: 0 10px 24px rgba(16, 32, 43, 0.08);
}

.filter-chip:hover,
.filter-chip-active,
html[data-theme="light"] .filter-chip:hover,
html[data-theme="light"] .filter-chip-active {
    background: #0b1f2c !important;
    border-color: #0b1f2c !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .filter-chip {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .filter-chip:hover,
html[data-theme="dark"] .filter-chip-active {
    background: #f8fafc !important;
    color: #0f172a !important;
}

.price-stack {
    align-items: flex-start !important;
    gap: 0.3rem !important;
}

.current-price,
html[data-theme="light"] .current-price,
html[data-theme="dark"] .current-price {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: #0b1f2c !important;
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(16, 32, 43, 0.14);
}

.old-price,
html[data-theme="light"] .old-price,
html[data-theme="dark"] .old-price {
    display: inline-flex !important;
    align-items: center;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08) !important;
    color: #475569 !important;
    font-weight: 900;
}

html[data-theme="dark"] .old-price {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #d7e1ea !important;
}

.promo-badge,
html[data-theme="light"] .promo-badge,
html[data-theme="dark"] .promo-badge {
    display: inline-flex !important;
    align-items: center;
    align-self: flex-start !important;
    min-height: 1.8rem;
    background: #f2b832 !important;
    color: #10202b !important;
    box-shadow: 0 8px 20px rgba(242, 184, 50, 0.24);
}

.featured-product-card strong.current-price,
.featured-product-card .current-price,
.pack-card .current-price,
.spotlight-panel .current-price,
.finder-panel .current-price,
#p-price .current-price {
    color: #ffffff !important;
}

html[data-theme="light"] .featured-product-card:not(.featured-product-hot) .price-stack *,
html[data-theme="light"] .finder-panel .price-stack *,
html[data-theme="light"] .spotlight-panel .price-stack * {
    opacity: 1 !important;
}

/* Presentation refresh for Kay Box Store */
:root {
    --surface: rgba(13, 17, 23, 0.86);
    --surface-soft: rgba(255, 255, 255, 0.055);
    --accent: #38bdf8;
    --accent-warm: #f5c542;
    --ink: #f8fafc;
}

body {
    background:
        linear-gradient(180deg, rgba(31, 41, 55, 0.94), rgba(17, 24, 39, 0.95)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 96px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px),
        #1f2937;
}

nav > div,
.card-glow,
.trust-card,
.product-card,
.faq-item,
.spotlight-card,
.insight-panel,
.filter-chip,
.soft-button,
.premium-gradient,
.policy-pill,
.product-visual,
.mini-stat,
.simulator-option,
.step-badge {
    border-radius: 8px !important;
}

.font-special,
.section-eyebrow,
.nav-link,
.spotlight-pill,
.product-chip,
.policy-pill,
.stat-suffix,
.filter-chip,
.text-xs,
.uppercase {
    letter-spacing: 0 !important;
}

nav > div {
    background: rgba(30, 41, 59, 0.82) !important;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.28);
}

.card-glow {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.16);
}

.premium-gradient {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 55%, #16a34a 100%);
}

.store-hero {
    min-height: 82vh;
    position: relative;
    display: grid;
    align-items: end;
    padding: 9rem 1.5rem 5rem;
    overflow: hidden;
    isolation: isolate;
}

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

.store-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.74) 0%, rgba(15, 23, 42, 0.48) 46%, rgba(15, 23, 42, 0.06) 100%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.86) 0%, rgba(17, 24, 39, 0.15) 50%, rgba(17, 24, 39, 0.42) 100%);
}

.store-hero-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.store-hero-title {
    max-width: 760px;
    font-size: 7rem;
    line-height: 0.92;
    font-weight: 800;
    color: var(--ink);
    text-wrap: balance;
}

.store-hero-subtitle {
    max-width: 620px;
    margin-top: 1.4rem;
    color: rgba(248, 250, 252, 0.82);
    font-size: 1.15rem;
    line-height: 1.7;
}

.store-hero-actions,
.store-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.hero-button {
    min-height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    color: #ffffff;
    font-weight: 800;
}

.store-hero-proof span {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(30, 41, 59, 0.58);
    color: rgba(248, 250, 252, 0.82);
    backdrop-filter: blur(12px);
}

.store-hero-proof strong {
    color: #ffffff;
    font-size: 1.35rem;
}

.finder-section {
    margin-top: -2rem;
    padding-bottom: 5rem;
    position: relative;
}

.finder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
    gap: 1rem;
}

.finder-panel,
.spotlight-panel,
.result-panel {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24);
    padding: 1.5rem;
    border-radius: 8px;
}

.finder-option {
    min-height: 7rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
}

.result-panel {
    align-items: stretch !important;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(22, 163, 74, 0.18)),
        rgba(30, 41, 59, 0.94);
}

.spotlight-panel .product-visual {
    min-height: 12rem;
}

.spotlight-pill {
    background: rgba(56, 189, 248, 0.14);
    color: #bae6fd;
}

.product-card {
    background: rgba(30, 41, 59, 0.84);
}

.product-card .premium-gradient,
.product-card .soft-button,
.result-panel .soft-button,
.result-panel .bg-white {
    border-radius: 8px !important;
}

.product-visual {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
        #243244;
}

.product-visual-energy {
    background:
        linear-gradient(145deg, rgba(14, 165, 233, 0.42), rgba(22, 163, 74, 0.14)),
        #1d3249;
}

.product-visual-stream {
    background:
        linear-gradient(145deg, rgba(245, 197, 66, 0.32), rgba(14, 165, 233, 0.18)),
        #2b2f39;
}

.product-visual-pro {
    background:
        linear-gradient(145deg, rgba(22, 163, 74, 0.36), rgba(245, 197, 66, 0.14)),
        #18342d;
}

.product-card:hover,
.trust-card:hover,
.mini-stat:hover {
    transform: translateY(-3px);
}

.product-device {
    position: relative;
    width: min(12rem, 72%);
    min-width: 8rem;
    height: 7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03)),
        #0b0f16;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 24px 45px rgba(0, 0, 0, 0.35);
    border-radius: 8px;
}

.product-device-tvbox {
    width: 10rem;
    height: 6.2rem;
    transform: perspective(640px) rotateX(10deg) rotateZ(-2deg);
}

.product-device-ups {
    width: 11rem;
    height: 6rem;
    transform: perspective(640px) rotateX(8deg) rotateZ(2deg);
}

.device-top {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
}

.battery-lines {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 1.3rem;
    height: 1.2rem;
    background:
        linear-gradient(90deg, rgba(56, 189, 248, 0.9) 0 18%, transparent 18% 25%, rgba(56, 189, 248, 0.8) 25% 43%, transparent 43% 50%, rgba(56, 189, 248, 0.7) 50% 68%, transparent 68% 75%, rgba(245, 197, 66, 0.82) 75% 100%);
    border-radius: 999px;
}

.device-led {
    position: absolute;
    width: 0.55rem;
    height: 0.55rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.9);
}

.device-port {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    width: 1.1rem;
    height: 0.42rem;
    background: rgba(255, 255, 255, 0.28);
}

.device-port-b {
    left: 2.55rem;
    width: 1.6rem;
}

.product-visual-large .product-device {
    width: min(18rem, 86%);
    height: 10rem;
}

.catalogue-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.catalogue-meta {
    display: grid;
    gap: 0.6rem;
}

.catalogue-meta span {
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(226, 232, 240, 0.82);
    border-radius: 8px;
}

.catalogue-meta strong {
    color: #ffffff;
}

.catalogue-toolbar {
    background: rgba(30, 41, 59, 0.86);
}

@media (max-width: 900px) {
    .store-hero {
        min-height: 76vh;
        padding-top: 8.5rem;
    }

    .store-hero-shade {
        background:
            linear-gradient(0deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.32) 54%, rgba(17, 24, 39, 0.58) 100%);
    }

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

    .store-hero-title {
        font-size: 4.4rem;
    }

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

@media (max-width: 640px) {
    .store-hero-title {
        font-size: 3.25rem;
    }
}

/* Brand, promotion and lighter storefront mood */
body {
    background:
        radial-gradient(circle at 12% 0%, rgba(14, 165, 233, 0.2), transparent 32rem),
        radial-gradient(circle at 88% 10%, rgba(245, 197, 66, 0.18), transparent 28rem),
        linear-gradient(180deg, #edf7fb 0%, #dcecf4 48%, #c9dbe7 100%) !important;
    color: #0f172a;
}

.store-hero,
nav,
.card-glow,
.finder-panel,
.spotlight-panel,
.result-panel,
.product-card,
.trust-card,
.faq-item,
.catalogue-toolbar,
.product-visual {
    color: #ffffff;
}

.catalogue-intro,
main > section > .text-center {
    color: #0f172a;
}

.catalogue-intro .section-eyebrow,
main > section > .text-center .section-eyebrow {
    color: #0f766e;
}

.catalogue-intro .section-eyebrow::before,
main > section > .text-center .section-eyebrow::before {
    background: rgba(15, 118, 110, 0.5);
}

.catalogue-intro .text-slate-300,
main > section > .text-center .text-slate-300 {
    color: #475569 !important;
}

.catalogue-meta span {
    background: rgba(255, 255, 255, 0.64);
    border-color: rgba(15, 23, 42, 0.08);
    color: #475569;
}

.catalogue-meta strong {
    color: #0f172a;
}

.card-glow .text-slate-300,
.finder-panel .text-slate-300,
.product-card .text-slate-300,
.trust-card .text-slate-300,
.faq-item .text-slate-300,
.result-panel .text-slate-300 {
    color: rgba(226, 232, 240, 0.78) !important;
}

.brand-link {
    color: #ffffff;
}

.brand-logo {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.brand-wordmark span {
    color: #38bdf8;
}

.nav-social-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.facebook-nav-link {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0 0.9rem;
    background: #1877f2;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease;
}

.facebook-nav-link:hover {
    transform: translateY(-1px);
    background: #0f5ec7;
}

.price-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.22rem;
    min-width: max-content;
    line-height: 1;
}

.price-stack-compact {
    transform: translateY(0.1rem);
}

.current-price {
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 900;
}

.old-price {
    color: rgba(226, 232, 240, 0.66);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: line-through;
}

.promo-badge {
    align-self: flex-end;
    border-radius: 999px;
    background: #f5c542;
    color: #172033;
    padding: 0.28rem 0.52rem;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

#p-price .current-price {
    color: #38bdf8;
    font-size: 2.35rem;
}

.promo-section {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
}

.promo-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
    gap: 1.5rem;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(224, 247, 251, 0.96) 58%, rgba(254, 243, 199, 0.96) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
    border-radius: 12px;
    color: #0f172a;
}

.promo-copy {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.promo-card .section-eyebrow {
    color: #0f766e;
}

.promo-card .section-eyebrow::before {
    background: rgba(15, 118, 110, 0.5);
}

.promo-title {
    max-width: 680px;
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.promo-text {
    max-width: 620px;
    margin-top: 1.2rem;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.75;
}

.promo-prices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.promo-prices div {
    min-height: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
}

.promo-label {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-prices strong {
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 950;
}

.promo-old {
    color: #64748b !important;
    text-decoration: line-through;
}

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.promo-secondary {
    background: #0f172a;
    color: #ffffff;
}

.promo-poster-frame {
    height: 100%;
    min-height: 28rem;
    padding: 1.2rem;
}

.promo-poster-frame img {
    width: 100%;
    height: 100%;
    max-height: 42rem;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.promo-inline {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(224, 247, 251, 0.94));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.13);
    color: #0f172a;
}

.promo-inline img {
    width: 7rem;
    height: 8.5rem;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
}

.promo-inline-kicker {
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-inline h2 {
    margin-top: 0.15rem;
    font-size: 1.25rem;
    font-weight: 900;
}

.promo-inline p:not(.promo-inline-kicker) {
    margin-top: 0.35rem;
    color: #475569;
}

@media (max-width: 900px) {
    .promo-card {
        grid-template-columns: 1fr;
    }

    .promo-poster-frame {
        min-height: 34rem;
        padding-top: 0;
    }

    .promo-inline {
        grid-template-columns: 5.5rem minmax(0, 1fr);
    }

    .promo-inline a {
        grid-column: 1 / -1;
    }

    .promo-inline img {
        width: 5.5rem;
        height: 7rem;
    }
}

@media (max-width: 640px) {
    .brand-wordmark {
        font-size: 1rem;
    }

    .brand-logo {
        width: 2.35rem;
        height: 2.35rem;
    }

    .nav-social-actions {
        width: 100%;
        justify-content: space-between;
    }

    .nav-social-actions a {
        flex: 1 1 0;
    }

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

    .promo-poster-frame {
        min-height: 25rem;
    }
}

/* Final commercial polish: real product photos, sticky promo and livelier sections */
body {
    padding-bottom: 5.75rem;
}

.hero-promo-chip {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.58);
    color: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(16px);
}

.hero-promo-chip span,
.hero-promo-chip em {
    color: rgba(248, 250, 252, 0.76);
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 800;
}

.hero-promo-chip strong {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0 0.65rem;
    background: #f5c542;
    color: #172033;
    font-size: 0.9rem;
    font-weight: 950;
}

.momentum-strip {
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}

.momentum-marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

.momentum-marquee span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.4rem;
    padding: 0 0.85rem;
    background: rgba(15, 23, 42, 0.055);
    font-size: 0.82rem;
    font-weight: 900;
}

.momentum-marquee i {
    color: #0f766e;
}

.home-gallery-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.home-gallery-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.2rem;
    color: #0f172a;
}

.home-gallery-heading h2 {
    max-width: 760px;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.055em;
    scroll-margin-top: 8.5rem;
}

.home-gallery-heading p:not(.section-eyebrow) {
    max-width: 680px;
    margin-top: 0.9rem;
    color: #475569;
    line-height: 1.75;
}

.home-gallery-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.home-gallery-controls span {
    min-width: 4.2rem;
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 950;
}

.home-gallery-controls button {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #ffffff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.home-gallery-controls button:hover {
    transform: translateY(-1px);
    background: #0f766e;
}

.home-gallery-shell {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(13, 148, 136, 0.72)),
        #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

.home-gallery-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.home-gallery-slide {
    min-width: 100%;
    padding: clamp(1rem, 3vw, 2rem);
}

.home-gallery-card {
    position: relative;
    min-height: clamp(22rem, 50vw, 34rem);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
}

.home-gallery-card::before {
    content: "";
    position: absolute;
    inset: 8% 12%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.home-gallery-card img {
    width: min(100%, 940px);
    height: clamp(18rem, 43vw, 29rem);
    object-fit: contain;
    filter: drop-shadow(0 32px 45px rgba(0, 0, 0, 0.3));
    transform: translateY(-0.4rem);
}

.home-gallery-badge,
.home-gallery-info {
    position: absolute;
    z-index: 1;
}

.home-gallery-badge {
    top: 1rem;
    left: 1rem;
    min-height: 2.35rem;
    display: inline-flex;
    align-items: center;
    padding: 0 0.8rem;
    background: #f5c542;
    color: #172033;
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.home-gallery-info {
    left: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.2rem;
    max-width: min(90%, 28rem);
    padding: 0.9rem 1rem;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.home-gallery-info strong {
    font-size: clamp(1.35rem, 3vw, 2.6rem);
    line-height: 1;
    font-weight: 950;
}

.home-gallery-info em {
    color: rgba(226, 232, 240, 0.78);
    font-style: normal;
    font-weight: 850;
}

.home-gallery-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.home-gallery-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.22);
    transition: width 0.2s ease, background 0.2s ease;
}

.home-gallery-dot-active {
    width: 2rem;
    background: #0f766e;
}

.use-case-section {
    padding-bottom: 5rem;
}

.use-case-heading {
    max-width: 760px;
    margin-bottom: 1.35rem;
    color: #0f172a;
}

.use-case-heading h2 {
    max-width: 720px;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.use-case-heading p {
    max-width: 620px;
    margin-top: 1rem;
    color: #475569;
    line-height: 1.75;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.use-case-card {
    min-height: 15rem;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(224, 247, 251, 0.82)),
        #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
    color: #0f172a;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}

.use-case-card i {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7;
    font-size: 1.25rem;
}

.use-case-card h3 {
    margin-top: 2.4rem;
    font-size: 1.2rem;
    font-weight: 950;
}

.use-case-card p {
    margin-top: 0.45rem;
    color: #475569;
    line-height: 1.65;
}

.use-case-card-hot {
    background:
        linear-gradient(150deg, rgba(15, 23, 42, 0.92), rgba(13, 148, 136, 0.78)),
        #0f172a;
    color: #ffffff;
}

.use-case-card-hot p {
    color: rgba(226, 232, 240, 0.82);
}

.use-case-card-hot i {
    background: rgba(245, 197, 66, 0.18);
    color: #f5c542;
}

.product-photo-wrap {
    position: relative;
    min-height: 13rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18), transparent 18rem),
        rgba(2, 6, 23, 0.22);
}

.product-photo-wrap::before {
    content: "";
    position: absolute;
    inset: auto 10% 0;
    height: 1.6rem;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4), transparent 70%);
    filter: blur(6px);
}

.product-photo {
    position: relative;
    width: 100%;
    max-height: 13rem;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.28));
    transform: translateY(-0.15rem);
    transition: transform 0.35s ease;
}

.product-card:hover .product-photo,
.spotlight-panel:hover .product-photo {
    transform: translateY(-0.45rem) scale(1.02);
}

.product-photo-wrap-large {
    min-height: 21rem;
}

.product-photo-wrap-large .product-photo {
    max-height: 21rem;
}

.product-fact-strip,
.product-card-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-fact-strip span,
.product-card-facts span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2rem;
    padding: 0 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(248, 250, 252, 0.82);
    font-size: 0.72rem;
    font-weight: 850;
}

.product-card-facts i {
    color: #38bdf8;
}

.product-media-column {
    display: grid;
    gap: 1rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-thumb {
    min-height: 5.5rem;
    padding: 0.35rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 2px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-thumb:hover,
.product-thumb-active {
    transform: translateY(-2px);
    border-color: #0ea5e9;
}

.product-thumb img {
    width: 100%;
    height: 5rem;
    object-fit: contain;
}

.floating-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    width: min(92vw, 420px);
    min-height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.8rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-cta-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-cta-copy {
    display: grid;
    gap: 0.15rem;
}

.floating-cta-copy strong {
    font-size: 0.95rem;
    font-weight: 950;
}

.floating-cta-copy span {
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
}

.floating-cta-button {
    min-height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    background: #22c55e;
    color: #ffffff;
    font-weight: 950;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
}

.floating-cta-button:hover {
    transform: translateY(-1px);
    background: #16a34a;
}

.contact-section {
    color: #0f172a;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 1.2rem;
    align-items: center;
    padding: clamp(1.25rem, 4vw, 2.2rem);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(224, 247, 251, 0.9)),
        #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.13);
    color: #0f172a;
}

.contact-card h2 {
    max-width: 680px;
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.contact-card p:not(.section-eyebrow) {
    max-width: 620px;
    margin-top: 0.8rem;
    color: #475569;
    line-height: 1.7;
}

.contact-email-grid {
    display: grid;
    gap: 0.65rem;
}

.contact-email-link {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    background: #0f172a;
    color: #ffffff;
    font-weight: 900;
    word-break: break-word;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-email-link:hover {
    transform: translateY(-1px);
    background: #0f766e;
}

.contact-email-link i {
    color: #f5c542;
}

.site-chat-widget {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 82;
    width: min(92vw, 390px);
    color: #0f172a;
}

.site-chat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 4rem;
    padding: 0.65rem 0.9rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.2);
    color: #0f172a;
    font-weight: 950;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
}

.site-chat-toggle-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #ffffff;
    font-size: 1.15rem;
}

.site-chat-toggle strong,
.site-chat-toggle em {
    display: block;
    text-align: left;
    line-height: 1.1;
}

.site-chat-toggle em {
    margin-top: 0.16rem;
    color: #64748b;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 850;
}

.site-chat-panel {
    display: none;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
    backdrop-filter: blur(18px);
}

.site-chat-widget-open .site-chat-panel {
    display: block;
    animation: chatPanelIn 0.24s ease both;
}

.site-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(13, 148, 136, 0.86)),
        #0f172a;
    color: #ffffff;
}

.site-chat-header strong,
.site-chat-header span {
    display: block;
}

.site-chat-header strong {
    font-size: 1.05rem;
    font-weight: 950;
}

.site-chat-header span {
    margin-top: 0.15rem;
    color: rgba(226, 232, 240, 0.76);
    font-size: 0.82rem;
    font-weight: 750;
}

.site-chat-close {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.site-chat-body {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
}

.site-chat-feed,
.admin-chat-feed {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    max-height: 18rem;
    overflow-y: auto;
    padding-right: 0.2rem;
}

.site-chat-bubble {
    max-width: 86%;
    padding: 0.8rem 0.9rem;
    background: #e0f2fe;
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.45;
}

.site-chat-bubble-admin {
    background: #ecfdf5;
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.site-chat-message {
    max-width: 86%;
    display: grid;
    gap: 0.22rem;
}

.site-chat-message p {
    padding: 0.78rem 0.9rem;
    background: #e2e8f0;
    color: #0f172a;
    line-height: 1.45;
    font-weight: 750;
}

.site-chat-message span {
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 900;
}

.site-chat-message-client {
    justify-self: end;
}

.site-chat-message-client p {
    background: #0f766e;
    color: #ffffff;
}

.site-chat-message-client span {
    text-align: right;
}

.site-chat-message-admin {
    justify-self: start;
}

.site-chat-message-admin p {
    background: #e0f2fe;
}

.site-chat-note {
    padding: 0.7rem 0.8rem;
    background: rgba(245, 197, 66, 0.14);
    border: 1px solid rgba(245, 197, 66, 0.28);
    color: #713f12;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.45;
}

.site-chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.site-chat-quick button {
    min-height: 2.25rem;
    padding: 0 0.7rem;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 900;
    transition: transform 0.18s ease, background 0.18s ease;
}

.site-chat-quick button:hover {
    transform: translateY(-1px);
    background: rgba(14, 165, 233, 0.14);
}

.site-chat-label {
    color: #475569;
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.site-chat-panel textarea {
    width: 100%;
    resize: vertical;
    min-height: 7rem;
    padding: 0.85rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    outline: none;
}

.site-chat-panel textarea:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.site-chat-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
}

.site-chat-actions-single {
    grid-template-columns: 1fr;
}

.site-chat-send,
.site-chat-email {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    font-weight: 950;
    text-decoration: none;
}

.site-chat-send {
    background: #22c55e;
    color: #ffffff;
    transition: transform 0.18s ease, background 0.18s ease;
}

.site-chat-send:hover {
    transform: translateY(-1px);
    background: #16a34a;
}

.site-chat-email {
    background: #0f172a;
    color: #ffffff;
}

.contact-facebook-link {
    background: #1877f2;
}

.contact-facebook-link:hover {
    background: #0f5ec7;
}

.contact-facebook-link i {
    color: #ffffff;
}

.admin-chat-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 10%, rgba(14, 165, 233, 0.24), transparent 28rem),
        radial-gradient(circle at 90% 8%, rgba(245, 197, 66, 0.18), transparent 24rem),
        linear-gradient(180deg, #edf7fb 0%, #dcecf4 100%);
    color: #0f172a;
}

.admin-chat-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
    gap: 1rem;
    padding: clamp(1rem, 3vw, 2rem);
}

.admin-chat-sidebar,
.admin-chat-room {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.admin-chat-sidebar {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 1rem;
}

.admin-chat-intro h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.admin-chat-intro p:not(.section-eyebrow) {
    margin-top: 0.7rem;
    color: #475569;
    line-height: 1.65;
}

.admin-chat-thread-list {
    display: grid;
    gap: 0.6rem;
}

.admin-chat-thread,
.admin-chat-empty {
    width: 100%;
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem;
    background: rgba(15, 23, 42, 0.055);
    color: #0f172a;
    text-align: left;
}

.admin-chat-thread {
    transition: transform 0.18s ease, background 0.18s ease;
}

.admin-chat-thread:hover,
.admin-chat-thread-active {
    transform: translateY(-1px);
    background: rgba(14, 165, 233, 0.14);
}

.admin-chat-thread strong {
    font-weight: 950;
}

.admin-chat-thread span,
.admin-chat-empty {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 800;
}

.admin-chat-room {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-height: calc(100vh - 4rem);
    overflow: hidden;
}

.admin-chat-room-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.94);
    color: #ffffff;
}

.admin-chat-room-header span {
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.78rem;
    font-weight: 850;
}

.admin-chat-room-header h2 {
    font-size: 1.4rem;
    font-weight: 950;
}

.admin-chat-feed {
    max-height: none;
    padding: 1rem;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
}

.admin-chat-reply {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
    padding: 1rem;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-chat-reply textarea {
    min-height: 4.2rem;
    resize: vertical;
    padding: 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #f8fafc;
    outline: none;
}

.admin-chat-reply textarea:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.admin-chat-reply button {
    min-width: 8rem;
    padding: 0 1rem;
    color: #ffffff;
    font-weight: 950;
}

.admin-chat-reply button:disabled,
.admin-chat-reply textarea:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@keyframes chatPanelIn {
    0% {
        opacity: 0;
        transform: translateY(0.55rem) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 900px) {
    .home-gallery-heading,
    .contact-card {
        grid-template-columns: 1fr;
    }

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

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

    .admin-chat-room {
        min-height: 70vh;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 7.4rem;
    }

    .hero-promo-chip {
        align-items: flex-start;
        flex-direction: column;
    }

    .use-case-grid,
    .product-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .home-gallery-card {
        min-height: 26rem;
    }

    .home-gallery-card img {
        height: 18rem;
    }

    .home-gallery-info {
        left: 1rem;
        right: 1rem;
    }

    .product-photo-wrap-large {
        min-height: 17rem;
    }

    .floating-cta {
        left: 50%;
        right: auto;
        width: min(94vw, 680px);
        align-items: stretch;
        flex-direction: column;
        gap: 0.65rem;
        transform: translateX(-50%) translateY(0.8rem);
    }

    .floating-cta-visible {
        transform: translateX(-50%) translateY(0);
    }

    .floating-cta-button {
        width: 100%;
    }

    .site-chat-widget {
        bottom: 8.2rem;
        width: min(94vw, 390px);
    }

    .site-chat-panel {
        max-height: calc(100vh - 10rem);
        overflow-y: auto;
    }

    .admin-chat-room-header,
    .admin-chat-reply {
        grid-template-columns: 1fr;
    }

    .admin-chat-room-header {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-chat-reply button {
        min-height: 3rem;
    }
}

/* Dynamic storefront layer */
:root {
    --store-navy: #0f172a;
    --store-teal: #0f766e;
    --store-sky: #0ea5e9;
    --store-gold: #f5c542;
    --store-cream: #fff7e0;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto auto 8% -8rem;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
    animation: ambientFloat 16s ease-in-out infinite;
}

body::after {
    inset: 12% -7rem auto auto;
    width: 26rem;
    height: 26rem;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.18), transparent 68%);
    animation-delay: -7s;
}

.site-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--store-gold), var(--store-sky), #22c55e);
    box-shadow: 0 0 22px rgba(14, 165, 233, 0.55);
    pointer-events: none;
}

.store-hero {
    align-items: center;
}

.store-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(0deg, #edf7fb 0%, rgba(237, 247, 251, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.store-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

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

.store-hero-title span {
    display: block;
    color: var(--store-gold);
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.store-hero-actions .premium-gradient,
.promo-actions .premium-gradient,
.featured-product-card strong,
.pack-card a,
.floating-cta-button {
    position: relative;
    overflow: hidden;
}

.store-hero-actions .premium-gradient::after,
.promo-actions .premium-gradient::after,
.featured-product-card strong::after,
.pack-card a::after,
.floating-cta-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.35) 48%, transparent 70%);
    transform: translateX(-130%);
    transition: transform 0.65s ease;
}

.store-hero-actions .premium-gradient:hover::after,
.promo-actions .premium-gradient:hover::after,
.featured-product-card:hover strong::after,
.pack-card:hover a::after,
.floating-cta-button:hover::after {
    transform: translateX(130%);
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
    z-index: -1;
    animation: orbitPulse 9s ease-in-out infinite;
}

.hero-orbit-one {
    right: 8%;
    top: 18%;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.16), transparent 62%);
}

.hero-orbit-two {
    right: 25%;
    bottom: 16%;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.2), transparent 62%);
    animation-delay: -3s;
}

.hero-showcase {
    position: relative;
    min-height: 32rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        rgba(15, 23, 42, 0.42);
    box-shadow: 0 32px 90px rgba(2, 6, 23, 0.32);
    backdrop-filter: blur(18px);
    perspective: 1000px;
}

.hero-showcase::before {
    content: "";
    position: absolute;
    inset: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.hero-showcase-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 900;
}

.hero-showcase-top strong {
    min-height: 2rem;
    display: inline-flex;
    align-items: center;
    padding: 0 0.7rem;
    background: var(--store-gold);
    color: #172033;
}

.hero-product-stack {
    position: absolute;
    inset: 4.6rem 1rem 1rem;
}

.hero-product-card,
.hero-mini-card {
    position: absolute;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18), transparent 18rem),
        linear-gradient(150deg, rgba(15, 23, 42, 0.92), rgba(13, 148, 136, 0.72));
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.32);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    will-change: transform;
}

.hero-product-card:hover,
.hero-mini-card:hover {
    box-shadow: 0 34px 90px rgba(2, 6, 23, 0.42);
}

.hero-product-main {
    inset: 0 2rem 5.2rem 0;
    padding: 1.4rem;
    animation: productFloat 7s ease-in-out infinite;
}

.hero-product-main img {
    width: min(100%, 26rem);
    height: 18rem;
    object-fit: contain;
    filter: drop-shadow(0 32px 38px rgba(0, 0, 0, 0.34));
}

.hero-product-main strong {
    justify-self: start;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 0.94;
    font-weight: 950;
}

.hero-product-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 999px;
    background: var(--store-gold);
    color: #172033;
    font-size: 1.55rem;
    font-weight: 950;
    box-shadow: 0 16px 40px rgba(245, 197, 66, 0.32);
}

.hero-mini-card {
    bottom: 0;
    width: 44%;
    min-height: 8.8rem;
    padding: 0.8rem;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 12rem),
        linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(224, 247, 251, 0.9));
    color: #0f172a;
}

.hero-mini-card-left {
    left: 0.4rem;
    transform: rotate(-3deg);
}

.hero-mini-card-right {
    right: 0.2rem;
    transform: rotate(3deg);
}

.hero-mini-card img {
    width: 100%;
    height: 5.5rem;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(15, 23, 42, 0.18));
}

.hero-mini-card span {
    font-size: 0.9rem;
    font-weight: 950;
}

.interactive-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.is-tilting {
    transition: transform 0.08s linear, box-shadow 0.2s ease;
}

.featured-products-section,
.packs-section {
    padding-top: 1.5rem;
    padding-bottom: 4.5rem;
}

.featured-heading,
.packs-heading {
    display: grid;
    gap: 0.7rem;
    max-width: 760px;
    margin-bottom: 1.25rem;
    color: #0f172a;
}

.featured-heading h2,
.packs-heading h2 {
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.packs-heading p {
    max-width: 620px;
    color: #475569;
    line-height: 1.75;
}

.featured-product-grid,
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.featured-product-card,
.pack-card {
    position: relative;
    min-height: 19rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 1.15rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(224, 247, 251, 0.84)),
        #ffffff;
    color: #0f172a;
    text-decoration: none;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.featured-product-card::before,
.pack-card::before {
    content: "";
    position: absolute;
    inset: -30% -20% auto auto;
    width: 13rem;
    height: 13rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 68%);
    pointer-events: none;
}

.featured-product-card:hover,
.pack-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 118, 110, 0.22);
    box-shadow: 0 30px 84px rgba(15, 23, 42, 0.18);
}

.featured-product-hot {
    background:
        linear-gradient(150deg, rgba(15, 23, 42, 0.96), rgba(13, 148, 136, 0.8)),
        #0f172a;
    color: #ffffff;
}

.featured-kicker {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    min-height: 2rem;
    display: inline-flex;
    align-items: center;
    padding: 0 0.65rem;
    background: rgba(15, 23, 42, 0.08);
    color: #0f766e;
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.featured-product-hot .featured-kicker {
    background: var(--store-gold);
    color: #172033;
}

.featured-product-card img {
    align-self: center;
    width: 100%;
    height: 9.8rem;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(15, 23, 42, 0.18));
    transition: transform 0.3s ease;
}

.featured-product-card:hover img {
    transform: translateY(-0.35rem) scale(1.03);
}

.featured-product-card h3,
.pack-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 950;
}

.featured-product-card p,
.pack-card p {
    position: relative;
    z-index: 1;
    margin-top: 0.4rem;
    color: #475569;
    line-height: 1.55;
}

.featured-product-hot p {
    color: rgba(226, 232, 240, 0.78);
}

.featured-product-card strong {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    padding: 0 0.9rem;
    background: #0f172a;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 950;
}

.featured-product-hot strong {
    background: var(--store-gold);
    color: #172033;
}

.pack-card {
    min-height: 18rem;
}

.pack-card-dark {
    background:
        linear-gradient(150deg, rgba(15, 23, 42, 0.96), rgba(14, 165, 233, 0.66)),
        #0f172a;
    color: #ffffff;
}

.pack-card-dark p {
    color: rgba(226, 232, 240, 0.8);
}

.pack-number {
    position: relative;
    z-index: 1;
    color: rgba(15, 118, 110, 0.42);
    font-size: 3.7rem;
    line-height: 0.8;
    font-weight: 950;
}

.pack-card-dark .pack-number {
    color: rgba(255, 255, 255, 0.32);
}

.pack-price {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.1rem;
}

.pack-price span {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.pack-card-dark .pack-price span {
    color: rgba(226, 232, 240, 0.72);
}

.pack-price strong {
    font-size: 2.45rem;
    line-height: 1;
    font-weight: 950;
}

.pack-card a {
    position: relative;
    z-index: 1;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: #0f172a;
    color: #ffffff;
    font-weight: 950;
    text-decoration: none;
}

.pack-card-dark a {
    background: var(--store-gold);
    color: #172033;
}

.home-gallery-shell {
    position: relative;
    border-radius: 18px !important;
}

.home-gallery-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    pointer-events: none;
    opacity: 0.42;
    z-index: 1;
}

.home-gallery-card img,
.home-gallery-info,
.home-gallery-badge {
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.home-gallery-slide:not(.is-home-gallery-active) .home-gallery-card img {
    transform: translateY(0.8rem) scale(0.94);
    opacity: 0.64;
}

.home-gallery-slide.is-home-gallery-active .home-gallery-card img {
    animation: activeProductPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-gallery-slide.is-home-gallery-active .home-gallery-info {
    transform: translateY(-0.2rem);
}

.product-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 72%);
    transform: translateX(-130%);
    transition: transform 0.75s ease;
    pointer-events: none;
}

.product-card:hover .product-visual::before,
.spotlight-panel:hover .product-visual::before {
    transform: translateX(130%);
}

.product-photo-wrap {
    border-radius: 14px;
}

.momentum-marquee {
    position: relative;
    overflow: hidden;
}

.momentum-marquee::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transform: translateX(-120%);
    animation: ribbonSweep 5.8s ease-in-out infinite;
    pointer-events: none;
}

.floating-cta-visible {
    animation: ctaPulse 3.8s ease-in-out infinite;
}

@keyframes ambientFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(1.4rem, -1.1rem, 0) scale(1.08);
    }
}

@keyframes orbitPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.65;
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes productFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-0.7rem) rotate(1deg);
    }
}

@keyframes activeProductPop {
    0% {
        transform: translateY(0.7rem) scale(0.96);
    }
    100% {
        transform: translateY(-0.4rem) scale(1);
    }
}

@keyframes ribbonSweep {
    0%,
    58%,
    100% {
        transform: translateX(-120%);
    }
    74% {
        transform: translateX(120%);
    }
}

@keyframes ctaPulse {
    0%,
    100% {
        box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
    }
    50% {
        box-shadow: 0 22px 70px rgba(34, 197, 94, 0.32);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 900px) {
    .store-hero-layout,
    .featured-product-grid,
    .packs-grid {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: 29rem;
    }

    .hero-product-main {
        right: 0;
    }

    .featured-product-card,
    .pack-card {
        min-height: 16rem;
    }
}

@media (max-width: 640px) {
    .site-scroll-progress {
        height: 3px;
    }

    .store-hero {
        padding-bottom: 4rem;
    }

    .hero-showcase {
        min-height: 25rem;
        padding: 0.75rem;
    }

    .hero-product-stack {
        inset: 4rem 0.75rem 0.75rem;
    }

    .hero-product-main {
        inset: 0 0 6.8rem 0;
    }

    .hero-product-main img {
        height: 12.5rem;
    }

    .hero-product-price {
        width: 4rem;
        height: 4rem;
        font-size: 1.2rem;
    }

    .hero-mini-card {
        width: calc(50% - 0.3rem);
        min-height: 6rem;
    }

    .hero-mini-card img {
        height: 3.8rem;
    }

    .home-gallery-shell {
        border-radius: 12px !important;
    }

    .featured-product-card,
    .pack-card {
        min-height: 15.5rem;
    }
}

/* Desktop hero correction before deployment */
@media (min-width: 901px) {
    .store-hero {
        min-height: min(92vh, 860px);
        padding-top: 8rem;
        padding-bottom: 4.5rem;
    }

    .store-hero-image {
        object-position: center top;
        transform: scale(1.01);
    }

    .store-hero-shade {
        background:
            linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.54) 48%, rgba(15, 23, 42, 0.18) 100%),
            linear-gradient(0deg, rgba(237, 247, 251, 0.78) 0%, rgba(17, 24, 39, 0.1) 44%, rgba(17, 24, 39, 0.34) 100%);
    }

    .store-hero-title {
        max-width: 720px;
        font-size: clamp(4.2rem, 6.4vw, 5.8rem);
        line-height: 0.94;
    }

    .store-hero-subtitle {
        max-width: 560px;
    }
}

/* Live chat and admin dashboard */
.site-chat-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    padding: 0.45rem 0.7rem;
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 0.75rem;
    font-weight: 950;
}

.site-chat-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: #f59e0b;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45);
    animation: livePulse 1.6s ease infinite;
}

.site-chat-status[data-mode="online"] .site-chat-dot {
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
}

.site-chat-status[data-mode="offline"] .site-chat-dot {
    background: #ef4444;
    animation: none;
}

.site-chat-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.site-chat-fields input {
    min-height: 2.8rem;
    padding: 0 0.8rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    outline: none;
    font-weight: 750;
}

.site-chat-fields input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.site-chat-fields-locked {
    display: none;
}

.site-chat-send:disabled {
    opacity: 0.65;
    cursor: wait;
}

.admin-login-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.admin-login-card {
    width: min(100%, 460px);
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.16);
}

.admin-login-card h1 {
    font-size: clamp(2.4rem, 8vw, 4rem);
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.admin-login-card p {
    color: #475569;
    line-height: 1.65;
}

.admin-login-card label {
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-login-card input {
    min-height: 3.2rem;
    padding: 0 1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #f8fafc;
    outline: none;
    font-weight: 850;
}

.admin-login-card input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.admin-login-card button {
    min-height: 3.2rem;
    color: #ffffff;
    font-weight: 950;
}

.admin-login-card small {
    min-height: 1.1rem;
    color: #dc2626;
    font-weight: 850;
}

.admin-back-link {
    color: #0f766e;
    font-weight: 950;
    text-decoration: none;
}

.admin-live-shell {
    grid-template-columns: minmax(310px, 0.4fr) minmax(0, 1fr);
}

.admin-live-sidebar {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.admin-live-status {
    padding: 0.7rem 0.85rem;
    background: rgba(14, 165, 233, 0.1);
    color: #075985;
    font-size: 0.78rem;
    font-weight: 950;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.admin-stat-card {
    display: grid;
    gap: 0.15rem;
    padding: 0.85rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-stat-card span,
.admin-stat-card em {
    color: #64748b;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
}

.admin-stat-card strong {
    color: #0f172a;
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 950;
}

.admin-live-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.admin-live-actions button {
    min-height: 2.7rem;
    font-weight: 950;
}

.admin-live-actions #admin-logout {
    background: #0f172a;
    color: #ffffff;
}

.admin-panel-title {
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-chat-thread strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.admin-chat-thread em {
    min-width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 950;
}

.admin-chat-thread-unread {
    background: rgba(34, 197, 94, 0.12);
    border-left: 4px solid #22c55e;
}

.admin-live-room-grid {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
    overflow: hidden;
}

.admin-live-activity {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.95);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    overflow-y: auto;
}

.admin-live-activity h3,
.admin-live-activity-section h4 {
    color: #0f172a;
    font-weight: 950;
}

.admin-live-activity-section {
    display: grid;
    gap: 0.45rem;
}

.admin-live-activity-section p {
    padding: 0.6rem 0.65rem;
    background: #ffffff;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.4;
}

@keyframes livePulse {
    70% {
        box-shadow: 0 0 0 0.55rem rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 1000px) {
    .admin-live-room-grid {
        grid-template-columns: 1fr;
    }

    .admin-live-activity {
        max-height: 18rem;
        border-left: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }
}

@media (max-width: 560px) {
    .site-chat-fields,
    .admin-stats-grid,
    .admin-live-actions {
        grid-template-columns: 1fr;
    }
}

/* Showroom refresh - June 2026 */
:root {
    --showroom-ink: #10202b;
    --showroom-muted: #5f7180;
    --showroom-paper: #fffaf0;
    --showroom-mist: #e8f7fb;
    --showroom-sky: #12a7c9;
    --showroom-teal: #08766d;
    --showroom-gold: #f2b832;
    --showroom-coral: #f97352;
    --showroom-line: rgba(16, 32, 43, 0.1);
    --showroom-shadow: 0 28px 90px rgba(16, 32, 43, 0.13);
}

body {
    background:
        radial-gradient(circle at 7% 5%, rgba(242, 184, 50, 0.32), transparent 24rem),
        radial-gradient(circle at 88% 4%, rgba(18, 167, 201, 0.24), transparent 30rem),
        linear-gradient(180deg, #fffaf0 0%, #edf9fc 42%, #f8fbf4 100%) !important;
    color: var(--showroom-ink);
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    z-index: 0;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(4px);
}

.page-shell::before {
    left: -8rem;
    top: 14rem;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(8, 118, 109, 0.14), transparent 70%);
}

.page-shell::after {
    right: -7rem;
    bottom: 12rem;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(249, 115, 82, 0.13), transparent 70%);
}

nav {
    color: var(--showroom-ink);
}

nav > div {
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.76) !important;
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 18px 55px rgba(16, 32, 43, 0.12);
}

.brand-link,
.nav-link,
.nav-link:hover,
.nav-link-active {
    color: var(--showroom-ink);
}

.brand-logo {
    border-radius: 999px;
    border-color: rgba(16, 32, 43, 0.1);
    box-shadow: 0 12px 26px rgba(16, 32, 43, 0.18);
}

.brand-wordmark {
    color: var(--showroom-ink);
}

.brand-wordmark span {
    color: var(--showroom-gold);
}

.nav-link {
    color: rgba(16, 32, 43, 0.62) !important;
}

.nav-link:hover,
.nav-link-active {
    color: var(--showroom-ink) !important;
}

.nav-link::after {
    background: linear-gradient(90deg, var(--showroom-gold), var(--showroom-teal));
}

.nav-social-actions > a:first-child,
.facebook-nav-link {
    border-radius: 999px !important;
    box-shadow: 0 12px 28px rgba(16, 32, 43, 0.13);
}

.facebook-nav-link {
    background: #145de6;
}

.premium-gradient {
    background: linear-gradient(135deg, var(--showroom-teal) 0%, #0ea5a4 48%, var(--showroom-gold) 100%) !important;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(8, 118, 109, 0.22);
}

.soft-button {
    border-color: rgba(16, 32, 43, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--showroom-ink);
}

.soft-button:hover {
    border-color: rgba(8, 118, 109, 0.32);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(16, 32, 43, 0.12);
}

.section-eyebrow {
    color: var(--showroom-teal);
    letter-spacing: 0.24em;
}

.section-eyebrow::before {
    width: 2rem;
    background: linear-gradient(90deg, var(--showroom-gold), var(--showroom-teal));
}

.store-hero {
    min-height: min(94vh, 900px);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(232, 247, 251, 0.86)),
        var(--showroom-paper);
    color: var(--showroom-ink);
}

.store-hero::before {
    content: "";
    position: absolute;
    right: 3vw;
    top: 10rem;
    width: min(44vw, 36rem);
    height: min(44vw, 36rem);
    border-radius: 48% 52% 44% 56%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 247, 251, 0.42)),
        radial-gradient(circle at 32% 20%, rgba(242, 184, 50, 0.28), transparent 42%);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 34px 90px rgba(16, 32, 43, 0.12);
    animation: showroomBlob 11s ease-in-out infinite;
}

.store-hero::after {
    background: linear-gradient(0deg, #fffaf0 0%, rgba(255, 250, 240, 0) 100%);
}

.store-hero-image {
    left: auto;
    right: -3vw;
    width: min(55vw, 48rem);
    height: 100%;
    object-fit: contain;
    object-position: center right;
    opacity: 0.78;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 34px 70px rgba(16, 32, 43, 0.16));
}

.store-hero-shade {
    background:
        linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.86) 44%, rgba(255, 250, 240, 0.22) 78%, rgba(255, 250, 240, 0.04) 100%) !important;
}

.store-hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
}

.store-hero-title {
    color: var(--showroom-ink);
    text-shadow: none;
}

.store-hero-title span {
    color: var(--showroom-teal);
    text-shadow: none;
}

.store-hero-subtitle {
    color: var(--showroom-muted);
    font-size: clamp(1.04rem, 1.6vw, 1.25rem);
}

.hero-promo-chip {
    border-radius: 999px;
    border: 1px solid rgba(8, 118, 109, 0.16);
    background: rgba(255, 255, 255, 0.82);
    color: var(--showroom-ink);
    box-shadow: 0 18px 42px rgba(16, 32, 43, 0.1);
}

.hero-promo-chip span,
.hero-promo-chip em {
    color: var(--showroom-muted);
}

.hero-promo-chip strong {
    border-radius: 999px;
    background: var(--showroom-gold);
    color: var(--showroom-ink);
}

.store-hero-proof span {
    border-radius: 999px;
    border: 1px solid rgba(8, 118, 109, 0.12);
    background: rgba(255, 255, 255, 0.74);
    color: var(--showroom-muted);
    box-shadow: 0 16px 36px rgba(16, 32, 43, 0.08);
}

.store-hero-proof strong {
    color: var(--showroom-teal);
}

.hero-orbit {
    border-color: rgba(8, 118, 109, 0.18);
}

.hero-showcase {
    border-radius: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(232, 247, 251, 0.52)),
        rgba(255, 255, 255, 0.58);
    color: var(--showroom-ink);
    box-shadow: var(--showroom-shadow);
}

.hero-showcase::before {
    border-radius: 1.7rem;
    border-color: rgba(16, 32, 43, 0.08);
}

.hero-showcase-top {
    color: var(--showroom-muted);
}

.hero-showcase-top strong {
    border-radius: 999px;
    background: var(--showroom-gold);
    color: var(--showroom-ink);
}

.hero-product-card,
.hero-mini-card {
    border-radius: 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 70px rgba(16, 32, 43, 0.14);
}

.hero-product-card {
    background:
        radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.32), transparent 18rem),
        linear-gradient(150deg, #0c8177, #14a6c8 58%, #f2b832);
}

.hero-mini-card {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.54), transparent 12rem),
        linear-gradient(150deg, #ffffff, #e8f7fb);
}

.hero-product-price {
    background: #ffffff;
    color: var(--showroom-teal);
}

.momentum-strip {
    margin-top: -2.2rem;
}

.momentum-marquee {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 55px rgba(16, 32, 43, 0.12);
}

.momentum-marquee span {
    border-radius: 999px;
    background: rgba(8, 118, 109, 0.07);
    color: var(--showroom-ink);
}

.home-gallery-heading,
.featured-heading,
.packs-heading,
.use-case-heading,
.contact-section,
.catalogue-intro,
main > section > .text-center {
    color: var(--showroom-ink);
}

.home-gallery-heading p:not(.section-eyebrow),
.featured-product-card p,
.pack-card p,
.use-case-heading p,
.use-case-card p,
.contact-card p:not(.section-eyebrow),
.catalogue-intro .text-slate-300,
main > section > .text-center .text-slate-300 {
    color: var(--showroom-muted) !important;
}

.home-gallery-shell {
    border-radius: 2rem !important;
    background:
        radial-gradient(circle at 72% 20%, rgba(242, 184, 50, 0.26), transparent 24rem),
        linear-gradient(135deg, #ecfbff, #ffffff 50%, #fff0c9);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--showroom-shadow);
}

.home-gallery-shell::before {
    background:
        linear-gradient(90deg, rgba(8, 118, 109, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(8, 118, 109, 0.07) 1px, transparent 1px);
}

.home-gallery-card {
    color: var(--showroom-ink);
}

.home-gallery-card img {
    filter: drop-shadow(0 32px 45px rgba(16, 32, 43, 0.18));
}

.home-gallery-info {
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 32, 43, 0.08);
    color: var(--showroom-ink);
    box-shadow: 0 16px 45px rgba(16, 32, 43, 0.11);
}

.home-gallery-info em {
    color: var(--showroom-muted);
}

.home-gallery-badge,
.featured-product-hot .featured-kicker,
.pack-card-dark a {
    border-radius: 999px;
    background: var(--showroom-gold);
    color: var(--showroom-ink);
}

.home-gallery-controls {
    border-radius: 999px;
}

.home-gallery-controls button {
    border-radius: 999px;
    background: var(--showroom-ink);
}

.featured-product-card,
.pack-card,
.use-case-card,
.contact-card,
.card-glow,
.catalogue-toolbar,
.promo-card,
.promo-inline,
.faq-item,
.trust-card {
    border-radius: 1.7rem !important;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(232, 247, 251, 0.58)),
        #ffffff;
    color: var(--showroom-ink);
    box-shadow: 0 22px 70px rgba(16, 32, 43, 0.1);
}

.featured-product-hot,
.pack-card-dark,
.use-case-card-hot {
    background:
        radial-gradient(circle at 86% 12%, rgba(242, 184, 50, 0.22), transparent 16rem),
        linear-gradient(150deg, #0a5f58, #0ca3bd);
    color: #ffffff;
}

.featured-product-hot p,
.pack-card-dark p,
.use-case-card-hot p {
    color: rgba(255, 255, 255, 0.78) !important;
}

.featured-kicker {
    border-radius: 999px;
    background: rgba(8, 118, 109, 0.1);
    color: var(--showroom-teal);
}

.featured-product-card strong {
    border-radius: 999px;
    background: var(--showroom-ink);
    color: #ffffff;
}

.featured-product-hot strong {
    background: #ffffff;
    color: var(--showroom-teal);
}

.pack-card a {
    border-radius: 999px;
}

.pack-number {
    color: rgba(8, 118, 109, 0.26);
}

.promo-card {
    background:
        radial-gradient(circle at 100% 0%, rgba(242, 184, 50, 0.35), transparent 24rem),
        linear-gradient(135deg, #ffffff, #e8f7fb 58%, #fff1c7);
}

.promo-title,
.promo-prices strong,
.contact-card h2 {
    color: var(--showroom-ink);
}

.promo-text,
.promo-label,
.promo-inline p:not(.promo-inline-kicker) {
    color: var(--showroom-muted);
}

.promo-prices div {
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.78);
}

.promo-poster-frame img {
    border-radius: 1.4rem;
    box-shadow: 0 22px 60px rgba(16, 32, 43, 0.16);
}

.finder-panel,
.spotlight-panel,
.result-panel {
    border-radius: 2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 92% 0%, rgba(18, 167, 201, 0.18), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(232, 247, 251, 0.62)),
        #ffffff;
    color: var(--showroom-ink);
    box-shadow: var(--showroom-shadow);
}

.finder-panel .text-slate-300,
.spotlight-panel .text-slate-300,
.result-panel .text-slate-300 {
    color: var(--showroom-muted) !important;
}

.finder-option {
    border-radius: 1.35rem !important;
    border-color: rgba(8, 118, 109, 0.14);
    background: rgba(255, 255, 255, 0.7);
    color: var(--showroom-ink);
}

.simulator-option-active,
.finder-option:hover {
    background: var(--showroom-ink) !important;
    color: #ffffff !important;
}

.spotlight-pill,
.product-chip,
.product-fact-strip span,
.product-card-facts span {
    border-radius: 999px;
}

.product-visual {
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.2), transparent 18rem),
        linear-gradient(150deg, #0b5f58, #0ba1bc 70%, #f2b832);
}

.product-visual-stream {
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.2), transparent 18rem),
        linear-gradient(150deg, #183b8f, #0ba1bc 72%, #f2b832);
}

.product-visual-pro {
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18), transparent 18rem),
        linear-gradient(150deg, #064e46, #0e8f85 72%, #f2b832);
}

.product-card .text-slate-300,
.trust-card .text-slate-300,
.faq-item .text-slate-300,
.card-glow .text-slate-300 {
    color: var(--showroom-muted) !important;
}

.product-visual .text-slate-300,
.result-panel .text-white,
.product-visual,
.product-visual .product-note,
.product-visual .text-white\/60,
.product-visual .text-white\/75 {
    color: #ffffff !important;
}

.product-card-facts span {
    border-color: rgba(8, 118, 109, 0.12);
    background: rgba(8, 118, 109, 0.07);
    color: var(--showroom-ink);
}

.list-check {
    color: var(--showroom-muted) !important;
}

.contact-email-link {
    border-radius: 999px;
    background: var(--showroom-ink);
}

.contact-email-link:hover {
    background: var(--showroom-teal);
}

.floating-cta {
    right: 1.1rem;
    bottom: 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--showroom-ink);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 60px rgba(16, 32, 43, 0.14);
}

.floating-cta-copy span {
    color: var(--showroom-muted);
}

.site-chat-toggle,
.site-chat-panel {
    border-radius: 1.4rem;
}

@keyframes showroomBlob {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        border-radius: 48% 52% 44% 56%;
    }
    50% {
        transform: translate3d(-1rem, 0.8rem, 0) rotate(4deg);
        border-radius: 56% 44% 52% 48%;
    }
}

@media (max-width: 900px) {
    nav > div {
        border-radius: 1.6rem !important;
    }

    .store-hero {
        min-height: auto;
    }

    .store-hero::before {
        right: -8rem;
        top: 7rem;
        width: 22rem;
        height: 22rem;
    }

    .store-hero-image {
        right: -20vw;
        width: 92vw;
        opacity: 0.25;
    }

    .store-hero-shade {
        background: rgba(255, 250, 240, 0.84) !important;
    }

    .momentum-marquee {
        border-radius: 1.6rem;
    }

    .floating-cta {
        border-radius: 1.4rem;
    }
}

@media (max-width: 640px) {
    .store-hero-title {
        font-size: clamp(3rem, 16vw, 4.2rem);
    }

    .store-hero-actions .hero-button,
    .promo-actions .hero-button {
        width: 100%;
        justify-content: center;
    }

    .home-gallery-shell,
    .featured-product-card,
    .pack-card,
    .use-case-card,
    .contact-card,
    .card-glow,
    .finder-panel,
    .spotlight-panel {
        border-radius: 1.35rem !important;
    }
}

/* FINAL OVERRIDES - keep this at the end */
.contact-email-link,
.contact-email-link:visited,
html[data-theme="light"] .contact-email-link,
html[data-theme="light"] .contact-email-link:visited,
html[data-theme="dark"] .contact-email-link,
html[data-theme="dark"] .contact-email-link:visited {
    background: #0b1f2c !important;
    color: #ffffff !important;
}

.contact-email-link *,
.contact-email-link span,
.contact-email-link strong {
    color: #ffffff !important;
}

.contact-email-link i {
    color: #f2b832 !important;
}

.filter-chip,
.filter-chip:visited,
html[data-theme="light"] .filter-chip {
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(14, 165, 233, 0.42) !important;
    color: #10202b !important;
    box-shadow: 0 10px 24px rgba(16, 32, 43, 0.08) !important;
}

.filter-chip:hover,
.filter-chip-active,
html[data-theme="light"] .filter-chip:hover,
html[data-theme="light"] .filter-chip-active {
    background: #0b1f2c !important;
    border-color: #0b1f2c !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .filter-chip {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .filter-chip:hover,
html[data-theme="dark"] .filter-chip-active {
    background: #f8fafc !important;
    color: #0f172a !important;
}

.price-stack {
    align-items: flex-start !important;
    gap: 0.3rem !important;
}

.current-price,
html[data-theme="light"] .current-price,
html[data-theme="dark"] .current-price {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 2.45rem !important;
    padding: 0 0.9rem !important;
    border-radius: 999px !important;
    background: #0b1f2c !important;
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 950 !important;
    opacity: 1 !important;
    box-shadow: 0 12px 28px rgba(16, 32, 43, 0.14) !important;
}

.old-price,
html[data-theme="light"] .old-price,
html[data-theme="dark"] .old-price {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.18rem 0.55rem !important;
    border-radius: 999px !important;
    background: rgba(15, 23, 42, 0.08) !important;
    color: #475569 !important;
    font-weight: 900 !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .old-price {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #d7e1ea !important;
}

.promo-badge,
html[data-theme="light"] .promo-badge,
html[data-theme="dark"] .promo-badge {
    display: inline-flex !important;
    align-items: center !important;
    align-self: flex-start !important;
    min-height: 1.8rem !important;
    background: #f2b832 !important;
    color: #10202b !important;
    opacity: 1 !important;
    box-shadow: 0 8px 20px rgba(242, 184, 50, 0.24) !important;
}

.featured-product-card .current-price,
.pack-card .current-price,
.spotlight-panel .current-price,
.finder-panel .current-price,
#p-price .current-price {
    color: #ffffff !important;
    opacity: 1 !important;
}

.contact-email-link,
.contact-email-link *,
html[data-theme="light"] .contact-email-link,
html[data-theme="light"] .contact-email-link *,
html[data-theme="dark"] .contact-email-link,
html[data-theme="dark"] .contact-email-link * {
    color: #ffffff !important;
}

.contact-email-link,
html[data-theme="light"] .contact-email-link,
html[data-theme="dark"] .contact-email-link {
    background: #0b1f2c !important;
}

/* Price color request */
.current-price,
html[data-theme="light"] .current-price,
html[data-theme="dark"] .current-price,
.featured-product-card .current-price,
.pack-card .current-price,
.spotlight-panel .current-price,
.finder-panel .current-price,
#p-price .current-price {
    background: #16a34a !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.26) !important;
}

html[data-theme="light"] :is(.card-glow, .featured-product-card:not(.featured-product-hot), .pack-card:not(.pack-card-dark), .use-case-card:not(.use-case-card-hot), .contact-card, .promo-card, .finder-panel, .spotlight-panel, .catalogue-toolbar, .faq-item, .trust-card) {
    color: #10202b !important;
}

html[data-theme="light"] :is(.card-glow, .featured-product-card:not(.featured-product-hot), .pack-card:not(.pack-card-dark), .use-case-card:not(.use-case-card-hot), .contact-card, .promo-card, .finder-panel, .spotlight-panel, .catalogue-toolbar, .faq-item, .trust-card) :is(p, li, span):not(.product-visual *):not(.premium-gradient *):not(.current-price):not(.old-price):not(.promo-badge):not(.contact-email-link *) {
    color: #334155 !important;
}

html[data-theme="light"] :is(.card-glow, .featured-product-card, .pack-card, .use-case-card, .contact-card, .promo-card, .finder-panel, .spotlight-panel, .catalogue-toolbar, .faq-item, .trust-card) :is(h1, h2, h3, h4, strong):not(.product-visual *):not(.premium-gradient *):not(.contact-email-link *) {
    color: #10202b !important;
}

html[data-theme="light"] :is(.product-visual, .product-visual *, .featured-product-hot, .featured-product-hot *, .pack-card-dark, .pack-card-dark *, .use-case-card-hot, .use-case-card-hot *) {
    color: #ffffff !important;
}

html[data-theme="dark"] body {
    background:
        radial-gradient(circle at 8% 0%, rgba(242, 184, 50, 0.13), transparent 28rem),
        radial-gradient(circle at 88% 4%, rgba(18, 167, 201, 0.14), transparent 30rem),
        linear-gradient(180deg, #071018 0%, #0f172a 46%, #111827 100%) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] :is(.store-hero-title, .home-gallery-heading, .featured-heading, .packs-heading, .use-case-heading, .contact-section, .catalogue-intro, main > section > .text-center, .card-glow, .featured-product-card, .pack-card, .use-case-card, .contact-card, .promo-card, .finder-panel, .spotlight-panel, .catalogue-toolbar, .faq-item, .trust-card) {
    color: #f8fafc !important;
}

html[data-theme="dark"] :is(.store-hero-subtitle, .home-gallery-heading p:not(.section-eyebrow), .featured-product-card p, .pack-card p, .use-case-card p, .contact-card p:not(.section-eyebrow), .promo-text, .finder-panel .text-slate-300, .spotlight-panel .text-slate-300, .card-glow .text-slate-300, .product-card .text-slate-300, .trust-card .text-slate-300, .faq-item .text-slate-300, .list-check) {
    color: #d7e1ea !important;
}

html[data-theme="dark"] :is(.hero-promo-chip, .momentum-marquee, .home-gallery-shell, .featured-product-card, .pack-card, .use-case-card, .contact-card, .card-glow, .catalogue-toolbar, .promo-card, .promo-inline, .faq-item, .trust-card, .finder-panel, .spotlight-panel, .result-panel, .hero-showcase) {
    background:
        radial-gradient(circle at 90% 0%, rgba(18, 167, 201, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(21, 38, 48, 0.82)),
        #0f172a !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
}

.site-chat-toggle {
    width: auto !important;
    min-height: 3.15rem !important;
    display: inline-grid !important;
    grid-template-columns: auto auto !important;
    align-items: center !important;
    gap: 0.55rem !important;
    padding: 0.42rem 0.72rem 0.42rem 0.42rem !important;
    border-radius: 999px !important;
}

.site-chat-toggle strong {
    display: block !important;
    color: #10202b !important;
    font-size: 0.86rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.site-chat-toggle em {
    display: none !important;
}

.site-chat-toggle-icon {
    width: 2.32rem !important;
    height: 2.32rem !important;
    font-size: 1rem !important;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 7rem !important;
    }

    nav {
        top: 0.35rem !important;
        padding: 0.45rem 0.6rem !important;
    }

    nav > div {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        gap: 0.55rem !important;
        align-items: center !important;
        padding: 0.55rem 0.65rem !important;
        border-radius: 1.35rem !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 14px 40px rgba(16, 32, 43, 0.14) !important;
    }

    .brand-logo {
        width: 2.25rem !important;
        height: 2.25rem !important;
    }

    .brand-wordmark {
        max-width: 6.6rem !important;
        overflow: hidden !important;
        font-size: 0.82rem !important;
        text-overflow: ellipsis !important;
    }

    nav .flex.gap-6 {
        justify-self: center !important;
        gap: 0.25rem !important;
        padding: 0.25rem !important;
        border-radius: 999px !important;
        background: rgba(16, 32, 43, 0.06) !important;
        font-size: 0.65rem !important;
        letter-spacing: 0.04em !important;
    }

    .nav-link {
        padding: 0.42rem 0.48rem !important;
        border-radius: 999px !important;
    }

    .nav-link::after {
        display: none !important;
    }

    .nav-link-active {
        background: #10202b !important;
        color: #ffffff !important;
    }

    .nav-social-actions {
        width: auto !important;
        display: inline-flex !important;
        justify-content: flex-end !important;
        gap: 0.35rem !important;
    }

    .facebook-nav-link {
        display: none !important;
    }

    .nav-social-actions > a:first-of-type {
        width: 2.45rem !important;
        min-height: 2.45rem !important;
        padding: 0 !important;
        overflow: hidden !important;
        color: transparent !important;
        font-size: 0 !important;
        position: relative !important;
        flex: 0 0 auto !important;
    }

    .nav-social-actions > a:first-of-type::before {
        content: "\f232";
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: #ffffff;
        font-family: "Font Awesome 6 Brands";
        font-size: 1rem;
    }

    .theme-toggle {
        width: 2.45rem !important;
        min-height: 2.45rem !important;
        padding: 0 !important;
        flex: 0 0 auto !important;
    }

    .theme-toggle span {
        display: none !important;
    }

    html[data-theme="dark"] nav > div {
        background: rgba(8, 15, 23, 0.9) !important;
    }

    html[data-theme="dark"] nav .flex.gap-6 {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    html[data-theme="dark"] .nav-link-active {
        background: #ffffff !important;
        color: #0f172a !important;
    }

    .store-hero {
        padding-top: 7rem !important;
    }

    .site-chat-widget {
        width: auto !important;
        left: 0.75rem !important;
        bottom: 0.75rem !important;
    }

    .site-chat-panel {
        width: min(92vw, 360px) !important;
    }
}

@media (max-width: 430px) {
    .brand-wordmark {
        display: none !important;
    }

    nav .flex.gap-6 {
        font-size: 0.58rem !important;
    }

    .nav-link {
        padding: 0.38rem 0.36rem !important;
    }
}
.stock-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 0.65rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stock-badge-available {
    color: #075f36;
    background: #d8fbe8;
    border: 1px solid #74d9a7;
}

.stock-badge-unavailable,
.home-gallery-badge-unavailable {
    color: #7a271a;
    background: #fff0e8;
    border: 1px solid #f3a17e;
}

.stock-order-disabled,
.product-order-disabled {
    color: #fff;
    background: #687386 !important;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}

.product-card-out-of-stock .product-visual,
.product-link-out-of-stock img {
    filter: saturate(0.72);
}

.featured-product-card > .stock-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    margin: 0;
}

#p-tag .stock-badge,
#spotlight-note .stock-badge {
    margin-left: 0.5rem;
    vertical-align: middle;
}

.stock-notify-button {
    border: 1px solid #f59e0b;
    background: #fff7dc;
    color: #7a4300;
    cursor: pointer;
}

.cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 920px;
    margin: auto;
    padding: 1.2rem 1.35rem;
    color: #10202b;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(8, 118, 109, 0.2);
    border-radius: 1.4rem;
    box-shadow: 0 24px 70px rgba(2, 18, 28, 0.28);
}

.cookie-consent strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.cookie-consent p {
    max-width: 650px;
    margin: 0;
    color: #405463;
    font-size: 0.9rem;
    line-height: 1.55;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.65rem;
}

.cookie-consent-actions button,
.privacy-control {
    border: 0;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.cookie-consent-actions button:first-child {
    color: #10202b;
    background: #e9eff2;
}

.privacy-control {
    position: fixed;
    left: 1rem;
    bottom: 5.25rem;
    z-index: 81;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #17313e;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(2, 18, 28, 0.18);
    font-size: 0.75rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

body.site-chat-is-open .privacy-control {
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.5rem);
}

.restock-modal {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(5, 16, 25, 0.72);
    backdrop-filter: blur(8px);
}

.restock-modal-card {
    position: relative;
    width: min(100%, 520px);
    padding: 2rem;
    color: #10202b;
    background: #fff;
    border-radius: 1.6rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
}

.restock-modal-card h2 {
    margin: 0.65rem 0;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
}

.restock-modal-card > p:not(.section-eyebrow) {
    margin-bottom: 1.25rem;
    color: #526573;
}

.restock-modal-card label {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.85rem;
    font-weight: 800;
}

.restock-modal-card input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #cbd5df;
    border-radius: 0.9rem;
}

.restock-modal-card [type="submit"] {
    width: 100%;
    margin-top: 1rem;
    padding: 0.95rem;
    border: 0;
    border-radius: 0.9rem;
    color: #fff;
    font-weight: 900;
}

.restock-modal-card small {
    display: block;
    min-height: 1.4rem;
    margin-top: 0.75rem;
    color: #08766d;
    font-weight: 700;
}

.restock-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    border-radius: 50%;
    color: #10202b;
    background: #edf2f4;
}

.admin-management-grid,
.admin-settings-grid {
    display: grid;
    gap: 1rem;
}

.admin-management-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.admin-management-section,
.admin-settings-card {
    padding: 1.2rem;
    color: #10202b;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 1.25rem;
}

.admin-management-heading,
.admin-order-card-head,
.admin-alert-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-management-heading {
    margin-bottom: 1rem;
}

.admin-management-heading h3,
.admin-settings-card h3 {
    margin: 0.25rem 0;
    font-size: 1.25rem;
    font-weight: 900;
}

.admin-management-heading > strong {
    display: grid;
    place-items: center;
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #fff;
    background: #08766d;
}

.admin-order-list,
.admin-alert-list {
    display: grid;
    gap: 0.8rem;
    max-height: 68vh;
    overflow: auto;
}

.admin-order-card,
.admin-alert-card {
    padding: 1rem;
    border: 1px solid #dbe4e8;
    border-radius: 1rem;
    background: #f8fbfc;
}

.admin-order-card-head strong,
.admin-alert-card strong {
    display: block;
}

.admin-order-card-head span,
.admin-alert-card span,
.admin-alert-card small {
    display: block;
    color: #647582;
    font-size: 0.78rem;
}

.admin-order-card select,
.admin-alert-card select,
.admin-settings-card input {
    padding: 0.7rem 0.8rem;
    border: 1px solid #cbd5df;
    border-radius: 0.75rem;
    background: #fff;
}

.admin-order-card > button,
.admin-settings-card > button {
    padding: 0.8rem 1rem;
    border: 0;
    border-radius: 0.8rem;
    font-weight: 900;
}

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

.admin-settings-card {
    align-content: start;
}

.admin-settings-card > p {
    margin-bottom: 1rem;
    color: #536774;
    line-height: 1.55;
}

.admin-settings-card .admin-field {
    margin-bottom: 0.75rem;
}

#admin-recovery-output {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.9rem;
    border-radius: 0.8rem;
    background: #fff8d9;
    overflow-wrap: anywhere;
}

.admin-image-upload {
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px dashed #0f9f8f;
    border-radius: 1rem;
    background: #effcf9;
}

.admin-recovery-link {
    color: #08766d !important;
    background: transparent !important;
    box-shadow: none !important;
}

.admin-recovery-form {
    display: grid;
    gap: 0.6rem;
    padding: 0.9rem;
    border-radius: 1rem;
    background: #f0f6f7;
}

.turnstile-slot {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 65px;
    margin: 0.65rem 0;
}

.turnstile-slot.hidden {
    display: none;
}

.admin-warning-text,
.admin-success-text {
    display: block;
    margin-top: 0.75rem;
    font-weight: 800;
}

.admin-warning-text {
    color: #b7791f;
}

.admin-success-text {
    color: #047857;
}

@media (max-width: 900px) {
    .admin-management-grid,
    .admin-settings-grid {
        grid-template-columns: 1fr;
    }

    .cookie-consent {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .cookie-consent {
        bottom: 0.6rem;
        padding: 1rem;
    }

    .cookie-consent-actions {
        grid-template-columns: 1fr;
    }

    .privacy-control {
        left: 0.75rem;
        bottom: 4.35rem;
        width: 2.7rem;
        height: 2.7rem;
        justify-content: center;
        padding: 0;
    }

    .privacy-control span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .admin-order-card-head,
    .admin-alert-card {
        align-items: stretch;
        flex-direction: column;
    }
}
