/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --green-dark:  #1E3A2F;
  --green-mid:   #2D5A27;
  --green-light: #3D7A35;
  --amber:       #D4831A;
  --amber-dark:  #B86A10;
  --cream:       #F7F3EE;
  --cream-dark:  #EDE7DC;
  --text-dark:   #1A1A1A;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --white:       #FFFFFF;
  --nav-height:  76px;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.10);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.15);
  --transition:  0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul[role="list"] { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--text-dark);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 5rem;
}

.section--alt {
  background: var(--cream-dark);
}

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.6rem;
}

.section__eyebrow--light {
  color: rgba(255,255,255,0.65);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section__title--light {
  color: var(--white);
}

.section__sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.7;
}

.section__sub--light {
  color: rgba(255,255,255,0.75);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header .section__sub {
  margin-inline: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--lg {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,131,26,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--ghost:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: var(--green-dark);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__link {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

/* Between the desktop layout and the 900px hamburger breakpoint the bar
   is tight — collapse the email to its icon so all links fit on one line */
@media (max-width: 1200px) and (min-width: 901px) {
  .nav__link { padding: 0.45rem 0.5rem; }
  .nav__phone-text { display: none; }
}

.nav__link:hover,
.nav__link[aria-current] {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.nav__phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav__phone:hover {
  color: var(--amber);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(to bottom, rgba(10,25,15,0.65) 0%, rgba(10,25,15,0.45) 50%, rgba(10,25,15,0.82) 100%),
    url('../assets/extra-images/IMG_8026.webp') center center / cover no-repeat;
  color: var(--white);
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 5rem 3rem;
}

.hero__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero__actions .btn--amber {
  font-size: 1.125rem;
  padding: 1.0625rem 2.5rem;
}

/* Hero tiles */
.hero__tiles {
  background: rgba(10,25,15,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.hero__tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero__tile {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: background var(--transition);
  position: relative;
}

.hero__tile + .hero__tile {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.hero__tile:hover {
  background: rgba(255,255,255,0.08);
}

.hero__tile-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--amber);
}

.hero__tile-icon svg {
  width: 100%;
  height: 100%;
}

.hero__tile-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.hero__tile-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.hero__tile-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.hero__tile-arrow {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  margin-left: auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.product {
  background: var(--white);
}

.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.product__image {
  width: 100%;
  height: auto;
  display: block;
}

.product__details {
  padding-block: 1rem;
}

.product__name {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.product__price {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.product__price-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product__price-note {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.product__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product__specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.product__specs li svg {
  width: 16px;
  height: 16px;
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 3px;
}

.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product__payment {
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.product__payment-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.product__payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Payment badges */
.payment-badge {
  display: inline-block;
  padding: 0.35rem 0.875rem;
  background: var(--cream-dark);
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  border: 1px solid rgba(0,0,0,0.08);
}

.payment-badge--light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

/* Payment-method logo chip (PayPal, etc.) — white pill that reads
   cleanly on both light and dark backgrounds */
.payment-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  line-height: 0;
}

.payment-logo img {
  display: block;
  height: auto;
}

/* ============================================================
   FEATURES
   ============================================================ */
/* ============================================================
   HOW IT WORKS (PROCESS)
   ============================================================ */
.process {
  background: var(--green-dark);
}

.process .section__eyebrow {
  color: var(--amber);
}

.process .section__title {
  color: var(--white);
}

.process .section__sub {
  color: rgba(255,255,255,0.70);
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 1rem;
}

.process__step {
  text-align: center;
  padding: 1rem;
}

.process__num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: -1.25rem;
}

.process__icon {
  width: 64px;
  height: 64px;
  color: var(--amber);
  margin: 0 auto 1.25rem;
}

.process__icon svg {
  width: 100%;
  height: 100%;
}

.process__step h3 {
  font-size: 1.1875rem;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.process__step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 260px;
  margin-inline: auto;
}

.process__step p + p {
  margin-top: 1rem;
}

.process__step p a {
  color: var(--amber);
  text-decoration: underline;
}

.process__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  color: rgba(255,255,255,0.20);
}

.process__connector::before {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(to right, rgba(212,131,26,0.4), rgba(212,131,26,0.15));
  border-radius: 2px;
}

/* ============================================================
   SHIPPING
   ============================================================ */
.shipping__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.shipping-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.shipping-card__icon {
  width: 44px;
  height: 44px;
  color: var(--green-mid);
  margin-bottom: 1rem;
}

.shipping-card__icon svg {
  width: 100%;
  height: 100%;
}

.shipping-card h3 {
  font-size: 1.0625rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.shipping-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.shipping__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.shipping__note a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   WARRANTY
   ============================================================ */
.warranty__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

.warranty .section__title {
  margin-bottom: 1.25rem;
}

.warranty__text p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.warranty__text strong {
  color: var(--green-dark);
  font-weight: 600;
}

/* Inline link in the body copy — global `a` is color:inherit, so it needs
   its own treatment to read as a link. */
.warranty__text p a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.warranty__link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--green-mid);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.warranty__link:hover { color: var(--green-light); }

.warranty__badges {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.warranty__badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--cream-dark);
  border: 1px solid rgba(30,58,47,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}

.warranty__badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-dark);
}

.warranty__badge--featured {
  background: rgba(212,131,26,0.12);
  border-color: rgba(212,131,26,0.35);
}

.warranty__badge--featured strong {
  color: var(--amber-dark);
}

.warranty__badge span {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ============================================================
   ABOUT — shared by the /about page (see css/about.css)
   ============================================================ */
.about__email {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about__cred {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 500;
}

.about__cred svg {
  width: 16px;
  height: 16px;
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__fact {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.about__fact strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.about__fact span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about__fact--logo { justify-content: center; align-items: center; padding: 1rem; }
.about__fact-logo { width: 100%; max-width: 140px; height: auto; object-fit: contain; border-radius: var(--radius); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--green-dark);
}

.contact__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.contact__header {
  margin-bottom: 2.5rem;
}

.contact__methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  text-align: left;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
  flex: 1;
  min-width: 200px;
}

.contact-method:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.30);
}

.contact-method--hours {
  cursor: default;
}

.contact-method__icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method__icon svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
}

.contact-method__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-method__text strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-method__text span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.contact__payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact__payment > p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.50);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__payment-methods {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111e17;
  color: rgba(255,255,255,0.60);
  padding-block: 3.5rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.50);
}

.footer__social {
  display: flex;
  gap: 0.625rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition);
}

.footer__social-link:hover {
  background: var(--green-mid);
  color: var(--white);
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.footer__contact li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 3px;
}

.footer__contact li a,
.footer__contact li span {
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
  transition: color var(--transition);
}

.footer__contact li a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.30);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 900px) {
  .nav__hamburger { display: flex; }
  .nav__phone { display: none; }

  .nav__links {
    position: fixed;
    inset: 0;
    top: var(--nav-height);
    background: var(--green-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem 1.25rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    margin-left: 0;
    z-index: 899;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.25rem;
    padding: 0.875rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
  }
}

/* ============================================================
   RESPONSIVE — TABLETS (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .section { padding-block: 4rem; }

  .hero__tiles-grid {
    grid-template-columns: 1fr;
  }

  .hero__tile + .hero__tile {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .product__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product__image-wrap {
    position: static;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process__connector {
    display: none;
  }

  .process__step {
    text-align: left;
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 1.25rem;
    row-gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
  }

  .process__num {
    grid-column: 1;
    grid-row: 1;
    font-size: 2.5rem;
    margin-bottom: 0;
    text-align: center;
  }

  .process__icon {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    width: 52px;
    height: 52px;
  }

  .process__step h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .process__step p {
    grid-column: 2;
    grid-row: 2;
    margin-inline: 0;
    max-width: none;
  }

  .shipping__grid {
    grid-template-columns: 1fr;
  }

  .warranty__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .warranty__badges {
    flex-direction: row;
  }

  .warranty__badge {
    flex: 1;
  }

  .contact__methods {
    flex-direction: column;
  }

  .contact-method {
    min-width: unset;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --nav-height: 64px; }

  .section { padding-block: 3rem; }

  .hero__content { padding-block: 3.5rem 2.5rem; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .product__actions { flex-direction: column; }
  .product__actions .btn { width: 100%; justify-content: center; }

  .about__credentials {
    grid-template-columns: 1fr;
  }

  .about__facts {
    grid-template-columns: 1fr 1fr;
  }

  .warranty__badges {
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   CART ICON IN NAV
   ============================================================ */
.nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav__cart:hover {
  background: rgba(255,255,255,0.12);
}

.nav__cart svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-inline: 3px;
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.3s ease;
}

.cart-overlay.open {
  background: rgba(0,0,0,0.55);
  pointer-events: auto;
}

.cart-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.20);
}

.cart-overlay.open .cart-sidebar {
  transform: translateX(0);
}

.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--green-dark);
}

.cart-sidebar__title {
  font-size: 1.125rem;
  color: var(--white);
}

.cart-sidebar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.10);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  transition: background var(--transition);
}

.cart-sidebar__close:hover {
  background: rgba(255,255,255,0.20);
}

.cart-sidebar__close svg {
  width: 18px;
  height: 18px;
}

.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-sidebar__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--cream);
}

.cart-item {
  margin-bottom: 1.25rem;
}

.cart-item__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.cart-item__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.cart-item__qty-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}

.cart-item__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.cart-addons {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.cart-addon {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-mid);
}

.cart-freight-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  background: rgba(30,58,47,0.05);
  border-left: 3px solid var(--green-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.625rem 0.875rem;
}

.cart-freight-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-mid);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.cart-total strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--green-dark);
}

.cart-continue-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  padding: 0.5rem;
  transition: color var(--transition);
}

.cart-continue-btn:hover { color: var(--text-dark); }

/* ============================================================
   BUTTON MODIFIERS
   ============================================================ */
.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn--disabled,
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================================================
   CONFIGURATOR SECTION
   ============================================================ */
.configurator {
  background: var(--white);
}

.configurator__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ---- Dimension image ---- */
.dimension-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  background: var(--cream-dark);
}

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

.dimension-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--cream-dark);
}

.dimension-diagram {
  width: 100%;
  height: auto;
  display: block;
}

.dimension-placeholder__note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ---- Inclusions ---- */
.inclusions__heading {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.875rem;
}

.inclusions__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.inclusions__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.inclusions__list li svg {
  width: 15px;
  height: 15px;
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---- Config panel ---- */
.config-panel {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--cream);
}

.config-panel__product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.config-panel__base-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.config-panel__price-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.config-panel__price-note {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ---- Config sections ---- */
.config-section {
  margin-bottom: 1.5rem;
}

.config-section__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.config-section__hint {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: -0.5rem;
  margin-bottom: 0.875rem;
}

/* ---- Quantity controls ---- */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.qty-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.qty-btn:hover {
  background: var(--cream-dark);
}

.qty-btn--sm {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}

.qty-display {
  min-width: 44px;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  border-left: 1.5px solid var(--cream-dark);
  border-right: 1.5px solid var(--cream-dark);
  padding-block: 0.5rem;
  line-height: 1;
  background: var(--white);
}

.qty-display--sm {
  min-width: 32px;
  font-size: 0.9375rem;
}

/* ---- Addon rows ---- */
.addon-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.addon-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0.875rem;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.addon-row:hover {
  border-color: var(--green-mid);
}

.addon-row__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.addon-row__label {
  flex: 1;
  position: relative;
}

.addon-row__name {
  background: none;
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-style: dashed;
  text-decoration-color: var(--green-mid);
  transition: color var(--transition);
}

.addon-row__name:hover {
  color: var(--green-mid);
}

/* Homepage: plain, non-interactive option name (no hover tooltip) */
.addon-row__name--static {
  cursor: default;
  text-decoration: none;
}

.addon-row__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
  min-width: 80px;
}

.addon-row__unit-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-mid);
}

