/* ===========================================
   SKY RIDER - Premium Custom Packaging
   Complete Production CSS - All UI Components
   Brand: #C6213B (red) + #D4AF37 (gold)
   Fonts: Playfair Display (headings) + Inter (body)
   =========================================== */

:root {
    --brand: #C6213B;
    --brand-dark: #9b1830;
    --brand-light: #F4EAE5;
    --gold: #D4AF37;
    --gold-dark: #b8941d;
    --bg: #FFFFFF;
    --bg-cream: #FAF6F2;
    --bg-warm: #F4EAE5;
    --bg-dark: #1a1a1a;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #999;
    --border: #E5DCD6;
    --border-light: #F0E9E3;
    --success: #15803d;
    --danger: #dc2626;
    --warning: #d97706;
    --info: #1d4ed8;
    --radius: 8px;
    --radius-sm: 5px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(34, 20, 20, .04), 0 1px 2px rgba(34, 20, 20, .03);
    --shadow: 0 4px 12px rgba(34, 20, 20, .06);
    --shadow-md: 0 10px 28px rgba(34, 20, 20, .08);
    --shadow-lg: 0 20px 50px rgba(34, 20, 20, .12);
    --shadow-brand: 0 10px 30px rgba(198, 33, 59, .25);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1320px;
    --sidebar-w: 240px;
    --transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 15px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 14px; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text); line-height: 1.15; font-weight: 600; }
.brand-text { font-family: var(--font-heading); font-weight: 800; font-size: 26px; letter-spacing: 2px; color: var(--text); }
.brand-accent { color: var(--brand); }

/* ============= BUTTONS ============= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; border: 1.5px solid transparent; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; letter-spacing: .3px; transition: var(--transition); cursor: pointer; line-height: 1; white-space: nowrap; text-transform: uppercase; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-outline { background: transparent; border-color: var(--text); color: var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; border-color: var(--text); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-light { background: #fff; color: var(--brand); }
.btn-block { width: 100%; display: flex; }
.btn-sm { padding: 10px 16px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-icon { padding: 8px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ============= ANNOUNCEMENT ============= */
.announcement-bar { background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; text-align: center; padding: 10px 16px; font-size: 12px; letter-spacing: 1.5px; font-weight: 500; text-transform: uppercase; }
.announcement-bar .container { display: flex; align-items: center; justify-content: center; gap: 16px; }
.announcement-bar .dot { width: 4px; height: 4px; background: rgba(255,255,255,.5); border-radius: 50%; display: inline-block; }

