/* ══════════════════════════════════════════════════════════════════════════
   Gopi Collections — style.css
   Fonts: Cormorant Garamond (display) + DM Sans (UI / body)
   ══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── RESET ──────────────────────────────────────────────────────────────── */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── DESIGN TOKENS ──────────────────────────────────────────────────────── */

:root {
  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;

  /* Brand palette */
  --brand-bg:      #dccec6;   /* warm rose-taupe — navbar, sidebar, cards   */
  --brand-bg-dark: #c8b9b0;   /* slightly deeper for hover states            */
  --brand-gold:    #9f704c;   /* soft gold — accents, search icon            */
  --brand-blue:    #9f704c;   /* topbar + breadcrumb strip                   */
  --brand-red:     #c0392b;   /* hero headline, active links, CTA            */
  --brand-footer:  #dccec6;

  /* Text colours */
  --text-heading:  #2C2417;   /* deep espresso — h1, h2, h3                 */
  --text-body:     #4a3b2e;   /* warm dark brown — paragraph, nav links      */
  --text-muted:    #7a6659;   /* muted warm brown — counts, secondary labels */
  --text-white:    #ffffff;

  /* UI */
  --border:        #d8d8d8;
  --border-strong: #b0a49c;
  --surface:       #f7f3f0;   /* off-white page background                   */
  --sidebar-w:     300px;
}

/* ── BASE ───────────────────────────────────────────────────────────────── */

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--surface);
  min-height: 100vh;
}

/* ── NAVBAR ─────────────────────────────────────────────────────────────── */

.navbar {
  background-color: var(--brand-bg);
  height: 86px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-bottom: 1px solid var(--border-strong);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15); 
}

.header-logo {
  height: 70px;
  width: 80px;
  object-fit: cover;
}

/* Nav links shared */
.nav-home a,
.nav-contact a,
.nav-link {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--text-body);
  padding: 10px 10px 14px;
  transition: color 0.18s;
}

.nav-home a:hover,
.nav-contact a:hover,
.nav-link:hover { color: var(--brand-red); }

.border:hover { background: var(--brand-bg-dark); border-radius: 4px; }

/* ── NAV DROPDOWN ───────────────────────────────────────────────────────── */

.nav-menu { list-style: none; display: flex; margin: 0; padding: 0; }
.nav-item  { position: relative; }

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 24px 28px;
  min-width: 440px;
  box-shadow: 0 8px 32px rgba(44,36,23,0.12);
  border-top: 3px solid var(--brand-bg);
  z-index: 200;
  gap: 40px;
}

@media (min-width: 901px) {
  .dropdown:hover .dropdown-content { display: flex; margin-top: 1px; }
}

