/* ==========================================================================
   SmartIStore — Premium Mobile Shop
   ========================================================================== */

:root {
    --hero-banner-bg: #E8E7E4;
    --primary: #FFC107;
    --primary-dark: #E6AC00;
    --secondary: #FFD54F;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-400: #9E9E9E;
    --gray-600: #616161;
    --black: #111111;
    --text: #1A1A1A;
    --footer-bg: #111111;
    --glow: rgba(255, 193, 7, 0.35);
    --glass: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Instrument Serif', Georgia, serif;
    --header-h: 80px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ==========================================================================
   Site-wide loading screen (videos + assets)
   ========================================================================== */

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse 120% 80% at 28% 38%, #3d3520 0%, #1a1810 42%, #0d0d0d 100%);
    color: var(--white);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.55s;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 24px;
}

.site-loader__logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.site-loader__mark {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 32px var(--glow);
}

.site-loader__brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0;
}

.site-loader__spinner {
    position: relative;
    width: 48px;
    height: 48px;
}

.site-loader__ring {
    display: block;
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: siteLoaderSpin 0.85s linear infinite;
}

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

.site-loader__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    min-height: 1.25em;
}

html.is-site-loading body {
    overflow: hidden;
}

img, video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
em, .hero-title em, .page-hero-title em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 520px;
}

.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

.section {
    padding: 100px 0;
}

.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-yellow { background: var(--primary); }

.section-yellow .section-label {
    color: rgba(17, 17, 17, 0.58);
}

.section-yellow .section-desc,
.section-yellow .feature-desc {
    color: rgba(17, 17, 17, 0.78);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.btn-primary {
    background: var(--primary);
    color: var(--black);
    box-shadow: 0 4px 24px var(--glow);
}

.btn-primary:hover {
    background: var(--secondary);
    box-shadow: 0 8px 32px var(--glow);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 193, 7, 0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--primary);
    background: rgba(255, 193, 7, 0.08);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: #2a2a2a;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block { width: 100%; }

/* Glass cards */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 193, 7, 0.3);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header:not(.site-header--hero) .nav-link,
.site-header:not(.site-header--hero) .logo-text {
    color: var(--text);
}

.site-header:not(.site-header--hero) .nav-toggle-bar {
    background: var(--text);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled .nav-link { color: var(--text); }
.site-header.is-scrolled .logo-text { color: var(--text); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1002;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    box-shadow: 0 4px 16px var(--glow);
}

.logo-text { transition: color var(--transition); }

.main-nav { display: flex; align-items: center; }

.nav-list {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }

.nav-link.is-active { color: var(--primary); }

.social-links--header {
    margin-right: 8px;
}

.social-links--header .social-link {
    width: 36px;
    height: 36px;
}

.site-header--hero .social-links--header .social-link:hover {
    color: var(--primary);
    border-color: rgba(255, 193, 7, 0.4);
    background: rgba(255, 193, 7, 0.12);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
    border-radius: 2px;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) { opacity: 0; }

.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
    display: none;
}

/* ==========================================================================
   One-time intro overlay (not in page scroll)
   ========================================================================== */

.intro-experience--overlay {
    position: fixed;
    inset: 0;
    z-index: 99990;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    touch-action: none;
}

.hero-intro {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-intro__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.hero-intro.is-playing .hero-intro__bg {
    opacity: 0;
}

/* Intro background — flat hero tone, brighter wash on the left */
.hero-intro__bg-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 72% 90% at 6% 50%,
            rgba(255, 255, 255, 0.42) 0%,
            rgba(255, 255, 255, 0.2) 38%,
            rgba(255, 255, 255, 0.06) 58%,
            transparent 72%
        ),
        linear-gradient(
            95deg,
            rgba(255, 255, 255, 0.32) 0%,
            rgba(255, 255, 255, 0.14) 28%,
            transparent 62%
        ),
        #121214;
}

.hero-intro__bg-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.45) 100%),
        linear-gradient(90deg, transparent 0%, transparent 55%, rgba(0, 0, 0, 0.28) 100%);
}

