/** * Copyright (c) 2026 DNA Genics, S.L. All rights reserved.
 * 
 * Store IndexV2 page styles.
 * Professional e-commerce store design matching blog's dark/gold cinematic theme.
 */

/* ============================================
   FONT IMPORTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

/* ============================================
   CSS VARIABLES - BLOG THEME ALIGNED
   ============================================ */
:root {
    /* Primary Brand Colors - Dark Theme */
    --store-deep: #0f1419;
    --store-deep-soft: #1a2332;
    --store-navy: #162029;
    --store-slate: #1e2d38;
    
    /* Warm Accent Colors - Gold */
    --store-gold: #c9a430;
    --store-gold-light: #d4b94d;
    --store-gold-pale: #f0e4c3;
    --store-gold-subtle: rgba(201, 164, 48, 0.12);
    --store-gold-glow: rgba(201, 164, 48, 0.25);
    
    /* Teal Accent */
    --store-teal: #0d9488;
    --store-teal-light: #14b8a6;
    --store-teal-subtle: rgba(13, 148, 136, 0.1);
    
    /* Legacy compatibility (mapped to new colors) */
    --store-primary: var(--store-deep);
    --store-primary-light: var(--store-deep-soft);
    --store-accent: var(--store-gold);
    --store-accent-hover: var(--store-gold-light);
    --store-accent-light: var(--store-gold-subtle);
    
    /* Status Colors */
    --store-success: #10B981;
    --store-warning: #F59E0B;
    --store-info: var(--store-teal);
    
    /* Neutral Palette */
    --store-white: #ffffff;
    --store-off-white: #faf9f7;
    --store-cream: #f5f3ef;
    --store-gray-100: #f1f0ed;
    --store-gray-200: #e4e2dc;
    --store-gray-300: #c5c2ba;
    --store-gray-400: #9a968c;
    --store-gray-500: #706c64;
    --store-gray-600: #4a473f;
    --store-gray-700: #2d2a24;
    --store-gray-800: #1a1815;
    --store-gray-900: #0d0c0a;
    
    /* Background Colors */
    --store-bg-light: var(--store-cream);
    --store-bg-warm: var(--store-off-white);
    --store-bg-card: var(--store-white);
    
    /* Text Colors */
    --store-text-primary: var(--store-gray-800);
    --store-text-secondary: var(--store-gray-600);
    --store-text-muted: var(--store-gray-500);
    --store-text-light: #f0f0f2;
    --store-text-light-muted: rgba(240, 240, 242, 0.7);
    
    /* Typography */
    --store-font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --store-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --store-space-xs: 0.5rem;
    --store-space-sm: 1rem;
    --store-space-md: 1.5rem;
    --store-space-lg: 2.5rem;
    --store-space-xl: 4rem;
    --store-space-2xl: 6rem;
    --store-space-3xl: 8rem;
    
    /* Border Radius */
    --store-radius-sm: 4px;
    --store-radius-md: 8px;
    --store-radius-lg: 12px;
    --store-radius-xl: 16px;
    --store-radius-full: 9999px;
    
    /* Shadows */
    --store-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --store-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --store-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    --store-shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.1);
    --store-shadow-gold: 0 8px 32px rgba(201, 164, 48, 0.2);
    --store-shadow-dark: 0 4px 24px rgba(0, 0, 0, 0.4);
    
    /* Borders */
    --store-border: rgba(0, 0, 0, 0.06);
    --store-border-light: rgba(0, 0, 0, 0.04);
    --store-border-gold: rgba(201, 164, 48, 0.3);
    
    /* Transitions */
    --store-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --store-ease-gentle: cubic-bezier(0.25, 0.1, 0.25, 1);
    --store-transition-fast: 0.15s var(--store-ease);
    --store-transition: 0.3s var(--store-ease);
    --store-transition-slow: 0.6s var(--store-ease-gentle);
}