/* Dropdown section headings */
.dropdown-section-1,
.dropdown-section-2,
.dropdown-section-3 {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dropdown-section-1 { color: #b8860b; }   /* gold-brown — Men    */
.dropdown-section-2 { color: #c0392b; }   /* red         — Women */
.dropdown-section-3 { color: #275dad; }   /* blue        — Kids  */

.mens-dropdown a,
.womens-dropdown a,
.kids-dropdown a {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  color: var(--text-body);
  padding: 4px 0;
  transition: color 0.15s, padding-left 0.15s;
}

.mens-dropdown a:hover  { color: #b8860b; padding-left: 4px; }
.womens-dropdown a:hover { color: #c0392b; padding-left: 4px; }
.kids-dropdown a:hover   { color: #275dad; padding-left: 4px; }

/* Active nav link (set by app.js font-weight:700) */
.mens-dropdown a[style*="font-weight: 700"]   { color: #b8860b; }
.womens-dropdown a[style*="font-weight: 700"] { color: #c0392b; }
.kids-dropdown a[style*="font-weight: 700"]   { color: #275dad; }

/* ── MOBILE NAV TOGGLE (hamburger) ─────────────────────────────────────────
   Hidden on desktop; .nav-collapse behaves as a normal inline flex row on
   desktop (no visual change) and becomes a slide-down mobile panel below
   the breakpoint further down this file. */

.nav-actions-mobile {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav-toggle,
.nav-search-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 19px;
  color: var(--text-heading);
  cursor: pointer;
  padding: 8px 11px;
}

.nav-collapse {
  /* display:contents means this wrapper is invisible to layout on desktop —
     its children (.nav-home, .nav-menu×3, .nav-contact, .nav-search) act as
     direct flex children of .navbar, exactly like before this change.
     The mobile breakpoint below overrides this to a fixed slide-in drawer. */
  display: contents;
}

/* Close ("X") button inside the mobile slide-in drawer — hidden on desktop,
   same reveal pattern as .nav-toggle. */
.nav-slider-close {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-heading);
  cursor: pointer;
  padding: 14px 18px;
}

/* Mobile search bar (appears below the navbar when the search icon is
   tapped). Hidden entirely on desktop — the existing inline .nav-search
   inside .nav-collapse continues to handle desktop search. */
.nav-search-mobile-wrap {
  display: none;
}

/* Dimmed backdrop behind the slide-in drawer / mobile search bar */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 23, 0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

/* ── SEARCH BAR ─────────────────────────────────────────────────────────── */

.nav-search {
  display: flex;
  height: 40px;
  width: 300px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.18s;
}

.nav-search:hover,
.nav-search:focus-within { border-color: var(--brand-gold); }

.search-input {
  width: 85%;
  border: none;
  outline: none;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-body);
  padding: 0 14px;
  background: #fff;
}

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

.search-icon {
  width: 15%;
  background: var(--brand-gold);
  color: var(--text-body);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.18s;
}

.search-icon:hover { background: #e0cf8a; }

/* ── RESPONSIVE NAVBAR (mobile menu) ─────────────────────────────────────── */

@media (max-width: 900px) {
  .navbar {
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
  }

  .nav-actions-mobile { display: flex; }
  .nav-toggle,
  .nav-search-toggle { display: block; }
  .nav-slider-close { display: block; }

  /* ── Slide-in drawer (right → left) ─────────────────────────────────── */
  .nav-collapse {
    display: flex;                /* overrides display:contents above */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: stretch;
    background: var(--brand-bg);
    box-shadow: -8px 0 32px rgba(44,36,23,0.25);
    overflow-y: auto;
    z-index: 1000;
    padding: 0 0 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0s linear 0.32s;
  }

  .nav-collapse.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.32s ease;
  }

  .nav-slider-close { align-self: flex-end; }

  .nav-home, .nav-contact, .nav-menu { width: 100%; }
  .nav-menu { flex-direction: column; }
  .nav-item { width: 100%; }

  .nav-home a,
  .nav-contact a,
  .nav-link {
    display: block;
    width: 100%;
    padding: 15px 24px !important;
  }

  .border:hover { background: none; border-radius: 0; }

  /* Dropdown becomes a tap-to-expand accordion instead of hover — only one
     of Men / Women / Kids stays open at a time (handled in app.js). */
  .dropdown-content {
    display: none;
    position: static;
    min-width: auto;
    width: 100%;
    box-shadow: none;
    border-top: none;
    background: transparent;
    flex-direction: column;
    gap: 18px;
    padding: 6px 24px 14px 34px;
  }

  .nav-item.dropdown.open > .dropdown-content { display: flex; }

.nav-item.dropdown .nav-link{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.nav-item.dropdown .dropdown-arrow{
    display:flex;
    justify-content:center;
    align-items:center;

    width:20px;
    height:20px;

    font-size:24px;
    font-weight:300;
    line-height:1;

    color:var(--brand-red);

    transition:transform .30s ease;
}

.nav-item.dropdown.open .dropdown-arrow{
    transform:rotate(180deg);
}

  .mens-dropdown, .womens-dropdown, .kids-dropdown { width: 100%; }

  /* The inline search bar that used to live inside the drawer is replaced
     on mobile by the dedicated search-icon bar below the navbar. */
  .nav-collapse .nav-search { display: none; }

  /* ── Mobile search bar (toggled by the magnifying-glass icon) ────────── */
  .nav-search-mobile-wrap {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--brand-bg);
    border-bottom: 1px solid var(--border-strong);
    box-shadow: 0 10px 28px rgba(44,36,23,0.15);
    padding: 12px 5%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }

  .nav-search-mobile-wrap.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-search-mobile-wrap .nav-search { width: 100%; }
}

/* Body scroll is locked while the drawer or mobile search bar is open */
body.nav-locked { overflow: hidden; }

/* While the mobile nav drawer (or search bar) is open, hide the filter
   sidebar completely so it can never sit on top of / peek out from behind
   the slide-in menu. It reappears as soon as the drawer is closed. */
@media (max-width: 900px) {
  body.nav-locked .sidebar { visibility: hidden; }
}

@media (max-width: 480px) {
  .header-logo { height: 56px; width: 64px; }
  .navbar { height: 64px; }
  .nav-collapse { width: 100%; }
  .nav-search-mobile-wrap { top: 64px; }
}

/* ── SEARCH SUGGESTIONS DROPDOWN ───────────────────────────────────────── */

.search-suggestions {
  display: none;
  position: fixed; /* top/left/width set inline by search.js to track .nav-search */
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(44,36,23,0.14);
  z-index: 9999;
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
}

.search-suggestions.open { display: block; }

.search-suggestions-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 16px 6px;
  background: var(--surface);
}

.search-suggestion-item {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--text-body);
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
  background: var(--brand-bg);
  color: var(--text-heading);
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.image-container {
  position: relative;
  display: block;
  overflow: hidden;      /* keeps everything clipped to the image's box */
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 20px 32px;
  text-align: center;
  background: var(--brand-bg);
}

.hero h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.hero p {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-red);
  font-style: italic;
}

.shop-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  background: var(--text-heading);
  color: var(--text-white);
  border: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
}

.shop-btn:hover { background: #4a3b2e; transform: translateY(-1px); }

/* ── FEATURED CARDS ─────────────────────────────────────────────────────── */

.featured {
  padding: 64px 6%;
  background: var(--brand-bg);
}

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

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.45s ease;
}

.category-card:hover img { transform: scale(1.06); }

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 23, 0.58);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 28px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.category-card:hover .overlay { opacity: 1; }

.overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.overlay p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}

.overlay a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  background: #fff;
  color: var(--text-heading);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.overlay a:hover { background: var(--text-heading); color: #fff; }


/* ── Common article section (index.html) ───────────────────────────────────────── */

.article-header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 44px;
}

.article-rule {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--brand-gold);
  display: block;
}

.article-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-heading);
  white-space: nowrap;
}

