/* ============================================================
   ZM MOBILES — Main Stylesheet
   Design: Clean Light Theme with Purple Accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --accent:       #6C63FF;
  --accent-glow:  #6C63FF44;
  --accent-dark:  #4f46e5;
  --bg-base:      #ffffff;
  --bg-card:      #f8f8fa;
  --bg-card2:     #f0f0f5;
  --bg-glass:     rgba(255, 255, 255, 0.92);
  --border:       rgba(108, 99, 255, 0.18);
  --border-light: rgba(0, 0, 0, 0.07);
  --text-primary: #1a1a2e;
  --text-muted:   #666680;
  --text-dim:     #9999aa;
  --success:      #22c55e;
  --danger:       #ef4444;
  --warning:      #f59e0b;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-glow:  0 0 24px rgba(108,99,255,0.25);
  --header-h:     68px;
  --sticky-h:     76px;
  --transition:   0.25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }/* ── HEADER ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 1px solid #e8e8ec;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  padding: 2px;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  white-space: nowrap;
}

/* colour the second word accent — done via a <span> inside if needed;
   otherwise the whole name is dark bold like FM MOTORS */
.brand-name .accent { color: var(--accent); }

/* Search */
.search-wrap {
  flex: 1;
  position: relative;
  max-width: 600px;
  display: flex;
  align-items: center;
  background: #f5f5f8;
  border: 1px solid #e0e0ea;
  border-radius: 99px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: #fff;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
}

.search-input::placeholder { color: var(--text-muted); }

.search-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--transition);
  padding: 0;
  margin-right: 2px;
}

.search-btn:hover { color: var(--accent); }
.search-btn svg { width: 18px; height: 18px; }

/* Page Nav Links */
.page-nav {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.page-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.page-nav a:hover { color: var(--accent); background: #f5f5f8; }
.page-nav a.active { color: var(--accent); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-actions {
    margin-left: auto;
  }
}

/* Cart icon button */
.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f8;
  border: 1px solid #e0e0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.icon-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.icon-btn svg { width: 20px; height: 20px; }

/* Circular call / WhatsApp buttons */
.icon-btn-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.icon-btn-round:hover { transform: scale(1.08); }

.icon-btn-round svg { width: 20px; height: 20px; }

/* Call — outlined dark circle (like FM Motors) */
.icon-btn-call {
  border: 1.5px solid #333;
  color: #333;
  background: #fff;
}

.icon-btn-call:hover {
  background: #333;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* WhatsApp — solid green circle */
.icon-btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}

.icon-btn-wa:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  transition: transform var(--transition);
}

.cart-count.bump { animation: bump 0.3s ease; }
@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Nav toggle — visible on all screens */
.nav-toggle { display: flex; }

/* Hide page nav by default, show when open */
.page-nav { display: none; }

.page-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8ec;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 100;
}

@media (max-width: 680px) {
  .search-wrap { max-width: unset; }
  .brand-name  { font-size: 1.15rem; }
}

/* ── HERO / VIDEO SLIDER ────────────────────────────────── */
.hero-section {
  padding-top: calc(var(--header-h) + 16px);
  padding-bottom: 0;
  background: #f0f2f5;
}

.video-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* The visible slider box — light background, rounded */
.video-slider {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #eaeaea;
  overflow: hidden;
  border-radius: 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  position: relative;
}

.video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}

.video-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eaeaea;
  border-radius: inherit;
}

/* Arrows — grey circular, overlaid on slider edges (FM Motors style) */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.10);
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.slider-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
.slider-arrow svg  { width: 18px; height: 18px; }

/* Dots — below the slider box, centered */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 16px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8c8d4;
  cursor: pointer;
  transition: background var(--transition), width var(--transition), border-radius var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* ── STICKY BRAND / CATEGORY SLIDER — Infinite Marquee ────── */
.category-slider-section {
  position: sticky;
  top: var(--header-h);
  z-index: 80;
  background: #f4f4f6;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
}


/* The marquee track — JS controls transform for step-pause scrolling */
.category-slider {
  display: flex;
  width: max-content;
  gap: 0;
  align-items: center;
  padding: 4px 0;
  will-change: transform;
}

/* Each brand card */
.category-item {
  flex: 0 0 auto;
  width: 130px;
  margin: 0 8px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0,0,0,0.08);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  text-decoration: none;
  padding: 10px 8px;
  position: relative;
  overflow: hidden;
}

.category-item:hover {
  border-color: rgba(108,99,255,0.5);
  box-shadow: 0 6px 20px rgba(108,99,255,0.15);
  transform: translateY(-3px) scale(1.03);
}

