/* ============================================================
   مبشور الطائف - الستايل الرئيسي
   ============================================================ */

/* ===== Variables ===== */
:root {
  --gold: #f0a836;
  --gold-2: #d68a1f;
  --gold-soft: #f5c875;
  --orange: #e0521a;
  --orange-2: #c14310;
  --cream: #fbf6ed;
  --beige: #f7eed8;
  --ink: #1a120a;
  --ink-2: #3d2d1c;
  --bg: #faf5ec;
  --card: #ffffff;
  --border: rgba(0,0,0,.08);
  --muted: #6d5a45;
  --green-wa: #25d366;
  --red: #d32f2f;
  --shadow-sm: 0 2px 8px rgba(26,18,10,.06);
  --shadow-md: 0 6px 24px rgba(26,18,10,.10);
  --shadow-lg: 0 12px 40px rgba(26,18,10,.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1280px;
}

/* Dark Theme */
.theme-dark {
  --bg: #0a0805;
  --card: #14100b;
  --cream: #1a140e;
  --beige: #1f1810;
  --ink: #f5e9d3;
  --ink-2: #c8b291;
  --muted: #9c8569;
  --border: rgba(240,168,54,.18);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --shadow-md: 0 6px 24px rgba(0,0,0,.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.6);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== Layout ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; } .mt-60 { margin-top: 60px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--card) 92%, transparent);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo img {
  width: 50px; height: 50px; object-fit: contain;
  border-radius: 12px; background: var(--beige); padding: 6px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-weight: 700; font-size: 18px; color: var(--ink); }
.logo-tag { font-size: 12px; color: var(--muted); }

.main-nav { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 500; font-size: 15px;
  color: var(--ink-2);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--gold-2); background: var(--beige); }
.nav-link.active { color: var(--gold-2); background: linear-gradient(135deg, var(--beige), var(--cream)); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: var(--beige);
  display: grid; place-items: center;
  color: var(--ink); transition: all var(--transition);
}
.cart-btn:hover { background: var(--gold); color: white; transform: translateY(-2px); }
.cart-btn i { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: -4px; left: -4px;
  background: var(--orange); color: white;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  border: 2px solid var(--card);
}

.theme-toggle {
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: var(--beige);
  display: grid; place-items: center;
  color: var(--ink); transition: all var(--transition);
  position: relative;
}
.theme-toggle:hover { background: var(--gold); color: white; }
.theme-toggle i { width: 22px; height: 22px; position: absolute; transition: all var(--transition); }
.theme-light .theme-toggle .icon-sun { opacity: 0; transform: rotate(180deg); }
.theme-dark .theme-toggle .icon-moon { opacity: 0; transform: rotate(-180deg); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: var(--beige);
  place-items: center;
  color: var(--ink);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn i { width: 18px; height: 18px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white;
  box-shadow: 0 4px 14px rgba(240,168,54,.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(240,168,54,.5); }
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  box-shadow: 0 4px 14px rgba(224,82,26,.35);
}
.btn-orange:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(224,82,26,.5); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: white; }
.btn-whatsapp {
  background: var(--green-wa);
  color: white;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); animation: pulseGreen 1s infinite; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,168,54,.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-slider { position: relative; min-height: 500px; }
.hero-slide { display: none; opacity: 0; transition: opacity 0.6s ease; }
.hero-slide.active { display: block; opacity: 1; animation: fadeIn 0.8s ease; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
  animation: pulseGold 2s infinite;
}
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--ink-2);
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 12px 20px;
  background: var(--card);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-price strong { font-size: 22px; color: var(--orange); }

.hero-features {
  display: flex; gap: 20px; margin-bottom: 32px;
  flex-wrap: wrap;
}
.feat {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--card);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.feat i { width: 18px; height: 18px; color: var(--gold-2); }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
  display: grid; place-items: center;
}
.hero-image-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  border-radius: 50%;
  animation: spinSlow 30s linear infinite;
  opacity: .4;
}
.hero-image {
  width: 100%; max-width: 500px; height: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.2));
  animation: floatScroll 4s ease-in-out infinite;
}
.hero-discount-badge {
  position: absolute;
  top: 5%; left: 5%;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: pulseGold 2s infinite;
  z-index: 2;
}
.hero-discount-badge .d-label { font-size: 12px; }
.hero-discount-badge .d-value { font-size: 28px; font-weight: 800; }
.hero-discount-badge .d-sub { font-size: 11px; }