/* ── SHOP COLLECTION (index.html) ───────────────────────────────────────── */

.shop-section {
  padding: 65px 5% 70px;
  background: var(--surface);
}

.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
}

.shop-cards {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--brand-bg);
  text-decoration: none;
}

.shop-cards img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.shop-cards:hover img { transform: scale(1.06); }

.underlay { padding: 8px 0 10px; text-align: center; }

.underlay span {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-body);
}

/* ── OFFERS SECTION ─────────────────────────────────────────────────────── */

.offers-section {
  padding: 65px 5% 70px;
  background: var(--brand-bg);
}

.offers-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
}

/* Hero card — tall left image */
.offers-hero-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.offers-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.offers-hero-card:hover img { transform: scale(1.04); }

.offers-hero-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(44,36,23,0.72) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.offers-hero-label span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}

.offers-cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  background: #fff;
  color: var(--text-heading);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.offers-cta:hover { background: var(--text-heading); color: #fff; }

/* 2×2 thumb grid — right side */
.offers-thumb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  align-self: stretch;
}

.offers-thumb-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  min-height: 0;
}

.offers-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.offers-thumb-card:hover img { transform: scale(1.06); }

.offers-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(44,36,23,0.65) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}

@media (max-width: 820px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offers-hero-card img { min-height: 320px; }
  .offers-thumb-card { aspect-ratio: 16 / 9; }
}

/* ── ABOUT US SECTION ───────────────────────────────────────────────────── */

.about-section {
  padding: 65px 5% 70px;
  background: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44,36,23,0.12);
  width: 100%;
  max-width: 600px;
}


.about-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.about-img-wrap:hover img { transform: scale(1.03); }

.about-content { display: flex; flex-direction: column; gap: 36px; }

.about-body {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
}

.about-body strong {
  font-weight: 600;
  color: var(--text-heading);
}

/* 3×2 perks grid */
.about-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
}

.about-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.about-perk-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand-gold);
  transition: background 0.2s, color 0.2s;
}

.about-perk:hover .about-perk-icon {
  background: var(--brand-gold);
  color: #fff;
}

.about-perk span {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-body);
}

@media (max-width: 820px) {
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap img { height: 300px; }
  .about-perks { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .about-perks { grid-template-columns: repeat(2, 1fr); }
  .offers-thumb-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */

footer {
  margin-top: 40px;
  width: 100%;
}

.foot-panel1 {
  background: var(--brand-gold);
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foot-panel1 a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-body);
  transition: color 0.15s;
}

.foot-panel1 a:hover { color: var(--brand-red); }

.container {
  background: var(--brand-bg);
  min-height: 420px;
}

/* Desktop Footer */
@media (min-width: 901px) {

    .foot-panel2{
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 100px;
        padding: 48px 60px 32px;
    }

    .foot-subpanel1{
        width: 320px;
    }

    .foot-subpanel2{
        width: 180px;
    }

    .foot-subpanel3{
        width: 340px;
    }
}

/* Mobile & Tablet Footer */
@media (max-width: 900px) {

    .foot-panel2{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 45px;
        padding: 40px 20px;
    }

    .foot-subpanel1,
    .foot-subpanel2,
    .foot-subpanel3{
        width: 100%;
        margin-left: 0;
    }

    .foot-subpanel2 h3,
    .foot-subpanel3 h3{
        margin-bottom: 20px;
    }
}

.footer-logo {
  height: 110px;
  width: 140px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.foot-descrp {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
}

.foot-descrp b {
  font-weight: 600;
  color: var(--text-heading);
}

.foot-socialmedia {
  display: flex;
  gap: 10px;
}

.foot-socialmedia a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  font-size: 15px;
  color: var(--text-body);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.foot-socialmedia a:hover { background: var(--text-heading); color: #fff; }


.foot-subpanel2 h3,
.foot-subpanel3 h3 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 16px;
}

ul a {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  color: var(--text-body);
  margin-top: 10px;
  transition: color 0.15s;
}

ul a:hover { color: var(--brand-red); 
}

.foot-contact { margin-top: 14px; }

.foot-contact span {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.foot-contact h3 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-heading);
  margin-bottom: 0;
}

.foot-email,
.foot-location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-body);
}

.foot-email i,
.foot-location i { color: var(--text-muted); margin-top: 2px; flex-shrink: 0; }

.foot-email a,
.foot-location a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  text-decoration: none;
  margin: 0;
  display: inline;
  line-height: 1.5;
}

.foot-email a:hover,
.foot-location a:hover { color: var(--brand-red); }

.copyright {
  background: var(--brand-footer);
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ── SHOP PAGE — TOPBAR ─────────────────────────────────────────────────── */

.topbar {
  background: var(--brand-blue);
  padding-bottom: 16px;
}

.breadcrumb {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  padding: 12px 48px 0;
  margin-bottom: 8px;
  z-index: 1; 
}

.breadcrumb a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: #fff; }
.breadcrumb .arrow   { margin: 0 7px; opacity: 0.5; }
.breadcrumb .current { color: rgba(255,255,255,0.55); }

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
}