/* ============= HEADER ============= */
.site-header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 18px 24px; }
.hamburger { display: none; padding: 10px; color: var(--text); min-width: 44px; min-height: 44px; align-items: center; justify-content: center; border-radius: 8px; }
.brand { display: flex; align-items: center; }
.search-bar { flex: 1; max-width: 580px; position: relative; display: flex; align-items: center; background: var(--bg-cream); border: 2px solid transparent; border-radius: 999px; padding: 4px 6px 4px 20px; transition: var(--transition); }
.search-bar:focus-within { background: #fff; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(198, 33, 59, .08); }
.search-bar input { flex: 1; border: none; background: transparent; padding: 10px 4px; font-size: 14px; outline: none; }
.search-bar button { background: var(--brand); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.search-bar button:hover { background: var(--brand-dark); transform: scale(1.05); }
.search-suggestions { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); max-height: 360px; overflow-y: auto; display: none; z-index: 50; }
.search-suggestions.show { display: block; }
.search-suggestions a { display: flex; gap: 12px; padding: 10px 14px; align-items: center; border-bottom: 1px solid var(--border-light); }
.search-suggestions a:last-child { border-bottom: none; }
.search-suggestions a:hover { background: var(--bg-cream); }
.search-suggestions img { width: 36px; height: 36px; object-fit: cover; border-radius: 4px; }

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-link { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 14px; color: var(--text); position: relative; border-radius: 8px; transition: var(--transition); font-size: 11px; font-weight: 600; letter-spacing: .3px; text-transform: uppercase; }
.icon-link:hover { background: var(--bg-cream); color: var(--brand); }
.icon-link svg { transition: var(--transition); }
.icon-link:hover svg { transform: scale(1.1); }
.icon-label { display: block; }
.badge { position: absolute; top: 4px; right: 6px; background: var(--brand); color: #fff; font-size: 10px; font-weight: 700; border-radius: 999px; min-width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; padding: 0 5px; border: 2px solid #fff; box-shadow: 0 2px 6px rgba(198, 33, 59, .4); }
.icon-btn { background: none; padding: 8px; color: var(--text); display: inline-flex; align-items: center; border-radius: 8px; transition: var(--transition); }
.icon-btn:hover { background: var(--bg-cream); color: var(--brand); }

.primary-nav { border-top: 1px solid var(--border-light); background: #fff; }
.nav-list { display: flex; justify-content: center; align-items: center; }
.nav-list a { display: block; padding: 14px 22px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text); border-bottom: 3px solid transparent; transition: var(--transition); }
.nav-list a:hover { color: var(--brand); border-bottom-color: var(--brand); }

/* ============= MOBILE MENU ============= */
.mobile-menu { position: fixed; inset: 0; z-index: 200; display: none; }
.mobile-menu.show { display: block; }
.mobile-menu-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.mobile-menu-panel { position: absolute; top: 0; left: 0; bottom: 0; background: #fff; width: 86%; max-width: 360px; padding: 18px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; transform: translateX(-100%); transition: transform .25s ease; }
.mobile-menu.show .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.mobile-menu-nav { display: flex; flex-direction: column; }
.mobile-menu-nav a { padding: 12px 6px; border-bottom: 1px solid var(--border-light); font-size: 15px; font-weight: 500; }
.mobile-menu-nav a:hover { color: var(--brand); padding-left: 12px; }
.mobile-menu-footer { margin-top: auto; padding-top: 16px; }

/* ============= CART DRAWER ============= */
.cart-drawer { position: fixed; inset: 0; z-index: 200; display: none; }
.cart-drawer.show { display: block; }
.cart-drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.cart-drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; background: #fff; width: 90%; max-width: 420px; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .25s ease; }
.cart-drawer.show .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--border); }
.cart-drawer-header h3 { font-size: 18px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 12px; }
.cart-drawer-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; padding: 12px 6px; border-bottom: 1px solid var(--border-light); }
.cart-drawer-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.cart-drawer-item-info h4 { font-size: 13px; font-weight: 600; font-family: var(--font-body); margin-bottom: 2px; }
.cart-drawer-item-info p { font-size: 12px; color: var(--text-muted); }
.cart-drawer-item-remove { background: none; border: none; color: var(--text-muted); font-size: 11px; padding: 4px; cursor: pointer; }
.cart-drawer-item-remove:hover { color: var(--danger); }
.cart-drawer-footer { padding: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.cart-drawer-total { display: flex; justify-content: space-between; align-items: center; font-size: 16px; }
.loader-skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); padding: 14px; text-align: center; color: var(--text-muted); font-size: 13px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============= MOBILE BOTTOM NAV ============= */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); z-index: 90; padding: 6px 0; box-shadow: 0 -4px 20px rgba(0, 0, 0, .05); }
.mobile-bottom-nav a, .mobile-bottom-nav button { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; background: none; border: none; color: var(--text-muted); font-size: 10px; padding: 8px 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .3px; min-height: 48px; justify-content: center; }
.mobile-bottom-nav a.active, .mobile-bottom-nav a:hover { color: var(--brand); }

/* ============= HERO ============= */
.hero { background: linear-gradient(135deg, #F4EAE5 0%, #FAF6F2 50%, #FFFFFF 100%); padding: 80px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(198, 33, 59, .08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212, 175, 55, .08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: 56px; line-height: 1.05; margin-bottom: 22px; color: var(--text); font-weight: 700; }
.hero h1 .accent { color: var(--brand); font-style: italic; }
.hero-eyebrow { display: inline-block; background: var(--brand-light); color: var(--brand); padding: 6px 16px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%); display: flex; align-items: center; justify-content: center; color: var(--brand); font-family: var(--font-heading); font-weight: 700; font-size: 32px; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: 24px; left: 24px; background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px); padding: 14px 22px; border-radius: var(--radius); box-shadow: var(--shadow-md); z-index: 2; }
.hero-badge .num { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--brand); }
.hero-badge .lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }

/* ============= SECTION ============= */
.section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-eyebrow { display: inline-block; color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-head h2 { font-size: 38px; margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ============= TRUST ============= */
.trust-strip { background: #fff; border-bottom: 1px solid var(--border-light); padding: 32px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; }
.trust-item-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.trust-item h4 { font-family: var(--font-body); font-size: 14px; font-weight: 700; }
.trust-item p { font-size: 12px; color: var(--text-muted); }

/* ============= CATEGORY CARDS ============= */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.category-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); position: relative; aspect-ratio: 4/5; }
.category-card:hover { box-shadow: var(--shadow-md); border-color: var(--brand); transform: translateY(-6px); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover img { transform: scale(1.08); }
.category-card-body { padding: 16px; text-align: center; background: #fff; position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(180deg, transparent, rgba(255,255,255,.96)); }
.category-card-body h3 { font-size: 16px; margin-bottom: 4px; color: var(--text); }
.category-card-body p { font-size: 12px; color: var(--text-muted); }
.category-card-body a { font-size: 13px; color: var(--brand); font-weight: 600; }

/* ============= PRODUCT CARDS ============= */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-grid.tablet-3 { grid-template-columns: repeat(3, 1fr); }
.product-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; position: relative; transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--border); transform: translateY(-4px); }
.product-card-image { display: block; position: relative; aspect-ratio: 1/1; background: var(--bg-cream); overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card .badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 6px 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; color: #fff; background: var(--brand); border: none; box-shadow: none; }
.product-card .badge.badge-best { background: var(--brand); }
.product-card .badge.badge-new { background: var(--info); }
.product-card .badge.badge-sale { background: var(--gold); }
.product-card .badge.badge-out { background: var(--text-muted); }
.wishlist-btn { position: absolute; top: 12px; right: 12px; background: rgba(255, 255, 255, .95); border: 1px solid var(--border-light); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); z-index: 2; box-shadow: var(--shadow-sm); border-radius: 50%; }
.wishlist-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: scale(1.1); }
.wishlist-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.product-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name { font-size: 15px; font-weight: 600; font-family: var(--font-body); line-height: 1.3; }
.product-name a { color: var(--text); transition: var(--transition); }
.product-name a:hover { color: var(--brand); }
.product-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.product-price-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-sale { font-size: 18px; font-weight: 700; color: var(--text); font-family: var(--font-heading); }
.price-regular { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.discount-pill { background: var(--bg-warm); color: var(--brand); font-size: 10px; padding: 3px 8px; border-radius: 4px; font-weight: 700; }
.product-rating { display: flex; align-items: center; gap: 4px; }
.star { color: var(--border); font-size: 14px; }
.star.filled { color: var(--gold); }
.rating-text { font-size: 11px; color: var(--text-muted); }
.product-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }

/* ============= PROMO BANNER ============= */
.promo-banner { background: linear-gradient(110deg, var(--brand) 0%, var(--brand-dark) 50%, #6a0f1f 100%); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.promo-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, .15) 0%, transparent 50%); }
.promo-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .08) 0%, transparent 50%); }
.promo-banner .container { position: relative; z-index: 1; }
.promo-banner .eyebrow { display: inline-block; background: rgba(255, 255, 255, .15); color: var(--gold); padding: 6px 18px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; backdrop-filter: blur(10px); }
.promo-banner h2 { font-size: 44px; color: #fff; margin-bottom: 14px; font-weight: 700; }
.promo-banner p { font-size: 17px; max-width: 600px; margin: 0 auto 32px; opacity: .95; line-height: 1.6; }
.promo-banner-light { background: var(--bg-cream); padding: 60px 0; text-align: center; }
.promo-banner-light h2 { font-size: 32px; margin-bottom: 12px; }

/* ============= CUSTOM QUOTE ============= */
.custom-quote-section { background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%); padding: 80px 0; }
.custom-quote-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.custom-quote-section h2 { font-size: 36px; margin-bottom: 16px; line-height: 1.15; }
.custom-quote-section p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; line-height: 1.7; }

