/* ─── AI-HORECA.RO — Stylesheet ─────────────────────────────── */

:root {
    --navy: #0B1D3A;
    --navy-light: #132D54;
    --gold: #C5A55A;
    --gold-light: #D4BB7C;
    --gold-pale: #F5ECD7;
    --cream: #FAF8F4;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --green: #059669;
    --green-light: #D1FAE5;
    --blue: #2563EB;
    --red: #DC2626;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 30px rgba(0,0,0,0.1);
    --transition: 0.25s ease;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

.font-display { font-family: 'Playfair Display', Georgia, serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }

/* ─── TOP BAR ──────────────────────────────────────────────────── */
.top-bar {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 6px 0;
    font-size: 13px;
    color: var(--gray-400);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-left a { color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
.top-bar-left a:hover { color: var(--gold); }
.top-bar-right { display: flex; align-items: center; gap: 6px; }
.divider { margin: 0 8px; opacity: 0.3; }

/* ─── HEADER ───────────────────────────────────────────────────── */
.header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(11,29,58,0.95);
    backdrop-filter: blur(12px);
    transition: all var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.2); border-bottom: 1px solid rgba(197,165,90,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 36px; width: auto; border-radius: 6px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: white; line-height: 1.1; }
.logo-tag { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

.nav { display: flex; gap: 4px; }
.nav-link {
    padding: 8px 14px; border-radius: 6px;
    color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
    transition: all var(--transition);
}
.nav-link:hover { color: white; }
.nav-link.active { background: rgba(197,165,90,0.15); color: var(--gold); }

.menu-toggle { display: none; background: none; border: none; color: white; cursor: pointer; }

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 12px 24px; border-radius: var(--radius-sm); border: none;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(197,165,90,0.4); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-light); }
.btn-outline { background: transparent; border: 1px solid var(--gray-300); color: var(--gray-700); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--gray-50); }

/* ─── ICONS ────────────────────────────────────────────────────── */
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a6a 100%);
    padding: 80px 0;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 10%; right: 5%;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(197,165,90,0.08) 0%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(197,165,90,0.12); border: 1px solid rgba(197,165,90,0.25);
    border-radius: 24px; padding: 6px 16px; margin-bottom: 20px;
    font-size: 13px; color: var(--gold);
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: white; line-height: 1.15; margin-bottom: 20px; }
.hero h1 .gold { color: var(--gold); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.hero-image { border-radius: 16px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.4); border: 1px solid rgba(197,165,90,0.2); }
.hero-image img { width: 100%; height: 420px; object-fit: cover; }
.hero-float {
    position: absolute; bottom: -16px; left: -16px;
    background: white; border-radius: 12px; padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 12px;
}