/* Right panel — name, about, address, phone, button */
.hero-intro__panel {
    position: absolute;
    top: 50%;
    right: clamp(24px, 5vw, 80px);
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    max-width: min(380px, 40vw);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-intro.is-playing .hero-intro__panel {
    opacity: 0;
    transform: translateY(calc(-50% + 12px));
    pointer-events: none;
}

.hero-intro__name {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-intro__name .accent {
    color: var(--primary);
    font-style: normal;
}

.hero-intro__about {
    margin: 0;
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 32ch;
}

.hero-intro__address {
    margin: 0;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
    max-width: 28ch;
}

.hero-intro__address a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-intro__address a:hover {
    color: var(--primary);
}

.hero-intro__phone {
    margin: 0;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.hero-intro__phone a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-intro__phone a:hover {
    color: var(--primary);
}

.hero-intro__phone-sep {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.hero-intro__stage {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
}

.hero-intro__video-src {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.hero-intro__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.hero-intro__canvas.is-ready {
    opacity: 1;
}

.hero-intro__status {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 90%;
}

.hero-intro__enter {
    margin-top: 8px;
    min-width: 180px;
    padding: 14px 32px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.hero-intro__enter:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.45);
}

.hero-intro__enter:disabled {
    opacity: 0.55;
    cursor: wait;
}

@media (max-width: 768px) {
    .hero-intro__stage {
        overflow: hidden;
    }

    .hero-intro__panel {
        top: 50%;
        bottom: auto;
        left: 50%;
        right: auto;
        width: min(calc(100% - 40px), 420px);
        max-width: none;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .hero-intro.is-playing .hero-intro__panel {
        transform: translate(-50%, calc(-50% + 12px));
    }

    .hero-intro__name {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
        width: 100%;
    }

    .hero-intro__about,
    .hero-intro__address {
        max-width: 34ch;
    }

    .hero-intro__phone {
        width: 100%;
    }

    .hero-intro__enter {
        width: 100%;
        max-width: 280px;
        align-self: center;
    }
}

/* Hero stays in page flow (no position:fixed) so content below cannot jump up */
.hero-banner--after-intro {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-banner--after-intro.is-transitioning {
    visibility: visible;
    pointer-events: none;
    opacity: var(--hero-opacity, 0);
    transform: scale(var(--hero-scale, 1));
    transform-origin: center center;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-banner--after-intro.is-revealed {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

body.is-intro-active {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
}

body.is-intro-active .site-header--hero {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.has-intro-overlay:not(.is-intro-complete) .hero-banner--after-intro:not(.is-transitioning):not(.is-revealed) {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================================================
   Fullscreen Hero Video Banner
   ========================================================================== */

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: var(--hero-banner-bg);
}

/* Banner video backdrop — flat warm gray for green-screen compositing */
.hero-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-banner__bg-base {
    position: absolute;
    inset: 0;
    background: var(--hero-banner-bg);
}

.hero-banner__bg-glow,
.hero-banner__bg-sparkle {
    display: none;
}

@keyframes heroBgGlow {
    0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes heroBgSparkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Fullscreen video layer */
.hero-banner__stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

/* Side typography overlays — phones stay full size behind */
.hero-banner__showcase {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    margin: 0;
    border: none;
    font: inherit;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-banner__brand {
    position: absolute;
    top: 50%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Outfit', var(--font);
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 200;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #000000;
    user-select: none;
    max-width: 28vw;
}

.hero-banner__brand-line {
    display: block;
}

.hero-banner__brand-sub {
    display: block;
    font-family: var(--font);
    font-size: clamp(0.65rem, 1.25vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 2px;
    opacity: 0;
    transform: translateY(12px);
    animation: heroBrandIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

.hero-banner__brand--left {
    left: clamp(16px, 3.5vw, 56px);
    transform: translateY(-50%);
    text-align: left;
}

.hero-banner__brand--right {
    right: clamp(16px, 3.5vw, 56px);
    transform: translateY(-50%);
    text-align: right;
}

.hero-banner__brand-accent {
    color: var(--primary);
    font-weight: 300;
}

.hero-banner__brand-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: heroBrandIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-banner__brand--left .hero-banner__brand-text {
    animation-delay: 0.2s;
}

.hero-banner__brand--right .hero-banner__brand-text,
.hero-banner__brand--right .hero-banner__brand-accent {
    opacity: 0;
    transform: translateY(20px);
    animation: heroBrandIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.35s;
}

.hero-banner__brand--right .hero-banner__brand-accent {
    display: inline-block;
    animation-delay: 0.3s;
}

@keyframes heroBrandIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile-only centered title on the video */
.hero-banner__brand-mobile {
    display: none;
}

.hero-banner__brand-mobile-text {
    display: block;
    font-family: 'Outfit', var(--font);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #000000;
    text-shadow: none;
}

.hero-banner__brand-mobile-text .hero-banner__brand-accent {
    font-weight: 400;
}

.hero-banner__video-src {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.hero-banner__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.hero-banner__error {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: var(--gray-600);
    font-size: 0.95rem;
    z-index: 2;
}

/* Navbar overlays fullscreen hero */
.site-header--hero {
    background: transparent;
    box-shadow: none;
}

.site-header--hero .logo-text,
.site-header--hero .nav-link {
    color: #000000;
}

.site-header--hero .nav-link.is-active {
    color: var(--primary);
}

.site-header--hero .nav-toggle-bar {
    background: #000000;
}

.site-header--hero .social-links--header .social-link {
    color: rgba(0, 0, 0, 0.85);
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.04);
}

.site-header--hero.is-scrolled .logo-text,
.site-header--hero.is-scrolled .nav-link {
    color: var(--text);
}

.site-header--hero.is-scrolled .nav-toggle-bar {
    background: var(--text);
}

.site-header--hero.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.logo--text .logo-mark { display: none; }

.logo--text .logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: inherit;
}

.page-home .site-header--hero .logo {
    visibility: hidden;
    pointer-events: none;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-banner__bg-base {
        background: var(--hero-banner-bg);
    }

    .hero-banner__bg-glow {
        width: min(85vw, 640px);
        height: min(50vw, 420px);
        top: 32%;
    }

    .hero-banner__brand {
        font-size: clamp(2rem, 5.5vw, 3.8rem);
        max-width: 24vw;
        top: calc(var(--header-h) + 10px);
        transform: none;
    }

    .hero-banner__brand--left {
        left: clamp(12px, 2.5vw, 32px);
        text-align: left;
    }

    .hero-banner__brand--right {
        right: clamp(12px, 2.5vw, 32px);
        text-align: right;
    }

    .hero-banner__brand-sub {
        font-size: clamp(0.6rem, 1.1vw, 0.75rem);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 100svh;
        min-height: 100dvh;
    }

    .hero-banner__bg-base {
        background: var(--hero-banner-bg);
    }

    .hero-banner__bg-glow {
        width: 95vw;
        height: 45vw;
        top: 38%;
    }

    .hero-banner__brand--split {
        display: none !important;
    }

    .hero-banner__brand-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        padding: calc(var(--header-h) + 12px) 20px 24px;
        text-align: center;
        pointer-events: none;
    }

    .hero-banner__brand-mobile-text {
        font-size: clamp(2.75rem, 14vw, 4.25rem);
        opacity: 0;
        transform: translateY(16px) scale(0.98);
        animation: heroBrandMobileIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
    }
}

@keyframes heroBrandMobileIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-banner__brand-mobile-text {
        font-size: clamp(2.5rem, 13.5vw, 3.75rem);
    }

    .hero-banner__bg-glow {
        height: 38vw;
        top: 40%;
    }
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.product-stock {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 100px;
}

.product-stock--out_of_stock {
    background: rgba(231, 76, 60, 0.92);
    color: #fff;
}

.product-stock--pre_order {
    background: var(--primary);
    color: var(--black);
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--black);
    border-radius: 100px;
}

.product-image {
    aspect-ratio: 1;
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--gray-100), var(--gray-200));
}

.product-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    background:
        radial-gradient(circle at 50% 30%, var(--product-accent, #333) 0%, transparent 55%),
        linear-gradient(180deg, var(--gray-100) 0%, var(--gray-200) 100%);
    position: relative;
}

.product-image-placeholder::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 70%;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(0,0,0,0.2));
    border-radius: 24px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.2);
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    z-index: 1;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-meta {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.product-actions {
    display: flex;
    gap: 8px;
}

/* Homepage category product carousels */
.category-slides__list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.category-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.category-carousel__title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.category-carousel__icon {
    display: flex;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 12px;
    color: var(--primary-dark);
}

.category-carousel__icon svg {
    width: 22px;
    height: 22px;
}

.category-carousel__title {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
}

.category-carousel__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    white-space: nowrap;
}

.category-carousel__link:hover {
    color: var(--text);
}

.category-carousel__link-arrow {
    display: inline-flex;
    transition: transform var(--transition);
}

.category-carousel__link-arrow svg {
    width: 16px;
    height: 16px;
}

.category-carousel__link:hover .category-carousel__link-arrow {
    transform: translateX(3px);
}

.category-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-200) transparent;
    padding-bottom: 4px;
    margin: 0 -4px;
    padding-left: 4px;
    padding-right: 4px;
}

.category-carousel__viewport::-webkit-scrollbar {
    height: 6px;
}

.category-carousel__viewport::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 100px;
}

.category-carousel__viewport.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.category-carousel__viewport.is-dragging * {
    pointer-events: none;
}

.category-carousel__track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 4px 2px 12px;
}

.category-carousel__slide {
    flex: 0 0 clamp(240px, 28vw, 300px);
    scroll-snap-align: start;
}

.category-carousel__slide .product-card {
    height: 100%;
    margin: 0;
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    padding: 32px 28px;
    position: relative;
    display: block;
}

.category-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.category-icon svg { width: 24px; height: 24px; }

.category-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.5;
}

.category-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.category-arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--transition), transform var(--transition);
}