/* ============================================
   BASE STYLES
   ============================================ */
.store-v2 {
    background-color: var(--store-bg-light);
    font-family: var(--store-font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--store-text-primary);
}

.store-v2.public-view {
    padding-top: 0;
}

.store-v2 .container {
    max-width: 1320px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ============================================
   SECTION COMMON STYLES - BLOG PATTERN
   ============================================ */
.section-header {
    margin-bottom: 3rem;
    position: relative;
}

.section-marker {
    width: 40px;
    height: 3px;
    background: var(--store-gold);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--store-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--store-gold-subtle);
    color: var(--store-gold);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--store-font-serif);
    font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
    font-weight: 700;
    color: var(--store-text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--store-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   HERO SECTION - DARK CINEMATIC
   ============================================ */
.store-hero {
    position: relative;
    padding: 6rem 0 8rem;
    overflow: hidden;
    background: var(--store-deep);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 164, 48, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 164, 48, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--store-gold);
    color: var(--store-deep);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--store-font-serif);
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--store-text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--store-gold) 0%, var(--store-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--store-text-light-muted);
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--store-gold);
    color: var(--store-deep);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--store-radius-md);
    text-decoration: none;
    transition: var(--store-transition);
    box-shadow: var(--store-shadow-gold);
}

.btn-hero-primary:hover {
    background: var(--store-gold-light);
    color: var(--store-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 164, 48, 0.4);
    text-decoration: none;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--store-text-light);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--store-radius-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: var(--store-transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--store-gold);
    color: var(--store-gold);
    text-decoration: none;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--store-text-light-muted);
    font-size: 0.9375rem;
}

.trust-item i {
    color: var(--store-gold);
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 480px;
    border-radius: var(--store-radius-xl);
    box-shadow: var(--store-shadow-lg);
}

.hero-stats-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    background: white;
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--store-accent);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--store-text-secondary);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--store-border);
}

/* ============================================
   PROMO BANNER - DARK NAVY WITH GOLD
   ============================================ */
.promo-banner-v2 {
    background: linear-gradient(135deg, var(--store-navy) 0%, var(--store-slate) 100%);
    padding: 1.5rem 0;
    color: var(--store-text-light);
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: var(--store-gold);
    color: var(--store-deep);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.promo-title {
    color: var(--store-text-light) !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.promo-desc {
    margin: 0.5rem 0 0;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 500;
}

.countdown-v2 {
    text-align: center;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--store-radius-sm);
    padding: 0.5rem 0.75rem;
    min-width: 60px;
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-text {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.6;
}

/* ============================================
   FEATURED PACKS SECTION
   ============================================ */
.featured-packs-section {
    padding: 5rem 0;
    background: var(--store-cream);
}

.packs-comparison {
    margin-bottom: 2rem;
}

.pack-card {
    position: relative;
    background: white;
    border: 2px solid var(--store-border);
    border-radius: var(--store-radius-xl);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--store-transition);
}

.pack-card:hover {
    border-color: var(--store-gold);
    box-shadow: var(--store-shadow-md);
}

.pack-card.pack-featured {
    border-color: var(--store-gold);
    background: linear-gradient(135deg, white 0%, var(--store-gold-pale) 100%);
    box-shadow: var(--store-shadow-gold);
}

.pack-card.pack-premium {
    border-color: var(--store-gold);
    background: linear-gradient(135deg, var(--store-deep-soft) 0%, var(--store-navy) 100%);
    box-shadow: var(--store-shadow-dark);
    color: var(--store-text-light);
}

.pack-card.pack-premium .pack-title {
    color: var(--store-text-light);
}

.pack-card.pack-premium .feature-list li {
    color: var(--store-text-light);
}

.pack-card.pack-premium .pack-price .price-current {
    color: var(--store-gold);
}

.pack-card.pack-premium .pack-price .price-unit,
.pack-card.pack-premium .pack-price small {
    color: var(--store-text-light-muted);
}

.pack-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--store-gold);
    color: var(--store-deep);
    padding: 0.375rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(201, 164, 48, 0.4);
}