.category-item.active {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(108,99,255,0.3);
}

/* Logo container */
.logo-box {
  width: 80px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  padding: 4px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.logo-box img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: transform var(--transition);
  display: block;
}

.category-item:hover .logo-box img,
.category-item.active .logo-box img {
  transform: scale(1.08);
}

/* Brand name label */
.cat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 4px;
}

.category-item:hover .cat-label {
  color: var(--accent);
}

.category-item.active .cat-label {
  color: var(--accent);
  font-weight: 700;
}

/* Active indicator dot */
.category-item.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* ── BRAND SECTIONS ────────────────────────────────────────── */
.sections-wrap {
  padding: 20px 0 60px;
}

.product-section {
  padding: 40px 20px 20px;
  max-width: 1260px;
  margin: 0 auto;
  scroll-margin-top: calc(var(--header-h) + var(--sticky-h) + 10px);
}

.section-banner {
  width: 100%;
  margin-bottom: 28px;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  background: var(--bg-card2);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.section-banner:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.section-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.empty-section {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--bg-card2);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
}

/* ── PRODUCT GRID ──────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ── PRODUCT CARD ──────────────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(108,99,255,0.2);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
  padding: 8px;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.out-of-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--text-muted);
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 99px;
}

.product-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-sale {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.price-original {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-normal {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.btn-add-cart {
  margin-top: auto;
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-cart:hover { background: var(--accent-dark); transform: scale(1.02); }
.btn-add-cart:disabled {
  background: var(--bg-card2);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}
.btn-add-cart svg { width: 16px; height: 16px; }

/* ── CART DRAWER ───────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-card2);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid var(--border);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.cart-close:hover { background: var(--danger); border-color: var(--danger); }
.cart-close svg { width: 18px; height: 18px; }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cart-empty svg { width: 56px; height: 56px; opacity: 0.3; }

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--bg-base);
  border-radius: var(--radius-sm);
  padding: 10px;
  border: 1px solid var(--border-light);
}

.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: var(--bg-card2);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card2);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition);
}

.qty-btn:hover { background: var(--accent); border-color: var(--accent); }
.qty-val { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.cart-item-remove:hover { color: var(--danger); }
.cart-item-remove svg { width: 16px; height: 16px; }

/* Cart Footer */
.cart-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-card2);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1rem;
}

.cart-total-label { color: var(--text-muted); }
.cart-total-val   { font-size: 1.2rem; font-weight: 800; color: var(--accent); }

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  letter-spacing: 0.3px;
}

.btn-checkout:hover { opacity: 0.9; transform: scale(1.01); }

/* ── CHECKOUT MODAL ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-box {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-box h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-control::placeholder { color: var(--text-dim); }

textarea.form-control { resize: vertical; min-height: 80px; }

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-cancel {
  flex: 1;
  padding: 12px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.btn-cancel:hover { background: var(--bg-card2); color: var(--text-primary); }

.btn-submit {
  flex: 2;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition);
}

.btn-submit:hover { opacity: 0.9; }

/* ── SUCCESS TOAST ─────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  background: var(--bg-card2);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  max-width: 320px;
}

.toast.show { transform: translateX(0); }
.toast-icon { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #f4f4f4;
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
}

.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand-name { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); }
.footer-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; margin-top: 6px; }

.footer-links h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-contact h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.footer-contact p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-icon:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.social-icon svg { width: 16px; height: 16px; }

.footer-copy {
  max-width: 1260px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* ── Utility ─────────────────────────────────────────────────── */
.page-nav { display: none !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #9d4edd) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 99px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px var(--accent-glow) !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px var(--accent-glow) !important;
}

/* ── Product Trust Badges ─────────────────────────────────────── */
.product-badges {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pta-badge {
  background: rgba(16, 185, 129, 0.95);
  color: white;
}

.warranty-badge {
  background: rgba(108, 99, 255, 0.95);
  color: white;
}

.certified-badge {
  background: rgba(245, 158, 11, 0.95);
  color: white;
}

.safety-badge {
  background: rgba(239, 68, 68, 0.95);
  color: white;
}

/* ── Search highlight ────────────────────────────────────────── */
.product-card.search-hidden { display: none; }

/* ── Product section no-results ─────────────────────────────── */
.section-no-results {
  grid-column: 1/-1;
  padding: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: none;
}

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* ── Loading skeleton ─────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card2) 25%, var(--bg-card) 50%, var(--bg-card2) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ── Responsive tweaks ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .slider-arrow { width: 36px; height: 36px; }
  .slider-arrow svg { width: 16px; height: 16px; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE-WOODEN — Wooden Crafts Theme Enhancements
   (All colours come from CSS vars set by PHP/admin theme picker)
   ══════════════════════════════════════════════════════════════ */

/* Warm wood-grain texture overlay on header */
html.page-wooden .site-header {
  background: var(--bg-glass);
  border-bottom-color: var(--accent);
  border-bottom-width: 2px;
}

html.page-wooden .site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    100deg,
    transparent 0px,
    transparent 28px,
    var(--accent) 28px,
    var(--accent) 29px
  );
  opacity: 0.04;
  pointer-events: none;
}

