/* ============================================================
   GallopHub — Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --navy:      #1A3C5E;
  --gold:      #C8A951;
  --sky:       #2E6DA4;
  --bg:        #FAFAF8;
  --muted:     #F3F0E8;
  --text:      #1A1A2E;
  --sub:       #6B7280;
  --border:    #E5E7EB;
  --green:     #10B981;
  --red:       #EF4444;
  --amber:     #F59E0B;
  --wa:        #25D366;
  --radius:    8px;
  --shadow:    0 1px 3px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 25px rgba(26,60,94,.15);
  --max-w:     1280px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  text-align: center;
  padding: 6px 1rem;
}
@media (max-width: 768px) { .topbar { display: none; } }

/* ============================================================
   Navbar
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.site-logo .logo-gallop { color: var(--navy); }
.site-logo .logo-hub    { color: var(--gold); }
.site-logo svg          { width: 36px; height: 36px; }

/* Nav links */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.primary-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover,
.primary-nav a.current-menu-item { color: var(--navy); border-bottom-color: var(--gold); }

@media (max-width: 1023px) { .primary-nav { display: none; } }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  gap: .4rem;
  align-items: center;
}
.lang-switcher a { opacity: .5; transition: opacity .2s; }
.lang-switcher a:hover,
.lang-switcher a.active { opacity: 1; }
.lang-switcher img { border-radius: 2px; display: block; }
@media (max-width: 767px) { .lang-switcher { display: none; } }

/* WA link in navbar */
.nav-wa {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--wa);
  border: 1px solid var(--wa);
  padding: .35rem .75rem;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.nav-wa:hover { background: var(--wa); color: #fff; }
.nav-wa svg { width: 14px; height: 14px; }
@media (max-width: 767px) { .nav-wa { display: none; } }

/* CTA button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: .5rem 1.1rem;
  border-radius: var(--radius);
  transition: opacity .2s;
}
.btn-gold:hover { opacity: .88; }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: .5rem 1.1rem;
  border-radius: var(--radius);
  transition: opacity .2s;
}
.btn-navy:hover { opacity: .88; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  color: var(--navy);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .2s, opacity .2s;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1023px) { .nav-toggle { display: flex; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
}
.mobile-drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: var(--bg);
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-drawer-panel a {
  display: block;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.mobile-drawer-panel .lang-switcher {
  display: flex;
  margin-top: 1rem;
  gap: .75rem;
}
.mobile-drawer-close {
  align-self: flex-end;
  margin-bottom: .5rem;
  color: var(--sub);
  padding: .25rem;
}

/* Mobile bottom nav */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--bg);
  border-top: 1px solid var(--border);
  height: 56px;
}
.bottom-nav-inner {
  display: flex;
  height: 100%;
}
.bottom-nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 500;
  color: var(--sub);
}
.bottom-nav-link svg { width: 20px; height: 20px; }
@media (max-width: 1023px) {
  .bottom-nav { display: flex; }
  .site-main   { padding-bottom: 56px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,60,94,.92) 0%, rgba(26,60,94,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--wa);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  transition: opacity .2s;
}
.btn-wa:hover { opacity: .88; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  transition: opacity .2s;
}
.btn-hero-primary:hover { opacity: .88; }

/* ============================================================
   Stats bar
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 1.25rem 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats-bar-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stats-bar-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: .25rem;
}
@media (max-width: 640px) {
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

/* ============================================================
   Section helpers
   ============================================================ */
.section-py     { padding: 5rem 0; }
.section-py-sm  { padding: 3rem 0; }
.section-muted  { background: var(--muted); }
.section-navy   { background: var(--navy); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: .35rem;
}
.section-sub { font-size: 13px; color: var(--sub); }
.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.section-link:hover { opacity: .75; }

/* ============================================================
   Cards grid
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   Horse card
   ============================================================ */
.horse-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.horse-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.horse-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0ede5;
}
.horse-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.horse-card:hover .horse-card-img img { transform: scale(1.05); }

