@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --primary: #0B5FFF;
    --primary-dark: #0847CC;
    --primary-soft: rgba(11, 95, 255, 0.08);
    --secondary: #00B894;
    --accent: #F59E0B;
    --bg: #FFFFFF;
    --bg-soft: #FAFBFC;
    --bg-muted: #F3F4F6;
    --bg-studio: #F5F5F7;
    --text: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --radius: 20px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Manrope', 'Inter', sans-serif;
    --header-h: 76px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1280px;
}

[data-theme="dark"] {
    --bg: #0B1120;
    --bg-soft: #111827;
    --bg-muted: #1E293B;
    --bg-studio: #1E293B;
    --text: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #64748B;
    --border: #334155;
    --border-light: #1E293B;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.store-body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container); }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 9999;
    background: var(--primary); color: #fff; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0; }

/* ── Header ── */
.store-topbar {
    background: var(--text);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 0;
}
.store-topbar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color var(--transition); }
.store-topbar a:hover { color: #fff; }

.store-header {
    position: sticky; top: 0; z-index: 1030;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition), background var(--transition);
}
[data-theme="dark"] .store-header { background: rgba(11,17,32,0.9); }
.store-header.scrolled {
    box-shadow: var(--shadow);
    background: rgba(255,255,255,0.96);
}

.store-nav {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1rem 0;
    min-height: var(--header-h);
}

.store-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; flex-shrink: 0; }
.logo-mark {
    width: 38px; height: 38px; border-radius: 11px;
    background: var(--text);
    position: relative;
    box-shadow: var(--shadow-xs);
}
.logo-mark::after {
    content: ''; position: absolute; inset: 8px;
    border-radius: 4px; background: var(--primary);
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.2rem;
    color: var(--text); letter-spacing: -0.04em;
}
.site-logo-img {
    height: 38px; width: auto; max-width: 180px;
    object-fit: contain; display: block;
}

.store-search { flex: 1; max-width: 420px; margin: 0 auto; }
.store-search form {
    display: flex; align-items: center;
    background: var(--bg-muted); border-radius: 12px;
    padding: 0.55rem 1rem; border: 1px solid transparent;
    transition: all var(--transition);
}
.store-search form:focus-within {
    border-color: var(--border);
    background: var(--bg);
    box-shadow: var(--shadow-xs);
}
.store-search i { color: var(--text-muted); margin-right: 0.5rem; font-size: 0.9rem; }
.store-search input {
    border: none; background: transparent; width: 100%;
    font-size: 0.875rem; color: var(--text); outline: none;
}
.store-search input::placeholder { color: var(--text-muted); }

.store-actions { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.store-icon-btn {
    width: 42px; height: 42px; border-radius: 12px;
    border: none; background: transparent; color: var(--text-secondary);
    display: inline-flex; align-items: center; justify-content: center;
    position: relative; text-decoration: none; font-size: 1.1rem;
    transition: all var(--transition);
}
.store-icon-btn:hover { background: var(--bg-muted); color: var(--text); }

.icon-badge, .cart-badge {
    position: absolute; top: 4px; right: 4px;
    background: var(--primary); color: #fff;
    font-size: 0.5625rem; font-weight: 700;
    min-width: 16px; height: 16px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px; line-height: 1;
}

.store-cart-btn {
    background: var(--text); color: #fff; border: none;
    border-radius: 12px; padding: 0.55rem 1.15rem;
    font-size: 0.8125rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: all var(--transition); margin-left: 0.25rem;
}
.store-cart-btn:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.store-cart-btn .cart-badge {
    position: static; background: rgba(255,255,255,0.2); color: #fff; margin-left: 2px;
}
.store-menu-btn {
    width: 42px; height: 42px; border: 1px solid var(--border);
    background: var(--bg); border-radius: 12px; font-size: 1.2rem; color: var(--text);
}

.store-mega { border-top: 1px solid var(--border-light); background: var(--bg); }
.mega-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 0; overflow-x: auto;
}
.mega-list a {
    display: block; padding: 0.75rem 1rem;
    font-size: 0.8125rem; font-weight: 500;
    color: var(--text-secondary); text-decoration: none;
    white-space: nowrap; border-bottom: 2px solid transparent;
    transition: all var(--transition);
}
.mega-list a:hover, .mega-list a.active {
    color: var(--text); border-bottom-color: var(--primary);
}

