/* ============================================
   GOLDEN CREELS — Shared Stylesheet
   ============================================ */

:root {
  --primary-dark: #1A2B22;
  --accent-gold: #C89B3C;
  --bg-light: #F7F5F0;
  --bg-dark: #11201A;
  --text-dark: #1C1C1C;
  --text-muted: #6B6B63;
  --border: #E3E0D8;
  --white: #ffffff;
  --radius-card: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 8px 24px rgba(17, 32, 26, 0.06);
  --shadow-hover: 0 18px 40px rgba(17, 32, 26, 0.12);
  --maxw: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  line-height: 1.1;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { color: var(--text-dark); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Eyebrow Badge ===== */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid rgba(200, 155, 60, 0.35);
  background: rgba(200, 155, 60, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow.on-dark {
  color: var(--accent-gold);
  border-color: rgba(200, 155, 60, 0.4);
  background: rgba(200, 155, 60, 0.1);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary-dark);
  color: var(--bg-light);
  border: 1px solid var(--primary-dark);
}
.btn-primary:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-dark);
}
.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--bg-light);
}
.on-dark .btn-secondary {
  color: var(--bg-light);
  border-color: rgba(247,245,240,0.6);
}
.on-dark .btn-secondary:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
  border-color: var(--bg-light);
}
.btn-light {
  background: var(--bg-light);
  color: var(--primary-dark);
  border: 1px solid var(--bg-light);
}
.btn-light:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}
.btn-accent {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border: 1px solid var(--accent-gold);
}
.btn-accent:hover {
  background: #b08a2f;
  border-color: #b08a2f;
}
.btn .icon { width: 16px; height: 16px; }

/* ===== Navbar ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-dark);
  color: var(--accent-gold);
  display: grid;
  place-items: center;
}
.brand-mark svg { width: 20px; height: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-dark);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-gold); }
.nav-links a.active { color: var(--accent-gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 2px; right: 2px; bottom: -2px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(26, 43, 34, 0.06);
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.cart-btn:hover { background: rgba(26, 43, 34, 0.12); }
.cart-btn svg { width: 18px; height: 18px; color: var(--primary-dark); }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 5px;
}

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(26, 43, 34, 0.06);
  place-items: center;
}
.hamburger svg { width: 22px; height: 22px; color: var(--primary-dark); }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-cream { background: var(--bg-light); }
.section-dark {
  background: var(--bg-dark);
  color: var(--bg-light);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--bg-light); }
.section-dark p { color: rgba(247, 245, 240, 0.78); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head p { color: var(--text-muted); margin-top: 14px; }
.section-head .btn { margin-top: 24px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--bg-light);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?w=2000&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,32,26,0.45) 0%, rgba(17,32,26,0.35) 50%, rgba(17,32,26,0.85) 100%);
}
.hero-inner {
  position: relative;
  width: 100%;
  padding: 120px 0 140px;
}
.hero h1 {
  color: var(--bg-light);
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  max-width: 780px;
  margin: 18px 0 32px;
  line-height: 1.05;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-float {
  position: absolute;
  bottom: 56px; right: 32px;
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(8px);
  color: var(--primary-dark);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  box-shadow: var(--shadow-card);
}
.hero-float .play {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--accent-gold);
  display: grid; place-items: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.hero-float .play svg { width: 14px; height: 14px; margin-left: 2px; }
.hero-float p { font-size: 13px; color: var(--primary-dark); font-weight: 600; margin: 0; }

/* ===== Feature Icon Row ===== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.feature {
  text-align: left;
  padding: 8px;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(200, 155, 60, 0.12);
  color: var(--accent-gold);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h4 { font-size: 17px; margin-bottom: 6px; color: var(--text-dark); }
.feature p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ===== Image Split ===== */
.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.img-split .img-card {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.img-split .img-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(17,32,26,0.6) 100%);
}
.img-card-content {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  z-index: 2;
  color: var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.img-card h3 { color: var(--bg-light); font-size: 1.6rem; }
.img-card .btn {
  padding: 10px 20px;
  font-size: 13px;
  background: rgba(247,245,240,0.95);
  color: var(--primary-dark);
  border: 1px solid rgba(247,245,240,0.95);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.img-card:hover .btn {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Services Split ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.services-left h2 { margin: 8px 0 32px; max-width: 480px; }
.cat-list { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
}
.cat-item:hover {
  background: var(--primary-dark);
  color: var(--bg-light);
  border-color: var(--primary-dark);
  transform: translateX(4px);
}
.cat-item svg { width: 16px; height: 16px; }
.services-right { position: relative; }
.svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.svc-stat {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.svc-stat .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.svc-stat .lbl {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 140px;
}
.svc-note {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: start;
}
.svc-note p { color: var(--text-muted); margin: 0; }
.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  border-bottom: 1px solid transparent;
}
.learn-link:hover { border-bottom-color: var(--primary-dark); }
.learn-link svg { width: 14px; height: 14px; }

/* ===== Process Cards ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.process-thumb {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.process-num {
  position: absolute;
  top: 16px; left: 16px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-light);
  color: var(--primary-dark);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.process-body { padding: 28px; }
.process-body h3 { margin-bottom: 14px; }
.process-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.process-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.process-checklist svg {
  width: 16px; height: 16px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ===== Featured Story ===== */
.featured-wrap {
  position: relative;
}
.featured-bg {
  height: 540px;
  border-radius: var(--radius-lg);
  background: url('https://images.unsplash.com/photo-1545816250-e12bedba42ba?w=2000&q=80') center/cover;
  position: relative;
  overflow: hidden;
}
.featured-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,32,26,0.25), rgba(17,32,26,0.55));
}
.featured-card {
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: min(640px, calc(100% - 48px));
  box-shadow: var(--shadow-hover);
  text-align: center;
}
.featured-card .eyebrow { margin-bottom: 12px; }
.featured-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.featured-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; }