.category-arrow svg { width: 18px; height: 18px; }

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px 20px;
}

.feature-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 213, 79, 0.1));
    border-radius: 20px;
    margin-bottom: 24px;
    color: var(--primary-dark);
    box-shadow: 0 8px 32px var(--glow);
}

.feature-icon svg { width: 28px; height: 28px; }

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-yellow .feature-icon {
    background: rgba(255, 255, 255, 0.65);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* About preview (home) */
.about-preview {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.about-preview__content .section-desc {
    margin-bottom: 24px;
}

.about-preview__card {
    padding: 32px;
    text-align: center;
}

.about-preview__address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--gray-600);
}

.about-preview__phone {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.about-preview + .brands-marquee {
    margin-top: 48px;
}

.about-contact-list {
    list-style: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    text-align: left;
}

.about-contact-list li {
    margin-bottom: 16px;
}

.about-contact-list strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.about-contact-list a {
    color: var(--text);
    text-decoration: none;
}

.about-contact-list a:hover {
    color: var(--primary-dark);
}

.cta-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-strip-inner .btn-ghost--light {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.35);
}

.cta-strip-inner .btn-ghost--light:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* Brands (legacy — unused) */
.brands-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px 64px;
    padding: 40px 0;
}

.brand-item {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: -0.02em;
    transition: color var(--transition), transform var(--transition);
    cursor: default;
}

