/* ══ THEME ══ */
:root {
  --brown: #4a2e2a;
  --cream: #fbeedb;
  --gold: #c9973b;
  --dark: #2d1a17;
  --muted: #8a6a5e;
  --bg: #fff;
  --bg2: #faf7f4;
  --text: #2d1a17;
  --card: #fff;
  --border: #f0e8de;
}
[data-theme="dark"] {
  --bg: #0f0a08;
  --bg2: #130b08;
  --text: #f0e0cc;
  --card: #1c0f0a;
  --border: #3a2018;
  --muted: #b08878;
  --cream: #1c0f0a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ TRANSITIONS ══ */
body,
section,
div,
nav,
footer {
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}

/* ══ NAVBAR ══ */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  background: transparent;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    padding 0.3s;
}
#navbar.scrolled {
  background: rgba(45, 26, 23, 0.97) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  padding: 8px 0;
}
[data-theme="dark"] #navbar.scrolled {
  background: rgba(10, 5, 3, 0.97) !important;
}
.nwrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nav-link {
  color: rgba(251, 238, 219, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--gold);
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(201, 151, 59, 0.5);
}
.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.logo-fb {
  display: none;
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.logo-name {
  font-family: "Playfair Display", serif;
  color: #fbeedb;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
}
.logo-sub {
  color: rgba(251, 238, 219, 0.45);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--gold);
  color: #fff;
  padding: 11px 22px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
.btn-gold:hover {
  background: #b5852e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 151, 59, 0.35);
}
.btn-outline-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(251, 238, 219, 0.3);
  color: rgba(251, 238, 219, 0.82);
  padding: 11px 22px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.84rem;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
.btn-outline-w:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Dark toggle */
.dtog {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fbeedb;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.25s;
  flex-shrink: 0;
}
.dtog:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(18deg);
}

/* ══ HERO ══ */
#hero {
  min-height: 100svh;
  background: linear-gradient(140deg, #180908 0%, #2d1a17 55%, #4a2e2a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 64px;
}
.hero-pat {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 2L50 26L26 50L2 26Z' fill='none' stroke='%23fbeedb' stroke-width='.5'/%3E%3Ccircle cx='26' cy='26' r='8' fill='none' stroke='%23fbeedb' stroke-width='.35'/%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 151, 59, 0.1) 0%,
    transparent 70%
  );
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 151, 59, 0.14);
  border: 1px solid rgba(201, 151, 59, 0.3);
  color: var(--gold);
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.a1 {
  animation: fup 0.7s ease both;
}
.a2 {
  animation: fup 0.7s 0.12s ease both;
}
.a3 {
  animation: fup 0.7s 0.24s ease both;
}
.a4 {
  animation: fup 0.7s 0.36s ease both;
}