.hero-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 30px;
}
.hero-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); transition: all var(--transition);
}
.hero-dots .dot.active { width: 30px; background: var(--gold); border-radius: var(--radius-pill); }

/* ===== Categories Bar ===== */
.categories-section { padding: 30px 0; }
.categories-bar {
  display: flex; gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}
.categories-bar::-webkit-scrollbar { height: 4px; }
.categories-bar::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.cat-pill {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: var(--card);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  min-width: 100px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.cat-pill:hover, .cat-pill.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cat-icon { width: 32px; height: 32px; }
.cat-icon i { width: 100%; height: 100%; }
.cat-name { font-size: 14px; font-weight: 600; }

/* ===== Section Heads ===== */
.section-head {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 50px;
}
.section-divider { color: var(--gold); font-size: 24px; }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; color: var(--ink);
}
.section-subtitle {
  font-size: 22px; font-weight: 600;
  margin: 40px 0 20px;
  color: var(--ink);
}
.section-title-sm {
  font-size: 24px; font-weight: 700;
  margin-bottom: 24px; color: var(--ink);
}

/* ===== Filter Pills ===== */
.filter-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-pill {
  padding: 10px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-weight: 500; font-size: 14px;
  color: var(--ink-2);
  transition: all var(--transition);
}
.filter-pill:hover { border-color: var(--gold); color: var(--gold-2); }
.filter-pill.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white; border-color: transparent;
}

/* ===== Menu Section ===== */
.menu-section, .menu-products { padding: 60px 0; }

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.product-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  z-index: 2;
}
.badge-red { background: var(--red); color: white; }
.badge-green { background: #2e7d32; color: white; }
.badge-gold { background: var(--gold); color: white; }

.product-image {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--beige);
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image img { transform: scale(1.08); }

.product-body {
  padding: 18px;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-name {
  font-size: 17px; font-weight: 700;
  margin-bottom: 6px;
}
.product-name a { color: var(--ink); transition: color var(--transition); }
.product-name a:hover { color: var(--gold-2); }
.product-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-meta {
  display: flex; gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.meta-item {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px;
  background: var(--beige);
  border-radius: var(--radius-pill);
}
.meta-item i { width: 13px; height: 13px; color: var(--orange); }

.product-rating {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 12px;
}
.stars {
  --rating: 0;
  --stars: 5;
  --percent: calc(var(--rating) / var(--stars) * 100%);
  display: inline-block;
  font-size: 14px;
  font-family: Times, serif;
  line-height: 1;
}
.stars::before {
  content: '★★★★★';
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--gold) var(--percent), #ddd var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rating-count { font-size: 12px; color: var(--muted); }

.product-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 12px;
}
.product-price { display: flex; flex-direction: column; }
.price-old {
  font-size: 13px; color: var(--muted);
  text-decoration: line-through;
}
.price-new {
  font-size: 18px; font-weight: 800;
  color: var(--orange);
  display: flex; align-items: baseline; gap: 4px;
}
.price-new em { font-size: 12px; font-style: normal; color: var(--muted); font-weight: 500; }

.product-actions { display: flex; gap: 6px; }
.btn-cart {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.btn-cart i { width: 16px; height: 16px; }
.btn-cart:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(240,168,54,.4); }
.btn-cart.added { background: #2e7d32; animation: microBounce 0.4s; }

.btn-whatsapp-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: var(--green-wa);
  color: white;
  border-radius: 50%;
  transition: all var(--transition);
}
.btn-whatsapp-icon:hover { transform: scale(1.1); }
.btn-whatsapp-icon i { width: 18px; height: 18px; }

/* ===== Offers ===== */
.offers-section { padding: 60px 0; background: var(--cream); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.offer-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-image { position: relative; height: 200px; overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; }
.offer-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 6px 14px;
  background: var(--orange); color: white;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow-md);
}
.offer-body { padding: 20px; }
.offer-title { font-size: 19px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.offer-subtitle { font-size: 13px; color: var(--gold-2); font-weight: 600; margin-bottom: 8px; }
.offer-desc { font-size: 14px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.offer-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }

/* ===== Videos (Shorts 9:16) ===== */
.videos-section { padding: 60px 0; }
.videos-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--card);
  transition: all var(--transition);
  cursor: pointer;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-thumb {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--beige);
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.08); }
.video-play {
  position: absolute; inset: 0;
  margin: auto;
  width: 60px; height: 60px;
  background: rgba(255,255,255,.9);
  color: var(--orange);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all var(--transition);
}
.video-play i { width: 26px; height: 26px; margin-right: -3px; }
.video-card:hover .video-play {
  background: var(--orange); color: white;
  transform: scale(1.15);
}
.video-info { padding: 12px 14px; }
.video-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.video-info p { font-size: 12px; color: var(--muted); }