.brand-item:hover {
    color: var(--text);
    transform: scale(1.05);
}

/* Offers banner */
.offers-banner {
    padding: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #FFE082 100%);
    position: relative;
    overflow: hidden;
}

.offers-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 80px 24px;
    min-height: 320px;
}

.offers-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.offers-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--black);
}

.offers-text {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.offers-visual {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offers-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 70%);
    border-radius: 50%;
}

.offers-percent {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--black);
    position: relative;
}

.offers-off {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(0,0,0,0.6);
    position: relative;
}

/* Testimonials */
.review-form-wrap {
    max-width: 720px;
    margin: 0 auto 48px;
}

.review-form {
    padding: 32px;
}

.review-form__title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.review-form__desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.review-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.review-form__rating-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(26, 26, 26, 0.8);
}

.review-stars-input {
    display: flex;
    gap: 6px;
}

.review-stars-input.is-invalid .review-star-btn {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
    border-radius: 6px;
}

.review-star-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--gray-200);
    transition: color 0.15s ease, transform 0.15s ease;
}

.review-star-btn:hover,
.review-star-btn.is-active {
    color: var(--primary);
    transform: scale(1.05);
}

.review-star-icon svg {
    width: 28px;
    height: 28px;
}

.review-form-wrap .alert {
    margin-bottom: 20px;
}

.testimonials-empty {
    grid-column: 1 / -1;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 36px 32px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--primary);
}

.testimonial-stars svg { width: 18px; height: 18px; }

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
}

.contact-info .section-title { margin-bottom: 12px; }

.contact-details {
    margin-top: 32px;
}

.contact-details li {
    margin-bottom: 20px;
}

.contact-details strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-details a:hover { color: var(--primary-dark); }

.contact-form {
    padding: 36px;
    grid-column: 2;
    grid-row: 1 / 3;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-600);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 0.95rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-embed {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-200);
    min-height: 220px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.map-embed--lg {
    min-height: 280px;
}