.partners {
  margin-top: 120px;
  padding: 32px 0;
  border-top: 1px solid rgba(247,245,240,0.12);
  text-align: center;
}
.partners-title {
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(247,245,240,0.55);
  margin-bottom: 24px;
}
.partner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.55;
}
.partner-logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--bg-light);
}

/* ===== About Split ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  height: 580px;
  border-radius: var(--radius-lg);
  background: url('https://images.unsplash.com/photo-1599056407101-7c557a4a0144?w=1400&q=80') center/cover;
  box-shadow: var(--shadow-card);
}
.about-text h2 { margin: 8px 0 22px; max-width: 460px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; max-width: 480px; }
.about-pairs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}
.about-pair {
  display: flex;
  gap: 14px;
  align-items: start;
}
.about-pair .pi {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(200,155,60,0.12);
  color: var(--accent-gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.about-pair .pi svg { width: 18px; height: 18px; }
.about-pair .t { font-weight: 600; }

/* ===== Values Cards ===== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  position: relative;
}
.value-card {
  background: rgba(247,245,240,0.06);
  border: 1px solid rgba(247,245,240,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.2s;
}
.value-card:hover { background: rgba(247,245,240,0.09); }
.value-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(200,155,60,0.18);
  color: var(--accent-gold);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.value-card .ic svg { width: 22px; height: 22px; }
.value-card h3 { color: var(--bg-light); margin-bottom: 8px; font-size: 1.35rem; }
.value-card p { color: rgba(247,245,240,0.7); font-size: 14px; }
.value-card.stat .num {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ===== Blog Cards ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.blog-thumb {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.blog-cat {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 11px;
}
.blog-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.blog-card p { color: var(--text-muted); font-size: 14px; }

/* ===== Contact Split ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.contact-card-support {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-light);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 28px;
}
.contact-card-support .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--accent-gold);
  display: grid; place-items: center;
  font-weight: 700;
}
.contact-card-support .nm { font-weight: 700; }
.contact-card-support .ph { font-size: 14px; color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent-gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group.full { grid-column: 1 / -1; margin-bottom: 14px; }

/* ===== Final CTA Banner ===== */
.cta-banner {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1612712132425-1c5a8a7d8a1f?w=2000&q=80') center/cover;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,32,26,0.55), rgba(17,32,26,0.7));
}
.cta-banner > * { position: relative; z-index: 2; color: var(--bg-light); }
.cta-banner h2 { color: var(--bg-light); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 28px; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: var(--bg-light);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,245,240,0.08);
}
.footer .brand { color: var(--bg-light); margin-bottom: 16px; }
.footer-tag { font-size: 14px; color: rgba(247,245,240,0.7); max-width: 280px; margin-bottom: 20px; }
.newsletter {
  display: flex;
  background: rgba(247,245,240,0.08);
  border-radius: 999px;
  padding: 4px;
  max-width: 320px;
}
.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--bg-light);
  outline: none;
}
.newsletter input::placeholder { color: rgba(247,245,240,0.5); }
.newsletter button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  display: grid; place-items: center;
}
.newsletter button svg { width: 16px; height: 16px; }