.addon-row__subtotal {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* ---- Addon tooltip ---- */
.addon-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  z-index: 200;
  width: 240px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.addon-tooltip.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.addon-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--green-dark);
  transform: rotate(45deg);
  border-radius: 1px;
}

.addon-tooltip__img-wrap {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  height: 130px;
  background: rgba(255,255,255,0.08);
}

.addon-tooltip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.addon-tooltip__img-wrap.no-img .addon-tooltip__img {
  display: none;
}

.addon-tooltip__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  display: none;
}

.addon-tooltip__img-wrap.no-img .addon-tooltip__placeholder {
  display: flex;
}

.addon-tooltip__placeholder svg {
  width: 32px;
  height: 32px;
}

.addon-tooltip__placeholder span {
  font-size: 0.75rem;
}

.addon-tooltip__desc {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
}

/* ---- Config total row ---- */
.config-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0 0.5rem;
  border-top: 2px solid var(--cream-dark);
  margin-top: 0.5rem;
}

.config-total-row__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.config-total-row__amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.config-total-row__amount.config-total__amount--tbc {
  font-size: 1.25rem;
  color: var(--text-light);
}

.config-total-row__freight {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

/* ---- Config payment ---- */
.config-payment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.config-payment__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.config-payment__methods {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

/* ============================================================
   CONFIGURATOR RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .configurator__grid {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .configurator__grid {
    grid-template-columns: 1fr;
  }

  .config-panel {
    position: static;
  }

  .addon-tooltip {
    left: auto;
    right: 0;
  }

  .addon-tooltip::after {
    left: auto;
    right: 20px;
  }
}

@media (max-width: 640px) {
  .addon-row {
    flex-wrap: wrap;
    gap: 0.625rem;
  }

  .addon-row__label {
    width: 100%;
    order: -1;
  }

  .addon-row__price-wrap {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
  }
}

/* ---- Inclusions note under qty ---- */
.config-section__includes {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}

/* Tighter vertical rhythm — this section is a lean configure + enquire widget
   (the hero right above already introduces the product) */
#product.section { padding-block: 3rem; }

/* ---- Unified order panel (homepage: configurator + enquiry form in ONE card) ---- */
.order-panel {
  max-width: 900px;
  margin: 0 auto;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  background: var(--cream);
  overflow: hidden;
}

/* top: two columns — configurator (left) + enquiry details (right) */
.order-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* left half: configurator */
.order-panel__config {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

/* right half: enquiry details, split from the left only by a hairline divider */
.order-panel__fields {
  padding: 1.5rem;
  border-left: 1px solid var(--cream-dark);
}

/* full-width footer: disclaimer + Send Enquiry span both columns */
.order-panel__footer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.order-panel__footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.order-panel__footer-meta .enquiry-form__note { margin: 0; text-align: left; }
.order-panel__footer-meta .config-payment { margin: 0; }

/* success state fills the card (which has no padding of its own) */
.order-panel .enquiry-success { padding: 2.5rem 2rem; }

/* a touch more compact so the whole panel sits comfortably in view */
.order-panel .config-section { margin-bottom: 1.15rem; }
.order-panel .config-section__label { margin-bottom: 0.6rem; }
.order-panel .enquiry-form__field { margin-bottom: 0.8rem; }
.order-panel .enquiry-form__row { margin-bottom: 0.8rem; }

/* Keep the long disclaimer text muted — only the required "*" stays amber.
   (Overrides the broad `.enquiry-form__field label span` asterisk colour.) */
.order-panel .enquiry-checkbox-text {
  color: var(--text-mid);
}

/* On the stacked (mobile) layout, configure the order first, then fill the form */
@media (max-width: 900px) {
  .order-panel__grid { grid-template-columns: 1fr; }
  .order-panel__fields { border-left: none; }
  .order-panel__config { border-bottom: 1px solid var(--cream-dark); }
}

/* ============================================================
   ORDER PANEL — DELIVERY + DEPOSIT STEP
   ============================================================ */
/* Locked details while on the delivery step */
.order-panel input[readonly],
.order-panel select:disabled {
  background: var(--cream);
  opacity: 0.75;
}

/* scroll target when the step opens — keep it clear of the fixed nav */
#panel-step-delivery {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.dv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.dv-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dv-steps__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

.dv-steps__item:not(:last-child)::after {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--cream-dark);
}

.dv-steps__item--done,
.dv-steps__item--active {
  color: var(--green-dark);
}

.dv-back {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-mid);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dv-back:hover { color: var(--green-dark); }

/* ---- Option cards ---- */
.dv-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dv-option__card {
  display: block;
  padding: 1rem 1.125rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.dv-option:has(.dv-option__radio:checked) .dv-option__card {
  border-color: var(--green-mid);
  background: rgba(45, 90, 39, 0.04);
}

.dv-option__radio:focus-visible + .dv-option__name {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dv-option__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.dv-option__radio {
  width: 18px;
  height: 18px;
  accent-color: var(--green-mid);
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}

.dv-option__name {
  flex: 1;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.dv-option__price {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-mid);
  white-space: nowrap;
}

.dv-option__note {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-top: 0.45rem;
  padding-left: calc(18px + 0.75rem);
}

.dv-option__reveal {
  display: none;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  padding-left: calc(18px + 0.75rem);
  border-top: 1px solid var(--cream-dark);
}

.dv-option:has(.dv-option__radio:checked) .dv-option__reveal {
  display: block;
}

/* ---- Sub-choice pills (depot / zone) ---- */
.dv-choices { display: block; }

.dv-choices__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.dv-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dv-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.dv-pill input {
  width: 15px;
  height: 15px;
  accent-color: var(--green-mid);
  margin: 0;
  cursor: pointer;
}

.dv-pill:has(input:checked) {
  border-color: var(--green-mid);
  background: rgba(45, 90, 39, 0.06);
  color: var(--green-dark);
}

.dv-choices__desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 0.55rem;
}

/* ---- Zone rows (site delivery: city → zones) ---- */
.dv-zones { display: block; }

.dv-zones:not(:empty) { margin-top: 0.875rem; }

.dv-zones__label { margin-bottom: 0.5rem; }

.dv-zone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.875rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.dv-zone + .dv-zone { margin-top: 0.5rem; }

.dv-zone:has(.dv-zone__radio:checked) {
  border-color: var(--green-mid);
  background: rgba(45, 90, 39, 0.06);
}

.dv-zone__radio {
  width: 16px;
  height: 16px;
  accent-color: var(--green-mid);
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}

.dv-zone__body {
  flex: 1;
  display: block;
  min-width: 0;
}

.dv-zone__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dv-zone__desc {
  display: block;
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.45;
  margin-top: 0.15rem;
}

.dv-zone__price {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-mid);
  white-space: nowrap;
}

/* ---- Trailer acknowledgement ---- */
.dv-ack {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  margin-top: 0.875rem;
}

.dv-ack__input {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--green-mid);
  cursor: pointer;
}

.dv-ack span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-mid);
}

