/* ==========================================
   xM3Dx Store – CINEMATIC DESIGN SYSTEM
   Inspired by: MotionSites.ai principles
   — Animated gradients, cinematic lighting,
     premium typography, glassmorphism v2
   ========================================== */

/* --- Google Fonts: Geist + Inter --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Keyframes --- */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -800px 0; }
    100% { background-position: 800px 0; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.05), 0 0 60px rgba(255,255,255,0.02); }
    50% { box-shadow: 0 0 40px rgba(255,255,255,0.1), 0 0 80px rgba(255,255,255,0.05); }
}

/* --- CSS Design Tokens --- */
:root {
    /* Backgrounds */
    --bg:           #05050a;
    --bg-2:         #08080f;
    --bg-card:      rgba(255,255,255,0.028);
    --bg-card-h:    rgba(255,255,255,0.058);
    --bg-elevated:  rgba(12, 12, 20, 0.95);

    /* Borders */
    --border:       rgba(255,255,255,0.06);
    --border-h:     rgba(255,255,255,0.16);
    --border-accent: rgba(255,255,255,0.22);

    /* Text */
    --text-1:       #ffffff;
    --text-2:       #8a8a9a;
    --text-3:       #4a4a5a;
    --text-accent:  #c8c8d8;

    /* Statuses */
    --green:        #10b981;
    --orange:       #f59e0b;
    --red:          #ef4444;

    /* Crypto */
    --btc:          #F7931A;
    --ltc:          #345D9D;
    --usdt:         #26A17B;

    /* Radii */
    --radius-card:  24px;
    --radius-btn:   14px;
    --radius-pill:  999px;
    --radius-sm:    12px;

    /* Glassmorphism V2 */
    --blur:              20px;
    --blur-heavy:        40px;
    --glass:             rgba(255,255,255,0.025);
    --glass-h:           rgba(255,255,255,0.055);
    --glass-border:      rgba(255,255,255,0.055);
    --glass-border-h:    rgba(255,255,255,0.15);

    /* Cinematic Shadows */
    --shadow-card:    0 0 0 1px rgba(255,255,255,0.06), 0 4px 8px rgba(0,0,0,0.6), 0 12px 28px rgba(0,0,0,0.4);
    --shadow-card-h:  0 0 0 1px rgba(255,255,255,0.14), 0 8px 20px rgba(0,0,0,0.8), 0 30px 60px rgba(0,0,0,0.5);
    --shadow-glow:    0 0 60px rgba(255,255,255,0.04);

    /* Motion */
    --ease:          cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration:      0.32s;
    --duration-slow: 0.6s;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--text-1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    /* Cinematic background texture */
    background-image:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(120, 80, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(50, 100, 255, 0.04) 0%, transparent 50%);
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #050508; }
::-webkit-scrollbar-thumb { background: #1e1e2e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2e2e3e; }

/* --- Layout --- */
.store-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
}

.store-layout { min-height: 100vh; display: flex; flex-direction: column; }

/* ========================
   NAVBAR — Cinematic blur
   ======================== */
.navbar-premium {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 5, 10, 0.7);
    backdrop-filter: blur(var(--blur-heavy)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-heavy)) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background var(--duration) var(--ease);
}

/* Animated gradient accent line on hover */
.navbar-premium::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 30%, rgba(150,100,255,0.3) 50%, rgba(255,255,255,0.15) 70%, transparent 100%);
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    opacity: 0.6;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.nav-brand img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.nav-brand-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    /* Animated gradient text */
    background: linear-gradient(135deg, #ffffff 0%, #a0a0c0 50%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-2);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color var(--duration) var(--ease);
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    border-radius: 2px;
    transition: width var(--duration) var(--ease);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

/* ========================
   PRODUCT GRID
   ======================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* ========================
   PRODUCT CARD — Cinematic
   ======================== */
.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 1.5rem 1.5rem 1.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 265px;
    transition: transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease),
                border-color var(--duration) var(--ease),
                background var(--duration) var(--ease);
    box-shadow: var(--shadow-card);
    cursor: pointer;
}