/* ============= WHY SECTION ============= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-item { text-align: center; padding: 36px 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border-light); transition: var(--transition); }
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-light); }
.why-item-icon { width: 64px; height: 64px; margin: 0 auto 18px; background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand); }
.why-item h3 { font-size: 18px; margin-bottom: 8px; }
.why-item p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ============= TESTIMONIALS ============= */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text); font-style: italic; line-height: 1.7; font-size: 15px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 14px; border-top: 1px solid var(--border-light); }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author h4 { font-size: 14px; font-family: var(--font-body); }
.testimonial-author p { font-size: 12px; color: var(--text-muted); }

/* ============= NEWSLETTER ============= */
.newsletter-section { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .08) 0%, transparent 50%); }
.newsletter-section .container { position: relative; z-index: 1; }
.newsletter-section h3 { font-size: 32px; color: #fff; margin-bottom: 10px; }
.newsletter-section p { opacity: .92; margin-bottom: 28px; font-size: 15px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 20px; border: none; border-radius: 999px; font-size: 14px; outline: none; }
.newsletter-result { margin-top: 12px; font-size: 13px; }

/* ============= FOOTER ============= */
.site-footer { background: var(--bg-dark); color: #e5e5e5; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; }
.footer-col h4 { color: #fff; font-family: var(--font-heading); margin-bottom: 14px; font-size: 24px; }
.footer-col h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; font-weight: 700; }
.footer-col ul li { margin-bottom: 10px; font-size: 13px; }
.footer-col a { color: #aaa; transition: var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 13px; color: #999; margin-bottom: 16px; line-height: 1.7; }
.social-links a { display: inline-block; margin-right: 12px; color: #fff; font-size: 13px; text-decoration: underline; }
.footer-contact strong { display: inline-block; min-width: 70px; }
.footer-bottom { border-top: 1px solid #2a2a2a; padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #888; }
.payment-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.payment-pill { background: #2a2a2a; color: #ccc; font-size: 11px; padding: 5px 12px; border-radius: 4px; font-weight: 600; }

/* ============= WHATSAPP FLOAT ============= */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37, 211, 102, .4); z-index: 95; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.08) rotate(5deg); }
.whatsapp-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: pulse 2s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }

/* ============= TOAST ============= */
.toast-host { position: fixed; top: 90px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { background: #fff; border-left: 4px solid var(--brand); box-shadow: var(--shadow-md); padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; min-width: 260px; animation: slideIn .25s ease; }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }
@keyframes slideIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ============= QUICK VIEW MODAL ============= */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal { background: #fff; border-radius: var(--radius-lg); max-width: 760px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-bottom: 1px solid var(--border); }
.modal-body { padding: 20px; }
.modal-close { background: none; border: none; font-size: 24px; padding: 4px; cursor: pointer; color: var(--text-muted); }
.modal-close:hover { color: var(--danger); }

/* ============= FORMS ============= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: var(--text); text-transform: uppercase; letter-spacing: .5px; }
.form-group .req { color: var(--brand); }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; background: #fff; transition: var(--transition); font-family: inherit; }
.form-control:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 4px rgba(198, 33, 59, .08); }
.form-control:hover { border-color: var(--text-light); }
textarea.form-control { min-height: 100px; resize: vertical; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-help { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.form-error { color: var(--danger); font-size: 12px; margin-top: 4px; }
.csrf-field { display: none; }

/* ============= BREADCRUMB ============= */
.breadcrumb { padding: 18px 0; font-size: 13px; color: var(--text-muted); display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--border); }

/* ============= SHOP LAYOUT ============= */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 30px 0 60px; }
.shop-filters { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; position: sticky; top: 130px; max-height: calc(100vh - 150px); overflow-y: auto; height: fit-content; }
.shop-filters h3 { font-size: 16px; margin-bottom: 14px; }
.filter-group { border-bottom: 1px solid var(--border-light); padding-bottom: 16px; margin-bottom: 16px; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-group h4 { font-size: 12px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; color: var(--text-muted); }
.filter-list li { margin-bottom: 6px; }
.filter-list label { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; padding: 4px 0; transition: var(--transition); }
.filter-list label:hover { color: var(--brand); }
.filter-list input[type="checkbox"], .filter-list input[type="radio"] { accent-color: var(--brand); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-light); margin-bottom: 16px; }
.shop-toolbar select { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; cursor: pointer; }
.filter-toggle-mobile { display: none; }

/* ============= PRODUCT DETAIL ============= */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 30px 0 60px; }
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-main-img { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-cream); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; color: var(--brand); font-family: var(--font-heading); font-weight: 700; font-size: 24px; }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-thumbs img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; border: 2px solid transparent; cursor: pointer; }
.product-thumbs img.active { border-color: var(--brand); }
.product-info h1 { font-size: 28px; margin-bottom: 8px; }
.product-info .sku { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.product-info .price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.product-info .price-row .price-sale { font-size: 28px; font-weight: 700; }
.product-info .short-desc { color: var(--text-muted); margin-bottom: 20px; }
.product-info .specs { background: var(--bg-cream); padding: 14px; border-radius: var(--radius); margin-bottom: 16px; }
.product-info .specs dl { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 13px; }
.product-info .specs dt { color: var(--text-muted); }
.product-info .specs dd { font-weight: 600; }
.variation-selector { margin-bottom: 16px; }
.variation-selector h4 { font-size: 13px; font-family: var(--font-body); margin-bottom: 8px; }
.variation-options { display: flex; gap: 6px; flex-wrap: wrap; }
.variation-options label { border: 1px solid var(--border); padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13px; cursor: pointer; transition: var(--transition); }
.variation-options input { display: none; }
.variation-options input:checked + label, .variation-options label.active { border-color: var(--brand); background: var(--brand); color: #fff; }
.qty-selector { display: flex; align-items: center; gap: 8px; margin: 12px 0 18px; }
.qty-selector button { width: 36px; height: 36px; border: 1px solid var(--border); background: #fff; font-size: 16px; font-weight: 600; cursor: pointer; border-radius: var(--radius-sm); }
.qty-selector button:hover { border-color: var(--brand); color: var(--brand); }
.qty-selector input { width: 56px; text-align: center; padding: 8px; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.product-action-row { display: flex; gap: 8px; flex-wrap: wrap; }
.product-meta { border-top: 1px solid var(--border-light); padding-top: 14px; margin-top: 16px; font-size: 13px; }
.product-meta div { display: flex; gap: 8px; margin-bottom: 4px; }
.product-meta strong { min-width: 100px; color: var(--text-muted); }
.tab-section { margin-top: 40px; }
.tab-list { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.tab-list button { padding: 12px 20px; background: none; border: none; font-size: 14px; font-weight: 600; cursor: pointer; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--transition); }
.tab-list button:hover, .tab-list button.active { color: var(--brand); border-bottom-color: var(--brand); }
.tab-content { display: none; line-height: 1.7; }
.tab-content.active { display: block; }

/* ============= CART PAGE ============= */
.cart-page { padding: 30px 0 60px; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; }
.cart-items-list { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.cart-row { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 16px; padding: 16px; border-bottom: 1px solid var(--border-light); align-items: center; }
.cart-row:last-child { border-bottom: none; }
.cart-row img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.cart-row .item-info h4 { font-size: 14px; font-family: var(--font-body); }
.cart-row .item-info p { font-size: 12px; color: var(--text-muted); }
.cart-summary-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 130px; }
.cart-summary-card h3 { font-size: 18px; margin-bottom: 16px; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.cart-summary-row.total { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 8px; font-weight: 700; font-size: 16px; }
.coupon-form { display: flex; gap: 6px; margin: 12px 0; }
.coupon-form input { flex: 1; padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); }

/* ============= CHECKOUT ============= */
.checkout-page { padding: 30px 0 60px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; }
.checkout-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.checkout-section h3 { font-size: 18px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.checkout-section h3 .step-num { width: 28px; height: 28px; background: var(--brand); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-family: var(--font-body); }
.payment-methods label { display: block; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; cursor: pointer; display: flex; gap: 10px; align-items: center; }
.payment-methods input[type="radio"] { display: inline-block; accent-color: var(--brand); }
.payment-methods label.active { border-color: var(--brand); background: var(--bg-cream); }

/* ============= ACCOUNT ============= */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 30px 0 60px; }
.account-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.account-sidebar .user-info { padding: 12px; border-bottom: 1px solid var(--border-light); margin-bottom: 8px; }
.account-sidebar .user-info h4 { font-size: 14px; font-family: var(--font-body); }
.account-sidebar .user-info p { font-size: 12px; color: var(--text-muted); }
.account-sidebar nav a { display: block; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text); transition: var(--transition); }
.account-sidebar nav a:hover, .account-sidebar nav a.active { background: var(--bg-cream); color: var(--brand); }
.account-content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.account-content h1, .account-content h2, .account-content h3 { margin-bottom: 16px; }
.account-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.stat-card { background: var(--bg-cream); padding: 16px; border-radius: var(--radius); text-align: center; }
.stat-card .num { font-size: 26px; font-weight: 700; color: var(--brand); font-family: var(--font-heading); }
.stat-card .label { font-size: 12px; color: var(--text-muted); }

/* ============= TABLES ============= */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); padding: 10px 12px; border-bottom: 1px solid var(--border); font-weight: 600; }
.data-table td { padding: 12px; border-bottom: 1px solid var(--border-light); font-size: 14px; vertical-align: middle; }
.data-table tr:hover td { background: var(--bg-cream); }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; text-transform: capitalize; }
.status-pending, .status-pending_payment { background: #fef3c7; color: #92400e; }
.status-confirmed, .status-paid, .status-processing, .status-delivered { background: #dcfce7; color: #166534; }
.status-shipped, .status-out_for_delivery, .status-active, .status-approved { background: #dbeafe; color: #1e40af; }
.status-cancelled, .status-failed, .status-rejected { background: #fee2e2; color: #991b1b; }
.status-refunded, .status-completed, .status-new { background: #e0e7ff; color: #3730a3; }

/* ============= EMPTY STATE ============= */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state .icon { font-size: 56px; color: var(--border); margin-bottom: 16px; }
.empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }

/* ============= PAGINATION ============= */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 30px; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; background: #fff; transition: var(--transition); }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination .active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ============= ALERTS ============= */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 13px; border: 1px solid; }
.alert-info { background: #eff6ff; border-color: #bfdbfe; color: var(--info); }
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: var(--success); }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: var(--warning); }
.alert-danger { background: #fef2f2; border-color: #fecaca; color: var(--danger); }

/* ============= SKELETON LOADER ============= */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
.skeleton.product-card { height: 320px; }


/* ============= DOWNLOAD APP BUTTON (HIGHLIGHTED) ============= */
.download-app-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff; border: none;
    padding: 10px 22px; border-radius: 999px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    font-family: var(--font-body);
    box-shadow: 0 4px 14px rgba(198,33,59,.4);
    position: relative; overflow: hidden;
}
.download-app-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(198,33,59,.5);
}
.download-app-btn:active { transform: translateY(0) scale(1); }
.download-app-btn svg { transition: transform .25s; }
.download-app-btn:hover svg { transform: translateY(2px); }
/* Pulse animation to draw attention */
.download-app-btn::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 999px; border: 2px solid var(--brand);
    animation: btn-pulse 2s ease-out infinite;
}
@keyframes btn-pulse {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.3); }
}
@media (max-width: 430px) {
    .download-app-btn { padding: 8px 14px; font-size: 12px; }
    .download-app-btn::before { animation: none; }
}
/* ============= RESPONSIVE ============= *//* ============= ROOT CAUSE FIXES FOR MOBILE OVERFLOW ============= *//* Fix 1: Remove overflow-x:hidden from body — fix root cause instead */body { overflow-x: clip; }/* Fix 2: All images, containers, and media must not exceed viewport */img { max-width: 100%; height: auto; }video, iframe, embed { max-width: 100%; }.container { max-width: 100%; width: 100%; padding-left: 16px; padding-right: 16px; }* { box-sizing: border-box; }/* Fix 3: Hero decorative circles — hide on mobile to prevent overflow */@media (max-width: 768px) {    .hero::before, .hero::after { display: none; }    .promo-banner::before, .promo-banner::after { display: none; }    .newsletter-section::before { display: none; }}/* Fix 4: Toast — use max-width instead of min-width */.toast { min-width: unset; max-width: calc(100vw - 48px); width: 100%; }.toast-host { right: 16px; left: 16px; max-width: none; }/* Fix 5: Data tables — horizontal scroll INSIDE table container, not page */.table-wrap, .table-card { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }.data-table { min-width: 500px; }/* Fix 6: Product meta and footer contact — no fixed min-widths on mobile */@media (max-width: 768px) {    .product-meta strong { min-width: auto; display: inline; }    .footer-contact strong { min-width: auto; display: inline; }}/* Fix 7: Cart row — responsive grid */@media (max-width: 768px) {    .cart-row { grid-template-columns: 60px 1fr; gap: 10px; padding: 12px; }    .cart-row img { width: 60px; height: 60px; }    .cart-row .item-price { grid-column: 2; text-align: right; font-weight: 600; }    .cart-summary-card { position: static; padding: 16px; }    .cart-layout { gap: 16px; }}/* Fix 8: Account sidebar → off-canvas drawer on mobile */@media (max-width: 768px) {    .account-layout { grid-template-columns: 1fr; gap: 0; position: relative; }    .account-sidebar {        position: fixed; left: -300px; top: 0; bottom: 0;        width: 280px; max-width: 85vw; z-index: 300;        background: #fff; border-right: 1px solid var(--border);        padding: 20px 16px; overflow-y: auto;        transition: left 0.3s cubic-bezier(.4,0,.2,1);        box-shadow: var(--shadow-lg);    }    .account-sidebar.show { left: 0; }    .account-sidebar-backdrop {        display: none; position: fixed; inset: 0;        background: rgba(0,0,0,.4); z-index: 299;    }    .account-sidebar-backdrop.show { display: block; }    .account-sidebar-close {        display: flex; position: absolute; top: 12px; right: 12px;        width: 36px; height: 36px; border-radius: 50%;        background: var(--bg-cream); border: none; align-items: center;        justify-content: center; cursor: pointer; color: var(--text);    }    .account-content { padding: 16px; }    .account-trigger {        display: flex; align-items: center; gap: 8px;        padding: 10px 16px; background: var(--brand); color: #fff;        border: none; border-radius: var(--radius-sm); font-size: 14px;        font-weight: 600; cursor: pointer; margin-bottom: 16px;        font-family: var(--font-body);    }}@media (min-width: 769px) {    .account-sidebar-close, .account-sidebar-backdrop, .account-trigger { display: none; }}/* ============= STANDARD BREAKPOINTS ============= */@media (max-width: 1024px) {    .product-grid, .category-grid { grid-template-columns: repeat(3, 1fr); }    .hero h1 { font-size: 44px; }    .hero-grid { gap: 40px; }    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }    .why-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }    .stat-grid { grid-template-columns: repeat(2, 1fr); }    .two-col { grid-template-columns: 1fr; }}@media (max-width: 768px) {    .container { padding: 0 16px; }    .hamburger { display: inline-flex; }    .search-bar { display: none; }    .header-inner { padding: 12px 16px; gap: 8px; flex-wrap: nowrap; justify-content: space-between; }    .brand-text { font-size: 20px; margin: 0 4px; }    .icon-link { padding: 8px 10px; min-width: 40px; justify-content: center; }    .icon-link .icon-label { display: none; }    .nav-list { display: none; }    .hero { padding: 30px 0; }    .hero-grid { grid-template-columns: 1fr; gap: 24px; }    .hero h1 { font-size: 30px; }    .hero p { font-size: 15px; max-width: 100%; }    .hero-image { order: -1; min-height: 240px; }    .hero-badge { bottom: 16px; left: 16px; padding: 10px 16px; }    .hero-badge .num { font-size: 22px; }    .section { padding: 40px 0; }    .section-head { margin-bottom: 30px; }    .section-head h2 { font-size: 26px; }    .section-head p { font-size: 14px; max-width: 100%; }    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }    .trust-item { gap: 10px; }    .trust-item-icon { width: 40px; height: 40px; }    .trust-item h4 { font-size: 13px; }    .trust-item p { font-size: 11px; }    .product-grid, .category-grid, .testimonial-grid, .why-grid,    .custom-quote-grid, .cart-layout, .checkout-layout,    .product-detail-grid, .shop-layout { grid-template-columns: 1fr; }    .product-grid, .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }    .promo-banner { padding: 50px 0; }    .promo-banner h2 { font-size: 26px; }    .promo-banner p { font-size: 14px; max-width: 100%; }    .form-grid { grid-template-columns: 1fr; }    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }    .mobile-bottom-nav { display: flex; }    body { padding-bottom: 64px; }    .whatsapp-float { bottom: 76px; width: 52px; height: 52px; }    .product-info h1 { font-size: 20px; }    .data-table { font-size: 12px; }    .data-table th, .data-table td { padding: 8px 6px; }    .account-stats { grid-template-columns: repeat(2, 1fr); }    .shop-filters { position: fixed; left: -100%; top: 0; bottom: 0; max-height: 100vh; height: 100vh; width: 90%; max-width: 340px; z-index: 200; transition: left .25s; border-radius: 0; padding-top: 60px; overflow-x: hidden; }    .shop-filters.show { left: 0; }    .filter-toggle-mobile { display: inline-flex; }    .checkout-section { padding: 16px; margin-bottom: 16px; }    .product-action-row { flex-wrap: wrap; }    .product-action-row .btn { flex: 1; min-width: 120px; }    .cart-drawer-panel { width: 100%; max-width: 100%; }    .newsletter-form { flex-direction: column; max-width: 100%; }    .newsletter-form input { width: 100%; }    .preview-banner { font-size: 10px; padding: 6px 10px; }    .variation-row { grid-template-columns: 1fr 1fr; }    .download-app-btn { font-size: 11px; padding: 6px 12px; }}@media (max-width: 430px) {    .container { padding: 0 12px; }    .hero h1 { font-size: 26px; }    .hero p { font-size: 14px; }    .section-head h2 { font-size: 22px; }    .product-card-body { padding: 10px; }    .product-name { font-size: 13px; }    .product-name a { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }    .price-sale { font-size: 15px; }    .btn-sm { font-size: 11px; padding: 7px 10px; }    .btn { padding: 10px 14px; font-size: 12px; }    .footer-grid { grid-template-columns: 1fr; gap: 20px; }    .stat-card .value { font-size: 20px; }    .stat-card { padding: 14px; }    .promo-banner h2 { font-size: 22px; }    .hero-buttons { flex-direction: column; width: 100%; }    .hero-buttons .btn { width: 100%; }    .product-actions { gap: 6px; }    .cart-row { grid-template-columns: 50px 1fr; }    .cart-row img { width: 50px; height: 50px; }    .account-stats { grid-template-columns: 1fr; }    .icon-link { padding: 6px 8px; }    .brand-text { font-size: 18px; }    .download-app-btn span { display: none; }    .download-app-btn { padding: 6px 10px; }    .download-app-btn svg { width: 16px; height: 16px; }}@media (max-width: 360px) {    .hero h1 { font-size: 22px; }    .section-head h2 { font-size: 20px; }    .product-grid { grid-template-columns: 1fr; }    .category-grid { grid-template-columns: 1fr; }    .trust-grid { grid-template-columns: 1fr; }    .btn-sm { font-size: 10px; padding: 6px 8px; }}@media (max-width: 320px) {    .hero h1 { font-size: 20px; }    .hero p { font-size: 13px; }    .container { padding: 0 10px; }    .brand-text { font-size: 16px; }}
/* ============= CONTACT GRID ============= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }

