/* ============================================================
   EVERAURA — Global Styles
   ============================================================ */

:root {
  /* Earthy Terracotta & Sand palette — warm sand background, rust/terracotta accent, deep brown text */
  --gold: #bd5b34;
  --gold-dark: #9c4726;
  --gold-light: #e9d3b4;
  --charcoal: #3a2418;
  --charcoal-soft: #7a6a56;
  --ivory: #f4ead9;
  --card: #ffffff;
  --border: #e6d7c2;
  --maroon: #8a3a1f;
  --maroon-dark: #6b2c17;
  --success: #2f6b3e;
  --shadow: 0 4px 18px rgba(58, 36, 24, 0.10);
  --radius: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--charcoal);
}

h1 { font-size: clamp(28px, 5vw, 46px); }
h2 { font-size: clamp(22px, 3.4vw, 32px); }
h3 { font-size: 18px; }

p { margin: 0 0 12px; color: var(--charcoal-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-dark); box-shadow: var(--shadow); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5b; box-shadow: var(--shadow); transform: translateY(-1px); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 241, 231, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}

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

.brand img { height: 56px; width: auto; }

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--charcoal);
}

.brand-name span { color: var(--gold); }

/* Fallback wordmark used only where the logo image can't be shown (e.g. footer) */
.footer-wordmark { color: var(--gold-light); font-family: 'Playfair Display', Georgia, serif; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal-soft);
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-dark); }

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

.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 6px;
  display: flex;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--maroon);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- Nav "Shop" mega-menu ---------- */

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-toggle .caret { font-size: 10px; transition: transform 0.2s ease; }
.nav-dropdown.open .nav-dropdown-toggle .caret { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 380px;
  transform: translateX(-50%) translateY(8px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 45px -18px rgba(58, 36, 24, 0.35);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.nav-menu-thumb {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nav-menu-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--charcoal);
}
.nav-menu-item:hover .nav-menu-label { color: var(--gold-dark); }

.nav-menu-viewall {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-dark);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 2px;
}
.nav-menu-viewall:hover { color: var(--maroon); }

/* ---------- Floating actions (WhatsApp + back-to-top) ---------- */

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.float-whatsapp {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}
.float-whatsapp:hover { transform: scale(1.06); }

.float-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.3);
}
.float-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Hero ---------- */

.hero {
  padding: 64px 20px 56px;
  background: linear-gradient(135deg, #f8f1e6 0%, #ecd9c0 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(58, 36, 24, 0.14);
}
.trust-row span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--charcoal-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-row span::before { content: "✦"; color: var(--gold-dark); font-size: 11px; }

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--gold-light);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  text-align: center;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px -18px rgba(58, 36, 24, 0.30);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }

.hero-image .float-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--card);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  font-family: 'Poppins', sans-serif;
  text-align: left;
}
.hero-image .float-badge .num { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--maroon); line-height: 1; }
.hero-image .float-badge .lbl { font-size: 10.5px; color: var(--charcoal-soft); text-transform: uppercase; letter-spacing: 0.4px; }

/* ---------- Typography-forward hero (Layout 3) ---------- */

.hero-type {
  text-align: center;
  padding: 70px 20px 50px;
  background:
    radial-gradient(circle at 15% 20%, rgba(189,91,52,0.10), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(189,91,52,0.10), transparent 45%),
    var(--ivory);
}
.hero-type .eyebrow {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-type h1 { max-width: 760px; margin: 0 auto 16px; }
.hero-type p { max-width: 500px; margin: 0 auto 24px; }
.hero-type .hero-actions { justify-content: center; margin-top: 0; margin-bottom: 30px; }

.trust-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.trust-icons span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--charcoal-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Bestsellers masonry (Layout 3) ---------- */

/* ---------- "Shop By Category" tile strip ---------- */

.dest-strip-wrap { padding: 44px 0 8px; }
.dest-strip-head { text-align: center; max-width: 620px; margin: 0 auto 26px; }

.dest-strip {
  display: flex;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.dest-tile {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.dest-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.dest-tile:hover .dest-tile-bg { transform: scale(1.12); }

.dest-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 8, 4, 0.72) 0%, rgba(15, 8, 4, 0.08) 55%, rgba(15, 8, 4, 0) 100%);
}

.dest-tile-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 28px 22px;
}
.dest-tile-underline { display: block; width: 42px; height: 3px; background: var(--gold-light); margin-top: 10px; }
.dest-tile:hover .dest-tile-label { color: var(--gold-light); }

.dest-tile.active { box-shadow: inset 0 0 0 4px var(--gold); }
.dest-tile.active .dest-tile-label { color: var(--gold-light); }
.dest-tile.active .dest-tile-underline { background: var(--gold); width: 60px; }

/* ---------- Shop All — category-filtered product grid ---------- */

#category-filter-grid { padding: 40px 0 60px; scroll-margin-top: 90px; }
.cat-filter-head { text-align: center; margin: 0 0 28px; }
.cat-filter-head p { color: var(--charcoal-soft); font-size: 13.5px; margin: 0; }

.masonry-wrap { padding: 20px 0 56px; }
.masonry-head { text-align: center; max-width: 620px; margin: 0 auto 32px; }

.masonry {
  columns: 3 220px;
  column-gap: 22px;
}
.masonry .product-card {
  break-inside: avoid;
  margin-bottom: 22px;
  display: block;
}

/* ---------- Why Everaura icon band (Layout 3) ---------- */

.why { background: var(--charcoal); color: var(--ivory); padding: 50px 20px; }
.why-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.why-grid .wicon { font-size: 30px; margin-bottom: 12px; }
.why-grid h3 { color: #fff; font-size: 15.5px; margin-bottom: 6px; }
.why-grid p { font-size: 12.5px; color: #d9c7ae; margin: 0; }

/* ---------- Simple centered story (Layout 3) ---------- */

.story { text-align: center; padding: 60px 24px; max-width: 620px; margin: 0 auto; }
.story .avatar { width: 68px; height: 68px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; border: 2px solid var(--gold-light); }
.story .avatar img { width: 100%; height: 100%; object-fit: cover; }
.story .divider { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 20px; }
.story h2 { font-size: 24px; margin-bottom: 14px; }
.story p { color: var(--charcoal-soft); font-size: 14.5px; margin-bottom: 10px; }

/* ---------- Instagram mosaic (Layout 3) ---------- */

.ig-head { text-align: center; padding: 50px 20px 22px; }
.ig-head h2 { font-size: 24px; margin-bottom: 6px; }
.ig-head p { color: var(--charcoal-soft); font-size: 14px; margin: 0; }
.ig-head a { color: var(--gold-dark); font-weight: 600; }

.ig-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 20px;
}
.ig-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; transition: transform 0.4s ease; }
.ig-mosaic a:hover img { transform: scale(1.05); }
.ig-mosaic a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.ig-mosaic a:nth-child(1) img { border-radius: 12px; }

/* ---------- Gift hamper promo banner ---------- */

.promo-banner {
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  padding: 40px 20px;
  margin: 0;
}

.promo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.promo-inner h2 { color: #fff; margin-bottom: 6px; }
.promo-inner p { color: #f1d9dc; margin-bottom: 0; }

.promo-banner .btn-primary { background: #fff; color: var(--maroon-dark); }
.promo-banner .btn-primary:hover { background: var(--gold-light); }

/* ---------- Catalog banner ---------- */

.catalog-banner {
  position: relative;
  height: 260px;
  background-image: linear-gradient(180deg, rgba(58,36,24,0.18), rgba(58,36,24,0.7)),
    url('https://i.postimg.cc/SNPGSvPx/Whats-App-Image-2026-08-24-at-9-56-59-PM.jpg');
  background-size: cover;
  background-position: center 62%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.catalog-banner h1 { color: #fff; font-size: clamp(26px, 4vw, 36px); margin-bottom: 8px; }
.catalog-banner p { color: rgba(255,255,255,0.88); margin: 0; max-width: 480px; }

/* ---------- Shop All: category rows (Layout 3) ---------- */

.shop-intro {
  text-align: center;
  padding: 46px 20px 8px;
  max-width: 560px;
  margin: 0 auto;
}
.shop-intro h1 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 8px; }
.shop-intro p { margin: 0; }

.jump-nav-wrap {
  position: sticky;
  top: 85px;
  background: var(--ivory);
  z-index: 5;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin-bottom: 8px;
}
.jump-nav {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}
.jump-nav::-webkit-scrollbar { display: none; }
.jump-nav a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--charcoal-soft);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.jump-nav a:hover { color: var(--gold-dark); border-bottom-color: var(--gold); }

.cat-row-section { padding: 34px 0; }
.cat-row-section:not(:last-child) { border-bottom: 1px solid var(--border); }
.cat-row-title { font-size: 21px; margin-bottom: 18px; }

.cat-row-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  /* Note: intentionally no scroll-snap here — Chrome auto-injects a
     "N of N" arrow/page-counter overlay on scroll-snap containers, which
     isn't wanted for this row. Plain smooth manual scrolling instead. */
}
.cat-row-scroll::-webkit-scrollbar { height: 6px; }
.cat-row-scroll::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 10px; }
.cat-row-scroll .product-card {
  flex: 0 0 220px;
}

/* ---------- Sections ---------- */

section { padding: 56px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

/* Category grid */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }

.category-card .icon { font-size: 30px; margin-bottom: 10px; }
.category-card h3 { margin-bottom: 4px; }
.category-card p { font-size: 13px; margin: 0; }

/* Photo category tiles */

.section-tint { background: var(--card); }

.category-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-photo-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.category-photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.category-photo-card:hover img { transform: scale(1.06); }

.category-photo-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,36,24,0) 45%, rgba(58,36,24,0.65) 100%);
}

.category-photo-label {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  color: #fff;
}
.category-photo-label .cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  display: block;
}
.category-photo-label .cat-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* About split */

.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-copy .section-head { text-align: left; margin: 0 0 18px; max-width: none; }
.about-copy p { font-size: 15px; }

.about-marks { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.about-marks div { min-width: 90px; }
.about-marks .mark-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--maroon);
  display: block;
}
.about-marks .mark-lbl { font-size: 12px; color: var(--charcoal-soft); text-transform: uppercase; letter-spacing: 0.4px; }

/* Follow / Instagram section */

.follow-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.follow-head .section-head { text-align: left; margin: 0; max-width: none; }

.follow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.follow-tile {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.follow-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.follow-tile:hover img { transform: scale(1.08); }

.follow-tile .follow-overlay {
  position: absolute; inset: 0;
  background: rgba(58,36,24,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s ease;
  color: #fff; font-size: 22px;
}
.follow-tile:hover .follow-overlay { opacity: 1; }

/* Product grid */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.product-image {
  aspect-ratio: 1/1;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--gold-dark);
  font-size: 13px;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }

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

.product-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-dark);
  font-weight: 700;
}

.product-name { font-size: 15.5px; font-weight: 600; margin: 0; }

.product-desc { font-size: 13px; color: var(--charcoal-soft); margin: 0; flex: 1; }

.product-price { font-size: 17px; font-weight: 700; color: var(--charcoal); margin: 4px 0; }

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

.out-of-stock-tag {
  display: inline-block;
  background: #f3e2cf;
  color: var(--maroon);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}

/* Filters */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-chip {
  background: var(--card);
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--charcoal-soft);
}
.filter-chip.active, .filter-chip:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-light); }

.state-message {
  text-align: center;
  padding: 60px 20px;
  color: var(--charcoal-soft);
}

/* ---------- Cart drawer ---------- */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 36, 32, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--ivory);
  z-index: 201;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }

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

.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--charcoal); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden;
  background: var(--gold-light); flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.cart-item-price { font-size: 13px; color: var(--charcoal-soft); }

.qty-control {
  display: flex; align-items: center; gap: 10px; margin-top: 6px;
}
.qty-control button {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; cursor: pointer; font-weight: 700; line-height: 1;
}
.qty-control span { font-size: 13.5px; font-weight: 600; min-width: 16px; text-align: center; }

.remove-item {
  background: none; border: none; color: var(--maroon); font-size: 12px;
  cursor: pointer; text-decoration: underline; padding: 0; margin-top: 6px;
}

.cart-footer {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.cart-total-row {
  display: flex; justify-content: space-between; font-size: 16px;
  font-weight: 700; margin-bottom: 14px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: #efe2d0;
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
  align-items: start;
}

.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-grid p, .footer-grid a, .footer-grid li { color: #d9c7ae; font-size: 13.5px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--gold); }

.footer-col-center { text-align: center; }
.footer-logo {
  height: 66px;
  width: auto;
  margin: 0 auto 12px;
  border-radius: 12px;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.4);
}
.footer-tagline { color: #d9c7ae; font-size: 13px; max-width: 220px; margin: 0 auto 14px; }
.footer-socials { display: flex; justify-content: center; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.footer-socials a:hover { background: var(--gold); }

.footer-col-links { text-align: right; }

.footer-divider { height: 1px; background: #55402c; margin: 6px 0 18px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  text-align: left;
  font-size: 12.5px;
  color: #a8927a;
  border-top: none;
  padding-top: 0;
}
.footer-bottom-socials { display: flex; gap: 12px; }
.footer-bottom-socials a {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.footer-bottom-socials a:hover { background: var(--gold); }

/* ---------- Happy Customers page ---------- */

.happy-customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  padding: 10px 0 60px;
}
.happy-customers-grid .state-message { grid-column: 1 / -1; text-align: center; padding: 60px 20px; }
.happy-customers-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }

/* ---------- Happy Customers — scattered polaroid photo wall ---------- */

.polaroid-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 20px 60px;
}

.polaroid {
  position: relative;
  background: #fff;
  padding: 14px 14px 28px;
  width: 220px;
  margin: 20px -24px 34px;
  border-radius: 4px;
  box-shadow: 0 10px 24px -8px rgba(58, 36, 24, 0.35);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-16px) scale(1.08);
  box-shadow: 0 26px 42px -12px rgba(58, 36, 24, 0.45);
  z-index: 30;
}