.title-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.title-block h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.title-block .count {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

/* Sort select */
.sort-select {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: background 0.18s;
}

.sort-select option { background: #1a3a70; color: #fff; }
.sort-select:hover  { background: rgba(255,255,255,0.22); }

/* ── SHOP LAYOUT ────────────────────────────────────────────────────────── */

.shop-content {
  display: flex;
  align-items: flex-start;
}

/* ── SIDEBAR ────────────────────────────────────────────────────────────── */

.sidebar {
  position: sticky;
  top: 0;
  width: 22%;
  flex-shrink: 0;
  height: 100vh;
  overflow-y: auto;
  background: var(--brand-bg);
  display: flex;
  flex-direction: column;
  z-index: 10;
  border-right: 1px solid var(--border-strong);
}

.sidebar__body {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.sidebar__body::-webkit-scrollbar       { width: 4px; }
.sidebar__body::-webkit-scrollbar-track { background: transparent; }
.sidebar__body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

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

.sidebar__title {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-heading);
}

.sidebar-toggle-icon {
  display: none; /* only shown on mobile, see media query below */
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

/* ── RESPONSIVE SHOP LAYOUT (filter sidebar) ─────────────────────────────── */

@media (max-width: 900px) {
  .shop-content { flex-direction: column; }

  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid var(--border-strong);
  }

  .sidebar__header {
    justify-content: space-between;
    cursor: pointer;
    padding: 18px 20px;
  }

  .sidebar-toggle-icon { display: block; }

  /* Collapsed (default) state on mobile — body hidden, chevron points up */
  .sidebar.sidebar-collapsed .sidebar__body { display: none; }
  .sidebar.sidebar-collapsed .sidebar-toggle-icon { transform: rotate(-90deg); }
}

@media (max-width: 480px) {
  .shop-grid { padding: 20px 16px 40px; gap: 14px; }
  .header-row { padding: 0 20px; }
  .breadcrumb { padding: 12px 20px 0; }
  .title-block h1 { font-size: 30px; }
}

/* ── PRICE RANGE ────────────────────────────────────────────────────────── */

.price-section {
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.section-label .collapse-icon {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  cursor: pointer;
}

.price-values {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 12px;
}

/* Dual range slider */
.range-wrap   { position: relative; height: 20px; display: flex; align-items: center; }
.range-track  { position: absolute; left: 0; right: 0; height: 2px; background: var(--border); border-radius: 1px; }
.range-fill   { position: absolute; height: 2px; background: var(--text-heading); border-radius: 1px; pointer-events: none; }

.range-input {
  position: absolute;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: transparent;
  pointer-events: none;
  outline: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--text-heading);
  pointer-events: all;
  cursor: pointer;
  transition: transform 0.15s;
}

.range-input::-webkit-slider-thumb:hover { transform: scale(1.25); }
.range-input::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--text-heading);
  pointer-events: all;
  cursor: pointer;
  border: none;
}

/* ── FILTER ACCORDION ───────────────────────────────────────────────────── */

.filter-item { border-bottom: 1px solid var(--border); }

.filter-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}

.filter-toggle:hover { background: var(--brand-bg-dark); }

.filter-toggle-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-heading);
}

.arrow {
  font-size: 15px;
  color: var(--text-muted);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
  line-height: 1;
}

.filter-item.open .arrow { transform: rotate(90deg); }

.filter-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
}

.filter-item.open .filter-panel { max-height: 400px; }

.filter-panel-inner { padding: 4px 22px 16px; }

/* ── CHECKBOX OPTIONS ───────────────────────────────────────────────────── */

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  transition: color 0.15s;
}

.filter-option:hover { color: var(--text-heading); }

.filter-option input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 14px; height: 14px;
  border: 1.5px solid #a09080;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
  border-radius: 2px;
}

.filter-option input[type="checkbox"]:checked {
  background: var(--text-heading);
  border-color: var(--text-heading);
}

.filter-option input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 1px;
  width: 5px; height: 8px;
  border: 1.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* ── COLOUR SWATCHES ────────────────────────────────────────────────────── */

.colour-grid { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 0; }

.colour-swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, outline 0.15s;
  outline: none;
}

.colour-swatch:hover { transform: scale(1.18); }

.colour-swatch.active {
  outline: 2.5px solid var(--text-heading);
  outline-offset: 2px;
}

.colour-swatch[data-color="white"] { border: 1.5px solid #ccc; }

/* ── SIZE CHIPS ─────────────────────────────────────────────────────────── */

.size-grid { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 0; }

.size-chip {
  min-width: 40px;
  height: 34px;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--text-body);
  border-radius: 2px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.size-chip:hover  { border-color: var(--text-heading); background: #c8bdb6; }
.size-chip.active { background: var(--text-heading); color: #fff; border-color: var(--text-heading); }

/* ── SORT OPTIONS ───────────────────────────────────────────────────────── */

.sort-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-body);
  transition: color 0.15s;
}

.sort-option:hover { color: var(--text-heading); }

.sort-radio {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid #a09080;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}

.sort-option.active .sort-radio              { border-color: var(--text-heading); }
.sort-option.active .sort-radio::after       { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--text-heading); }
.sort-option.active                          { color: var(--text-heading); font-weight: 500; }

/* ── PRODUCT GRID ───────────────────────────────────────────────────────── */

.shop-grid {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 28px 28px 48px;
  align-content: start;
}

.p-card {
  background: #fff;
  border: 1px solid #e6ddd8;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

a.p-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.p-card:hover {
  box-shadow: 0 6px 20px rgba(44,36,23,0.1);
  transform: translateY(-3px);
}

.p-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f0ebe7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

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

.p-info { padding: 12px 14px 14px; }

.p-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

/* ── NO RESULTS ─────────────────────────────────────────────────────────── */

.no-results {
  grid-column: 1 / -1;
  padding: 64px 20px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
}

.no-results button {
  margin-top: 16px;
  padding: 11px 28px;
  background: var(--text-heading);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.18s;
}

.no-results button:hover { background: #4a3b2e; }

/* ── PRODUCT MODAL ───────────────────────────────────────────────────────── */
 
.product-modal {
  border: none;
  border-radius: 14px;
  padding: 0;
  max-width: 820px;
  width: calc(100% - 40px);
  max-height: calc(100vh - 60px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44,36,23,0.22);
  background: var(--surface);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  scale: 0.96;
  transition: opacity 0.22s ease, scale 0.22s ease;
}
 
.product-modal[open] {
  opacity: 1;
  scale: 1;
}
 
.product-modal::backdrop {
  background: rgba(44,36,23,0.55);
  backdrop-filter: blur(4px);
  animation: backdropIn 0.22s ease forwards;
}
 
@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
 
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 2px 8px rgba(44,36,23,0.12);
}
 
.modal-close:hover { background: var(--text-heading); color: #fff; }
 
.modal-inner {
  display: grid;
  grid-template-columns: 44% 56%;
  max-height: calc(100vh - 60px);
}
 
.modal-img-wrap {
  background: #f0ebe7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 460px;
}
 
.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
 
.modal-img-wrap:hover .modal-img { transform: scale(1.04); }
 
.modal-details {
  padding: 36px 32px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
 
.modal-details::-webkit-scrollbar       { width: 4px; }
.modal-details::-webkit-scrollbar-track { background: transparent; }
.modal-details::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
 
.modal-category {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin: 0 0 8px;
}
 
.modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-heading);
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin: 0 0 4px;
}
 
.modal-divider { height: 1px; background: var(--border); margin: 16px 0; }
 
.modal-meta         { display: flex; flex-direction: column; gap: 10px; }
.modal-meta-row     { display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 13px; }
.modal-meta-label   { font-weight: 600; color: var(--text-heading); width: 70px; flex-shrink: 0; }
.modal-meta-val     { color: var(--text-muted); }
 
.modal-size-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin: 0 0 8px;
}
 
.modal-sizes { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 4px; }
 
.modal-size-chip {
  min-width: 40px;
  height: 34px;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--text-body);
  border-radius: 3px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
 
.modal-size-chip:hover  { border-color: var(--text-heading); background: #e8e0d8; }
.modal-size-chip.active { background: var(--text-heading); color: #fff; border-color: var(--text-heading); }
 
.modal-colours { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
 
.modal-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-block;
  transition: transform 0.15s, outline 0.15s;
}
 
.modal-swatch:hover  { transform: scale(1.2); }
.modal-swatch.active { outline: 2.5px solid var(--text-heading); outline-offset: 2px; }
 
@media (max-width: 640px) {
  .modal-inner    { grid-template-columns: 1fr; overflow-y: auto; }
  .modal-img-wrap { min-height: 260px; max-height: 300px; }
  .modal-details  { padding: 22px 18px; }
  .product-modal  { width: calc(100% - 16px); max-height: calc(100vh - 16px); }
}

/* ── CONTACT PAGE ───────────────────────────────────────────────────────── */

.contact {
  background: var(--brand-bg);
  padding: 32px 48px;
  border-bottom: 1px solid var(--border);
}

.contact h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.contact a {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.contact a:hover { color: var(--brand-red); }

/* ── CONTACT FORM ───────────────────────────────────────────────────────── */

.contact-form-section {
  padding: 56px 48px 80px;
  display: flex;
  justify-content: center;
}

.contact-form-card {
  width: 100%;
  max-width: 860px;
  background: #fff;
  border: 1px solid #e6ddd8;
  border-radius: 14px;
  padding: 44px 48px 40px;
  box-shadow: 0 6px 24px rgba(44,36,23,0.06);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.contact-form .form-row .form-group { margin-bottom: 0; }

.contact-form label {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-heading);
}

.contact-form .required { color: var(--brand-red); }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-body);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  outline: none;
  background: #fff;
  transition: border-color 0.18s;
}

.contact-form textarea { resize: vertical; min-height: 130px; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--brand-gold); }

.form-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.form-agree input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--text-heading);
  cursor: pointer;
}

