/* ============================================================
   GC WERKZ — VERSION 3 (Quotation-Compliant)
   WarelyEcom v1.3 Design Reference
   ============================================================ */

:root {
  --primary: #E85D04;
  --primary-dark: #C44D00;
  --primary-light: #FF7A2F;
  --secondary: #0F0F1A;
  --secondary-light: #1A1A2E;
  --accent: #FFB703;
  --success: #10B981;
  --whatsapp: #25D366;
  --text: #1A1A2E;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --bg: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-warm: #FFF8F4;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font); }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(32px,5vw,58px); }
h2 { font-size: clamp(24px,3.5vw,40px); }
h3 { font-size: clamp(18px,2.5vw,24px); }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 17px; max-width: 640px; margin: 0 auto; line-height: 1.8; }
.section-header.left { text-align: left; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-label { display: inline-block; background: rgba(232,93,4,0.1); color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; }
.section-label.light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; border: 2px solid transparent; transition: var(--transition); white-space: nowrap; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,4,0.35); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-dark:hover { background: #2a2a4a; transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-accent { background: var(--accent); color: var(--secondary); border-color: var(--accent); font-weight: 800; }
.btn-accent:hover { background: #E5A500; transform: translateY(-2px); }

/* ─── NAVBAR ─── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: var(--transition); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 18px; }
.logo-text { font-weight: 900; font-size: 20px; color: var(--text); }
.logo-text span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text-light); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(232,93,4,0.08); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-size: 14px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 6px; }
.nav-phone:hover { color: var(--primary); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 20px 24px; z-index: 999; box-shadow: var(--shadow-lg); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border-light); }
.mobile-menu a:last-child { border-bottom: none; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { background: linear-gradient(135deg, var(--secondary) 0%, #1a1a3e 100%); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('images/hero-banner.jpg') center/cover no-repeat; opacity: 0.12; }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero-content h1 { color: #fff; margin-bottom: 16px; }
.page-hero-content h1 span { color: var(--primary-light); }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 32px; line-height: 1.8; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--primary-light); }
.page-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── HERO (homepage) ─── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--secondary); padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,26,0.92) 0%, rgba(15,15,26,0.6) 60%, rgba(232,93,4,0.15) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 60px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,93,4,0.2); border: 1px solid rgba(232,93,4,0.4); color: var(--primary-light); font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 50px; margin-bottom: 24px; }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content h1 span { color: var(--primary-light); }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 36px; line-height: 1.8; max-width: 600px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; }
.trust-icon { font-size: 18px; }

/* ─── PROMO BANNER ─── */
.promo-banner { background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%); padding: 18px 0; }
.promo-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.promo-text { color: #fff; font-size: 15px; font-weight: 700; }
.promo-tag { background: rgba(255,255,255,0.25); color: #fff; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 50px; letter-spacing: 1px; }
.promo-cta { background: #fff; color: var(--primary); font-size: 13px; font-weight: 800; padding: 8px 18px; border-radius: 8px; transition: var(--transition); }
.promo-cta:hover { background: var(--secondary); color: #fff; }

/* ─── STATS ─── */
.stats-bar { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 32px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 16px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { display: block; font-size: 36px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 600; }

/* ─── SERVICE CARDS ─── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 18px; margin-bottom: 8px; }
.service-card-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.service-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.price-from { font-size: 12px; color: var(--text-muted); }
.price-amount { font-size: 24px; font-weight: 900; color: var(--primary); }
.price-unit { font-size: 13px; color: var(--text-muted); }

/* ─── PRODUCT / SHOP CARDS ─── */
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: var(--transition); position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 50px; }
.badge-popular { background: var(--primary); color: #fff; }
.badge-sale { background: var(--accent); color: var(--secondary); }
.badge-new { background: var(--success); color: #fff; }
.badge-limited { background: #EF4444; color: #fff; }
.product-img { height: 180px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 20px; }
.product-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.product-body p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; line-height: 1.6; }
.product-pricing { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.product-price { font-size: 22px; font-weight: 900; color: var(--primary); }
.product-original { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.product-discount { font-size: 12px; font-weight: 700; color: var(--success); background: rgba(16,185,129,0.1); padding: 2px 8px; border-radius: 50px; }
.stock-indicator { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); margin-bottom: 14px; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.stock-dot.low { background: var(--accent); }
.stock-dot.out { background: #EF4444; }
.add-to-cart { width: 100%; padding: 11px; border-radius: 8px; background: var(--primary); color: #fff; font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.add-to-cart:hover { background: var(--primary-dark); transform: translateY(-1px); }
.add-to-cart:disabled { background: var(--border); color: var(--text-muted); cursor: not-allowed; transform: none; }

/* ─── BOOKING / SCHEDULE ─── */
.schedule-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 8px; margin-bottom: 32px; }
.day-col { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.day-header { background: var(--secondary); color: #fff; text-align: center; padding: 10px 6px; font-size: 12px; font-weight: 700; }
.day-slots { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.slot { padding: 8px 6px; border-radius: 8px; font-size: 11px; font-weight: 600; text-align: center; cursor: pointer; transition: var(--transition); border: 1.5px solid transparent; }
.slot.available { background: rgba(16,185,129,0.1); color: #059669; border-color: rgba(16,185,129,0.3); }
.slot.available:hover { background: var(--success); color: #fff; border-color: var(--success); }
.slot.full { background: rgba(239,68,68,0.08); color: #EF4444; cursor: not-allowed; border-color: rgba(239,68,68,0.2); }
.slot.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.slot-time { display: block; font-size: 10px; margin-bottom: 2px; opacity: 0.8; }

/* ─── LOYALTY / POINTS ─── */
.loyalty-card { background: linear-gradient(135deg, var(--secondary) 0%, #2a1a4e 100%); border-radius: var(--radius-xl); padding: 40px; color: #fff; position: relative; overflow: hidden; }
.loyalty-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(232,93,4,0.2); }
.loyalty-card::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,183,3,0.1); }
.loyalty-points { font-size: 64px; font-weight: 900; color: var(--accent); line-height: 1; margin: 16px 0; }
.loyalty-tier { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,183,3,0.2); border: 1px solid rgba(255,183,3,0.4); color: var(--accent); font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 50px; }
.tier-progress { background: rgba(255,255,255,0.15); border-radius: 50px; height: 8px; margin: 20px 0 8px; overflow: hidden; }
.tier-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--primary-light)); border-radius: 50px; transition: width 1s ease; }
.promo-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.promo-card { border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border); transition: var(--transition); position: relative; }
.promo-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.promo-card-header { padding: 20px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #fff; }
.promo-card-header h4 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.promo-card-header p { font-size: 13px; opacity: 0.85; }
.promo-card-body { padding: 20px; background: #fff; }
.promo-code-box { background: var(--bg-light); border: 2px dashed var(--border); border-radius: 8px; padding: 12px; text-align: center; margin-bottom: 14px; }
.promo-code { font-size: 18px; font-weight: 900; color: var(--primary); letter-spacing: 3px; }
.promo-expiry { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ─── CART / CHECKOUT ─── */
.cart-icon { position: fixed; top: 20px; right: 80px; z-index: 1001; background: var(--primary); color: #fff; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); cursor: pointer; transition: var(--transition); }
.cart-icon:hover { background: var(--primary-dark); transform: scale(1.1); }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--accent); color: var(--secondary); font-size: 11px; font-weight: 900; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 420px; height: 100vh; background: #fff; z-index: 2000; box-shadow: var(--shadow-xl); transition: right 0.35s ease; overflow-y: auto; }
.cart-drawer.open { right: 0; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; display: none; }
.cart-overlay.open { display: block; }
.cart-header { padding: 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: #fff; z-index: 1; }
.cart-header h3 { font-size: 18px; font-weight: 800; }
.cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-light); padding: 4px; }
.cart-items { padding: 16px 24px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.cart-item-img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cart-item-price { font-size: 15px; font-weight: 800; color: var(--primary); }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--border); background: var(--bg-light); cursor: pointer; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 24px; text-align: center; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); position: sticky; bottom: 0; background: #fff; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span { font-size: 16px; font-weight: 700; }
.cart-total strong { font-size: 22px; font-weight: 900; color: var(--primary); }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: 15px; color: var(--text); background: var(--bg); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232,93,4,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-wrap { background: #fff; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 64px; margin-bottom: 16px; }
.form-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.form-success p { color: var(--text-light); margin-bottom: 24px; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ─── FOOTER ─── */
.footer { background: var(--secondary); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.social-btn:hover { background: var(--primary); }
.footer-col h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 998; }
.wa-float-btn { display: flex; align-items: center; gap: 10px; background: var(--whatsapp); color: #fff; padding: 14px 20px; border-radius: 50px; font-size: 14px; font-weight: 700; box-shadow: 0 8px 32px rgba(37,211,102,0.45); transition: var(--transition); animation: waPulse 2.5s infinite; }
.wa-float-btn:hover { background: #1DA851; transform: scale(1.05); animation: none; }
.wa-float-btn svg { flex-shrink: 0; }
@keyframes waPulse { 0%,100%{box-shadow:0 8px 32px rgba(37,211,102,0.45)} 50%{box-shadow:0 8px 48px rgba(37,211,102,0.7)} }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-light { background: var(--bg-light); }
.bg-warm { background: var(--bg-warm); }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.tag { display: inline-block; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.tag-orange { background: rgba(232,93,4,0.1); color: var(--primary); }
.tag-green { background: rgba(16,185,129,0.1); color: var(--success); }
.tag-yellow { background: rgba(255,183,3,0.15); color: #B45309; }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .schedule-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .promo-cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .schedule-grid { grid-template-columns: repeat(3,1fr); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 40px 0; }
  .form-row { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; right: -100%; }
  .wa-float-btn span { display: none; }
  .wa-float-btn { padding: 14px; border-radius: 50%; }
  .page-hero { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .page-hero-ctas { flex-direction: column; }
}