/* Shorts grid for reviews page */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.short-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.short-card:hover { transform: scale(1.03); }
.short-thumb {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--ink);
  overflow: hidden;
}
.short-thumb img { width: 100%; height: 100%; object-fit: cover; }
.short-play {
  position: absolute; inset: 0;
  margin: auto;
  width: 56px; height: 56px;
  background: rgba(255,255,255,.85);
  color: var(--orange);
  border-radius: 50%;
  display: grid; place-items: center;
}
.short-play i { width: 24px; height: 24px; }
.short-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  color: white;
}
.short-overlay h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.short-overlay p { font-size: 12px; opacity: .9; }

/* ===== Features ===== */
.features-section { padding: 60px 0; background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  display: flex; gap: 14px;
  padding: 22px;
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: white;
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.feature-icon i { width: 24px; height: 24px; }
.feature-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.feature-info p { font-size: 13px; color: var(--muted); }

/* ===== Contact / Branches ===== */
.contact-section { padding: 60px 0; }
.branches-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.branch-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-weight: 500; font-size: 14px;
  transition: all var(--transition);
}
.branch-tab i { width: 16px; height: 16px; }
.branch-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white;
}
.contact-grid { position: relative; }
.branch-content { display: none; }
.branch-content.active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  animation: fadeIn 0.4s ease;
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background: var(--beige);
  box-shadow: var(--shadow-md);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  display: grid; place-items: center;
}
.map-pin {
  text-align: center;
  padding: 30px;
}
.map-pin i { width: 48px; height: 48px; color: var(--orange); margin-bottom: 14px; }
.map-pin strong { display: block; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.map-pin span { color: var(--muted); }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-item {
  display: flex; gap: 14px;
  padding: 18px;
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.info-icon {
  width: 44px; height: 44px;
  background: var(--beige);
  color: var(--gold-2);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-icon i { width: 22px; height: 22px; }
.info-item h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--gold-2); }
.info-item p { font-size: 14px; color: var(--ink-2); }
.info-item a { color: inherit; transition: color var(--transition); }
.info-item a:hover { color: var(--gold-2); }
.info-socials { display: flex; gap: 8px; margin-top: 6px; }
.info-socials a {
  width: 36px; height: 36px;
  background: var(--beige); color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all var(--transition);
}
.info-socials a:hover { background: var(--gold); color: white; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col {}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--cream);
}
.footer-logo img {
  width: 56px; height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  padding: 6px;
}
.footer-logo .logo-name { font-weight: 700; font-size: 18px; }
.footer-logo .logo-tag { font-size: 12px; opacity: .7; }
.footer-tagline { font-size: 14px; opacity: .8; margin-bottom: 16px; }
.footer-text { font-size: 14px; opacity: .8; margin-bottom: 14px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: white; transform: translateY(-3px); }
.footer-socials a i { width: 18px; height: 18px; }