.pack-ribbon-premium {
    background: linear-gradient(135deg, var(--store-gold) 0%, var(--store-gold-light) 100%);
    color: var(--store-deep);
    box-shadow: 0 2px 12px rgba(201, 164, 48, 0.5);
}

.pack-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--store-border-light);
    margin-bottom: 1.5rem;
}

.pack-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--store-bg-light);
    color: var(--store-text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.pack-badge-featured {
    background: var(--store-gold);
    color: var(--store-deep);
}

.pack-badge-premium {
    background: linear-gradient(135deg, var(--store-gold) 0%, var(--store-gold-light) 100%);
    color: var(--store-deep);
    box-shadow: 0 2px 8px rgba(201, 164, 48, 0.3);
}

.pack-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--store-text-primary);
    margin-bottom: 1rem;
}

.pack-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.pack-price .price-original {
    font-size: 1rem;
    color: var(--store-text-muted);
    text-decoration: line-through;
}

.pack-price .price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--store-gold);
    line-height: 1;
}

.pack-price .price-unit {
    font-size: 0.875rem;
    color: var(--store-text-secondary);
}

.pack-features {
    flex-grow: 1;
    padding: 0 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--store-text-primary);
    font-size: 0.9375rem;
}

.feature-list li i {
    color: var(--store-success);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pack-footer {
    padding-top: 1.5rem;
    text-align: center;
}

.btn-pack {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--store-primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--store-radius-md);
    text-decoration: none;
    transition: var(--store-transition);
    margin-bottom: 1rem;
}

.btn-pack:hover {
    background: var(--store-primary-light);
    color: white;
    text-decoration: none;
}

.btn-pack-featured {
    background: var(--store-gold);
    color: var(--store-deep);
}

.btn-pack-featured:hover {
    background: var(--store-gold-light);
    color: var(--store-deep);
}

.btn-pack-premium {
    background: linear-gradient(135deg, var(--store-gold) 0%, var(--store-gold-light) 100%);
    color: var(--store-deep);
    box-shadow: 0 4px 12px rgba(201, 164, 48, 0.4);
}

.btn-pack-premium:hover {
    background: linear-gradient(135deg, var(--store-gold-light) 0%, var(--store-gold) 100%);
    color: var(--store-deep);
    box-shadow: 0 6px 16px rgba(201, 164, 48, 0.5);
    transform: translateY(-1px);
}

.pack-info-link {
    color: var(--store-text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
}

.pack-info-link:hover {
    color: var(--store-gold);
    text-decoration: underline;
}

.packs-cta-text {
    color: var(--store-text-secondary);
    font-size: 0.9375rem;
}

.packs-cta-text a {
    color: var(--store-gold);
    font-weight: 600;
    text-decoration: none;
}

.packs-cta-text a:hover {
    text-decoration: underline;
}

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */
.featured-products-section {
    padding: 5rem 0;
    background: var(--store-bg-light);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* ============================================
   PRODUCT FINDER SECTION
   ============================================ */
.product-finder-section {
    padding: 4rem 0;
    background: var(--store-cream);
}

.finder-card {
    background: white;
    border-radius: var(--store-radius-xl);
    padding: 3rem;
    box-shadow: var(--store-shadow-sm);
    border: 1px solid var(--store-border-light);
}

.finder-content {
    padding-right: 2rem;
}

.finder-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--store-text-primary);
    margin-bottom: 1rem;
}