/* ── Hero ── */
.hero-premium {
    position: relative; min-height: 580px;
    display: flex; align-items: flex-end;
    padding: 0 0 4.5rem; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 40%;
    transform: scale(1.02);
    transition: transform 8s ease;
}
.hero-premium:hover .hero-bg { transform: scale(1.06); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(15, 23, 42, 0.65) 45%,
        rgba(15, 23, 42, 0.25) 100%
    );
}
.hero-content { position: relative; z-index: 2; padding-top: 5rem; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px; padding: 0.45rem 1rem;
    font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
}
.hero-badge i { color: var(--secondary); }
.hero-premium h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -0.045em; color: #fff;
    max-width: 640px; margin-bottom: 1.25rem;
    animation: fadeUp 0.8s 0.1s ease both;
}
.hero-premium h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.65));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-premium .lead {
    font-size: 1.0625rem; color: rgba(255,255,255,0.78);
    max-width: 520px; line-height: 1.75; font-weight: 400;
    animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem;
    animation: fadeUp 0.8s 0.3s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Trust strip */
.trust-strip {
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 0;
}
.trust-strip-inner {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem 2.5rem;
}
.trust-strip-inner span {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: 0.8125rem; font-weight: 600; color: var(--text-secondary);
}
.trust-strip-inner i { color: var(--primary); font-size: 0.95rem; }

/* Buttons */
.btn-primary-store {
    background: var(--primary); color: #fff; border: none;
    font-weight: 600; font-size: 0.875rem; letter-spacing: -0.01em;
    padding: 0.8rem 1.85rem; border-radius: 12px;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(11, 95, 255, 0.25);
}
.btn-primary-store:hover {
    background: var(--primary-dark); color: #fff;
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11, 95, 255, 0.35);
}
.btn-outline-store {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--border);
    font-weight: 600; font-size: 0.875rem;
    padding: 0.78rem 1.85rem; border-radius: 12px;
    transition: all var(--transition);
}
.btn-outline-store:hover {
    border-color: var(--text); background: var(--text); color: #fff;
}
.btn-glass {
    background: rgba(255,255,255,0.12); color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
    font-weight: 600; font-size: 0.875rem;
    padding: 0.78rem 1.85rem; border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.22); color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* ── Sections ── */
.section-block { padding: 5.5rem 0; }
.section-block.section-muted { background: var(--bg-soft); }
.section-head { margin-bottom: 3rem; }
.section-head-row {
    display: flex; flex-wrap: wrap; justify-content: space-between;
    align-items: flex-end; gap: 1rem; margin-bottom: 2.5rem;
}
.section-eyebrow {
    font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 0.65rem;
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 800; letter-spacing: -0.04em;
    color: var(--text); line-height: 1.15;
}
.section-lead { color: var(--text-secondary); max-width: 540px; font-size: 1rem; line-height: 1.7; }

/* Category cards */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}
.cat-card {
    background: var(--bg); border: 1px solid var(--border-light);
    border-radius: var(--radius); overflow: hidden;
    text-decoration: none; color: inherit;
    transition: all var(--transition);
    box-shadow: var(--shadow-xs);
}
.cat-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-md);
    border-color: transparent; color: inherit;
}
.cat-card-img {
    height: 120px; background-size: cover; background-position: center;
    position: relative;
}
.cat-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.35), transparent);
}
.cat-card-body { padding: 1.15rem 1.25rem 1.35rem; }
.cat-card-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--primary-soft); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.95rem; margin-bottom: 0.65rem;
}
.cat-card strong { display: block; font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.02em; }
.cat-card-desc { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Product cards */
.product-grid .col-6 { display: flex; }
.p-card {
    background: var(--bg); border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden; width: 100%;
    transition: all var(--transition);
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-xs);
}
.p-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.p-card-media {
    position: relative; aspect-ratio: 1;
    background: var(--bg-studio);
    overflow: hidden;
}
.p-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-card:hover .p-card-media img { transform: scale(1.06); }