/* ══ STATS BAR ══ */
.stats-bar {
  padding: 18px 0;
  transition: background 0.3s;
}
[data-theme="light"] .stats-bar {
  background: #f7ede0;
}
[data-theme="dark"] .stats-bar {
  background: #130b08;
}
.stat-item {
  text-align: center;
  padding: 0 14px;
  flex: 1;
  min-width: 0;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(74, 46, 42, 0.15);
}
[data-theme="dark"] .stat-item + .stat-item {
  border-left-color: rgba(251, 238, 219, 0.08);
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--brown);
  font-weight: 700;
  line-height: 1;
}
[data-theme="dark"] .stat-num {
  color: var(--gold);
}
.stat-lbl {
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ══ SECTION LABEL ══ */
.slbl {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.slbl::before,
.slbl::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* ══ PRODUCT CARDS ══ */
.pc {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74, 46, 42, 0.07);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid var(--border);
}
[data-theme="dark"] .pc {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 46, 42, 0.14);
}
[data-theme="dark"] .pc:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.pthumb {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  transition: transform 0.4s;
}
[data-theme="light"] .pthumb {
  background: linear-gradient(135deg, #fbeedb, #f0dcc4);
}
[data-theme="dark"] .pthumb {
  background: linear-gradient(135deg, #2a1810, #1a0e0b);
}
.pc:hover .pthumb {
  transform: scale(1.06);
}
.add-btn {
  width: 100%;
  padding: 9px;
  background: var(--brown);
  color: #fbeedb;
  border: none;
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Inter", sans-serif;
}
.add-btn:hover {
  background: var(--gold);
}
.fchip {
  padding: 6px 15px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.73rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}
.fchip.on,
.fchip:hover {
  background: var(--brown);
  color: #fbeedb;
  border-color: var(--brown);
}

/* ══ ARTISAN CARDS ══ */
.artc {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
}
.arto {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 9, 8, 0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

/* ══ VIDEO CARDS ══ */
.vc {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}
.vt {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.4s;
}
.vc:hover .vt {
  transform: scale(1.06);
}
.vplay {
  position: absolute;
  inset: 0;
  background: rgba(18, 6, 4, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.vc:hover .vplay {
  background: rgba(18, 6, 4, 0.58);
}
.vpc {
  width: 52px;
  height: 52px;
  background: rgba(201, 151, 59, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.vc:hover .vpc {
  transform: scale(1.12);
}

/* ══════════════════════════════════════════
   MAP SECTION
══════════════════════════════════════════ */
#map-section {
  background: #060606;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 55% 50%,
    rgba(201, 151, 59, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Map image container — CRITICAL: position:relative for dots */
.map-img-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
}

/* ↓ THE MAP IMAGE — change src to your file ↓ */
/* 
  ┌──────────────────────────────────────────────┐
  │  REPLACE src BELOW WITH YOUR MAP FILE:       │
  │  src="india-map.jpg"  or  src="map.png"      │
  │  Put the file in same folder as sutra.html   │
  └──────────────────────────────────────────────┘
*/
#map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* 
  ══════════════════════════════════════════════════
  CRAFT DOTS — positioned as % of image size
  
  These positions are calibrated for the exact map
  image you shared (white outline, square-ish crop).
  
  HOW TO READ: left=X%, top=Y% from image top-left
  The map image appears to have ~10% black border on
  each side, with India centered inside.
  
  HOW TO FINE-TUNE: Open browser DevTools, inspect
  .map-dot, and adjust left/top % values live.
  ══════════════════════════════════════════════════
*/
.map-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: all 0.22s;
}
.map-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0.4;
  animation: dpulse 2.4s infinite;
}
@keyframes dpulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(2);
    opacity: 0;
  }
}
.map-dot:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.35);
  border-color: var(--gold);
}
.map-dot.sel {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.4);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 151, 59, 0.3);
}

/* Tooltip */
.dtt {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 5, 2, 0.92);
  color: #fbeedb;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  border: 1px solid rgba(201, 151, 59, 0.3);
}
.map-dot:hover .dtt,
.map-dot.sel .dtt {
  opacity: 1;
}

/* Map info panel */
.mpanel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 151, 59, 0.2);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
}
.cpill {
  display: inline-block;
  background: rgba(201, 151, 59, 0.1);
  border: 1px solid rgba(201, 151, 59, 0.2);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  margin: 3px;
  cursor: pointer;
  transition: background 0.2s;
}
.cpill:hover {
  background: rgba(201, 151, 59, 0.22);
}
.mstat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 151, 59, 0.1);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  flex: 1;
}

/* ══ HOW IT WORKS ══ */
.hw-card {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.25s;
}
.hw-card:hover {
  transform: translateY(-3px);
}

/* ══ TESTIMONIALS ══ */
.tc {
  background: var(--card);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  border: 1px solid var(--border);
}
.tc::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  position: absolute;
  top: 6px;
  left: 16px;
}

/* ══ NEWSLETTER ══ */
#newsletter {
  background: var(--brown);
}
.nl-row {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
}
.nl-in {
  flex: 1;
  padding: 12px 14px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fbeedb;
  font-size: 0.84rem;
  outline: none;
  font-family: "Inter", sans-serif;
  min-width: 0;
}
.nl-in::placeholder {
  color: rgba(251, 238, 219, 0.4);
}
.nl-in:focus {
  background: rgba(255, 255, 255, 0.15);
}
.nl-btn {
  padding: 12px 18px;
  background: var(--gold);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
.nl-btn:hover {
  background: #b5852e;
}

/* ══ FOOTER ══ */
footer {
  background: #180908;
  color: rgba(251, 238, 219, 0.58);
}
[data-theme="dark"] footer {
  background: #080302;
}
.fl {
  color: rgba(251, 238, 219, 0.52);
  font-size: 0.8rem;
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
  transition: color 0.2s;
}
.fl:hover {
  color: var(--gold);
}

/* ══ CART SIDEBAR ══ */
#csb {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(400px, 96vw);
  height: 100vh;
  height: 100dvh;
  background: var(--card);
  z-index: 200;
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.25);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
#csb.open {
  right: 0;
}
#cov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#cov.open {
  opacity: 1;
  pointer-events: all;
}