.map-embed__frame {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

.map-embed--lg .map-embed__frame {
    height: 280px;
}

.map-embed__open {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    text-decoration: none;
    border-top: 1px solid var(--gray-200);
    transition: background 0.2s ease, color 0.2s ease;
}

.map-embed__open:hover {
    background: var(--primary);
    color: var(--text);
}

/* Footer */
.site-footer {
    position: relative;
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 32px;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, var(--glow), transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
    position: relative;
}

.footer-brand .logo-text { color: var(--white); }

.footer-tagline {
    margin: 20px 0 28px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: background var(--transition), transform var(--transition);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a:hover { color: var(--primary); }

.footer-contact li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact a:hover { color: var(--primary); }

.footer-powered {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.footer-powered a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-powered a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.footer-copy {
    margin: 0;
    justify-self: start;
}

.footer-legal {
    display: flex;
    gap: 24px;
    justify-self: end;
}

.footer-legal a:hover { color: var(--primary); }

/* Page templates */
.page-hero {
    padding: calc(var(--header-h) + 80px) 0 80px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero-compact { padding-bottom: 60px; }

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
}

/* Brands marquee (home + about) */
.brands-marquee {
    padding: 20px 0 8px;
    border-top: 1px solid var(--gray-200);
    margin-top: 8px;
}

.section-brands .brands-marquee {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.brands-marquee__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-600);
    text-align: center;
    margin: 0 0 16px;
}

.brands-marquee__viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-marquee__track {
    display: flex;
    width: max-content;
    animation: brands-marquee-scroll 42s linear infinite;
}

.brands-marquee__group {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    padding-right: 12px;
}

.brands-marquee__chip {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

@keyframes brands-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .brands-marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .brands-marquee__group:last-child {
        display: none;
    }

    .brands-marquee__group {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }
}

/* About page — main intro & pillars */
.about-main {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-main .section-title {
    margin-bottom: 20px;
}

.about-main__lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 20px;
}

.about-main__lead strong {
    font-weight: 600;
}

.about-main__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin: 0;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.about-pillar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-pillar--reverse .about-pillar__media {
    order: 2;
}

.about-pillar--reverse .about-pillar__body {
    order: 1;
}

.about-pillar__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-md);
}

.about-pillar__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-pillar__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.about-pillar__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin: 0;
}

.about-pillar__desc strong {
    color: var(--text);
    font-weight: 600;
}

.about-visit .map-embed {
    margin-top: 8px;
}

.about-visit .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* About page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.about-stats strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.about-stats span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.about-visual {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.about-visual-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 30%, var(--glow), transparent 50%),
        linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.about-visual-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-style: italic;
    text-align: center;
    line-height: 1.3;
    color: var(--text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    font-size: 1.1rem;
    margin: 16px 0 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.cta-strip {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-strip-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 28px;
}

/* Products page */
.products-catalog {
    padding-top: 48px;
}

.products-filter-stack {
    position: sticky;
    top: calc(var(--header-h) - 1px);
    z-index: 40;
    margin-bottom: 36px;
    padding-bottom: 4px;
    background: linear-gradient(180deg, var(--white) 82%, rgba(255, 255, 255, 0.94) 100%);
    backdrop-filter: blur(10px);
}

.category-subnav {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.category-subnav::-webkit-scrollbar {
    height: 6px;
}

.category-subnav::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 100px;
}

.category-subnav__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 10px 18px;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    background: var(--white);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.category-subnav__btn:hover {
    border-color: var(--primary);
    color: var(--black);
}

.category-subnav__btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--black);
    box-shadow: 0 4px 16px var(--glow);
}

.category-subnav__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: inherit;
}

.category-subnav__icon svg {
    width: 18px;
    height: 18px;
}

.category-subnav__label {
    line-height: 1.2;
}

.product-filters {
    padding: 14px 0 4px;
    border-top: 1px solid var(--gray-200);
}

.product-filters__row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    align-items: flex-end;
}

.product-filters__group {
    flex: 1 1 200px;
    min-width: 0;
}

.product-filters__group--select {
    flex: 1 1 160px;
    min-width: 140px;
    max-width: 220px;
}

.product-filters__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 8px;
}

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

.product-filters__btn {
    padding: 7px 14px;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.product-filters__btn:hover {
    border-color: var(--primary);
}

.product-filters__btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--black);
}