.p-wishlist {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    width: 38px; height: 38px; border-radius: 50%;
    border: none; background: rgba(255,255,255,0.95);
    color: var(--text-muted); display: flex;
    align-items: center; justify-content: center;
    transition: all var(--transition); cursor: pointer;
    box-shadow: var(--shadow-xs); font-size: 0.95rem;
}
.p-wishlist:hover, .p-wishlist.active { color: #EF4444; background: #fff; }
.p-wishlist.active i::before { content: "\f415"; }
.p-card-link { position: absolute; inset: 0; z-index: 1; }
.p-quickview {
    position: absolute; bottom: 12px; left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0; background: var(--text); border: none; color: #fff;
    border-radius: 10px; padding: 0.45rem 1.1rem;
    font-size: 0.75rem; font-weight: 600; white-space: nowrap;
    transition: all var(--transition); z-index: 3; cursor: pointer;
}
.p-card:hover .p-quickview { opacity: 1; transform: translateX(-50%) translateY(0); }

.p-card-body { padding: 1.15rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.p-cat {
    font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-muted);
}
.p-name {
    font-family: var(--font-display);
    font-size: 0.9375rem; font-weight: 700; margin: 0.35rem 0 0.25rem;
    line-height: 1.35; letter-spacing: -0.02em;
}
.p-name a { color: inherit; text-decoration: none; transition: color var(--transition); }
.p-name a:hover { color: var(--primary); }
.p-desc { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.65rem; flex: 1; line-height: 1.5; }
.p-rating { display: flex; align-items: center; gap: 0.2rem; font-size: 0.75rem; margin-bottom: 0.85rem; }
.stars { color: var(--accent); letter-spacing: -1px; font-size: 0.7rem; }
.p-rating-num { font-weight: 700; color: var(--text); margin-left: 0.2rem; }
.p-reviews { color: var(--text-muted); }
.p-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.15rem; }
.p-price {
    font-family: var(--font-display);
    font-size: 1.0625rem; font-weight: 800;
    color: var(--text); letter-spacing: -0.03em;
}
.btn-p-add {
    width: 40px; height: 40px; border-radius: 12px;
    border: none; background: var(--text); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); cursor: pointer; font-size: 1rem;
}
.btn-p-add:hover { background: var(--primary); transform: scale(1.05); }

/* Product scroll (best sellers) */
.product-scroll-wrap {
    overflow-x: auto; margin: 0 -0.5rem; padding: 0.5rem;
    scrollbar-width: none; -ms-overflow-style: none;
}
.product-scroll-wrap::-webkit-scrollbar { display: none; }
.product-scroll { width: max-content; min-width: 100%; }
.product-scroll > .col-6 { width: 260px; flex: 0 0 260px; }

/* Why choose us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.why-card {
    background: var(--bg); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 2rem;
    transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.why-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--bg-soft); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 1.25rem;
    border: 1px solid var(--border-light);
}
.why-card h4 {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.why-card p { font-size: 0.875rem; color: var(--text-secondary); margin: 0; line-height: 1.65; }

/* Brand story */
.story-panel {
    background: var(--bg); border-radius: var(--radius);
    border: 1px solid var(--border-light); padding: 3.5rem;
    box-shadow: var(--shadow-xs);
}
.story-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.story-value {
    padding: 1.75rem; background: var(--bg-soft);
    border-radius: var(--radius-sm); border: 1px solid var(--border-light);
}
.story-value-num {
    font-family: var(--font-display);
    font-size: 0.6875rem; font-weight: 800;
    letter-spacing: 0.12em; color: var(--primary);
    margin-bottom: 0.75rem;
}
.story-value h5 {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.story-value p { font-size: 0.875rem; color: var(--text-secondary); margin: 0; line-height: 1.65; }

/* Stats band */
.stats-band {
    background: var(--text);
    padding: 4rem 0;
}
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800; color: #fff;
    letter-spacing: -0.04em; line-height: 1;
}
.stat-label {
    font-size: 0.8125rem; color: rgba(255,255,255,0.55);
    margin-top: 0.5rem; font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 2rem;
    height: 100%; position: relative;
    transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-quote {
    font-size: 2rem; color: var(--primary-soft); line-height: 1;
    margin-bottom: 0.5rem;
}
.testimonial-quote i { color: var(--primary); opacity: 0.25; }
.testimonial-stars { color: var(--accent); margin-bottom: 1rem; font-size: 0.8rem; }
.testimonial-text {
    font-size: 0.9375rem; color: var(--text-secondary);
    line-height: 1.75; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-muted); color: var(--text);
    font-weight: 700; font-size: 0.875rem;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--border-light);
}
.testimonial-author strong { display: block; font-size: 0.875rem; font-weight: 600; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

/* App download */
.app-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--radius); padding: 3.5rem 3rem;
    color: #fff; overflow: hidden; position: relative;
    border: 1px solid rgba(255,255,255,0.06);
}
.app-section::before {
    content: ''; position: absolute; right: -10%; top: -30%;
    width: 50%; height: 160%;
    background: radial-gradient(circle, rgba(11,95,255,0.15), transparent 65%);
    pointer-events: none;
}
.app-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.app-badge {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px; padding: 0.65rem 1.25rem;
    color: #fff; text-decoration: none; font-size: 0.8125rem; font-weight: 600;
    transition: all var(--transition);
}
.app-badge:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-2px); }
.app-phone-mock {
    width: 180px; height: 360px; margin: 0 auto;
    background: rgba(255,255,255,0.06); border-radius: 32px;
    border: 2px solid rgba(255,255,255,0.12);
    padding: 12px; position: relative;
}
.app-phone-screen {
    width: 100%; height: 100%; border-radius: 24px;
    background: linear-gradient(180deg, rgba(11,95,255,0.3), rgba(0,184,148,0.2));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,0.5);
}