.footer-title { font-size: 16px; font-weight: 700; margin-bottom: 18px; color: var(--gold); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; opacity: .8;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold); opacity: 1; padding-right: 6px; }

.newsletter-form { display: flex; gap: 8px; flex-direction: column; }
.newsletter-form input {
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  color: var(--cream);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(251,246,237,.5); }
.newsletter-form input:focus { outline: 2px solid var(--gold); }
.newsletter-form button { width: 100%; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; opacity: .7;
}
.payment-methods {
  display: flex; align-items: center; gap: 14px;
}
.payment-methods i { width: 24px; height: 24px; }

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
  position: fixed; bottom: 24px; left: 24px;
  width: 60px; height: 60px;
  background: var(--green-wa); color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  z-index: 99;
  animation: pulseGreen 2s infinite;
  transition: transform var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.15); }
.floating-whatsapp i { width: 28px; height: 28px; }

/* ===== Toast ===== */
.toast-container {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 200;
}
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-right: 4px solid var(--gold);
  font-size: 14px; font-weight: 500;
  animation: toastIn 0.3s ease;
  min-width: 280px;
}
.toast.success { border-color: #2e7d32; }
.toast.error { border-color: var(--red); }
.toast i { width: 20px; height: 20px; }
.toast.success i { color: #2e7d32; }
.toast.error i { color: var(--red); }

/* ===== Page Hero ===== */
.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  text-align: center;
}
.page-hero.small { padding: 40px 0 30px; }
.page-title { font-size: clamp(32px, 4vw, 44px); font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.page-subtitle { font-size: 16px; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ===== Menu Filters ===== */
.menu-filters { padding: 30px 0 20px; }
.filters-form {
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}
.search-box {
  flex: 1; min-width: 240px;
  position: relative;
}
.search-box i {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted);
}
.search-box input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--ink);
}
.search-box input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.filters-form select {
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--ink);
}

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state i { width: 80px; height: 80px; margin: 0 auto 20px; color: var(--gold); }
.empty-state h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.empty-state p { margin-bottom: 24px; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 20px 0;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold-2); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { width: 14px; height: 14px; }