html.page-wooden .site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 28px var(--accent-glow);
}

/* Brand gradient adapts to accent */
html.page-wooden .brand-name {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Warm scrollbar */
html.page-wooden ::-webkit-scrollbar-thumb {
  background: var(--accent);
}

/* Body wood-grain subtle lines */
html.page-wooden body {
  background: var(--bg-base);
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      var(--accent) 120px,
      var(--accent) 121px
    );
  background-size: 240px 100%;
  background-repeat: repeat;
  /* very subtle — almost invisible */
  --line-opacity: 0.025;
}
html.page-wooden body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  opacity: 0.94;
  z-index: -1;
  pointer-events: none;
}

/* Category slider — warm earthy style */
html.page-wooden .category-slider-section {
  background: var(--bg-card);
  border-bottom: 2px solid var(--accent);
}

html.page-wooden .logo-box {
  border-color: var(--border);
}

html.page-wooden .category-item.active .logo-box,
html.page-wooden .logo-box:hover {
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

/* Product cards — warm wooden card feel */
html.page-wooden .product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

html.page-wooden .product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-4px);
}

/* Accent button */
html.page-wooden .btn-add-cart {
  background: var(--accent);
  color: #fff;
}

html.page-wooden .btn-add-cart:hover:not(:disabled) {
  background: var(--accent-dark);
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* Sale badge earthy */
html.page-wooden .sale-badge {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
}

/* Section banner warm border */
html.page-wooden .section-banner {
  border-bottom: 3px solid var(--accent);
}

/* Section heading accent line */
html.page-wooden .product-section > .section-banner::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Page nav active state */
html.page-wooden .page-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Search focus ring */
html.page-wooden .search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Icon button hover */
html.page-wooden .icon-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Cart drawer */
html.page-wooden .cart-header {
  border-bottom-color: var(--accent);
}

html.page-wooden .btn-checkout {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

html.page-wooden .btn-checkout:hover {
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* Modal submit */
html.page-wooden .btn-submit {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

/* Hero section decorative warm overlay */
html.page-wooden .hero-section {
  position: relative;
}
html.page-wooden .hero-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-base), transparent);
  z-index: 2;
  pointer-events: none;
}

/* WhatsApp float button tinted */
html.page-wooden .whatsapp-float {
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* ══════════════════════════════════════════════════════════════
   PAGE-MOBILE — explicit overrides for clean purple theme
   ══════════════════════════════════════════════════════════════ */
html.page-mobile .site-header {
  background: var(--bg-glass);
}

html.page-mobile body::before { display: none; }

/* ══════════════════════════════════════════════════════════════
   MAIN CATEGORY SLIDER
   ══════════════════════════════════════════════════════════════ */
.main-cat-slider-wrap {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.main-cat-slider-wrap::-webkit-scrollbar { display: none; }

.main-cat-slider {
  display: flex;
  gap: 4px;
  padding: 10px 20px;
  width: max-content;
  min-width: 100%;
}

.main-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  background: var(--bg-card);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100px;
}

.main-cat-item:hover {
  background: var(--bg-card2);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.main-cat-item.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.main-cat-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.main-cat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
}

/* ── Content area below sticky sliders ──────────────────────── */
.content-area {
  padding-bottom: 60px;
}

/* ══════════════════════════════════════════════════════════════
   FEATURED CATEGORY SECTIONS (default home view)
   ══════════════════════════════════════════════════════════════ */
.featured-category-section {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border-light);
}

.featured-category-section:last-child {
  border-bottom: none;
}

.feat-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 20px;
}

.feat-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-section-icon {
  font-size: 1.7rem;
  line-height: 1;
}

.feat-section-title h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  border-radius: 99px;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-view-all:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 16px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-view-all svg {
  width: 14px;
  height: 14px;
}

.btn-view-all-center {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 99px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-view-all-center:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* ══════════════════════════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1260px;
  margin: 0 auto;
}

.services-grid-full {
  max-width: 1260px;
  margin: 0 auto;
}