/* Cinematic top edge light */
.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.premium-card:hover::before { opacity: 1; }

.premium-card:hover {
    background: var(--bg-card-h);
    border-color: var(--border-h);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-h);
}

.card-bg-text { display: none; }

/* Card Sections */
.card-top, .card-mid, .card-bot { position: relative; z-index: 2; }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.card-mid { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.card-bot { margin-top: 1.25rem; }

/* Brand */
.card-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon-wrap {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--duration) var(--ease);
}

.brand-logo-img { width: 22px; height: 22px; object-fit: contain; }

.premium-card:hover .brand-icon-wrap {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.16);
    transform: scale(1.05);
}

.brand-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-3);
}

/* Badge */
.card-badge {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge-best { background: rgba(255,255,255,0.08); color: #ddd; border: 1px solid rgba(255,255,255,0.1); }
.badge-hot  { background: rgba(255,80,0,0.12); color: #ff6b3d; border: 1px solid rgba(255,80,0,0.18); }
.badge-ltd  { background: rgba(255,215,0,0.1); color: #ffd700; border: 1px solid rgba(255,215,0,0.18); }
.badge-new  { background: rgba(16,185,129,0.1); color: #10b981; border: 1px solid rgba(16,185,129,0.15); }

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--text-3);
    font-weight: 500;
    line-height: 1.4;
}

/* Stock */
.stock-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.stock-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stock-dot.g { background: var(--green); box-shadow: 0 0 8px var(--green); }
.stock-dot.o { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.stock-dot.r { background: var(--red); box-shadow: 0 0 8px var(--red); }

.stock-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-2);
}

/* Price */
.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.price-old {
    font-size: 0.8rem;
    color: var(--text-3);
    text-decoration: line-through;
    font-weight: 500;
}

.price-new {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -1px;
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-2);
    margin-right: 1px;
    vertical-align: super;
}

.discount-badge {
    font-size: 0.65rem;
    font-weight: 800;
    background: rgba(16,185,129,0.1);
    color: var(--green);
    border: 1px solid rgba(16,185,129,0.18);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

/* Buy Button */
.btn-buy {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-btn);
    color: var(--text-2);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: all var(--duration) var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-buy:hover:not(:disabled) {
    background: rgba(255,255,255,0.95);
    color: #000;
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.btn-buy:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.btn-buy-arrow {
    font-size: 1rem;
    transition: transform var(--duration) var(--ease);
}

.btn-buy:hover:not(:disabled) .btn-buy-arrow { transform: translateX(3px); }

/* ========================
   HERO — Cinematic light orbs
   ======================== */
.hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Primary cinematic light orb — top left */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center,
        rgba(120, 80, 255, 0.07) 0%,
        rgba(80, 50, 200, 0.04) 40%,
        transparent 70%);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

/* Secondary light orb — bottom right */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center,
        rgba(50, 150, 255, 0.05) 0%,
        rgba(20, 80, 200, 0.03) 40%,
        transparent 70%);
    pointer-events: none;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-3);
    border: 1px solid var(--border);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.025);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2.5px;
    margin-bottom: 1.5rem;
    /* Cinematic gradient text */
    background: linear-gradient(160deg,
        #ffffff 0%,
        #e8e8f0 30%,
        #9090b0 70%,
        #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

.hero-title .outline {
    background: none;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    font-weight: 400;
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    transition: all var(--duration) var(--ease);
}

.hero-badge:hover {
    border-color: var(--border-h);
    color: var(--text-1);
    background: var(--glass-h);
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
}

.hero-stat { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-stat-val {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #a0a0c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-stat-lbl {
    font-size: 0.7rem;
    color: var(--text-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ========================
   SECTION HEADERS
   ======================== */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-3);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 20px; height: 1px;
    background: linear-gradient(90deg, var(--text-3), transparent);
    border-radius: 1px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.75px;
    color: var(--text-1);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 40%, #808090 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================
   SEARCH & FILTERS
   ======================== */
.filter-area {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.search-wrap {
    position: relative;
    max-width: 480px;
}

.search-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    color: var(--text-1);
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 500;
    transition: border-color var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease),
                background var(--duration) var(--ease);
}

.search-input::placeholder { color: var(--text-3); }

.search-input:focus {
    outline: none;
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.03), 0 0 30px rgba(255,255,255,0.03);
}

.search-icon {
    position: absolute;
    left: 0.9rem; top: 50%;
    transform: translateY(-50%);
    font-size: 0.88rem;
    opacity: 0.35;
    pointer-events: none;
}

.cat-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-cat {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    color: var(--text-2);
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.82rem;
    font-family: inherit;
    transition: all var(--duration) var(--ease);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-cat:hover {
    border-color: var(--glass-border-h);
    color: var(--text-1);
    background: var(--glass-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.btn-cat.active {
    background: rgba(255,255,255,0.92);
    border-color: transparent;
    color: #080808;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(255,255,255,0.15), 0 0 60px rgba(255,255,255,0.04);
}

/* ========================
   REVIEWS SECTION
   ======================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

/* Cinematic gradient edge on review cards */
.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.review-card:hover::before { opacity: 1; }
.review-card:hover { border-color: var(--border-h); background: var(--bg-card-h); }

.review-stars { color: #ffd700; font-size: 0.88rem; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; font-style: italic; flex: 1; }
.review-author { font-size: 0.75rem; font-weight: 700; color: var(--text-accent); }
.review-status { font-size: 0.68rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.8px; }

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

/* ========================
   TRUST STRIP — Minimalist
   ======================== */
.trust-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    background: var(--bg-card);
    margin: 4rem 0;
    /* Cinematic top light */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.trust-val {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #a0a0c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trust-lbl { font-size: 0.7rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; }

/* ========================
   FOOTER
   ======================== */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: auto;
    text-align: center;
    /* Subtle top gradient */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.footer-text { font-size: 0.8rem; color: var(--text-3); font-weight: 500; }
.footer-sub { font-size: 0.72rem; color: var(--text-3); margin-top: 0.4rem; opacity: 0.5; }

/* ========================
   SKELETON LOADING
   ======================== */
.skeleton {
    background: #0a0a14;
    background-image: linear-gradient(90deg, #0a0a14 0%, #141424 40%, #0a0a14 80%);
    background-size: 800px 100%;
    animation: shimmer 1.6s infinite ease-in-out;
    border-radius: var(--radius-card);
}

/* ========================
   ANIMATIONS
   ======================== */
.fade-up   { animation: fadeUp 0.55s var(--ease) both; }
.fade-up-1 { animation-delay: 0.06s; }
.fade-up-2 { animation-delay: 0.12s; }
.fade-up-3 { animation-delay: 0.18s; }

/* ========================
   MISC. FIXED ELEMENTS
   ======================== */
.purchase-notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1100;
}

.support-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1100;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
}

/* Highlight match */
.highlight {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    padding: 0 2px;
}

/* ========================
   STORE CONTROLS
   ======================== */
.store-controls {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.filter-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.section-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.results-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-3);
    margin-bottom: 0.5rem;
}

/* ========================
   NO RESULTS EMPTY STATE
   ======================== */
.no-results.glass {
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 28px;
    border: 1px dashed var(--border);
    margin: 2rem 0;
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.35;
}

/* ========================
   RESPONSIVE BREAKPOINTS
   ======================== */
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .store-container { padding: 0 1.25rem; }
    .product-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero { padding: 5rem 0 3rem; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .nav-links { display: none; }
    .trust-strip { padding: 1.5rem 1rem; }
    .filter-area { gap: 1rem; }
}

@media (max-width: 480px) {
    .hero-title { letter-spacing: -1.5px; }
    .hero-stat-val { font-size: 1.4rem; }
    .cat-filters { gap: 0.4rem; }
    .btn-cat { font-size: 0.75rem; padding: 0.4rem 0.85rem; }
}

/* ========================
   LEGACY / BLAZOR CLEANUP
   ======================== */
.content { padding-top: 0; }
h1:focus { outline: none; }
.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder { color: #555; text-align: end; }
.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder { text-align: start; }