/* ===== Product Detail ===== */
.product-page { padding-bottom: 60px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.product-gallery {}
.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--beige);
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-discount {
  position: absolute; top: 16px; right: 16px;
  padding: 8px 16px;
  background: var(--orange); color: white;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.gallery-thumbs {
  display: flex; gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
}
.gthumb {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  flex-shrink: 0;
  background: var(--beige);
  transition: all var(--transition);
}
.gthumb img { width: 100%; height: 100%; object-fit: cover; }
.gthumb.active, .gthumb:hover { border-color: var(--gold); }

.product-detail-info {}
.product-detail-name { font-size: 32px; font-weight: 800; margin: 14px 0 12px; color: var(--ink); }
.product-detail-desc { font-size: 16px; color: var(--ink-2); margin: 16px 0 24px; line-height: 1.7; }

.product-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.qi-item {
  display: flex; gap: 10px; align-items: center;
  padding: 14px;
  background: var(--beige);
  border-radius: var(--radius-md);
}
.qi-item i { width: 24px; height: 24px; color: var(--orange); flex-shrink: 0; }
.qi-item span { font-size: 12px; color: var(--muted); display: block; }
.qi-item strong { font-size: 14px; color: var(--ink); }

.product-detail-price {
  display: flex; align-items: baseline; gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.product-detail-price .price-old { font-size: 18px; }
.product-detail-price .price-new { font-size: 36px; }

.product-extras { margin-bottom: 24px; }
.product-extras h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.extra-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.extra-row:hover { border-color: var(--gold); }
.extra-row input { width: 18px; height: 18px; accent-color: var(--gold); }
.extra-name { flex: 1; font-size: 14px; }
.extra-price { font-size: 14px; color: var(--orange); font-weight: 600; }

.product-actions-bar {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 30px;
}
.qty-stepper {
  display: flex; align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.qty-btn {
  width: 44px; height: 48px;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  background: transparent;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--beige); }
.qty-stepper input {
  width: 44px;
  text-align: center;
  background: transparent;
  border: none;
  font-size: 16px; font-weight: 600;
  color: var(--ink);
}
.qty-stepper input::-webkit-inner-spin-button { display: none; }

.action-buttons { display: flex; gap: 10px; flex: 1; flex-wrap: wrap; }
.action-buttons .btn { flex: 1; min-width: 180px; }

.product-description {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.product-description h4 { margin-bottom: 12px; font-size: 17px; font-weight: 700; }

.related-products { margin-top: 60px; }

/* ===== Cart ===== */
.cart-section { padding: 40px 0 60px; }
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.cart-img {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--beige);
}
.cart-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cart-price { font-size: 13px; color: var(--muted); }
.cart-notes { font-size: 12px; color: var(--muted); margin-top: 4px; font-style: italic; }
.cart-qty {
  display: flex; align-items: center; gap: 6px;
  background: var(--beige);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.cart-qty .qty-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 14px;
  background: var(--card);
}
.cart-qty .qty-num { min-width: 24px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-total { font-size: 16px; font-weight: 700; color: var(--orange); white-space: nowrap; }
.cart-remove {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--beige);
  color: var(--red);
  border-radius: 50%;
  transition: all var(--transition);
}
.cart-remove:hover { background: var(--red); color: white; }
.cart-remove i { width: 18px; height: 18px; }

.cart-summary {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.sum-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.sum-row:last-of-type { border-bottom: none; }
.sum-row strong { font-weight: 700; }
.sum-total {
  font-size: 18px;
  margin: 16px 0;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: none !important;
}
.sum-total strong { color: var(--orange); font-size: 20px; }

.cart-summary .btn { margin-top: 12px; }

/* ===== Checkout ===== */
.checkout-section { padding: 40px 0 60px; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}
.checkout-form {
  background: var(--card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.checkout-form h3 {
  font-size: 18px; font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.checkout-form h3:not(:first-child) { margin-top: 24px; }

.form-row { margin-bottom: 16px; }
.form-row label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 8px; color: var(--ink-2);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--ink);
  transition: border var(--transition);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,168,54,.15);
}
.form-row textarea { resize: vertical; }

.radio-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.radio-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 10px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.radio-card input { display: none; }
.radio-card i { width: 24px; height: 24px; color: var(--muted); }
.radio-card span { font-size: 13px; font-weight: 600; }
.radio-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--cream);
}
.radio-card:has(input:checked) i { color: var(--orange); }

.checkout-summary {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 100px;
}
.checkout-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.summary-items { margin-bottom: 16px; max-height: 320px; overflow-y: auto; }
.sum-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sum-item img {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.si-info h5 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.si-info span { font-size: 11px; color: var(--muted); }

/* ===== About ===== */
.about-section { padding: 40px 0 60px; }
.about-content {
  max-width: 800px; margin: 0 auto;
  font-size: 16px; line-height: 1.8;
}
.about-content h2, .about-content h3 {
  margin: 30px 0 14px;
  color: var(--ink);
}
.about-content h2 { font-size: 26px; }
.about-content h3 { font-size: 20px; }
.about-content p { margin-bottom: 14px; color: var(--ink-2); }
.about-content ul { padding-right: 24px; margin: 14px 0; }
.about-content li { margin-bottom: 8px; }

.branches-list h2 { font-size: 28px; margin-bottom: 30px; text-align: center; }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.branch-card {
  position: relative;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.branch-card h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
}
.branch-card h3 i { width: 20px; height: 20px; color: var(--gold-2); }
.branch-card p {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-2);
  margin-bottom: 8px;
}
.branch-card p i { width: 16px; height: 16px; color: var(--gold-2); flex-shrink: 0; }
.branch-card .btn { margin-top: 14px; }
.branch-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 10px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
}