.footer h5 {
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 18px;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  font-size: 14px;
  color: rgba(247,245,240,0.75);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--accent-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom small {
  color: rgba(247,245,240,0.55);
  font-size: 13px;
}
.payments { display: flex; gap: 10px; align-items: center; opacity: 0.7; }
.payment-pill {
  background: rgba(247,245,240,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.socials { display: flex; gap: 10px; }
.social {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(247,245,240,0.18);
  display: grid; place-items: center;
  transition: all 0.2s;
}
.social:hover { background: var(--accent-gold); border-color: var(--accent-gold); color: var(--primary-dark); }
.social svg { width: 16px; height: 16px; color: var(--bg-light); }
.social:hover svg { color: var(--primary-dark); }

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-light);
  z-index: 200;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu .mm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu .mm-top .close {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(26,43,34,0.08);
  display: grid; place-items: center;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.mobile-menu ul a {
  display: block;
  padding: 16px 0;
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--primary-dark);
}
.mobile-menu .mm-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== Product Grid (Shop) ===== */
.shop-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.filter-side {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.filter-group { padding: 14px 0; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group h5 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; color: var(--primary-dark); }
.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
}
.filter-group input[type=checkbox], .filter-group input[type=radio] {
  width: 16px; height: 16px;
  accent-color: var(--accent-gold);
  cursor: pointer;
}
.range-row { display: flex; gap: 8px; align-items: center; }
.range-row input { width: 100%; padding: 8px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; }
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-thumb {
  height: 260px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-light);
}
.product-body { padding: 18px; }
.product-cat {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
}
.product-card h4 { margin: 6px 0; font-size: 1.1rem; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-dark);
}
.add-btn {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: var(--bg-light);
  display: grid; place-items: center;
  transition: background 0.2s;
}
.add-btn:hover { background: var(--accent-gold); color: var(--primary-dark); }
.add-btn svg { width: 14px; height: 14px; }

/* ===== Product Detail ===== */
.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pdp-gallery {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 14px;
}
.pdp-thumbs { display: flex; flex-direction: column; gap: 12px; }
.pdp-thumb {
  height: 90px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  background-color: var(--bg-light);
}
.pdp-thumb.active { border-color: var(--accent-gold); }
.pdp-main {
  height: 540px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-light);
}
.pdp-cat { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent-gold); font-weight: 700; margin-bottom: 8px; }
.pdp-title { font-size: 2rem; margin-bottom: 12px; }
.pdp-price { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 24px; }
.pdp-desc { color: var(--text-muted); margin-bottom: 28px; }
.pdp-options { margin-bottom: 24px; }
.pdp-options h5 { font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 12px; font-weight: 700; }
.pdp-variants { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-variant {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.pdp-variant:hover { border-color: var(--primary-dark); }
.pdp-variant.active { background: var(--primary-dark); color: var(--bg-light); border-color: var(--primary-dark); }
.pdp-actions { display: flex; gap: 12px; align-items: center; margin: 32px 0; }
.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.qty button { width: 40px; height: 46px; }
.qty span { padding: 0 16px; font-weight: 600; }
.pdp-meta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.pdp-meta-row svg { width: 18px; height: 18px; color: var(--accent-gold); }

/* ===== Blog Post ===== */
.post-wrap { max-width: 760px; margin: 0 auto; }
.post-hero {
  height: 420px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  margin-bottom: 36px;
}
.post-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.post-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 24px; }
.post-body p { margin-bottom: 18px; color: var(--text-dark); line-height: 1.7; font-size: 17px; }
.post-body h2 { margin: 36px 0 14px; font-size: 1.5rem; }
.post-body blockquote {
  border-left: 3px solid var(--accent-gold);
  padding: 6px 0 6px 24px;
  margin: 28px 0;
  font-size: 1.2rem;
  color: var(--text-muted);
  font-style: italic;
}
.post-back { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-dark); font-weight: 600; margin-bottom: 24px; }
.post-back svg { width: 14px; height: 14px; }

/* ===== Legal Pages ===== */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0 120px;
}
.legal-wrap h1 { margin-bottom: 8px; }
.legal-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.legal-wrap h2 { font-size: 1.25rem; margin: 28px 0 10px; }
.legal-wrap p, .legal-wrap li {
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 16px;
}
.legal-wrap ul { margin: 0 0 14px 24px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img { height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .filter-side { position: static; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .pdp-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: grid; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { min-height: 580px; }
  .hero-inner { padding: 80px 0 120px; }
  .hero-float { display: none; }
  .img-split { grid-template-columns: 1fr; }
  .img-split .img-card { height: 320px; }
  .blog-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .featured-card { bottom: -40px; padding: 24px; }
  .partners { margin-top: 80px; }
  .about-pairs { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .pdp-actions { flex-wrap: wrap; }
}