.finder-desc {
    color: var(--store-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.btn-finder {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    background: var(--store-gold);
    color: var(--store-deep);
    font-weight: 600;
    border-radius: var(--store-radius-md);
    border: none;
    cursor: pointer;
    transition: var(--store-transition);
    box-shadow: var(--store-shadow-gold);
}

.btn-finder:hover {
    background: var(--store-gold-light);
    color: var(--store-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 164, 48, 0.4);
}

.finder-quick-picks {
    background: var(--store-bg-light);
    border-radius: var(--store-radius-lg);
    padding: 1.5rem;
}

.quick-picks-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--store-text-primary);
    margin-bottom: 1rem;
}

.quick-picks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.quick-pick-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: var(--store-radius-sm);
    text-decoration: none;
    transition: var(--store-transition);
    border: 1px solid var(--store-border-light);
}

.quick-pick-item:hover {
    border-color: var(--store-gold);
    box-shadow: var(--store-shadow-sm);
    text-decoration: none;
}

.quick-pick-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--store-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.quick-pick-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-pick-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--store-text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   CATEGORY NAVIGATION
   ============================================ */
.category-nav-section {
    background: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 72px;
    z-index: 100;
    border-bottom: 1px solid var(--store-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-left {
    flex-shrink: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--store-bg-light);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-md);
    padding: 0 1rem;
    transition: var(--store-transition);
    width: 280px;
}

.search-box:focus-within {
    border-color: var(--store-gold);
    box-shadow: 0 0 0 3px var(--store-gold-subtle);
}

.search-box i {
    color: var(--store-text-muted);
    font-size: 0.875rem;
}

.search-box input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 0.75rem;
    font-size: 0.9375rem;
    outline: none;
}

.clear-search {
    background: none;
    border: none;
    color: var(--store-text-muted);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-search:hover {
    color: var(--store-text-primary);
}

.nav-center {
    flex-grow: 1;
    min-width: 0;
    position: relative;
    overflow: visible;
}

.nav-center::-webkit-scrollbar {
    display: none;
}

/* Scroll fade indicators */
.nav-center::before,
.nav-center::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.nav-center::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
    opacity: 0;
}

.nav-center::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
    opacity: 0;
}

.nav-center.has-scroll-left::before {
    opacity: 1;
}

.nav-center.has-scroll-right::after {
    opacity: 1;
}

@media (max-width: 1199.98px) {
    .nav-center {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-tabs {
        flex-wrap: nowrap;
        white-space: nowrap;
        width: max-content;
    }
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: normal;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: transparent;
    border-radius: var(--store-radius-sm);
    cursor: pointer;
    transition: var(--store-transition);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--store-text-secondary);
}

.category-tab:hover {
    background: var(--store-bg-light);
    color: var(--store-text-primary);
}

.category-tab.active {
    background: var(--store-gold-subtle);
    color: var(--store-gold);
}

.category-tab i {
    font-size: 0.875rem;
}

.category-count {
    background: var(--store-border-light);
    color: var(--store-text-muted);
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-tab.active .category-count {
    background: var(--store-gold);
    color: var(--store-deep);
}

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

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-filter {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--store-text-primary);
    cursor: pointer;
    transition: var(--store-transition);
}

.btn-filter:hover {
    border-color: var(--store-gold);
    color: var(--store-gold);
}

.btn-filter.active {
    background: var(--store-gold-subtle);
    border-color: var(--store-gold);
    color: var(--store-gold);
}

.sort-select {
    padding: 0.625rem 2rem 0.625rem 1rem;
    background: white;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--store-text-primary);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.sort-select:focus {
    outline: none;
    border-color: var(--store-gold);
}

/* Filters Panel */
.filters-panel {
    background: var(--store-bg-light);
    border-top: 1px solid var(--store-border);
    padding: 1.5rem 0;
    margin-top: 1rem;
}

.filters-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--store-text-secondary);
    white-space: nowrap;
}

.price-filter-options,
.time-filter-options {
    display: flex;
    gap: 0.375rem;
}

.price-filter-btn,
.time-filter-btn {
    padding: 0.5rem 0.875rem;
    background: white;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--store-text-primary);
    cursor: pointer;
    transition: var(--store-transition);
    white-space: nowrap;
}

