/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #D81B47;
  --primary-dark: #B1123A;
  --primary-light: #FCE8ED;
  --accent: #D4A373;
  --accent-dark: #B08968;
  --bg: #FFF8F0;
  --bg2: #F3E5D8;
  --text: #3E2723;
  --text-light: #6D5A54;
  --white: #FFFFFF;
  --border: #E7D8CC;
  --shadow: 0 4px 20px rgba(62,39,35,0.08);
  --shadow-lg: 0 10px 40px rgba(62,39,35,0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --wa: #25D366;
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed; inset: 0; background: #fffbf7; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  animation: loaderFadeOut 0.5s ease 2.2s forwards;
}
.loader-inner { text-align: center; }
.loader-name {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800;
  color: var(--primary); display: block;
  animation: fadeSlideUp 0.5s ease 0.5s both;
}
.loader-sub {
  font-size: 0.85rem; color: var(--text-light); letter-spacing: 2px;
  text-transform: uppercase; display: block; margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.5s ease 0.7s both;
}
.loader-bar {
  width: 200px; height: 3px; background: var(--border);
  border-radius: 3px; margin: 0 auto;
  animation: fadeSlideUp 0.4s ease 0.9s both;
}
.loader-fill {
  height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px; width: 0;
  animation: loaderProgress 1.5s ease 1s forwards;
}
@keyframes cakePop { from { transform: scale(0) rotate(-15deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes loaderProgress { from { width: 0; } to { width: 100%; } }
@keyframes loaderFadeOut { to { opacity: 0; pointer-events: none; visibility: hidden; } }

/* ===== CONTAINER ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem;
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 0.5rem; }
.section-title span { color: var(--primary); }
.section-sub { color: var(--text-light); font-size: 0.95rem; }
.section-header { margin-bottom: 1.5rem; }
.section-header.center { text-align: center; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px;
  background: var(--primary); color: #fff; border: none; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,80,42,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px;
  background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px;
  background: var(--wa); color: #fff; border: none; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.full-width { width: 100%; justify-content: center; }

/* ===== LOCATION POPUP ===== */
.location-popup-overlay {
  position: fixed; inset: 0; background: rgba(45,26,14,0.6); z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px);
}
.location-popup {
  background: #fff; border-radius: 20px; padding: 2rem; max-width: 480px; width: 100%;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-header { text-align: center; margin-bottom: 1.5rem; }
.popup-header h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text); }
.popup-header p { color: var(--text-light); font-size: 0.9rem; margin-top: 0.3rem; }
.btn-gps {
  width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none;
  border-radius: 12px; font-weight: 600; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s; margin-bottom: 1.2rem;
}
.btn-gps:hover { background: var(--primary-dark); }
.popup-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.popup-divider::before, .popup-divider::after { content:''; flex:1; height:1px; background:var(--border); }
.popup-divider span { font-size: 0.75rem; color: #999; font-weight: 600; letter-spacing: 1px; }
.branch-list { display: flex; flex-direction: column; gap: 0.6rem; }
.branch-option {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: all 0.2s;
}
.branch-option:hover { border-color: var(--primary); background: var(--primary-light); }
.branch-option > div { flex: 1; }
.branch-option strong { display: block; font-size: 0.95rem; color: var(--text); }
.branch-option span { font-size: 0.8rem; color: var(--text-light); }
.branch-option svg { color: #ccc; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 900; background: #fff;
  box-shadow: 0 2px 15px rgba(120,60,30,0.08); transition: all 0.3s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.header-left { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--primary); display: block; }
.logo-sub { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.5px; }
.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text); transition: all 0.2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-cta { background: var(--primary); color: #fff !important; border-radius: 50px; }
.nav-cta:hover { background: var(--primary-dark); }
.header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.location-selector {
  display: flex; align-items: center; gap: 6px; padding: 8px 14px;
  border: 1px solid var(--border); border-radius: 50px; cursor: pointer;
  font-size: 0.85rem; color: var(--text); position: relative; transition: all 0.2s; white-space: nowrap;
}
.location-selector:hover { border-color: var(--primary); }
.location-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg); display: none; overflow: hidden;
}
.location-dropdown.open { display: block; }
.loc-item { padding: 12px 16px; cursor: pointer; font-size: 0.9rem; transition: background 0.2s; }
.loc-item:hover { background: var(--primary-light); color: var(--primary); }
.search-btn, .cart-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: all 0.2s; position: relative;
}
.search-btn:hover, .cart-btn:hover { border-color: var(--primary); color: var(--primary); }
.cart-badge {
  position: absolute; top: -4px; right: -4px; background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== SEARCH BAR ===== */
.search-bar-container {
  background: #fff; border-top: 1px solid var(--border); padding: 12px 0;
  display: none; animation: slideDown 0.3s ease;
}
.search-bar-container.open { display: block; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.search-inner { display: flex; align-items: center; gap: 10px; border: 2px solid var(--primary); border-radius: 50px; padding: 8px 16px; }
.search-inner svg { color: var(--text-light); flex-shrink: 0; }
.search-inner input { flex: 1; border: none; outline: none; font-size: 0.95rem; background: transparent; }
.search-close { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--text-light); padding: 4px; }
.search-results { margin-top: 10px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.search-result-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: #fff; cursor: pointer; transition: background 0.2s; border-bottom: 1px solid var(--border);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--primary-light); }
.search-result-img { width: 45px; height: 45px; border-radius: 8px; object-fit: cover; }
.search-result-info strong { display: block; font-size: 0.9rem; }
.search-result-info span { font-size: 0.8rem; color: var(--primary); font-weight: 600; }

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(45,26,14,0.5); z-index: 1100;
  display: none; backdrop-filter: blur(2px);
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav {
  position: fixed; top: 0; left: -100%; width: min(320px, 90vw); height: 100vh;
  background: #fff; z-index: 1200; transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav.open { left: 0; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-header .logo-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--primary); }
.mobile-nav-header button { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text); }
.mobile-branch { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--primary-light); font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.mobile-nav-links { flex: 1; padding: 10px 0; }
.mobile-nav-links a { display: block; padding: 14px 20px; font-size: 1rem; font-weight: 500; color: var(--text); border-bottom: 1px solid #f5f0eb; transition: all 0.2s; }
.mobile-nav-links a:hover { color: var(--primary); padding-left: 28px; background: var(--primary-light); }
.mobile-nav-footer { padding: 20px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--border); }
.mobile-call-btn, .mobile-wa-btn {
  display: block; text-align: center; padding: 12px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
}
.mobile-call-btn { background: var(--primary-light); color: var(--primary); border: 1px solid var(--primary); }
.mobile-wa-btn { background: var(--wa); color: #fff; }

/* ===== HERO ===== */
.hero-section { background: var(--bg); padding: 44px 0 56px; overflow: hidden; position: relative; }
.hero-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,80,42,0.07) 0%, transparent 70%); }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-since {
  display: inline-flex; align-items: center; gap: 6px; background: var(--primary-light);
  color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 0.82rem;
  font-weight: 700; margin-bottom: 1rem; border: 1px solid rgba(200,80,42,0.2);
  letter-spacing: 1px; text-transform: uppercase;
}
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; color: var(--text); line-height: 1.15; margin-bottom: 1.2rem; }
.hero-accent { color: var(--primary); }
.hero-desc { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-buttons .btn-primary, .hero-buttons .btn-secondary { flex: 1 1 auto; min-width: 160px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.stat span { font-size: 0.82rem; color: var(--text-light); }
.stat-div { width: 1px; height: 40px; background: var(--border); }
.hero-visual { display: flex; align-items: center; justify-content: center; animation: heroGroupFloat 4s ease-in-out infinite; }

/* ===== HERO COLLAGE ===== */
.mobile-hero-collage { display: none; }
.hero-collage {
  position: relative; width: min(520px, 100%); height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.hero-glow {
  position: absolute; inset: 28px 8px 28px 8px; border-radius: 42px;
  background: radial-gradient(circle at 50% 45%, rgba(200,80,42,0.16), transparent 55%),
              linear-gradient(135deg,#3E2723 0%,#7A1D37 45%,#D81B47 100%);
  filter: blur(1px); box-shadow: 0 28px 80px rgba(200,80,42,0.16);
}
.collage-img {
  position: absolute; object-fit: cover;
  box-shadow: 0 18px 45px rgba(120,60,30,0.18); border: 6px solid rgba(255,255,255,0.72);
}
.collage-main { width: 350px; height: 350px; border-radius: 28px; left: 88px; top: 74px; z-index: 2; }
.collage-top { width: 160px; height: 150px; border-radius: 24px; right: 6px; top: 40px; z-index: 3; }
.collage-bottom { width: 170px; height: 160px; border-radius: 24px; left: 12px; bottom: 34px; z-index: 3; }
.collage-badge {
  position: absolute; z-index: 5; background: rgba(255,255,255,0.95);
  border: 1px solid rgba(232,216,204,0.9); border-radius: 999px; padding: 10px 18px;
  font-size: 0.88rem; font-weight: 700; color: var(--text);
  box-shadow: 0 12px 30px rgba(120,60,30,0.13); backdrop-filter: blur(10px); white-space: nowrap;
}
.badge-best { left: 112px; top: 58px; background: rgba(240,165,0,0.88); color: #5b3514; border-color: rgba(240,165,0,0.45); }
.badge-custom { left: -4px; top: 124px; }
.badge-fresh { right: 6px; bottom: 74px; }

@keyframes heroGroupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== INFO BAR ===== */
.info-bar { background: var(--primary); color: #fff; padding: 12px 0; }
.info-bar-inner { display: flex; align-items: center; justify-content: space-evenly; flex-wrap: wrap; gap: 12px; }
.info-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.info-item strong { font-weight: 700; }
.info-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.3); }

/* ===== PRODUCT GRID ===== */
.products-section { padding: 44px 0; background: var(--bg2); }
.products-header { display: flex; flex-direction: column; gap: 16px; margin-bottom: 1.5rem; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 18px; border-radius: 50px; border: 1px solid var(--border);
  background: #fff; font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s; color: var(--text);
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.filter-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.bestsellers-section { padding: 44px 0; }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 12px rgba(120,60,30,0.06); transition: all 0.35s; position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 14px 35px rgba(216,27,71,0.16); }
.product-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 10px; left: 10px; padding: 4px 10px;
  border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-popular { background: var(--accent); color: #fff; }
.badge-bestseller { background: #f39c12; color: #fff; }
.badge-premium { background: var(--primary); color: #fff; }
.badge-special { background: #9b59b6; color: #fff; }
.badge-fav { background: #e74c3c; color: #fff; }
.badge-trending { background: #2ecc71; color: #fff; }
.badge-hit { background: #e91e8c; color: #fff; }
.badge-custom { background: #3498db; color: #fff; }
.product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 8px; justify-content: space-between;}
.product-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.product-desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }
.product-meta-row { display: flex; align-items: center; gap: 8px; }
.product-price { display: flex; align-items: baseline; gap: 8px; }
.price-current { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.product-sizes { display: flex; gap: 6px; flex-wrap: wrap; }
.size-btn {
  padding: 4px 12px; border-radius: 6px; border: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 500; cursor: pointer; background: #fff;
  transition: all 0.2s; color: var(--text);
}
.size-btn:hover, .size-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.product-actions { display: flex; flex-direction: row; gap: 6px; margin-top: 4px; align-items: center;flex-wrap: nowrap; padding-top: 8px;}

.qty-wrap {
  display: inline-flex; align-items: center;
  border-radius: 50px; overflow: visible;
  background: #fff8f0; border: 1.5px solid var(--border);
  align-self: flex-start; flex-shrink: 0; min-width: 88px; max-width: 88px; padding: 0 6px;
}
.qty-btn {
  width: 24px; height: 30px; border: none;
  background: transparent; cursor: pointer;
  font-size: 1rem; font-weight: 500; color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s; flex-shrink: 0;
}
.qty-btn:hover { color: var(--primary); }
.qty-val {
  width: 28px; text-align: center; font-size: 0.88rem; font-weight: 700;
  border: none; outline: none; background: transparent; color: var(--text);
}
.product-actions-btns { display: flex; gap: 6px; }
.btn-view {
  flex: 1; padding: 7px 8px; border-radius: 8px;
  background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
  font-size: 0.74rem; font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-view:hover { background: var(--primary); color: #fff; }
.btn-add {
  flex: 1; padding: 7px 8px; border-radius: 8px;
  background: var(--primary); color: #fff; border: none;
  font-size: 0.74rem; font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-add:hover { background: var(--primary-dark); }

.load-more-wrap { text-align: center; margin-top: 1.5rem; }
.btn-load-more {
  padding: 12px 36px; background: transparent; border: 2px solid var(--primary);
  color: var(--primary); border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.btn-load-more:hover { background: var(--primary); color: #fff; }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 52px 0; background: linear-gradient(135deg, #1f100b 0%, #7a2d18 55%, #c8502a 100%); color: #fff; position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; width: 420px; height: 420px; right: -140px; top: -120px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.why-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.why-copy .section-label { color: #f7c99d; }
.why-copy .section-title { color: #fff; }
.why-copy .section-title span { color: #ffd1aa; }
.why-copy .section-sub { color: rgba(255,255,255,0.82); max-width: 460px; line-height: 1.8; }
.why-btn { margin-top: 1.2rem; border-color: #fff; color: #fff; }
.why-btn:hover { background: #fff; color: var(--primary); }
.why-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px; }
.why-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 800; color: #ffd1aa; margin-bottom: 8px; }
.why-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; padding: 18px; backdrop-filter: blur(12px); color: #fff; transition: all 0.3s; }
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.16); }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.8); }

/* ===== GALLERY ===== */
.gallery-section { padding: 52px 0; background: var(--bg2); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item:nth-child(3n+1) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0; background: rgba(45,26,14,0); display: flex;
  align-items: center; justify-content: center; font-size: 2rem; opacity: 0; transition: all 0.3s;
}
.gallery-item:hover::after { background: rgba(45,26,14,0.4); opacity: 1; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 800px; width: 100%; }
.lightbox-inner img { width: 100%; border-radius: var(--radius); max-height: 80vh; object-fit: contain; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ===== CUSTOM SECTION ===== */
.custom-section { padding: 52px 0; background: #fff; }
.custom-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.custom-features { display: flex; flex-direction: column; gap: 8px; margin: 1.2rem 0 1.5rem; }
.custom-features li { font-size: 0.92rem; color: var(--text); }
.custom-form { background: var(--bg); border-radius: 20px; padding: 1.6rem; }
.custom-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.2rem; color: var(--text); }

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.9rem; background: #fff; transition: border-color 0.2s; color: var(--text); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 52px 0; background: #fff; }
.testimonials-carousel { overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  flex-shrink: 0; width: calc(33.33% - 16px); margin-right: 24px;
  background: var(--bg); border-radius: var(--radius); padding: 1.6rem;
  border: 1px solid var(--border); transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.test-stars { color: #f39c12; font-size: 1rem; margin-bottom: 0.8rem; }
.test-text { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 10px; }
.test-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.test-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.test-type { font-size: 0.78rem; color: var(--text-light); }

/* ===== BRANCHES ===== */
.branches-section { padding: 52px 0; background: var(--bg2); }
.branches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.branch-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s; border: 1px solid var(--border);
}
.branch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.branch-header { background: var(--primary); color: #fff; padding: 16px 20px; display: flex; align-items: center; gap: 16px; }
.branch-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; opacity: 0.5; }
.branch-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.branch-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid var(--border); }
.branch-addr, .branch-hours, .branch-phone { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
.branch-actions { padding: 14px 20px; display: flex; gap: 10px; }
.branch-btn {
  flex: 1; padding: 10px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  text-align: center; transition: all 0.2s; border: 1px solid var(--border);
  background: #fff; color: var(--text); cursor: pointer;
}
.branch-btn:hover { background: var(--bg2); }
.branch-btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.branch-btn-primary:hover { background: var(--primary-dark); }

/* ===== CONTACT ===== */
.contact-section { padding: 52px 0; background: linear-gradient(180deg, #fff8f2 0%, #fff 100%); }
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.contact-panel::before { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--primary-light); right: -70px; top: -70px; }
.contact-main, .contact-details { position: relative; z-index: 1; }
.contact-main .section-title { margin-bottom: 0.8rem; }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.4rem; }
.contact-details { display: grid; gap: 12px; }
.contact-line { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 18px; border: 1px solid var(--border); border-radius: 14px; background: #fffbf7; }
.contact-line span { color: var(--text-light); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.contact-line a, .contact-line strong { color: var(--primary); font-size: 0.95rem; font-weight: 700; text-align: right; }

/* ===== FOOTER ===== */
.footer { background: #1a0e0a; color: #ccc; }
.footer-top { padding: 44px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; color: #aaa; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo .logo-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--accent); }
.footer-logo .logo-sub { font-size: 0.75rem; color: #aaa; }
.social-links { display: flex; gap: 12px; margin-top: 1.2rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: #ccc; transition: all 0.2s;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: #aaa; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: #888; }

/* ===== CART SIDEBAR ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(45,26,14,0.5); z-index: 800; display: none; backdrop-filter: blur(2px); }
.cart-overlay.open { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: -100%; width: min(420px, 95vw); height: 100vh;
  background: #fff; z-index: 900; transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; box-shadow: -5px 0 30px rgba(120,60,30,0.15);
}
.cart-sidebar.open { right: 0; }
.cart-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text); }
.cart-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-light); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--text-light); }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.cart-item-img { width: 65px; height: 65px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.cart-item-size { font-size: 0.78rem; color: var(--text-light); }
.cart-item-price { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-top: 6px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-qty-btn {
  width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--border);
  background: #fff; cursor: pointer; font-size: 0.9rem; transition: all 0.2s; color: var(--text);
}
.cart-qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-qty-num { font-size: 0.9rem; font-weight: 600; min-width: 24px; text-align: center; }
.cart-remove { background: none; border: none; color: #ef4444; cursor: pointer; font-size: 0.8rem; margin-left: auto; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); background: var(--bg); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cart-total span { font-size: 0.9rem; color: var(--text-light); }
.cart-total strong { font-size: 1.25rem; color: var(--primary); }

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
  position: fixed; inset: 0; background: rgba(45,26,14,0.6); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px);
}
.checkout-overlay.open { display: flex; }
.checkout-modal {
  background: #fff; border-radius: 20px; width: min(700px, 100%);
  max-height: 90vh; overflow-y: auto; animation: popIn 0.3s ease;
}
.checkout-header {
  padding: 20px 28px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.checkout-header h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text); }
.checkout-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-light); }
.checkout-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }
.checkout-summary { background: var(--bg); border-radius: 12px; padding: 16px; }
.checkout-summary-item { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid var(--border); }
.checkout-summary-item:last-child { border-bottom: none; font-weight: 700; color: var(--primary); }
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.delivery-options { display: flex; gap: 20px; flex-wrap: wrap; }
.delivery-opt {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  border: 1px solid var(--border); border-radius: 10px; cursor: pointer; font-size: 0.9rem; transition: all 0.2s;
}
.delivery-opt:has(input:checked) { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.checkout-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--primary-light); padding: 14px 16px; border-radius: 10px;
  border: 1px solid rgba(200,80,42,0.2);
}
.checkout-total-bar span { font-weight: 600; color: var(--text); }
.checkout-total-bar strong { font-size: 1.3rem; color: var(--primary); font-family: 'Playfair Display', serif; }

/* ===== PRODUCT MODAL ===== */
.product-modal-overlay {
  position: fixed; inset: 0; background: rgba(45,26,14,0.6); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px);
}
.product-modal-overlay.open { display: flex; }
.product-modal {
  background: #fff; border-radius: 20px; width: min(800px, 100%);
  max-height: 90vh; overflow-y: auto; position: relative; animation: popIn 0.3s ease;
}
.product-modal-close {
  position: sticky; top: 0; float: right; margin: 16px 16px 0 0;
  background: var(--bg2); border: none; border-radius: 50%; width: 36px; height: 36px;
  cursor: pointer; font-size: 1rem; z-index: 10; color: var(--text);
}
.product-modal-inner { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.modal-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; }
.modal-info { display: flex; flex-direction: column; gap: 14px; }
.modal-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); }
.modal-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.modal-price { display: flex; align-items: baseline; gap: 10px; }
.modal-price .price-current { font-size: 1.5rem; }
.modal-addons-section { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.modal-addons-title {
  display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700;
  color: var(--text); padding: 12px 16px; background: var(--bg2); border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.modal-addons-subtitle { font-size: 0.75rem; font-weight: 400; color: var(--text-light); text-transform: none; letter-spacing: 0; margin-left: auto; }
.modal-addons-list { display: flex; flex-direction: column; }
.addon-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  cursor: pointer; transition: background 0.2s; border-bottom: 1px solid var(--border);
}
.addon-row:last-child { border-bottom: none; }
.addon-row:hover { background: var(--primary-light); }
.addon-checkbox { width: 17px; height: 17px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
.addon-info { flex: 1; }
.addon-name { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.addon-desc { font-size: 0.76rem; color: var(--text-light); }
.addon-price { font-size: 0.88rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.modal-price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px; background: var(--bg); border-radius: 12px; }
.modal-price-label { font-size: 0.78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }

/* ===== CAROUSEL DOTS ===== */
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast {
  padding: 12px 20px; border-radius: 50px; background: #333; color: #fff;
  font-size: 0.9rem; font-weight: 500; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.5s forwards; white-space: nowrap;
}
.toast.success { background: var(--primary); }
.toast.error { background: #ef4444; }
.toast.info { background: var(--accent); color: #fff; }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(-10px); } }

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border); z-index: 800;
  padding: 8px 0 12px; box-shadow: 0 -4px 20px rgba(120,60,30,0.08);
}
.mbb-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 0.68rem; font-weight: 500; color: var(--text-light); cursor: pointer;
  background: none; border: none; transition: color 0.2s;
}
.mbb-item:hover { color: var(--primary); }
.mbb-cart {
  background: var(--primary); border-radius: 50%; width: 52px; height: 52px;
  margin-top: -20px; box-shadow: 0 4px 15px rgba(200,80,42,0.4);
  color: #fff !important; font-size: 0; position: relative; flex: 0 0 52px;
}
.mbb-cart svg { color: #fff; }
.mbb-badge {
  position: absolute; top: -2px; right: -2px; background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== LOGO IMAGES ===== */
.loader-logo { width: 86px; height: 86px; object-fit: contain; margin: 0 auto 0.8rem; animation: cakePop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.2s both; }
.popup-logo-img { width: 78px; height: 78px; object-fit: contain; margin: 0 auto 0.7rem; }
.logo-img { width: 52px; height: 52px; object-fit: contain; border-radius: 12px; }
.footer-logo-img { width: 58px; height: 58px; object-fit: contain; border-radius: 14px; background: rgba(255,255,255,0.05); padding: 4px; }
.branch-img {
  width: 54px; height: 54px; min-width: 54px; max-width: 54px;
  object-fit: contain; border-radius: 12px; background: #fff;
  padding: 4px; border: 1px solid var(--border); flex-shrink: 0;
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===========================================
   TABLET (max 1100px)
=========================================== */
@media (max-width: 1100px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: 0; }
  .hero-collage { width: min(480px, 100%); height: 440px; }
  .collage-main { width: 310px; height: 310px; left: 82px; top: 70px; }
  .collage-top { width: 145px; height: 135px; }
  .collage-bottom { width: 150px; height: 145px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-layout, .contact-panel { grid-template-columns: 1fr; }
}

/* ===========================================
   MOBILE (max 768px)
=========================================== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .mobile-bottom-bar { display: flex; }

  /* ── Header ── */
  .location-selector span { display: none; }
  .location-selector { padding: 8px 10px; }
  .logo-img { width: 42px !important; height: 42px !important; }
  .logo { gap: 8px !important; }
  .logo-text { line-height: 1.05 !important; }
  .logo-name { font-size: 1.25rem !important; display: block !important; }
  .logo-sub { font-size: 0.72rem !important; display: block !important; margin-top: 3px !important; }

  /* ── Hero ── */
  .hero-section {
    padding: 28px 0 20px;
    background: radial-gradient(circle at 50% 38%, rgba(200,80,42,0.14), transparent 48%),
                linear-gradient(180deg, #fff8f4 0%, #fffaf6 100%);
  }
  .hero-content { display: block; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.45rem); margin-bottom: 0.9rem; }
  .hero-desc { font-size: 0.93rem; line-height: 1.65; margin-bottom: 0.8rem; max-width: 430px; }
  .hero-visual { display: none !important; }

  /* ── Mobile hero collage ── */
  .mobile-hero-collage {
    display: block; position: relative; width: 100%;
    max-width: 360px; height: 300px; margin: 18px auto 22px;
    animation: heroGroupFloat 4s ease-in-out infinite;
  }
  .mh-main {
    position: absolute; width: 210px; height: 210px;
    left: 50%; top: 42px; transform: translateX(-50%);
    object-fit: cover; border-radius: 26px;
    box-shadow: 0 18px 45px rgba(120,60,30,0.18); z-index: 2;
  }
  .mh-small { position: absolute; object-fit: cover; border-radius: 20px; box-shadow: 0 12px 30px rgba(120,60,30,0.16); z-index: 3; }
  .mh-small-1 { width: 110px; height: 110px; right: 10px; top: 18px; }
  .mh-small-2 { width: 118px; height: 118px; left: 8px; bottom: 18px; }
  .mh-badge {
    position: absolute; background: #fff; color: var(--text);
    font-size: 0.78rem; font-weight: 700; padding: 9px 14px;
    border-radius: 999px; box-shadow: 0 10px 28px rgba(120,60,30,0.14); z-index: 4; white-space: nowrap;
  }
  .mh-badge-1 { left: 10px; top: 20px; }
  .mh-badge-2 { right: 8px; bottom: 22px; }

  /* ── Hero buttons ── */
  .hero-buttons { flex-direction: column; gap: 12px; width: 100%; max-width: 430px; margin-bottom: 1rem; margin-top: 4px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; height: 52px; font-size: 1rem; border-radius: 14px; min-width: unset; }

  /* ── Hero stats ── */
  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; width: 100%; max-width: 430px;
    background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(120,60,30,0.07);
  }
  .stat { padding: 14px 8px; text-align: center; border-right: 1px solid var(--border); }
  .stat:last-child { border-right: none; }
  .stat strong { font-size: 1.2rem; }
  .stat span { font-size: 0.72rem; display: block; margin-top: 2px; }
  .stat-div { display: none; }

  /* ── Info bar ── */
  .info-bar { background: var(--primary) !important; padding: 14px 14px !important; }
  .info-bar-inner { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .info-item {
    background: rgba(255,255,255,0.08) !important; border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 14px !important; padding: 12px 10px !important;
    display: flex !important; flex-direction: column !important;
    align-items: flex-start !important; justify-content: center !important;
    gap: 8px !important; min-height: 90px !important; color: #fff !important;
  }
  .info-item svg { width: 22px !important; height: 22px !important; color: #fff !important; }
  .info-item strong { color: #fff !important; font-size: 0.88rem !important; line-height: 1.4 !important; font-weight: 700 !important; }
  .info-sep { display: none !important; }

  /* ── Products sections ── */
  .products-section { padding: 32px 0 90px; }
  .bestsellers-section { padding: 32px 0 90px; }
  .filter-tab { padding: 7px 14px; font-size: 0.8rem; }

  /* ── Product grid ── */
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: start !important;
  }

  /* ── Product card ── */
  .product-card {
    border-radius: 16px !important;
    height: auto !important;
    align-self: start !important;
  }

  .product-img-wrap {
    height: 120px !important;
    aspect-ratio: unset !important;
    border-radius: 16px 16px 0 0 !important;
  }

  .product-body {
    padding: 10px !important;
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .product-name {
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
    margin: 0 0 3px !important;
    min-height: 0 !important;
  }

  .product-desc {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin: 0 0 8px !important;
    min-height: 0 !important;
  }

  .product-meta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    margin: 0 0 4px !important;
  }

  .product-meta-row .product-price { flex-shrink: 0 !important; margin: 0 !important; }
  .product-meta-row .price-current { font-size: 1rem !important; font-weight: 700 !important; line-height: 1 !important; }
  .product-meta-row .product-sizes { display: flex !important; gap: 4px !important; flex-wrap: nowrap !important; margin: 0 !important; }
  .product-meta-row .size-btn { height: 26px !important; padding: 0 8px !important; font-size: 0.66rem !important; border-radius: 6px !important; }

  .product-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-top: 0 !important;
  }

  .qty-wrap {
    width: 100% !important; min-width: 100% !important; max-width: 100% !important;
    height: 36px !important; display: flex !important; align-items: center !important;
    border-radius: 10px !important; overflow: hidden !important;
    background: #fff8f0 !important; border: 1.5px solid var(--border) !important; padding: 0 !important;
  }

  .qty-btn {
    flex: 1 !important; width: auto !important; height: 36px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 1.1rem !important; border: none !important; background: transparent !important;
    cursor: pointer !important; color: var(--text-light) !important;
  }

  .qty-val {
    flex: 1 !important; height: 36px !important; line-height: 36px !important;
    text-align: center !important; font-size: 0.9rem !important; font-weight: 700 !important;
    padding: 0 !important; margin: 0 !important; border: none !important;
    background: transparent !important; color: var(--text) !important; display: block !important;
    -webkit-appearance: none !important; appearance: none !important;
  }

  .product-actions-btns { display: flex !important; gap: 6px !important; width: 100% !important; }

  .product-actions-btns .btn-view {
    flex: 1 !important; height: 36px !important; font-size: 0.72rem !important;
    font-weight: 700 !important; border-radius: 10px !important;
    border: 1.5px solid var(--primary) !important; color: var(--primary) !important;
    background: transparent !important; display: flex !important; align-items: center !important;
    justify-content: center !important; padding: 0 !important; white-space: nowrap !important;
  }

  .product-actions-btns .btn-add {
    flex: 1 !important; height: 36px !important; font-size: 0.72rem !important;
    font-weight: 700 !important; border-radius: 10px !important;
    background: var(--primary) !important; color: #fff !important; border: none !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    padding: 0 !important; white-space: nowrap !important;
  }

  /* ── Gallery ── */
  .gallery-section { padding: 36px 0 76px; }
  .gallery-section .container { padding-left: 14px; padding-right: 14px; }
  .gallery-grid { display: flex !important; flex-wrap: wrap !important; gap: 14px !important; align-items: flex-start !important; }
  .gallery-item {
    width: calc(50% - 7px) !important; height: 168px !important;
    flex: 0 0 calc(50% - 7px) !important; aspect-ratio: auto !important;
    margin: 0 !important; grid-row: auto !important;
    border-radius: 18px !important; overflow: hidden !important;
  }
  .gallery-item img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .gallery-item::after { display: none !important; }

  /* ── Custom section ── */
  .custom-section { padding: 36px 0; }
  .custom-inner { grid-template-columns: 1fr; gap: 28px; }

  /* ── Product modal ── */
  .product-modal { width: calc(100vw - 20px) !important; max-width: calc(100vw - 20px) !important; margin: 10px auto !important; border-radius: 18px !important; }
  .product-modal-inner { grid-template-columns: 1fr; padding: 16px; }
  .modal-price-row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 14px 16px; border-radius: 16px; background: #fff7f2; margin-top: 16px;
  }
  .modal-price-label { display: none; }
  .modal-price-row .price-current { font-size: 2rem; font-weight: 800; }
  .modal-price-row .qty-wrap { width: 132px !important; min-width: 132px !important; height: 44px !important; border-radius: 14px !important; }
  .modal-price-row .qty-btn { flex: 0 0 40px !important; width: 40px !important; height: 44px !important; }
  .modal-price-row .qty-val { flex: 1 !important; line-height: 44px !important; height: 44px !important; }
  #productModal .btn-primary.full-width, #productModal .modal-add-cart-btn {
    width: 100%; height: 52px; margin-top: 16px; border-radius: 14px;
    background: var(--primary); color: #fff; border: none;
    font-size: 1rem; font-weight: 700;
    box-shadow: 0 10px 22px rgba(200,80,42,0.22);
  }
  #productModal .btn-whatsapp { display: none; }

  /* ── Testimonials ── */
  .testimonial-card { width: 80vw; }

  /* ── Branches ── */
  .branches-section { padding: 36px 0; }
  .branches-grid { display: flex !important; overflow-x: auto !important; gap: 14px !important; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .branches-grid::-webkit-scrollbar { display: none; }
  .branch-card { min-width: 82% !important; flex: 0 0 82% !important; border-radius: 20px !important; scroll-snap-align: start; }
  .branch-header { padding: 16px 18px 14px; }
  .branch-body { padding: 14px 18px; }
  .branch-actions { padding: 12px 18px 16px; display: flex; gap: 10px; }
  .branch-btn { flex: 1; height: 44px; border-radius: 12px; }

  /* ── Why ── */
  .why-section { padding: 36px 0 44px; }
  .why-layout { gap: 24px; }
  .why-copy { text-align: center; }
  .why-btn { margin: 14px auto 0; }
  .why-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .why-card { padding: 14px 12px; border-radius: 16px; }
  .why-num { font-size: 1.4rem; margin-bottom: 6px; }
  .why-card h3 { font-size: 0.88rem; line-height: 1.25; }
  .why-card p { font-size: 0.72rem; line-height: 1.5; }

  /* ── Contact ── */
  .contact-section { padding: 36px 0; }
  .contact-panel { padding: 20px 16px; border-radius: 18px; gap: 22px; }
  .contact-line { align-items: flex-start; flex-direction: column; gap: 4px; }
  .contact-line a, .contact-line strong { text-align: left; }
  .contact-actions { flex-direction: column; gap: 10px; }
  .contact-actions .btn-primary, .contact-actions .btn-whatsapp { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* ── Checkout ── */
  .form-row { grid-template-columns: 1fr; }
  .checkout-body { padding: 20px 18px; }

  /* ── Location popup ── */
  .location-popup-overlay { padding: 10px; align-items: flex-start; overflow-y: auto; }
  .location-popup { width: 100%; max-width: 100%; padding: 14px !important; border-radius: 18px; margin-top: 10px; max-height: 92vh !important; overflow-y: auto !important; }
  .popup-logo-img { width: 42px !important; margin: 0 auto 6px !important; }
  .popup-header { margin-bottom: 10px !important; }
  .popup-header h2 { font-size: 1.55rem !important; line-height: 1.1 !important; }
  .popup-header p { font-size: 0.82rem !important; line-height: 1.3 !important; }
  .btn-gps { height: 46px !important; font-size: 0.85rem !important; margin-bottom: 10px !important; border-radius: 14px !important; }
  .popup-divider { margin: 8px 0 10px !important; }
  .branch-list { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .branch-option { padding: 10px 8px !important; flex-direction: column !important; align-items: flex-start !important; gap: 6px !important; }
  .branch-img { width: 38px !important; height: 38px !important; }
  .branch-option strong { font-size: 0.82rem !important; }
  .branch-option span { font-size: 0.68rem !important; line-height: 1.25 !important; }
  .branch-option svg { display: none !important; }
}

/* ===========================================
   SMALL MOBILE (max 480px)
=========================================== */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section-title { font-size: 1.5rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: 0.88rem; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { font-size: 0.92rem; height: 50px; }
  .stat strong { font-size: 1.1rem; }
  .stat span { font-size: 0.68rem; }
  .info-item { font-size: 0.75rem; }
  .products-grid { gap: 10px !important; }
  .product-img-wrap { height: 110px !important; }
  .product-name { font-size: 0.8rem !important; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 150px !important; }
  .footer-top { padding: 28px 0 20px; }
  .mobile-hero-collage { max-width: 330px; height: 250px; }
  .mh-main { width: 190px; height: 190px; }
  .mh-small-1 { width: 96px; height: 96px; }
  .mh-small-2 { width: 104px; height: 104px; }
  .mh-badge { font-size: 0.72rem; padding: 8px 12px; }
}