/* Newsletter */
.newsletter-box {
    background: var(--bg); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 3.5rem 3rem;
    text-align: center; box-shadow: var(--shadow-xs);
}
.newsletter-form {
    display: flex; max-width: 460px; margin: 1.75rem auto 0; gap: 0.65rem;
}
.newsletter-form input {
    flex: 1; border: 1px solid var(--border); border-radius: 12px;
    padding: 0.75rem 1.25rem; font-size: 0.875rem;
    background: var(--bg-soft); transition: all var(--transition);
}
.newsletter-form input:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft); background: var(--bg);
}

/* Footer */
.store-footer {
    background: #0A0F1A; color: rgba(255,255,255,0.55);
    padding: 4.5rem 0 0; font-size: 0.8125rem;
}
.footer-brand {
    font-family: var(--font-display); font-weight: 800;
    font-size: 1.3rem; color: #fff; margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}
.footer-about { line-height: 1.75; max-width: 300px; margin-bottom: 1.25rem; }
.store-footer h6 {
    color: #fff; font-weight: 700; font-size: 0.6875rem;
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.15rem;
}
.store-footer a {
    display: block; color: rgba(255,255,255,0.5);
    text-decoration: none; padding: 0.25rem 0;
    transition: color var(--transition);
}
.store-footer a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0; color: rgba(255,255,255,0.6); transition: all var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.2); }
.footer-trust {
    display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; justify-content: center;
    padding: 2rem 0; margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem; font-weight: 600;
}
.footer-trust i { color: var(--secondary); margin-right: 0.35rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.35rem 0; display: flex;
    flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
    color: rgba(255,255,255,0.35); font-size: 0.75rem;
}

/* Product detail */
.pdp-gallery {
    background: var(--bg-studio); border-radius: var(--radius);
    border: 1px solid var(--border-light); overflow: hidden;
    aspect-ratio: 1;
}
.pdp-gallery img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info {
    background: var(--bg); border-radius: var(--radius);
    border: 1px solid var(--border-light); padding: 2.25rem;
}
.pdp-price {
    font-family: var(--font-display);
    font-size: 2.125rem; font-weight: 800; letter-spacing: -0.04em;
}
.pdp-tabs .nav-link {
    font-weight: 600; font-size: 0.875rem;
    color: var(--text-muted); border: none; padding: 0.75rem 1rem;
}
.pdp-tabs .nav-link.active {
    color: var(--text); border-bottom: 2px solid var(--primary);
    background: transparent;
}

/* Cart / checkout */
.page-banner {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-light);
    padding: 2.5rem 0;
}
.page-banner h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: 1.875rem; letter-spacing: -0.04em; margin: 0;
}
.breadcrumb-store { font-size: 0.8125rem; margin-bottom: 0.65rem; color: var(--text-muted); }
.breadcrumb-store a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.breadcrumb-store a:hover { color: var(--primary); }
.checkout-panel {
    background: var(--bg); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 2rem;
    box-shadow: var(--shadow-xs);
}