/* ══ AUTH MODAL ══ */
#amod {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 16px;
}
#amod.open {
  opacity: 1;
  pointer-events: all;
}
.abox {
  background: var(--card);
  border-radius: 12px;
  width: min(400px, 100%);
  max-height: 90dvh;
  overflow-y: auto;
  padding: 28px;
  transform: scale(0.93);
  transition: transform 0.3s;
  position: relative;
}
#amod.open .abox {
  transform: scale(1);
}
.ainp {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.84rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}
.ainp:focus {
  border-color: var(--brown);
}
.atab {
  padding: 9px 18px;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  color: var(--muted);
}
.atab.on {
  border-color: var(--brown);
  color: var(--text);
  font-weight: 600;
}

/* ══ MOBILE DRAWER ══ */
#drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(280px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: #1c0a07;
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  display: flex;
  overflow-y: auto;
}
#drawer.open {
  transform: translateX(0);
}
#drawer-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 149;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#drawer-ov.open {
  opacity: 1;
  pointer-events: all;
}
.dlink {
  color: rgba(251, 238, 219, 0.82);
  font-size: 1rem;
  text-decoration: none;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  font-weight: 500;
}
.dlink:hover,
.dlink:active {
  background: rgba(201, 151, 59, 0.12);
  color: var(--gold);
}

/* ══ TOAST ══ */
#toast {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 999;
  background: var(--brown);
  color: #fbeedb;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s;
  border-left: 3px solid var(--gold);
  max-width: calc(100vw - 32px);
  word-break: break-word;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ══ FADE-IN ══ */
.fi {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.fi.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   MOBILE — PRIMARY FIXES
══════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Hide desktop nav */
  .desktop-nav {
    display: none !important;
  }

  /* Hero: single column, bigger text */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .hero-right {
    display: none !important;
  }
  .hero-title {
    font-size: 2.6rem !important;
    line-height: 1.08 !important;
  }
  .hero-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline-w {
    width: 100% !important;
  }
  .hero-checks {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .hero-badge {
    font-size: 0.6rem !important;
  }

  /* Stats: 2 cols */
  .stats-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }
  .stat-item {
    border-left: none !important;
    border-bottom: 1px solid rgba(74, 46, 42, 0.12);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(74, 46, 42, 0.12);
  }
  [data-theme="dark"] .stat-item {
    border-color: rgba(251, 238, 219, 0.07) !important;
  }

  /* Crafts */
  .crafts-filters {
    gap: 6px !important;
    padding: 0 !important;
  }
  #product-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Artisans */
  #artisan-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Videos */
  #video-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* MAP — stack vertically, panel first on mobile */
  .map-2col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .map-panel-col {
    order: 1 !important;
  }
  .map-img-col {
    order: 2 !important;
  }
  .map-img-box {
    max-width: 100% !important;
  }

  /* How it works */
  .hw-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  /* Newsletter */
  .nl-row {
    flex-direction: column !important;
    border-radius: 8px !important;
    overflow: visible !important;
    gap: 8px !important;
  }
  .nl-in {
    border-radius: 5px !important;
    border: 1px solid rgba(251, 238, 219, 0.18) !important;
  }
  .nl-btn {
    border-radius: 5px !important;
    padding: 12px !important;
  }

  /* Sections padding */
  .sect {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (min-width: 768px) {
  #hamburger,
  .mob-only {
    display: none !important;
  }
}

/* Prevent horizontal scroll everywhere */
.map-img-box,
.map-2col,
#product-grid,
#artisan-grid,
#video-grid {
  width: 100%;
  overflow: hidden;
}