.product-filters__select {
    width: 100%;
    padding: 9px 14px;
    font-family: var(--font);
    font-size: 0.88rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
}

.product-filters__select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow);
}

.product-filters__clear {
    margin-top: 12px;
    padding: 0;
    border: none;
    background: none;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: underline;
    cursor: pointer;
}

.product-filters__clear:hover {
    color: var(--black);
}

.products-empty-filter {
    text-align: center;
    margin-bottom: 24px;
}

.product-grid-page .product-card.is-hidden {
    display: none;
}

/* Product detail (AliExpress-style) */
.product-detail-section {
    padding-top: calc(var(--header-h) + 24px);
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.product-breadcrumb a {
    color: var(--gray-600);
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: var(--primary-dark);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.product-detail__gallery {
    position: sticky;
    top: calc(var(--header-h) + 16px);
}

.product-detail__zoom {
    display: grid;
    gap: 16px;
    align-items: start;
}

.product-detail__zoom--active {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.product-detail__zoom--no-hover {
    grid-template-columns: 1fr;
}

.product-detail__main-wrap {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.product-detail__zoom-stage {
    position: relative;
}

.product-detail__zoom--active .product-detail__zoom-stage {
    cursor: crosshair;
}

.product-detail__zoom-lens {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        0 8px 24px rgba(0, 0, 0, 0.12);
    will-change: transform;
}

.product-detail__zoom-pane {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #fff;
    background-repeat: no-repeat;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.product-detail__zoom.is-zooming .product-detail__zoom-pane {
    opacity: 1;
    visibility: visible;
}

.product-detail__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
    pointer-events: none;
    user-select: none;
}

.product-detail__main-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--product-accent, #333), #1a1a1a);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 24px;
}

.product-detail__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.product-detail__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-detail__thumb.is-active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--glow);
}

.product-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail__tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 193, 7, 0.2);
    color: var(--primary-dark);
    border-radius: 100px;
    margin-bottom: 12px;
}

.product-detail__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.product-detail__meta {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.product-detail__price {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.product-detail__variant-field {
    margin-bottom: 18px;
    max-width: 420px;
}

.product-detail__variant-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.product-detail__variant-select {
    width: 100%;
}

.product-detail__highlights {
    padding: 24px;
    margin-bottom: 20px;
}

.product-detail__feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.product-detail__feature-list li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
}

.product-detail__feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent, #c9a227);
}

.product-detail__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
}

.product-detail__category {
    font-size: 0.88rem;
    color: var(--gray-600);
    padding: 4px 12px;
    background: var(--gray-100);
    border-radius: 100px;
}

.product-detail__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.btn-lg {
    padding: 16px 28px;
    font-size: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-1px);
}

.btn-whatsapp__icon {
    display: inline-flex;
}

.product-detail__specs {
    padding: 24px;
    margin-bottom: 20px;
}

.product-detail__specs-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-detail__spec-list {
    display: grid;
    gap: 12px;
}

.product-detail__spec-list div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    font-size: 0.92rem;
}

.product-detail__spec-list dt {
    color: var(--gray-600);
    font-weight: 500;
}

.product-detail__spec-list dd {
    margin: 0;
    font-weight: 500;
}

