/* =====================================================
   BRECLO® B2B LANDING — style.css
   Fonts: Cormorant Garamond (display) + Jost (body)
   Palette: Cream / Dark Green / Linen / Sand
   Max width: 1200px
   Fully responsive + slider fix + beautified sections
===================================================== */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: #222;
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Variables ── */
:root {
  --cream:       #f4f0e6;
  --cream-deep:  #ede6d4;
  --sand:        #e8ddc8;
  --linen:       #d4c5a4;
  --linen-dark:  #b8a580;
  --green-dark:  #2b4a2b;
  --green-mid:   #3d6b3d;
  --green-light: #c8d8b8;
  --wa:          #25D366;
  --text:        #1a1a1a;
  --text-mid:    #555;
  --text-light:  #888;
  --border:      #ddd5be;
  --white:       #ffffff;
  --max:         1200px;
}

/* ── Container ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5px 20px;
}

/* ── Shared Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.ico-wa { width: 16px; height: 16px; flex-shrink: 0; }
.ico-wa-lg { width: 30px; height: 30px; flex-shrink: 0; }

/* =====================================================
   NAVBAR (unchanged)
===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 60px;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  flex-shrink: 0;
}
.logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.logo-mark sup { font-size: 11px; vertical-align: super; font-weight: 600; }
.logo-sub {
  font-size: 9.5px;
  color: var(--text-light);
  letter-spacing: 0.6px;
  font-weight: 400;
}
.nav-menu ul {
  display: flex;
  gap: 28px;
}
.nav-menu a {
  font-size: 13.5px;
  color: var(--text-mid);
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-active {
    color: var(--green-dark) !important;
    font-weight: 600 !important;
    border-bottom: 2px solid var(--green-dark);
    padding-bottom: 2px;
}
.nav-menu a:hover { color: var(--green-dark); }
.nav-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-ghost-nav {
  padding: 7px 15px;
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
  background: transparent;
  font-size: 12.5px;
}
.btn-ghost-nav:hover { background: var(--green-dark); color: #fff; }
.btn-solid-nav {
  padding: 7px 16px;
  background: var(--green-dark);
  color: #fff;
  font-size: 12.5px;
  box-shadow: 0 2px 8px rgba(43,74,43,0.22);
}
.btn-solid-nav:hover { background: #1e3a1e; box-shadow: 0 4px 14px rgba(43,74,43,0.32); }

/* =====================================================
   HERO SLIDER
===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 560px;
}
.slide-left {
  padding: 68px 56px 108px 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.slide-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
  opacity: 0.85;
}
.slide-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.slide-left h1 em { font-style: italic; color: var(--green-dark); }
.slide-body {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 430px;
  margin-bottom: 30px;
  line-height: 1.75;
}
.slide-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.btn-primary-hero {
  padding: 13px 22px;
  background: var(--green-dark);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 3px 12px rgba(43,74,43,0.25);
}
.btn-primary-hero:hover { background: #1e3a1e; }
.btn-outline-hero {
  padding: 12px 20px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid #bbb;
  font-size: 14px;
}
.btn-outline-hero:hover { border-color: var(--green-dark); color: var(--green-dark); }
.btn-outline-hero-1 {
    padding: 3px 8px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid #bbb;
    font-size: 12px;
}
.slide-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-mid);
  flex-wrap: wrap;
}
.slide-right {
  position: relative;
  overflow: hidden;
  z-index: -1;
}
.slide-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 18%);
}
.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  font-size: 16px;
  color: var(--green-dark);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background 0.2s;
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--linen);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hdot.active { background: var(--green-dark); transform: scale(1.35); }

/* =====================================================
   SECTION HEADER
===================================================== */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 52px 20px 34px;
}
.sec-title {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
}
.sec-line {
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: var(--linen);
}

/* =====================================================
   WHY BRECLO
===================================================== */
.why-section { background: #fff; padding-bottom: 58px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
    padding: 40px 26px 36px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
    transition: background 0.22s;
}
.why-card:hover { background: #faf8f2; }
.why-ico {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}
.why-card p { font-size: 13px; color: var(--text-mid); }

/* =====================================================
   PRODUCTS (responsive side-by-side on mobile)
===================================================== */
.products-section { background: var(--cream); padding-bottom: 58px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prod-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.22s;
}
.prod-card:hover { box-shadow: inset 0 0 0 1px var(--linen); }
.prod-img { min-height: 250px; overflow: hidden; }
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-info { padding: 24px 28px; }
.prod-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}
.prod-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}
.dot-row { display: flex; gap: 5px; margin-bottom: 7px; }
.cdot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.prod-colors, .prod-sizes { font-size: 12.5px; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }

/* =====================================================
   TRIAL ORDER BAND
===================================================== */
.trial-section { position: relative; overflow: hidden; }
.trial-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.trial-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trial-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240,232,214,0.88);
}
.trial-content {
  position: relative;
  z-index: 1;
  padding: 64px 20px;
  text-align: center;
}
.trial-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}
.trial-content > p { font-size: 15px; color: var(--text-mid); margin-bottom: 36px; }
.trial-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 880px;
  margin: 0 auto 34px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.trial-step {
  padding: 22px 18px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.trial-step:last-child { border-right: none; }
.ts-label {
  display: block;
  font-size: 10.5px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}
.ts-val { font-size: 14px; font-weight: 700; color: var(--text); }
.trial-wa { margin: 0 auto; }

/* =====================================================
   SIZE + FABRIC (unchanged)
===================================================== */
.info-section { padding: 54px 0 60px; background: #fff; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.info-title {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 20px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--green-dark);
  display: inline-block;
}
.sz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 22px;
}
.sz-table th, .sz-table td {
  border: 1px solid var(--border);
  padding: 11px 10px;
  text-align: left;
}
.sz-table th { background: var(--cream); font-weight: 600; color: var(--text); }
.color-guide { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cg-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.cg-sw { width: 30px; height: 30px; border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,0.12); }
.moq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.moq-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px 10px;
  text-align: center;
}
.moq-tag {
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
  font-weight: 600;
}
.moq-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.fabric-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.fc-item { text-align: center; width: 126px; }
.fc-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 2px solid var(--border);
  background: var(--cream);
}
.fc-circle img { width: 100%; height: 100%; object-fit: cover; }
.fc-item p { font-size: 13px; color: var(--text-mid); }
.fabric-note {
  font-size: 20px;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

/* =====================================================
   WHO CAN BUY BRECLO LINEN (beautified)
===================================================== */
.who-section {
  background: linear-gradient(145deg, #fefcf7 0%, #faf6ed 100%);
  padding-bottom: 58px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.who-card {
  background: #fff;
  padding: 30px 12px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  border: 1px solid rgba(0,0,0,0.02);
}
.who-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.12);
  border-color: var(--linen);
}
.who-ico {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.who-ico svg {
  width: 44px;
  height: 44px;
  stroke: #6b5a4a;
  transition: stroke 0.2s;
}
.who-card:hover .who-ico svg {
  stroke: var(--green-dark);
}
.who-card p {
  font-size: 13px;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .who-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 640px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .who-card { padding: 22px 8px; }
}

/* =====================================================
   CONTACT / LET'S GROW TOGETHER (restructured)
===================================================== */
.contact-section { padding: 54px 0 62px; background: #fff; border-top: 1px solid var(--border); }
.contact-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 52px;
}
.contact-sidebar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.contact-sidebar > p { font-size: 13.5px; color: var(--text-mid); margin-bottom: 22px; }
.wa-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.btn-wa-chat {
  padding: 10px 18px;
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  justify-content: center;
  border-radius: 30px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.form-row-wiq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.form-row-msg {
  width: 100%;
}
.form-row-btn {
  width: 100%;
}
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-mid);
}
.fg input, .fg select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13.5px 12px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  background: #fff;
  outline: none;
  transition: all 0.2s;
}
.fg input:focus, .fg select:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 2px rgba(43,74,43,0.1);
}
.phone-wrap { display: flex; gap: 6px; }
.ph-code { width: 70px; flex-shrink: 0; }
.btn-wa-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-wa-send:hover { background: #1aa850; transform: scale(0.98); }

@media (max-width: 960px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .form-row-1, .form-row-wiq { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .form-row-1, .form-row-wiq { grid-template-columns: 1fr; }
}

/* =====================================================
   BOTTOM CTA (unchanged)
===================================================== */
.cta-band { position: relative; overflow: hidden; }
.cta-bg-img {
  position: absolute;
  inset: 0;
}
.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,74,43,0.88);
}
.cta-inner {
  position: relative;
  z-index: 1;
  padding: 52px 20px;
  text-align: center;
}
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 28px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-btn {
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.1);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 40px;
}
.cta-btn:hover { background: rgba(255,255,255,0.2); }
.cta-wa { background: var(--wa); border-color: var(--wa); }