.price-filter-btn:hover,
.time-filter-btn:hover {
    border-color: var(--store-gold);
}

.price-filter-btn.active,
.time-filter-btn.active {
    background: var(--store-gold);
    border-color: var(--store-gold);
    color: var(--store-deep);
}

.btn-clear-filters {
    margin-left: auto;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--store-text-secondary);
    cursor: pointer;
    transition: var(--store-transition);
}

.btn-clear-filters:hover {
    background: white;
    color: var(--store-text-primary);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 3rem 0 5rem;
    background: var(--store-cream);
}

.no-results-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--store-radius-xl);
    max-width: 400px;
    margin: 2rem auto;
    box-shadow: var(--store-shadow-sm);
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: var(--store-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.no-results-icon i {
    font-size: 2rem;
    color: var(--store-text-muted);
}

.no-results-state h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--store-text-primary);
    margin-bottom: 0.5rem;
}

.no-results-state p {
    color: var(--store-text-secondary);
    margin-bottom: 1.5rem;
}

/* Category Section */
.category-section {
    margin-bottom: 3rem;
}

.category-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--store-border);
}

.category-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: var(--store-gold-subtle);
    border-radius: var(--store-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 1.25rem;
    color: var(--store-gold);
}

.category-title-v2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--store-text-primary);
    margin: 0;
}

.category-desc {
    font-size: 0.875rem;
    color: var(--store-text-secondary);
    margin: 0.25rem 0 0;
}