/* Shipping & Delivery Policy tick — gates the PayPal buttons */
.dv-ack--policy { margin: 0.25rem 0 1rem; }
.dv-ack--policy span a { color: var(--green-mid); text-decoration: underline; }
.dv-ack--policy span a:hover { color: var(--green-dark); }
.dv-ack--policy + .enquiry-checkbox-error { margin-left: 1.675rem; margin-bottom: 1rem; }

/* ---- "Other Options" request box ---- */
.dv-request { display: block; }

.dv-request__text {
  width: 100%;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.dv-request__text:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.15);
}

.dv-request .btn { margin-top: 0.75rem; }

.dv-request__note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 0.6rem;
}

/* ---- Deposit summary + PayPal ---- */
.dv-deposit {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  margin-top: 1.1rem;
  border-top: 2px solid var(--cream-dark);
}

.dv-deposit__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dv-deposit__amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.dv-deposit-note {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0.4rem 0 1rem;
}

.dv-paypal {
  max-width: 480px;
  margin: 0 auto;
}

.dv-paypal-note {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  text-align: center;
  margin-top: 0.6rem;
}

.dv-paypal-note:empty { display: none; }

.dv-paypal-note a { color: inherit; font-weight: 700; }

.dv-paypal-retry {
  display: block;
  margin: 0.6rem auto 0;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius);
  background: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-mid);
  cursor: pointer;
}