.badge-status {
  position: absolute;
  top: .75rem;
  left: .75rem;
  font-size: 11px;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 999px;
  color: #fff;
}
.badge-available { background: var(--green); }
.badge-reserved  { background: var(--amber); }
.badge-sold      { background: var(--red); }

.horse-card-flag {
  position: absolute;
  top: .75rem;
  right: .75rem;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}

.horse-card-body { padding: 1rem 1.1rem 1.1rem; flex: 1; display: flex; flex-direction: column; gap: .35rem; }

.horse-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
  line-height: 1.25;
}
.horse-card:hover .horse-card-title { color: var(--navy); }

.horse-card-breed { font-size: 12.5px; color: var(--sub); }

.horse-card-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: .15rem 0;
}
.disc-pill {
  font-size: 11px;
  background: var(--muted);
  color: var(--navy);
  padding: .15rem .55rem;
  border-radius: 999px;
  font-weight: 500;
  text-transform: capitalize;
}

.horse-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 11.5px;
  color: var(--sub);
  flex-wrap: wrap;
}
.horse-card-meta span { display: flex; align-items: center; gap: .25rem; }
.horse-card-meta svg  { width: 11px; height: 11px; }

.horse-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
}
.horse-card-price .neg { font-size: 11px; color: var(--sub); font-family: 'DM Sans', sans-serif; font-weight: 400; margin-left: .25rem; }

/* Skeleton */
@keyframes shimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0ede5 25%, #e8e4da 50%, #f0ede5 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: 4px;
}

/* ============================================================
   Why cards
   ============================================================ */
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon svg { width: 22px; height: 22px; color: var(--navy); }
.why-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.why-card p  { font-size: 13px; color: var(--sub); line-height: 1.65; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); }
.testimonial-text { font-size: 13.5px; color: var(--text); margin-bottom: 1.5rem; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-name  { font-size: 13px; font-weight: 600; }
.testimonial-loc   { display: flex; align-items: center; gap: .4rem; font-size: 11px; color: var(--sub); }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2   { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p    { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 15px; }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
}
.page-hero h1  { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: .5rem; }
.page-hero p   { color: rgba(255,255,255,.75); font-size: 15px; }

/* ============================================================
   Horses listing + filters
   ============================================================ */
.horses-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.horses-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.horses-main { flex: 1; min-width: 0; }
@media (max-width: 1023px) {
  .horses-sidebar { display: none; }
  .horses-sidebar.open {
    display: block;
    position: fixed;
    right: 0; top: 0; bottom: 0;
    width: 300px;
    z-index: 150;
    overflow-y: auto;
    border-radius: 0;
  }
}

.filter-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-reset { font-size: 11px; color: var(--sub); cursor: pointer; }
.filter-section { margin-bottom: 1.25rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.filter-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--sub);
  margin-bottom: .75rem;
  display: block;
}
.filter-checkbox { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; cursor: pointer; }
.filter-checkbox input { accent-color: var(--navy); }
.filter-checkbox span  { font-size: 13px; color: var(--text); text-transform: capitalize; }
.filter-select {
  width: 100%;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .5rem .75rem;
  background: #fff;
  color: var(--text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
}
.filter-range-row { display: flex; gap: .5rem; }
.filter-range-row input {
  flex: 1;
  font-size: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .4rem .6rem;
}

.horses-count  { font-size: 13px; color: var(--sub); margin-bottom: 1.25rem; }
.filter-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: .5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: #fff;
}
@media (max-width: 1023px) { .filter-toggle { display: flex; } }
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 140;
}

/* ============================================================
   Single horse
   ============================================================ */
.horse-single-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .horse-single-layout { grid-template-columns: 1fr; }
}

.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0ede5;
  aspect-ratio: 16/9;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-top: .5rem;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  background: #f0ede5;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 1.5rem 0;
}
@media (max-width: 639px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
.spec-item {
  background: var(--muted);
  border-radius: var(--radius);
  padding: .85rem 1rem;
}
.spec-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--sub); margin-bottom: .25rem; }
.spec-value { font-size: 13px; font-weight: 600; color: var(--text); }