/* ===== Contact Page ===== */
.contact-page { padding: 40px 0 60px; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
}
.contact-form-wrap, .contact-branches {
  background: var(--card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3, .contact-branches h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink);
}
.branch-info-card {
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}
.branch-info-card:last-child { margin-bottom: 0; }
.branch-info-card h4 {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700;
  margin-bottom: 12px; color: var(--ink);
}
.badge-mini {
  padding: 2px 8px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
}
.branch-info-card p {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-2);
  margin-bottom: 6px;
}
.branch-info-card p i { width: 14px; height: 14px; color: var(--gold-2); }
.branch-info-card .btn { margin-top: 10px; }

/* ===== Reviews Page ===== */
.videos-page, .reviews-text-page { padding: 40px 0 60px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.review-stars { font-size: 16px; margin-bottom: 12px; }
.review-stars { --stars: 5; --percent: calc(var(--rating) / var(--stars) * 100%); }
.review-stars::before {
  content: '★★★★★';
  letter-spacing: 4px;
  background: linear-gradient(90deg, var(--gold) var(--percent), #ddd var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-text {
  font-size: 14px; color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.review-author img, .avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
}
.review-author h5 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.review-author span { font-size: 12px; color: var(--muted); }

/* ===== Video Modal ===== */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 20px;
}
.video-modal.active { display: grid; animation: fadeIn 0.3s ease; }
.video-modal-close {
  position: absolute; top: 20px; left: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
}
.video-modal-content {
  width: 100%; max-width: 400px;
}
.video-modal-frame {
  aspect-ratio: 9/16;
  background: black;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-modal-frame iframe, .video-modal-frame video {
  width: 100%; height: 100%; border: 0;
}

/* ===== Reveal Animation ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ===== Alerts ===== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-weight: 500;
}
.alert-success { background: #e8f5e9; color: #2e7d32; }
.alert-error { background: #ffebee; color: var(--red); }
.alert-warning { background: #fff8e1; color: #f57f17; }

/* ===== Keyframes ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 4px 14px rgba(240,168,54,.35); }
  50% { box-shadow: 0 6px 24px rgba(240,168,54,.6); }
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,.8); }
}
@keyframes microBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
@keyframes floatScroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
@keyframes popIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes flyToCart {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.3) translate(-200px, -200px); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-features, .hero-buttons { justify-content: center; }
  .hero-discount-badge { width: 90px; height: 90px; }
  .hero-discount-badge .d-value { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .cart-grid, .checkout-grid { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary { position: static; }
  .branch-content.active { grid-template-columns: 1fr; gap: 20px; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header-inner { gap: 8px; }
  .main-nav { display: none; position: fixed; top: 80px; right: 0; bottom: 0; left: 0;
    background: var(--card); flex-direction: column; padding: 30px; gap: 8px; z-index: 99;
    overflow-y: auto; }
  .main-nav.open { display: flex; animation: fadeSlideDown 0.3s ease; }
  .nav-link { width: 100%; padding: 14px; font-size: 16px; }
  .menu-toggle { display: grid; }
  .header-actions .btn { display: none; }
  .logo-text { display: none; }
  .hero { padding: 40px 0 60px; }
  .hero-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .cart-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas: "img info" "qty qty" "total remove";
    gap: 10px;
  }
  .cart-img { grid-area: img; width: 60px; height: 60px; }
  .cart-info { grid-area: info; }
  .cart-qty { grid-area: qty; }
  .cart-total { grid-area: total; }
  .cart-remove { grid-area: remove; justify-self: end; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .radio-group { grid-template-columns: 1fr; }
  .floating-whatsapp { bottom: 20px; left: 20px; width: 54px; height: 54px; }
  .floating-whatsapp i { width: 24px; height: 24px; }
  .toast-container { right: 16px; left: 16px; bottom: 90px; }
  .toast { min-width: auto; width: 100%; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .videos-slider { grid-template-columns: repeat(2, 1fr); }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-name { font-size: 24px; }
  .product-detail-price .price-new { font-size: 28px; }
  .hero-image { max-width: 320px; }
  .product-actions { flex-direction: column; gap: 8px; align-items: stretch; }
  .btn-cart { width: 100%; justify-content: center; }
  .btn-whatsapp-icon { width: 100%; border-radius: var(--radius-pill); }
}