.product-detail__note {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.product-detail-empty {
    text-align: center;
    padding: 80px 0;
}

.product-detail-empty .section-desc {
    margin: 0 auto 24px;
}

/* Contact page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 32px;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.alert {
    grid-column: 1 / -1;
    padding: 16px 24px;
    border-radius: var(--radius);
    font-weight: 500;
}

.alert-success {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid var(--primary);
    color: var(--text);
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.45);
    color: #c0392b;
}

/* Reveal animations (initial state) */
.reveal-up {
    opacity: 0;
    transform: translateY(32px);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .review-form__grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { grid-column: 1; grid-row: auto; }
    .about-grid { grid-template-columns: 1fr; }
    .about-preview { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-pillar {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-pillar--reverse .about-pillar__media,
    .about-pillar--reverse .about-pillar__body {
        order: unset;
    }
    .values-grid { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--white);
        padding: calc(var(--header-h) + 32px) 32px 32px;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -8px 0 40px rgba(0,0,0,0.1);
        z-index: 1001;
    }

    .main-nav.is-open { transform: translateX(0); }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li { border-bottom: 1px solid var(--gray-100); }

    .nav-link {
        display: block;
        padding: 18px 0;
        color: var(--text);
        font-size: 1rem;
    }

    .header-cta { display: none; }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
        z-index: 1000;
    }

    .nav-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .offers-inner {
        flex-direction: column;
        text-align: center;
        padding: 60px 24px;
    }

    .offers-text { margin-left: auto; margin-right: auto; }

    .product-grid { grid-template-columns: 1fr; }
    .product-detail {
        grid-template-columns: 1fr;
    }
    .product-detail__gallery {
        position: static;
    }

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

    .product-detail__zoom-pane {
        display: none !important;
    }

    .product-detail__zoom--active .product-detail__zoom-stage {
        cursor: default;
    }
    .product-detail__spec-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .category-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .brands-row { gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }
    .footer-copy,
    .footer-powered,
    .footer-legal {
        justify-self: center;
    }
    .footer-legal { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr 1fr; }

    .store-bot {
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom, 0px));
    }

    .store-bot__toggle img {
        width: 64px;
        max-height: 64px;
    }

    .store-bot__panel {
        width: calc(100vw - 24px);
        right: 0;
        bottom: 76px;
        height: min(480px, calc(100dvh - 96px));
        max-height: min(480px, calc(100dvh - 96px));
    }
}

/* --------------------------------------------------------------------------
   Store assistant bot (fixed, bottom right)
   -------------------------------------------------------------------------- */
.store-bot {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10050;
    font-family: var(--font);
}

.store-bot__toggle {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    -webkit-tap-highlight-color: transparent;
}

.store-bot__toggle:hover {
    transform: scale(1.06);
    box-shadow: none;
}

.store-bot__toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.store-bot__toggle img {
    width: 76px;
    height: auto;
    max-height: 76px;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.store-bot__panel {
    position: absolute;
    right: 0;
    bottom: 96px;
    width: min(380px, calc(100vw - 40px));
    height: min(520px, calc(100dvh - 108px));
    max-height: min(520px, calc(100dvh - 108px));
    display: none;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px var(--gray-200);
    overflow: hidden;
}

.store-bot__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-400) transparent;
}

.store-bot__body::-webkit-scrollbar {
    width: 8px;
}

.store-bot__body::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 100px;
}

.store-bot__body.has-overflow:not(.at-bottom)::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    height: 32px;
    margin-top: -32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 70%, var(--white) 100%);
    pointer-events: none;
}

.store-bot__panel:not([hidden]) {
    display: flex;
}

.store-bot__head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, #1a1a1e 0%, #2d2d35 100%);
    color: var(--white);
}

.store-bot__head-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.store-bot__head-title img {
    border-radius: 50%;
    background: var(--white);
}

.store-bot__close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
}

.store-bot__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.store-bot__messages {
    padding: 16px 16px 8px;
    background: var(--gray-50);
}

.store-bot__msg {
    margin-bottom: 12px;
    display: flex;
}

.store-bot__msg--user {
    justify-content: flex-end;
}

.store-bot__msg--user .store-bot__bubble {
    background: var(--primary);
    color: var(--text);
    border-radius: 16px 16px 4px 16px;
}

.store-bot__msg--bot .store-bot__bubble {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px 16px 16px 4px;
    color: var(--text);
}

.store-bot__bubble {
    max-width: 92%;
    padding: 12px 14px;
    font-size: 0.9rem;
    line-height: 1.45;
    box-shadow: var(--shadow-sm);
}

.store-bot__composer {
    padding: 8px 14px max(16px, env(safe-area-inset-bottom, 0px));
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.store-bot__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.store-bot__opt {
    width: 100%;
    text-align: left;
    padding: 11px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--gray-50);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.35;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
}

.store-bot__opt:hover {
    background: var(--white);
    border-color: var(--primary-dark);
}

.store-bot__budget {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-bot__budget-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.store-bot__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font: inherit;
    font-size: 1rem;
}

.store-bot__send-budget {
    width: 100%;
}

.store-bot__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 12px;
    max-width: 100%;
}

.store-bot__card-name {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.store-bot__card-price {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.store-bot__card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.store-bot__card-btn {
    flex: 1;
    min-width: 88px;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: var(--primary);
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.15s ease;
}

.store-bot__card-btn:hover {
    filter: brightness(1.05);
}

.store-bot__card-btn--ghost {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}