/* Mobile: 1 column (default) - use flexbox to override grid */
@media (max-width: 1023px) {
  .services-grid, 
  .services-grid-full {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .service-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .services-grid { 
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
  }
}

@media (min-width: 1280px) {
  .services-grid { 
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important; 
  }
}

@media (min-width: 1280px) {
  .services-grid-full { 
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important; 
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-4px);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-card2);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.service-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.service-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 3px 10px;
  border-radius: 99px;
  display: inline-block;
}

.service-card-lg .service-card-img {
  aspect-ratio: 4 / 3;
}

/* ─── Book Appointment Button ─────────────────────────────────── */
.btn-book-appt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent), #9d4edd);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
  white-space: normal;
}

.btn-book-appt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
  background: linear-gradient(135deg, #5a52d5, #9d4edd);
}

/* Mobile responsive for book appointment button */
@media (max-width: 768px) {
  .btn-book-appt {
    display: block;
    padding: 10px 12px;
    font-size: 0.8rem;
    width: 100% !important;
    margin-top: 8px;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    min-height: 40px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100% !important;
  }
  
  .service-card-body {
    overflow: visible;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .service-card {
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BRAND SLIDER
   ═══════════════════════════════════════════════════════════════ */
/* Old / Duplicate slider elements ko hide aur reset karne ke liye */
.brand-slider-container .swiper-wrapper,
.brand-slider-container .owl-stage {
  display: flex !important;
  transform: none !important;
}

/* Overlapping prevent karne ke liye strict relative display */
.brand-slider-container {
  position: relative !important;
  z-index: 1 !important;
  clear: both !important;
  overflow: hidden !important;
}

.brand-slider-track {
  display: flex !important;
  flex-direction: row !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Agar duplicate overlay container ban raha ho */
.brand-slider-container + .brand-slider-container {
  display: none !important; /* Duplicate second slider block hide kar dega */
}

.brand-slider-section {
  background: var(--bg-card);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.brand-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}

.brand-slider-track {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.brand-slider-inner {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  gap: 20px;
  animation: brandScroll 25s linear infinite;
  will-change: transform;
  min-width: fit-content;
}

.brand-slider-inner.paused {
  animation-play-state: paused;
}

@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-item {
  flex-shrink: 0 !important;
  width: 130px !important;
  min-width: 130px !important;
  height: 110px !important;
  text-align: center;
  position: relative;
}

.brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-primary);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  height: 120px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  white-space: normal;
}

.brand-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.brand-link.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-glow));
  border-color: var(--accent);
  color: #fff;
}

.brand-link.active .brand-name {
  color: #fff;
}

.brand-link.active-brand {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 4px 16px var(--accent-glow);
  transform: scale(1.08);
}

.brand-link:active {
  transform: translateY(0);
}

.brand-logo {
  max-width: 70px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
  display: block;
}

.brand-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .brand-slider-section {
    padding: 12px 0;
  }
  
  .brand-slider-container {
    padding: 0 12px;
  }
  
  .brand-slider-inner {
    gap: 12px;
  }
  
  .brand-item {
    width: 100px;
  }
  
  .brand-link {
    padding: 12px 8px;
    height: 90px;
    border-radius: 10px;
  }
  
  .brand-logo {
    max-width: 45px;
    max-height: 45px;
    margin-bottom: 8px;
  }
  
  .brand-name {
    font-size: 0.7rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE HEADER (full service category view)
   ═══════════════════════════════════════════════════════════════ */
.services-page-wrap {
  max-width: 1260px;
  margin: 0 auto;
}

.services-page-header {
  text-align: center;
  padding: 48px 20px 32px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
  overflow: visible;
}

.services-page-header h2 {
  font-size: 2rem;
  font-weight: 900;
  margin: 12px 0 10px;
}

.services-page-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.btn-book-hero {
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px var(--accent-glow);
}

/* Mobile responsive for hero book appointment button */
@media (max-width: 768px) {
  .btn-book-hero {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .services-page-header {
    padding: 32px 12px 24px;
    overflow: visible;
  }
  
  .services-page-wrap {
    padding: 0 12px;
    overflow: visible;
  }
}

/* ═══════════════════════════════════════════════════════════════
   APPOINTMENT MODAL
   ═══════════════════════════════════════════════════════════════ */
.appt-modal-box {
  max-width: 480px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .feat-section-title h2 { font-size: 1.1rem; }
  .main-cat-item { min-width: 80px; padding: 8px 14px; }
  .main-cat-icon { font-size: 1.3rem; }
  .services-page-header h2 { font-size: 1.5rem; }
}