.category-count-badge {
    font-size: 0.875rem;
    color: var(--store-text-secondary);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Product Card */
.product-card-v2 {
    background: white;
    border: 1px solid var(--store-border-light);
    border-radius: var(--store-radius-lg);
    overflow: hidden;
    box-shadow: var(--store-shadow-sm);
    transition: var(--store-transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-v2:hover {
    box-shadow: var(--store-shadow-md);
    transform: translateY(-4px);
    border-color: var(--store-gold);
}

.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.badge {
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-bestseller {
    background: var(--store-primary);
    color: white;
}

.badge-sale {
    background: var(--store-success);
    color: white;
}

.badge-featured {
    background: var(--store-gold);
    color: var(--store-deep);
}

.card-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #F9FAFB 0%, #EDF2F7 100%);
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-v2:hover .card-image img {
    transform: scale(1.08);
}

.card-image.image-error {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image.image-error img {
    display: none;
}

.card-image.image-error::after {
    content: '\f1b0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--store-border);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 32, 44, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-v2:hover .card-overlay {
    opacity: 1;
}

.btn-quick-view {
    padding: 0.625rem 1.25rem;
    background: white;
    color: var(--store-text-primary);
    border: none;
    border-radius: var(--store-radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--store-transition);
    transform: translateY(10px);
    opacity: 0;
}

.product-card-v2:hover .btn-quick-view {
    transform: translateY(0);
    opacity: 1;
}

.btn-quick-view:hover {
    background: var(--store-gold);
    color: var(--store-deep);
}

.card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--store-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

/* Delivery status indicator (inline with pricing) */
.delivery-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.375rem;
}

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

.status-dot-live {
    background-color: var(--store-success);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot-queue {
    background-color: var(--store-text-muted, #94a3b8);
}

.status-label {
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
    color: var(--store-text-secondary);
    line-height: 1;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08); }
}

.card-description {
    font-size: 0.8125rem;
    color: var(--store-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.included-preview {
    margin-bottom: 1rem;
}

.included-label {
    font-size: 0.75rem;
    color: var(--store-success);
    font-weight: 600;
}

.card-pricing {
    margin-bottom: 1rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-original {
    font-size: 0.875rem;
    color: var(--store-text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--store-gold);
}

.price-unit {
    font-size: 0.75rem;
    color: var(--store-text-secondary);
}

.card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-order {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: var(--store-gold);
    color: var(--store-deep);
    border: none;
    border-radius: var(--store-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--store-transition);
}

.btn-order:hover {
    background: var(--store-gold-light);
    color: var(--store-deep);
    text-decoration: none;
}

.btn-info-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--store-bg-light);
    color: var(--store-text-secondary);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-sm);
    text-decoration: none;
    transition: var(--store-transition);
}

.btn-info-link:hover {
    background: white;
    border-color: var(--store-gold);
    color: var(--store-gold);
    text-decoration: none;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-section {
    padding: 5rem 0;
    background: var(--store-cream);
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--store-border-light);
}

.comparison-table th {
    background: var(--store-bg-light);
    font-weight: 600;
}

.feature-column {
    text-align: left !important;
    min-width: 250px;
}

.pack-column {
    min-width: 180px;
}

.pack-featured-column {
    background: var(--store-gold-pale) !important;
}

.pack-header-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.featured-badge {
    background: var(--store-gold);
    color: var(--store-deep);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pack-name {
    font-size: 1.125rem;
    font-weight: 700;
}

.pack-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--store-gold);
}

.comparison-table tbody td {
    color: var(--store-text-primary);
}

.comparison-table tbody td:first-child {
    text-align: left;
    color: var(--store-text-secondary);
}

.highlight-row td {
    background: rgba(16, 185, 129, 0.05);
}

.highlight-row td:last-child {
    background: var(--store-gold-subtle);
}

.comparison-table tfoot td {
    padding-top: 1.5rem;
    border-bottom: none;
}

.btn-comparison {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    min-height: 42px;
    white-space: nowrap;
    background: var(--store-primary);
    color: white;
    border-radius: var(--store-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--store-transition);
}

.btn-comparison:hover {
    background: var(--store-primary-light);
    color: white;
    text-decoration: none;
}

.btn-comparison-featured {
    background: var(--store-gold);
    color: var(--store-deep);
}

.btn-comparison-featured:hover {
    background: var(--store-gold-light);
    color: var(--store-deep);
}

.btn-comparison-premium {
    background: linear-gradient(135deg, var(--store-deep) 0%, var(--store-navy) 100%);
    color: var(--store-gold);
    border: 2px solid var(--store-gold);
}

.btn-comparison-premium:hover {
    background: linear-gradient(135deg, var(--store-navy) 0%, var(--store-deep) 100%);
    color: var(--store-gold-light);
    border-color: var(--store-gold-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background: var(--store-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--store-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--store-shadow-sm);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FBB612;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--store-text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--store-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--store-text-muted);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--store-text-primary);
    font-size: 0.9375rem;
}

.author-badge {
    font-size: 0.75rem;
    color: var(--store-success);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: var(--store-cream);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--store-text-primary);
    text-align: left;
    transition: var(--store-transition);
}

.faq-question:hover {
    background: var(--store-cream);
}

.faq-question:not(.collapsed) {
    background: var(--store-gold-subtle);
    color: var(--store-text-primary);
}

.faq-question:not(.collapsed) i {
    color: var(--store-gold);
}

.faq-question i {
    color: var(--store-text-muted);
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--store-text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* ============================================
   TRUST SECTION - DARK BACKGROUND
   ============================================ */
.trust-section {
    padding: 4rem 0;
    background: var(--store-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-section .trust-title {
    color: var(--store-text-light);
}

.trust-section .trust-desc {
    color: var(--store-text-light-muted);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-card {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--store-gold-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.trust-icon i {
    font-size: 1.5rem;
    color: var(--store-gold);
}

.trust-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--store-text-primary);
    margin-bottom: 0.5rem;
}

.trust-desc {
    font-size: 0.875rem;
    color: var(--store-text-secondary);
    margin: 0;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--store-border);
}

.payment-logos img {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    object-fit: contain;
}

.payment-logos img:hover {
    opacity: 1;
}

/* ============================================
   DRAWER PANELS - RESPONSIVE MODAL DRAWERS
   ============================================ */
.store-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.store-drawer.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.store-drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-drawer.open .store-drawer-backdrop {
    opacity: 1;
}

.store-drawer-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    max-width: 600px;
    height: 100vh;
    background: var(--store-white);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1061;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
}

.store-drawer.open .store-drawer-panel {
    transform: translateX(0);
}

.store-drawer-header {
    background: linear-gradient(135deg, var(--store-deep) 0%, var(--store-navy) 100%);
    color: var(--store-text-light);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.store-drawer-title {
    font-family: var(--store-font-serif);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--store-text-light);
    margin: 0;
    flex-grow: 1;
    padding-right: 16px;
}

.store-drawer-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.25rem;
    color: var(--store-text-light);
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    transition: all 0.2s ease;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-drawer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.store-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 24px;
    background: var(--store-cream);
}

.store-drawer-footer {
    padding: 20px 24px;
    background: var(--store-white);
    border-top: 1px solid var(--store-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.store-drawer-close-btn {
    background: var(--store-gold);
    color: var(--store-deep);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--store-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--store-transition);
}

.store-drawer-close-btn:hover {
    background: var(--store-gold-light);
    color: var(--store-deep);
}

/* Mobile Drawer Styles */
@media (max-width: 768px) {
    .store-drawer-panel {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        height: 85vh;
        transform: translateY(100%);
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .store-drawer.open .store-drawer-panel {
        transform: translateY(0);
    }
    
    .store-drawer-header {
        border-radius: 24px 24px 0 0;
        padding: 16px 20px;
        position: relative;
    }
    
    .store-drawer-header::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    .store-drawer-backdrop {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .store-drawer-body {
        padding: 20px;
    }
    
    .store-drawer-footer {
        padding: 16px 20px;
    }
    
    /* Quick view responsive adjustments */
    .qv-image-wrapper {
        margin-bottom: 0.75rem;
    }
    
    .quick-view-content {
        gap: 1rem;
    }
    
    .qv-title {
        font-size: 1.25rem;
    }
    
    .qv-price-current {
        font-size: 1.75rem;
    }
    
    .qv-actions {
        flex-direction: column;
    }
    
    .qv-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Quick View Content Styles */
.quick-view-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Image wrapper - structured container with aspect ratio */
.qv-image-wrapper {
    width: 100%;
    margin: 0 0 0.5rem 0;
    border-radius: var(--store-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #F9FAFB 0%, #EDF2F7 100%);
    aspect-ratio: 16 / 10;
}

.qv-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qv-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--store-text-primary);
}

.qv-pricing {
    margin-bottom: 0.75rem;
}

.qv-price-original {
    font-size: 1rem;
    color: var(--store-text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.qv-price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--store-gold);
}

/* Description with HTML rendering support */
.qv-description {
    color: var(--store-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.qv-description ul,
.qv-description ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.qv-description li {
    margin-bottom: 0.5rem;
}

.qv-description p {
    margin-bottom: 0.75rem;
}

.qv-description strong,
.qv-description b {
    font-weight: 700;
    color: var(--store-text-primary);
}

.qv-description small {
    font-size: 0.875rem;
    color: var(--store-text-muted);
}

.qv-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.qv-actions .btn {
    padding: 0.875rem 1.5rem;
}

/* Legacy Modal Styles (for compatibility) */
.finder-modal-content,
.quick-view-modal-content {
    border-radius: var(--store-radius-xl);
    border: none;
}

.finder-wizard {
    padding: 1rem 0;
}

.finder-step {
    display: none;
}

.finder-step.active {
    display: block;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--store-text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.step-option {
    padding: 0.875rem 1.5rem;
    background: white;
    border: 2px solid var(--store-border);
    border-radius: var(--store-radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--store-text-primary);
    cursor: pointer;
    transition: var(--store-transition);
}

.step-option:hover {
    border-color: var(--store-gold);
    background: var(--store-gold-subtle);
}

.step-option.selected {
    border-color: var(--store-gold);
    background: var(--store-gold);
    color: var(--store-deep);
}

.finder-recommendation {
    background: var(--store-bg-light);
    border-radius: var(--store-radius-lg);
    padding: 2rem;
    text-align: center;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
/* ============================================
   ANIMATIONS - FADE IN UP
   ============================================ */
.store-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--store-ease), transform 0.6s var(--store-ease);
}

.store-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.store-animate-delay-1 {
    transition-delay: 0.1s;
}

.store-animate-delay-2 {
    transition-delay: 0.2s;
}

.store-animate-delay-3 {
    transition-delay: 0.3s;
}

.store-animate-delay-4 {
    transition-delay: 0.4s;
}

.store-animate-delay-5 {
    transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    .store-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.back-to-top-v2 {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--store-gold);
    color: var(--store-deep);
    border: none;
    box-shadow: var(--store-shadow-gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--store-transition);
    z-index: 1025;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-v2:hover {
    background: var(--store-gold-light);
    color: var(--store-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 164, 48, 0.5);
}

.back-to-top-v2.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky-cta-v2 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-top: 1px solid var(--store-border);
    padding: 0.875rem 0;
    z-index: 1030;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.mobile-cta-info {
    display: flex;
    flex-direction: column;
}

.mobile-cta-count {
    font-weight: 600;
    color: var(--store-text-primary);
    font-size: 0.9375rem;
}

.mobile-cta-text {
    font-size: 0.75rem;
    color: var(--store-text-secondary);
}

.btn-mobile-cta {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: var(--store-gold);
    color: var(--store-deep);
    border-radius: var(--store-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

.btn-mobile-cta:hover {
    background: var(--store-gold-light);
    color: var(--store-deep);
    text-decoration: none;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 991.98px) {
    .store-hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .finder-card {
        padding: 2rem;
    }
    
    .finder-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .pack-card {
        padding: 1.5rem;
    }
    
    .category-nav-section {
        position: static;
    }
    
    .nav-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-left,
    .nav-right {
        width: 100%;
    }
    
    .search-box {
        width: 100%;
    }
    
    .nav-center {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .store-hero {
        padding: 3rem 0 4rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-title {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .finder-card {
        padding: 1.5rem;
    }
    
    .quick-picks-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        padding-bottom: 0.5rem;
    }
    
    .category-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
    }
    
    .category-tab i {
        font-size: 0.75rem;
    }
    
    .category-count {
        font-size: 0.6875rem;
        padding: 0.125rem 0.375rem;
    }
    
    .filters-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-filter-options,
    .time-filter-options {
        flex-wrap: wrap;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .card-image {
        height: 200px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top-v2 {
        bottom: 80px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
    
    /* Add padding to bottom for mobile sticky CTA */
    .store-v2 {
        padding-bottom: 80px;
    }
}

@media (max-width: 575.98px) {
    .pack-card {
        margin-bottom: 1rem;
    }
    
    .pack-ribbon {
        font-size: 0.625rem;
        padding: 0.25rem 2rem;
        right: -40px;
    }
    
    .comparison-table-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .feature-column {
        min-width: 180px;
    }
    
    .pack-column {
        min-width: 120px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .store-hero,
    .promo-banner-v2,
    .product-finder-section,
    .category-nav-section,
    .back-to-top-v2,
    .mobile-sticky-cta-v2,
    .btn-quick-view,
    .card-overlay {
        display: none !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card-v2 {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   A/B TEST: HIDE "CHOOSE YOUR PACK" SECTION
   ============================================ */
/* A/B TEST: Hide "Choose Your Pack" packs section to measure impact on conversion */
#featured-packs {
    display: none;
}