/* =====================================================
   FOOTER (unchanged)
===================================================== */
.footer { background: #111; color: #999; }
.footer-top {
  padding: 52px 20px 44px;
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 40px;
  border-bottom: 1px solid #222;
}
.ft-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.ft-domain {
  font-size: 10px;
  color: #555;
  margin-bottom: 12px;
}
.ft-tagline { font-size: 11.5px; color: #666; }
.ft-col h5 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.ft-col ul li { margin-bottom: 9px; }
.ft-col ul li a { font-size: 13px; color: #777; transition: color 0.2s; }
.ft-col ul li a:hover { color: #ccc; }
.ft-contact p {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  background: #0d0d0d;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.footer-bottom p, .ft-bottom-links a { font-size: 12px; color: #444; }
.ft-bottom-links { display: flex; gap: 20px; }

/* =====================================================
   RESPONSIVE EXTRA (mobile product cards side-by-side)
===================================================== */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .trial-steps { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-btn { width: 32px; height: 32px; }
}
@media (max-width: 640px) {
  .container { padding: 5px 16px; }
  .nav-inner { padding: 0 16px; }
  .nav-menu, .nav-actions .btn-ghost-nav { display: none; }
  .slide-left { padding: 44px 20px; }
  .slide-left h1 { font-size: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  /* force side-by-side image+text on product cards */
  .prod-card {
    grid-template-columns: 120px 1fr;
  }
  .prod-img {
    min-height: auto;
  }
  .prod-info {
    padding: 16px;
  }
  .trial-steps { grid-template-columns: 1fr; }
  .trial-step { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr; padding: 36px 20px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
}

/* video modal */
.video-modal {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    z-index:99999;
}
.video-modal-content{
    width:90%;
    max-width:400px;
    margin:60px auto;
    position:relative;
}
.video-modal video{
    width:100%;
    border-radius:12px;
}
.close-video{
    position:absolute;
    right:0;
    top:-48px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================
   MOBILE NAVIGATION MENU (hamburger)
===================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--green-dark);
  cursor: pointer;
  padding: 0 8px;
}
@media (max-width: 960px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 60px);
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 24px 20px;
    overflow-y: auto;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }
  .nav-menu a {
    font-size: 16px;
    display: block;
    padding: 8px 0;
  }
  .nav-actions {
    display: none;
  }
  body.menu-open::after {
    content: '';
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
}

/* wider product images on mobile */
@media (max-width: 640px) {
  .prod-card {
    grid-template-columns: 160px 1fr !important;
  }
  .prod-img {
    min-height: 180px;
  }
}
/* =====================================================
   MOBILE NAVIGATION MENU - FULLY CLICKABLE
===================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--green-dark);
  cursor: pointer;
  padding: 0 8px;
  z-index: 10001;
  position: relative;
}

@media (max-width: 960px) {
  .mobile-menu-toggle {
    display: block;
  }

  /* Ensure the menu is above everything */
  .nav-menu {
    display: block !important;
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: right 0.35s ease-in-out;
    z-index: 1000 !important;
    padding: 30px 25px;
    overflow-y: auto;
    pointer-events: auto !important;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    display: flex;
    margin: 0;
    padding: 0;
  }

  .nav-menu li {
    list-style: none;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    pointer-events: auto !important;
  }

  .nav-menu a {
    font-size: 18px;
    display: block;
    padding: 12px 0;
    color: #1a1a1a !important;
    font-weight: 500;
    text-decoration: none;
    pointer-events: auto !important;
    cursor: pointer;
  }

  .nav-menu a:hover,
  .nav-menu a:active {
    color: var(--green-dark) !important;
  }

  .nav-menu a.nav-active {
    color: var(--green-dark) !important;
    border-bottom: none;
  }

  /* Hide desktop action buttons on mobile */
  .nav-actions {
    display: none;
  }

  /* Overlay - placed below the menu */
  body.menu-open::after {
    content: '';
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100 !important;
    pointer-events: auto;
  }
}

/* Make sure product images are wider on mobile */
@media (max-width: 640px) {
  .prod-card {
    grid-template-columns: 160px 1fr !important;
  }
  .prod-img {
    min-height: 180px;
  }
}