/* Horse sidebar sticky */
.horse-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1rem; }
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-neg { font-size: 12px; color: var(--sub); font-family: 'DM Sans', sans-serif; }
.price-card h1 { font-size: 1.3rem; margin-bottom: .35rem; }
.price-card-meta { font-size: 12.5px; color: var(--sub); margin-bottom: 1rem; display: flex; gap: .75rem; flex-wrap: wrap; }

.btn-wa-full, .btn-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .75rem;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: opacity .2s;
}
.btn-wa-full { background: var(--wa); color: #fff; margin-bottom: .5rem; }
.btn-wa-full:hover { opacity: .88; }
.btn-share { border: 1px solid var(--border); color: var(--sub); background: #fff; }
.btn-share:hover { background: var(--muted); }

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }

.form-field { margin-bottom: .85rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .6rem .85rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--navy);
}
.form-field textarea { resize: none; }
.form-field .error-msg { font-size: 11px; color: var(--red); margin-top: .25rem; }
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: .75rem;
  border-radius: var(--radius);
  transition: opacity .2s;
  cursor: pointer;
}
.btn-submit:hover { opacity: .88; }
.btn-submit:disabled { opacity: .55; cursor: not-allowed; }

.gmc-info {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: 12.5px;
  color: var(--sub);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.gmc-info a { color: var(--navy); text-decoration: underline; }
.gmc-row { display: flex; align-items: center; gap: .5rem; }
.gmc-row svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ============================================================
   About page
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1023px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }
.about-img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--muted);
  color: var(--navy);
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.about-text p { font-size: 13.5px; color: var(--sub); line-height: 1.75; margin-bottom: .85rem; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  background: none;
  cursor: pointer;
}
.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform .3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { font-size: 13.5px; color: var(--sub); line-height: 1.7; padding-bottom: 1.25rem; }

/* ============================================================
   Services
   ============================================================ */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 22px; height: 22px; color: var(--navy); }
.service-card h2 { font-size: 1.4rem; margin-bottom: .5rem; }
.service-card > p { font-size: 13.5px; color: var(--sub); margin-bottom: 1.25rem; line-height: 1.65; }
.service-points { display: flex; flex-direction: column; gap: .5rem; }
.service-points li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: 13px;
  color: var(--text);
}
.service-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
}

/* ============================================================
   Shop
   ============================================================ */
.shop-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shop-card-body { padding: 2rem; }
.shop-card-icon {
  width: 48px; height: 48px;
  background: var(--muted);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.shop-card-icon svg { width: 22px; height: 22px; color: var(--navy); }
.shop-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin: .5rem 0 1rem;
}
.shop-card p { font-size: 13.5px; color: var(--sub); line-height: 1.65; margin-bottom: 1.25rem; }
.shop-points { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.shop-points li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: 13px; color: var(--text);
}
.shop-points li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  flex-shrink: 0; margin-top: .45rem;
}
.shop-card-footer { padding: 0 2rem 2rem; }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.legal-card h2 { font-size: 1.3rem; color: var(--navy); margin: 2rem 0 .75rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { font-size: 13.5px; color: var(--sub); line-height: 1.75; margin-bottom: .5rem; }
.legal-card a { color: var(--navy); text-decoration: underline; }
.legal-note {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--muted);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--navy); }
.contact-info-label { font-size: 13px; font-weight: 600; margin-bottom: .2rem; }
.contact-info-value { font-size: 13px; color: var(--sub); line-height: 1.5; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .site-logo { margin-bottom: .75rem; }
.footer-tagline { font-size: 13px; margin-bottom: 1rem; line-height: 1.5; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 13px;
  margin-bottom: .5rem;
}
.footer-contact-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.footer-contact-item a:hover { color: #fff; }
.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: .5rem;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   WhatsApp float
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  opacity: .4;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .4; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 1023px) {
  .wa-float { bottom: 4.5rem; }
}

/* ============================================================
   WooCommerce resets
   ============================================================ */
.woocommerce-notices-wrapper { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.gap-4 { gap: 1rem; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.success-msg { color: var(--green); font-size: 13px; text-align: center; padding: 1.5rem 0; }
.error-msg   { color: var(--red); font-size: 12px; }