/* Floating */
.back-top {
    position: fixed; bottom: 88px; right: 24px; z-index: 1020;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--bg); border: 1px solid var(--border);
    color: var(--text); box-shadow: var(--shadow);
    display: none; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--transition);
}
.back-top.visible { display: flex; }
.back-top:hover { background: var(--text); color: #fff; border-color: var(--text); }
.float-wa {
    position: fixed; bottom: 24px; right: 24px; z-index: 1020;
    width: 52px; height: 52px; border-radius: 14px;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: var(--shadow-md);
    text-decoration: none; transition: transform var(--transition);
}
.float-wa:hover { color: #fff; transform: scale(1.06); }
.store-toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 9999; background: var(--text); color: #fff;
    padding: 0.8rem 1.75rem; border-radius: 12px;
    font-size: 0.875rem; font-weight: 600;
    box-shadow: var(--shadow-lg); display: none;
}

.cart-drawer .offcanvas-body { padding-top: 0; }
.cart-drawer-item {
    display: flex; gap: 0.85rem; padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
}
.cart-drawer-thumb {
    width: 68px; height: 68px; border-radius: var(--radius-xs);
    flex-shrink: 0; overflow: hidden; background: var(--bg-studio);
}
.cart-drawer-thumb img { width: 100%; height: 100%; object-fit: cover; }

.filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-pill {
    display: inline-flex; align-items: center;
    padding: 0.5rem 1.1rem; border-radius: 10px;
    font-size: 0.8125rem; font-weight: 600;
    background: var(--bg); border: 1px solid var(--border);
    color: var(--text-secondary); text-decoration: none;
    transition: all var(--transition);
}
.filter-pill:hover, .filter-pill.active {
    background: var(--text); border-color: var(--text); color: #fff;
}

.qty-control {
    display: inline-flex; align-items: center;
    border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.qty-control button {
    width: 38px; height: 38px; border: none; background: var(--bg-soft);
    font-size: 1rem; font-weight: 600; color: var(--text);
    transition: background var(--transition);
}
.qty-control button:hover { background: var(--bg-muted); }
.qty-control input {
    width: 44px; text-align: center; border: none; background: transparent;
    font-weight: 600; font-size: 0.875rem;
}

.order-summary-row {
    display: flex; justify-content: space-between; padding: 0.55rem 0;
    font-size: 0.9375rem; color: var(--text-secondary);
}
.order-summary-row.total {
    border-top: 1px solid var(--border-light); margin-top: 0.5rem; padding-top: 1rem;
    font-weight: 800; font-size: 1.125rem; color: var(--text);
}

.cart-thumb {
    width: 56px; height: 56px; border-radius: var(--radius-xs);
    overflow: hidden; flex-shrink: 0; background: var(--bg-studio);
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }

.trust-row {
    display: flex; flex-wrap: wrap; gap: 1rem;
    font-size: 0.8125rem; font-weight: 600; color: var(--text-secondary);
}
.trust-row span { display: inline-flex; align-items: center; gap: 0.35rem; }
.trust-row i { color: var(--primary); }

.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li {
    display: flex; justify-content: space-between; padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light); font-size: 0.9375rem;
}
.faq-item { margin-bottom: 1.5rem; }
.faq-item strong { font-family: var(--font-display); display: block; margin-bottom: 0.35rem; }
.faq-item p { margin: 0; color: var(--text-secondary); line-height: 1.65; }

/* Auth */
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 200px); }
.auth-brand-panel {
    background: linear-gradient(135deg, #0F172A, #1E3A5F);
    color: #fff; padding: 3.5rem; display: flex; flex-direction: column; justify-content: center;
}
.auth-form-panel {
    display: flex; align-items: center; justify-content: center;
    padding: 3rem; background: var(--bg-soft);
}
.auth-card {
    width: 100%; max-width: 420px; background: var(--bg);
    border: 1px solid var(--border-light); border-radius: var(--radius);
    padding: 2.75rem; box-shadow: var(--shadow);
}

/* Legacy visual classes (cart drawer fallback) */
.vis-neutral { background: var(--bg-studio); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .story-values { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .auth-split { grid-template-columns: 1fr; }
    .auth-brand-panel { min-height: 220px; padding: 2.5rem; }
    .story-panel { padding: 2.5rem; }
    .hero-premium { min-height: 480px; }
}

@media (max-width: 767px) {
    .why-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
    .section-block { padding: 3.5rem 0; }
    .trust-strip-inner { gap: 1rem 1.5rem; }
    .trust-strip-inner span { font-size: 0.75rem; }
}

@media (max-width: 575px) {
    .hero-premium { min-height: 420px; padding-bottom: 3rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .newsletter-form { flex-direction: column; }
    .product-scroll > .col-6 { width: 220px; flex: 0 0 220px; }
}
