@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;
    }
}

/* 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;
    }
}