.dv-paypal-retry:hover {
  background: rgba(45, 90, 39, 0.06);
}

/* success detail line (txn id / order ref) */
.enquiry-success__detail {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: -0.75rem 0 1.5rem;
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.enquiry-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.enquiry-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.enquiry-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px);
  transition: transform var(--transition);
}

.enquiry-overlay.open .enquiry-modal {
  transform: translateY(0);
}

.enquiry-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  padding: 0.25rem;
  line-height: 0;
  border-radius: var(--radius);
  transition: color var(--transition);
}

.enquiry-modal__close svg {
  width: 20px;
  height: 20px;
}

.enquiry-modal__close:hover {
  color: var(--text-dark);
}

.enquiry-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 0.375rem;
  padding-right: 2rem;
}

.enquiry-modal__sub {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.enquiry-order-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.enquiry-form__field {
  margin-bottom: 1rem;
}

.enquiry-form__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.enquiry-form__field label span {
  color: var(--amber);
}

.enquiry-form__field input {
  width: 100%;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.enquiry-form__field input:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.15);
}

.enquiry-form__field input.error {
  border-color: #e53e3e;
}

.enquiry-form__row { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.enquiry-form__row .enquiry-form__field { flex: 1; margin-bottom: 0; }
.enquiry-form__row .enquiry-form__field--narrow { flex: 0 0 90px; }

.enquiry-form__field select {
  width: 100%;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.enquiry-form__field select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,90,39,0.15);
}
.enquiry-form__field select.error { border-color: #e53e3e; }

.enquiry-form__submit {
  margin-top: 0.5rem;
}

.enquiry-form__note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  text-align: center;
}

.enquiry-form__error {
  font-size: 0.85rem;
  color: #c0392b;
  margin-top: 0.75rem;
  text-align: center;
}

.enquiry-form__error a {
  color: inherit;
  font-weight: 700;
}

.enquiry-success {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}

.enquiry-success svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.enquiry-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.enquiry-success p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

/* ============================================================
   FEATURE LIST (expandable)
   ============================================================ */
.feature-list {
  max-width: 820px;
  margin: 0 auto;
}

.feature-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.125rem 0;
}

.feature-list > .feature-item:first-child {
  border-top: 1px solid var(--cream-dark);
}

/* Expandable (details) items */
details.feature-item {
  cursor: pointer;
}

details.feature-item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}

details.feature-item summary::-webkit-details-marker {
  display: none;
}

.feature-item__text {
  flex: 1;
  font-size: 0.9875rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.feature-item__text strong {
  color: var(--green-dark);
}

.feature-item__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green-mid);
  margin-top: 0.2rem;
  transition: transform var(--transition);
}

details[open] .feature-item__chevron {
  transform: rotate(180deg);
}

.feature-item__bullets {
  margin-top: 0.625rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.feature-item__bullets li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Static (non-expandable) items */
.feature-item--static .feature-item__text {
  display: block;
}

/* About page origins line */
.about__origins {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.about__subtitle {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 1rem;
}

/* ---- Enquiry form checkbox ---- */
.enquiry-form__field--checkbox { margin-top: 0.25rem; }
.enquiry-checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.enquiry-checkbox-label input[type="checkbox"] { flex-shrink: 0; width: 1.125rem; height: 1.125rem; margin-top: 0.15rem; accent-color: var(--green-mid); cursor: pointer; }
.enquiry-checkbox-text { font-size: 0.8rem; line-height: 1.55; color: var(--text-mid); }
.enquiry-checkbox-text a { color: var(--green-mid); text-decoration: underline; }
.enquiry-checkbox-text a:hover { color: var(--green-dark); }
.enquiry-checkbox-error { font-size: 0.78rem; color: #c0392b; margin-top: 0.35rem; margin-left: 1.875rem; }