.form-agree label {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-body);
  cursor: pointer;
}

.contact-submit-btn {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--text-heading);
  border: none;
  border-radius: 8px;
  padding: 14px 38px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.contact-submit-btn:hover { background: #4a3b2e; transform: translateY(-1px); }
.contact-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-status {
  margin-top: 18px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
}

.form-status.success { color: #2e7d32; }
.form-status.error   { color: var(--brand-red); }

@media (max-width: 640px) {
  .contact-form-section { padding: 32px 20px 56px; }
  .contact-form-card    { padding: 28px 22px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
}
/* ── FIND US ON GOOGLE MAPS (Contact page) ─────────────────────────────── */

.map-section {
  padding: 65px 5% 80px;
  background: var(--brand-bg);
}

.map-section-subtitle {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  max-width: 620px;
  line-height: 1.75;
  margin: -20px auto 44px;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.map-card {
  background: #fff;
  border: 1px solid #e6ddd8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(44,36,23,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.map-card:hover {
  box-shadow: 0 10px 32px rgba(44,36,23,0.1);
  transform: translateY(-2px);
}

.map-card-info { padding: 22px 24px 16px; }

.map-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.map-card-address {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.map-frame-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f0ebe7;
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 860px) {
  .map-grid { grid-template-columns: 1fr; }
  .map-section { padding: 48px 5% 56px; }
}


/* ── HOVER IMAGE SWAP (product cards, Tenue-style crossfade) ─────────────────
   Every card below now renders TWO stacked <img> tags:
     .card-img-base  → the default photo (always visible)
     .card-img-hover → the alternate photo, shown only on :hover

   If a product/item has no second photo, the JS falls back to reusing the
   SAME image for .card-img-hover, so hovering simply shows no visible change
   (safe default — never breaks the layout).

   To add a real hover photo to any item, just add a `hoverImg` field next to
   its existing `img` (or `imgs`) field in nav-category.js, e.g.:
     { img: './images/jeans.png', hoverImg: './images/jeans-back.png', ... }
──────────────────────────────────────────────────────────────────────────── */

.category-card,
.shop-cards,
.p-img {
  position: relative;
}

.category-card img.card-img-hover,
.shop-cards img.card-img-hover,
.p-img img.card-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.category-card img.card-img-base,
.category-card img.card-img-hover {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  transition: opacity 0.4s ease, transform 0.45s ease;
}

.shop-cards img.card-img-base,
.shop-cards img.card-img-hover {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.p-img img.card-img-base,
.p-img img.card-img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.category-card:hover img.card-img-base,
.shop-cards:hover img.card-img-base,
.p-card:hover .p-img img.card-img-base {
  opacity: 0;
}

.category-card:hover img.card-img-hover,
.shop-cards:hover img.card-img-hover,
.p-card:hover .p-img img.card-img-hover {
  opacity: 1;
}

.category-card:hover img.card-img-base,
.category-card:hover img.card-img-hover {
  transform: scale(1.06);
}

.shop-cards:hover img.card-img-base,
.shop-cards:hover img.card-img-hover {
  transform: scale(1.06);
}

.p-card:hover .p-img img.card-img-base,
.p-card:hover .p-img img.card-img-hover {
  transform: scale(1.05);
}