/* ─── SECTIONS ─────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: white; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { font-size: 13px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--navy); }
.section-navy .section-title { color: white; }
.gold-line { height: 2px; width: 60px; margin: 16px auto 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ─── TIER BADGES ──────────────────────────────────────────────── */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.tier {
    text-align: center; padding: 24px 16px; border-radius: 12px;
    border: 2px solid transparent; transition: all var(--transition);
}
.tier:hover { transform: scale(1.03); }
.tier-1 { background: var(--gray-50); border-color: var(--gray-200); }
.tier-2 { background: #EFF6FF; border-color: #3B82F620; }
.tier-3 { background: var(--green-light); border-color: #05966920; }
.tier-4 { background: var(--gold-pale); border-color: rgba(197,165,90,0.2); }
.tier-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.tier-discount { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; }
.tier-range { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

/* ─── PRODUCT CARDS ────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--gray-200); transition: all var(--transition);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.product-card-image { position: relative; height: 220px; overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-badge {
    position: absolute; top: 10px; right: 10px;
    background: var(--green); color: white;
    font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
}
.product-card-body { padding: 16px 18px; }
.product-card-cat { font-size: 11px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-card-name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.product-card-meta { font-size: 12px; color: var(--gray-500); margin-bottom: 12px; }
.product-card-price { display: flex; justify-content: space-between; align-items: flex-end; }
.price-old { font-size: 12px; color: var(--gray-400); text-decoration: line-through; }
.price-current { font-size: 20px; font-weight: 700; color: var(--navy); }
.price-current .currency { font-size: 13px; font-weight: 400; color: var(--gray-500); }
.price-unit { font-size: 12px; color: var(--gray-500); }
.product-card-cta { background: var(--gold-pale); color: var(--gold); padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; }

/* ─── CATALOG PAGE ─────────────────────────────────────────────── */
.catalog-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.filter-btn {
    padding: 8px 18px; border-radius: 20px; border: 1px solid var(--gray-300);
    background: white; color: var(--gray-600); font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all var(--transition); font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.catalog-count { text-align: center; font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }

/* ─── PRODUCT DETAIL ───────────────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; background: white; border-radius: 20px; padding: 40px; border: 1px solid var(--gray-200); }
.product-gallery img { width: 100%; border-radius: var(--radius); border: 1px solid var(--gray-200); }
.product-gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.product-gallery-thumb { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; border: 2px solid var(--gray-200); cursor: pointer; transition: border-color var(--transition); }
.product-gallery-thumb:hover, .product-gallery-thumb.active { border-color: var(--gold); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-cat { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.spec-item { padding: 10px 14px; background: var(--gray-50); border-radius: 8px; }
.spec-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }
.spec-value { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-top: 2px; }

/* Tier table */
.tier-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); margin-bottom: 24px; }
.tier-table-header { background: var(--navy); color: white; padding: 10px 16px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.tier-table table { width: 100%; border-collapse: collapse; }
.tier-table th { padding: 8px 16px; text-align: left; font-size: 12px; color: var(--gray-500); font-weight: 600; background: var(--gray-50); }
.tier-table th:nth-child(2) { text-align: center; }
.tier-table th:nth-child(3) { text-align: right; }
.tier-table td { padding: 8px 16px; font-size: 14px; border-top: 1px solid var(--gray-100); }
.tier-table td:nth-child(2) { text-align: center; }
.tier-table td:nth-child(3) { text-align: right; font-weight: 600; }
.tier-table tr.active-tier { background: var(--gold-pale); }
.discount-text { color: var(--green); font-weight: 700; }
.quote-text { color: var(--gold); font-weight: 700; }

/* Quantity selector */
.qty-row { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.qty-selector { display: flex; align-items: center; border: 1px solid var(--gray-300); border-radius: 10px; overflow: hidden; }
.qty-btn { width: 40px; height: 44px; border: none; background: var(--gray-50); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.qty-btn:hover { background: var(--gray-200); }
.qty-input { width: 60px; height: 44px; border: none; text-align: center; font-size: 16px; font-weight: 700; font-family: 'DM Sans', sans-serif; outline: none; }
.qty-price { flex: 1; }
.qty-savings { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 2px; }
.qty-total { font-size: 24px; font-weight: 700; color: var(--navy); }
.qty-total .vat { font-size: 14px; font-weight: 400; color: var(--gray-500); }

/* Variant selector */
.variant-group { margin-bottom: 16px; }
.variant-label { font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-option {
    padding: 8px 16px; border-radius: 8px; border: 1px solid var(--gray-300);
    font-size: 13px; cursor: pointer; transition: all var(--transition);
    background: white; font-family: 'DM Sans', sans-serif;
}
.variant-option:hover { border-color: var(--gold); }
.variant-option.selected { background: var(--navy); color: white; border-color: var(--navy); }

/* ─── QUOTE FORM ───────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; }
.form-input, .form-textarea {
    width: 100%; padding: 10px 14px; border-radius: 8px; border: 1px solid var(--gray-300);
    font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none;
    transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ─── CARDS / BENEFITS ─────────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
    padding: 28px; border-radius: 14px; background: var(--cream);
    border: 1px solid var(--gray-200); transition: all var(--transition);
}
.benefit-card:hover { border-color: var(--gold); }
.benefit-icon {
    width: 44px; height: 44px; border-radius: 10px; background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--gold);
}
.benefit-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ─── CATEGORIES GRID ──────────────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card {
    border-radius: 16px; overflow: hidden; cursor: pointer;
    background: white; border: 1px solid var(--gray-200); transition: all var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.category-card-image { position: relative; height: 180px; overflow: hidden; }
.category-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .category-card-image img { transform: scale(1.05); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,29,58,0.6), transparent); }
.category-card-count { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.category-card-body { padding: 16px 20px; }
.category-card-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.category-card-desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ─── BLOG ─────────────────────────────────────────────────────── */
.blog-list { display: flex; flex-direction: column; gap: 20px; }
.blog-card {
    background: white; border-radius: 14px; padding: 28px 32px;
    border: 1px solid var(--gray-200); transition: all var(--transition);
}
.blog-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.blog-tag { font-size: 11px; font-weight: 700; color: var(--gold); background: var(--gold-pale); padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.blog-date, .blog-views { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
.blog-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.blog-cta { margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 4px; }

/* ─── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
    background: var(--navy); border-radius: 20px; padding: 48px 56px;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(197,165,90,0.1), transparent 70%);
}
.cta-content { max-width: 600px; position: relative; z-index: 1; }
.cta-label { font-size: 13px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: white; margin-bottom: 16px; }
.cta-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 28px; }

/* ─── FLASH MESSAGES ───────────────────────────────────────────── */
.flash {
    padding: 16px 24px; border-radius: var(--radius); margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
    background: var(--green-light); color: var(--green);
    font-size: 14px; font-weight: 600;
}

/* ─── BREADCRUMBS ──────────────────────────────────────────────── */
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 24px; font-size: 14px; color: var(--gray-500); flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-300); }

/* ─── CONTACT ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-card { display: flex; gap: 16px; padding: 20px; background: var(--cream); border-radius: 12px; border: 1px solid var(--gray-200); }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }
.contact-value { font-size: 16px; font-weight: 700; color: var(--navy); margin-top: 2px; }
.contact-sub { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* ─── FOOTER ───────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-about p { font-size: 13px; line-height: 1.7; max-width: 320px; }
.footer-title { color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-link { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 8px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-link:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── 404 ──────────────────────────────────────────────────────── */
.page-404 { text-align: center; padding: 120px 24px; }
.page-404 h1 { font-family: 'Playfair Display', serif; font-size: 120px; color: var(--gold); line-height: 1; }
.page-404 p { font-size: 18px; color: var(--gray-500); margin: 16px 0 32px; }

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid, .product-detail { grid-template-columns: 1fr; }
    .hero-image { order: -1; }
    .hero-image img { height: 300px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tiers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.1); }
    .nav.open { display: flex; }
    .menu-toggle { display: flex; }
    .hero h1 { font-size: 32px; }
    .hero { padding: 48px 0; }
    .products-grid, .categories-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
    .section-title { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-banner { padding: 32px 24px; }
    .cta-title { font-size: 24px; }
    .top-bar { display: none; }
    .tiers { grid-template-columns: 1fr 1fr; }
    .product-detail { padding: 20px; }
    .hero-float { display: none; }
    .hero-stats { gap: 20px; }
}

/* ─── MOBILE PRODUCT PAGE FIXES ────────────────────────────────── */
@media (max-width: 768px) {
    .product-detail { gap: 24px; }
    .product-name { font-size: 22px; }
    
    /* Price box - stack vertically on mobile */
    .price-box-row {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .price-box-row > div {
        text-align: left !important;
    }
    .price-box-row .price-val {
        font-size: 20px !important;
    }
    
    /* Tier table - scroll horizontally on mobile */
    .tier-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .tier-table table {
        min-width: 360px;
    }
    .tier-table td, .tier-table th {
        padding: 8px 10px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    /* Quantity + price row */
    .qty-row {
        flex-direction: column;
        gap: 12px;
        align-items: stretch !important;
    }
    .qty-selector {
        align-self: flex-start;
    }
    .qty-total {
        font-size: 20px !important;
    }
    
    /* Variant options wrap better */
    .variant-options {
        gap: 6px;
    }
    .variant-option {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Trust badges stack */
    .trust-badges-row {
        flex-direction: column;
        gap: 8px !important;
    }
}