.polaroid:nth-child(6n+1) { --rot: -7deg; }
.polaroid:nth-child(6n+2) { --rot: 5deg; }
.polaroid:nth-child(6n+3) { --rot: -3deg; }
.polaroid:nth-child(6n+4) { --rot: 8deg; }
.polaroid:nth-child(6n+5) { --rot: -6deg; }
.polaroid:nth-child(6n+6) { --rot: 3deg; }

.polaroid-photo { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--gold-light); }
.polaroid-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.polaroid-caption {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: var(--charcoal);
  margin-top: 12px;
  line-height: 1.15;
}

/* ---------- Exhibitions page — postcard / location-stamp cards ---------- */

.exhibit-section { padding: 30px 0 44px; }
.exhibit-section-head { margin-bottom: 22px; }
.exhibit-section-head h2 { margin-bottom: 2px; }
.exhibit-section-head p { font-size: 13.5px; margin: 0; }

.postcard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 34px 28px;
}

.postcard {
  position: relative;
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px -12px rgba(58, 36, 24, 0.32);
  transform: rotate(var(--pc-rot, 0deg));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.postcard:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 20px 36px -14px rgba(58, 36, 24, 0.4);
  z-index: 5;
}
.postcard:nth-child(4n+1) { --pc-rot: -2deg; }
.postcard:nth-child(4n+2) { --pc-rot: 1.5deg; }
.postcard:nth-child(4n+3) { --pc-rot: -1deg; }
.postcard:nth-child(4n+4) { --pc-rot: 2deg; }

.postcard-edge {
  height: 6px;
  background: repeating-linear-gradient(45deg, var(--gold) 0 10px, var(--maroon) 10px 20px, transparent 20px 24px);
  opacity: 0.55;
}

.postcard-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.postcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.postcard-photo .postcard-pin-icon { font-size: 34px; opacity: 0.55; }

.postcard-stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px dashed currentColor;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1.25;
  transform: rotate(10deg);
  padding: 6px;
}
.postcard-upcoming .postcard-stamp { color: var(--gold-dark); }
.postcard-past .postcard-stamp { color: var(--charcoal-soft); }

.postcard-body { padding: 18px 20px 22px; }
.postcard-location { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.postcard-city {
  font-family: 'Dancing Script', cursive;
  font-size: 25px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.postcard-venue { font-size: 16.5px; margin-bottom: 4px; }
.postcard-date { font-size: 12.5px; color: var(--charcoal-soft); font-weight: 600; margin-bottom: 8px; }
.postcard-note { font-size: 13.5px; margin: 0; }

.postcard-tba .postcard-body { text-align: center; }
.postcard-tba .postcard-note { margin-top: 4px; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-width: 320px; margin: 0 auto; }
  .main-nav { position: fixed; top: 70px; left: 0; right: 0; background: var(--ivory);
    flex-direction: column; padding: 20px; gap: 18px; border-bottom: 1px solid var(--border);
    transform: translateY(-150%); transition: transform 0.25s ease; z-index: 99; }
  .main-nav.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col-center { order: -1; }
  .footer-col-links { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .category-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; margin: 0 auto; }
  .about-copy .section-head { text-align: center; }
  .about-marks { justify-content: center; }
  .follow-head { flex-direction: column; align-items: flex-start; }
  .follow-head .section-head { text-align: left; }

  /* Mega-menu becomes an inline collapsible block inside the mobile nav column */
  .nav-dropdown-panel {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 0;
    grid-template-columns: repeat(3, 1fr);
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .nav-dropdown.open .nav-dropdown-panel { max-height: 600px; padding-top: 14px; }

  .float-actions { right: 14px; bottom: 14px; }
  .float-whatsapp { width: 48px; height: 48px; font-size: 21px; }

  .dest-strip { display: grid; grid-template-columns: repeat(2, 1fr); height: auto; }
  .dest-tile { height: 200px; }

  .polaroid { width: 150px; margin: 14px -14px 26px; padding: 10px 10px 22px; }
  .polaroid-caption { font-size: 20px; }
}

@media (max-width: 420px) {
  .polaroid { width: 128px; margin: 10px -10px 22px; }
  .polaroid-caption { font-size: 18px; }

  .postcard-grid { grid-template-columns: 1fr; gap: 26px; }
  .postcard-stamp { width: 60px; height: 60px; font-size: 8.5px; }
}

@media (max-width: 520px) {
  .category-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .follow-grid { gap: 10px; }
  .trust-row { gap: 8px 16px; }
  .masonry { columns: 2 140px; }
  .why-grid { grid-template-columns: 1fr; }
  .ig-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .ig-mosaic a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .cat-row-scroll .product-card { flex-basis: 170px; }
  .jump-nav { gap: 16px; }
}
