/* Arbor & Vines — shared styles
   Finalized brand palette + typography (Brand Guidelines v3, June 2026).
   Colors: Deep Green #1F3A2E · Mid Green #6B8C52 · Cream #F7F3EA · Wood #8B7355 · Light Green #A8BB8A
   Type: Cormorant Garamond (display) · Montserrat (body/UI) */

:root {
  --av-green-deep: #1f3a2e;
  --av-green: #6b8c52;
  --av-cream: #f7f3ea;
  --av-cream-dark: #efe8d8;
  --av-wood: #8b7355;
  --av-light-green: #a8bb8a;
  --av-charcoal: #2a2a28;
  --av-line: #ddd4bf;
  --av-error: #a3402f;

  /* Back-compat alias (was brass in the placeholder palette) */
  --av-brass: #8b7355;

  --av-font-display: "Cormorant Garamond", Georgia, serif;
  --av-font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--av-cream);
  color: var(--av-charcoal);
  font-family: var(--av-font-body);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--av-font-display);
  font-weight: 600;
  color: var(--av-green-deep);
  margin: 0 0 0.4em;
  line-height: 1.15;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

a {
  color: var(--av-green-deep);
}

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

/* ---------- Header / navigation ---------- */

.av-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 2rem;
  background: var(--av-green-deep);
  color: var(--av-cream);
  position: sticky;
  top: 0;
  z-index: 90;
}

.av-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.av-logo-link img {
  height: 34px;
  width: auto;
}

.av-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.av-nav a {
  color: var(--av-cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.av-nav a:hover {
  color: var(--av-light-green);
}

.av-nav a.av-active {
  border-bottom-color: var(--av-light-green);
  color: var(--av-light-green);
}

.av-cart-btn {
  position: relative;
  background: transparent;
  border: 1px solid rgba(247, 243, 234, 0.5);
  border-radius: 4px;
  color: var(--av-cream);
  font-family: var(--av-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.av-cart-btn:hover {
  border-color: var(--av-light-green);
  color: var(--av-light-green);
}

.av-cart-count {
  display: none;
  background: var(--av-light-green);
  color: var(--av-green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  min-width: 1.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  text-align: center;
  padding: 0 0.25rem;
}

.av-cart-count.av-visible {
  display: inline-block;
}

.av-header-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.av-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--av-cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

@media (max-width: 900px) {
  .av-nav-toggle {
    display: block;
  }

  /* The horizontal logo lockup is ~223px wide at its desktop height. Together
     with the Cart button, menu icon, gaps and 2rem side padding, the header
     needed roughly 439px — wider than a typical phone — so it overflowed and
     pushed the menu icon off the right edge. Tightening all three keeps the
     row comfortably inside a narrow screen. */
  .av-header {
    padding: 0.9rem 1rem;
    gap: 0.6rem;
  }

  .av-logo-link {
    min-width: 0;
  }

  .av-logo-link img {
    height: 28px;
    max-width: 100%;
  }

  .av-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--av-green-deep);
    padding: 0.5rem 2rem 1.2rem;
    border-top: 1px solid rgba(247, 243, 234, 0.15);
  }

  .av-nav.av-open {
    display: flex;
  }

  .av-nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(247, 243, 234, 0.1);
  }
}

/* ---------- Hero / page intro ---------- */

.av-hero {
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}

/* Heroes made of a heading alone (About). The standard bottom padding assumes a
   subhead sits beneath the h1; with no subhead to occupy it, the space reads as
   an accidental gap — most obviously on narrow screens. */
.av-hero-tight {
  padding-bottom: 1rem;
}

.av-hero-tight h1 {
  margin-bottom: 0.25em;
}

.av-hero p {
  font-size: 1.05rem;
  color: #4a4a46;
}

/* Homepage split hero */
.av-home-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.av-home-hero h1 {
  font-size: 3.1rem;
}

.av-home-hero p {
  font-size: 1.08rem;
  color: #4a4a46;
  margin-bottom: 1.6rem;
}

.av-home-hero .av-hero-photo img {
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(31, 58, 46, 0.18);
}

@media (max-width: 800px) {
  .av-home-hero {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    text-align: center;
  }

  .av-home-hero h1 {
    font-size: 2.3rem;
  }

  .av-home-hero .av-hero-photo {
    order: -1;
  }
}

/* ---------- Generic layout ---------- */

.av-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.av-container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.av-section {
  padding: 3rem 0 0.5rem;
}

.av-section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.av-section-heading p {
  color: #4a4a46;
}

.av-band {
  background: var(--av-green-deep);
  padding: 3rem 0;
}

.av-band-green {
  background: var(--av-green-deep);
  color: var(--av-cream);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.av-band-green h2 {
  color: var(--av-cream);
}

.av-band-green p {
  color: var(--av-light-green);
  font-size: 1.05rem;
}

.av-center {
  text-align: center;
}

/* ---------- Value props strip ---------- */

.av-value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.av-value-props article h3 {
  font-family: var(--av-font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--av-cream);
  margin-bottom: 0.35rem;
}

.av-value-props article p {
  font-size: 0.9rem;
  color: var(--av-light-green);
  margin: 0;
}

@media (max-width: 900px) {
  .av-value-props {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .av-value-props {
    grid-template-columns: 1fr;
  }
}

/* ---------- Collections preview grid (homepage) ---------- */

.av-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.av-collection-card {
  background: #fff;
  border: 1px solid var(--av-line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.av-collection-card:hover {
  box-shadow: 0 10px 28px rgba(31, 58, 46, 0.14);
  transform: translateY(-2px);
}

/* Card photos are wrapped in <picture> for WebP with a JPEG fallback; the wrapper
   must generate no box so the <img> stays a direct flex child of the card. */
.av-collection-card picture {
  display: contents;
}

.av-collection-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.av-collection-card .av-card-body {
  padding: 1rem 1.2rem 1.2rem;
}

.av-collection-card h3 {
  margin-bottom: 0.15rem;
}

.av-collection-card p {
  font-size: 0.88rem;
  color: #4a4a46;
  margin: 0;
}

@media (max-width: 800px) {
  .av-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .av-collection-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Who We Work With (verticals chips) ---------- */

.av-verticals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.av-vertical-chip {
  background: #fff;
  border: 1px solid var(--av-line);
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--av-green-deep);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .av-vertical-chip {
    white-space: normal;
    text-align: center;
  }
}

/* ---------- Steps (How It Works + homepage teaser) ---------- */

.av-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.av-step {
  background: #fff;
  border: 1px solid var(--av-line);
  border-radius: 8px;
  padding: 1.6rem 1.5rem;
}

.av-step .av-step-num {
  font-family: var(--av-font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--av-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.av-step-icon {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: 0.9rem;
}

.av-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.av-step p {
  font-size: 0.92rem;
  color: #4a4a46;
  margin: 0;
}

@media (max-width: 800px) {
  .av-steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Testimonials ---------- */

.av-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.av-quote-card {
  background: #fff;
  border: 1px solid var(--av-line);
  border-radius: 8px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.av-stars {
  color: var(--av-wood);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.av-quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: #4a4a46;
  flex-grow: 1;
}

.av-quote-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--av-green-deep);
}

@media (max-width: 800px) {
  .av-testimonials {
    grid-template-columns: 1fr;
  }
}

/* ---------- Split sections (about teaser, founder note) ---------- */

.av-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.av-split img {
  border-radius: 8px;
}

.av-split-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.av-split-photo-cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.av-photo-placeholder {
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--av-wood);
  border-radius: 8px;
  background: var(--av-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--av-wood);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.av-photo-placeholder-wide {
  aspect-ratio: auto;
  max-width: 620px;
  height: 160px;
  margin: 0 auto 2.2rem;
}

.av-contact-photo {
  display: block;
  width: 100%;
  max-width: 620px;
  height: 160px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 8px;
  margin: 0 auto 2.2rem;
}

@media (max-width: 800px) {
  .av-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ---------- Founder card (About page) ---------- */

.av-founder {
  background: #fff;
  border: 1px solid var(--av-line);
  border-left: 4px solid var(--av-green);
  border-radius: 8px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.av-founder img {
  border-radius: 8px;
  width: 100%;
}

.av-founder p {
  font-size: 0.98rem;
  color: #4a4a46;
}

@media (max-width: 760px) {
  .av-founder {
    grid-template-columns: 1fr;
  }

  .av-founder img {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ---------- Prose pages (About, policies) ---------- */

.av-prose {
  max-width: 760px;
  margin: 0 auto;
}

.av-prose p {
  font-size: 1rem;
  color: #3d3d3a;
}

/* ---------- FAQ page ---------- */

.av-faq-section {
  margin-bottom: 2.6rem;
}

.av-faq-section h2 {
  font-family: var(--av-font-display);
  color: var(--av-green-deep);
  border-bottom: 1px solid var(--av-line);
  padding-bottom: 0.6rem;
  margin-bottom: 1.4rem;
}

.av-faq-item {
  margin-bottom: 1.6rem;
}

.av-faq-item h3 {
  font-family: var(--av-font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--av-charcoal);
  margin-bottom: 0.4rem;
}

.av-faq-item p {
  font-size: 0.98rem;
  color: #3d3d3a;
  margin: 0;
}

/* ---------- Collections page ---------- */

.av-collection-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--av-line);
}

.av-collection-row:last-of-type {
  border-bottom: none;
}

.av-collection-row.av-reverse .av-carousel {
  order: 2;
}

.av-collection-row h2 {
  margin-bottom: 0.1em;
}

.av-collection-price {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--av-wood);
  margin-bottom: 0.9rem;
}

.av-collection-row p.av-collection-desc {
  font-size: 1rem;
  color: #3d3d3a;
}

.av-carousel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--av-cream-dark);
  cursor: pointer;
}

/* Carousel photos are wrapped in <picture> to serve WebP with a JPEG fallback.
   display: contents makes the wrapper generate no box of its own, so the <img>
   still positions against .av-carousel exactly as it did before the wrapper was
   added. The carousel JS toggles a class on the <img>, not the <picture>, and
   querySelectorAll('img') still finds them — so rotation is unaffected. */
.av-carousel picture {
  display: contents;
}

.av-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.av-carousel img.av-current {
  opacity: 1;
}

.av-carousel .av-carousel-dots {
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  z-index: 2;
}

.av-carousel .av-carousel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.55);
}

.av-carousel .av-carousel-dots span.av-current {
  background: var(--av-cream);
}

@media (max-width: 800px) {
  .av-collection-row {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .av-collection-row.av-reverse .av-carousel {
    order: 0;
  }
}

/* ---------- Product cards / subscribe page ---------- */

.av-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.av-card {
  background: #fff;
  border: 1px solid var(--av-line);
  border-radius: 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.av-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.av-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.av-bespoke {
  flex-direction: row;
  align-items: stretch;
  gap: 1.4rem;
  padding: 1.5rem;
}

.av-bespoke-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.av-bespoke-thumb {
  width: 38%;
  max-width: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  align-self: stretch;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .av-bespoke {
    flex-direction: column;
    padding: 0;
  }

  .av-bespoke-content {
    padding: 1.5rem;
  }

  .av-bespoke-thumb {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 0;
  }
}

.av-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2em;
}

.av-card .av-price {
  font-family: var(--av-font-body);
  font-weight: 600;
  color: var(--av-wood);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.av-card p.av-desc {
  flex-grow: 1;
  font-size: 0.92rem;
  color: #555;
}

.av-qty-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.av-qty-row label {
  font-size: 0.85rem;
  color: #555;
}

.av-qty-row input[type="number"] {
  width: 70px;
  padding: 0.4rem;
  border: 1px solid var(--av-line);
  border-radius: 4px;
  font-family: var(--av-font-body);
}

.av-qty-hint {
  font-size: 0.78rem;
  color: #8a8a86;
  margin-top: 0.3rem;
}

.av-bespoke {
  background: var(--av-cream-dark);
  border: 1px dashed var(--av-wood);
}

.av-bespoke a.av-btn {
  align-self: flex-start;
}

.av-summary {
  background: #fff;
  border: 1px solid var(--av-line);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.av-summary table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.av-summary td {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--av-line);
}

.av-summary tfoot td {
  border-bottom: none;
  font-weight: 600;
  padding-top: 0.8rem;
}

.av-empty-cart {
  color: #8a8a86;
  font-style: italic;
}

.av-city-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--av-green-deep);
  margin: 1.1rem 0 0.3rem;
}

.av-city-select,
.av-day-select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--av-line);
  border-radius: 4px;
  font-family: var(--av-font-body);
  font-size: 0.92rem;
  background: #fff;
  color: var(--av-charcoal);
}

.av-city-select:focus,
.av-day-select:focus {
  outline: 2px solid var(--av-light-green);
  border-color: var(--av-green);
}

.av-day-select {
  margin-bottom: 0.8rem;
}

.av-fine-print {
  font-size: 0.8rem;
  color: var(--av-wood);
}

/* ---------- Buttons ---------- */

.av-btn {
  display: inline-block;
  background: var(--av-green-deep);
  color: var(--av-cream);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-family: var(--av-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
}

.av-btn:hover {
  background: var(--av-green);
}

.av-btn[disabled] {
  background: #b6b6ae;
  cursor: not-allowed;
}

.av-btn-secondary {
  background: transparent;
  border: 1px solid var(--av-green-deep);
  color: var(--av-green-deep);
}

.av-btn-secondary:hover {
  background: var(--av-green-deep);
  color: var(--av-cream);
}

.av-btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.av-collection-cta {
  margin-top: 1.1rem;
}

.av-btn-light {
  background: var(--av-cream);
  color: var(--av-green-deep);
}

.av-btn-light:hover {
  background: var(--av-light-green);
  color: var(--av-green-deep);
}

.av-error {
  color: var(--av-error);
  font-size: 0.88rem;
  margin-top: 0.6rem;
  display: none;
}

/* ---------- Cart drawer ---------- */

.av-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 58, 46, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 100;
}

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

.av-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--av-cream);
  box-shadow: -12px 0 32px rgba(31, 58, 46, 0.25);
  transform: translateX(100%);
  /* visibility keeps the closed drawer out of the keyboard tab order and away
     from screen readers; it's delayed on close so the slide-out still animates. */
  visibility: hidden;
  transition: transform 0.28s ease, visibility 0s linear 0.28s;
  z-index: 101;
  display: flex;
  flex-direction: column;
}

.av-drawer.av-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.28s ease, visibility 0s;
}

.av-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--av-green-deep);
}

.av-drawer-header h2 {
  color: var(--av-cream);
  font-size: 1.4rem;
  margin: 0;
}

.av-drawer-close {
  background: none;
  border: none;
  color: var(--av-cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

.av-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.5rem;
}

.av-drawer-empty {
  color: #8a8a86;
  font-style: italic;
  font-size: 0.92rem;
}

.av-drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--av-line);
}

.av-drawer-item-info {
  flex: 1;
}

.av-drawer-item-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--av-green-deep);
}

.av-drawer-item-price {
  font-size: 0.8rem;
  color: var(--av-wood);
}

.av-drawer-item-warn {
  font-size: 0.75rem;
  color: var(--av-error);
}

.av-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--av-line);
  border-radius: 4px;
  background: #fff;
}

.av-qty-stepper button {
  background: none;
  border: none;
  width: 1.9rem;
  height: 1.9rem;
  font-size: 1rem;
  cursor: pointer;
  color: var(--av-green-deep);
}

.av-qty-stepper button:hover {
  background: var(--av-cream-dark);
}

.av-qty-stepper .av-qty-val {
  min-width: 2.1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.av-drawer-line-total {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 4.5rem;
  text-align: right;
}

.av-drawer-footer {
  border-top: 1px solid var(--av-line);
  padding: 1.2rem 1.5rem 1.5rem;
  background: #fff;
}

.av-drawer-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.av-drawer-footer .av-btn {
  width: 100%;
  text-align: center;
}

.av-drawer-edit-link {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 0.7rem;
}

/* ---------- Forms (Contact) ---------- */

.av-form {
  max-width: 620px;
  margin: 0 auto;
}

.av-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--av-green-deep);
  margin: 1.1rem 0 0.3rem;
}

.av-form label .av-optional {
  font-weight: 400;
  color: #8a8a86;
}

.av-form input,
.av-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--av-line);
  border-radius: 4px;
  font-family: var(--av-font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--av-charcoal);
}

.av-form input:focus,
.av-form textarea:focus {
  outline: 2px solid var(--av-light-green);
  border-color: var(--av-green);
}

.av-form textarea {
  min-height: 150px;
  resize: vertical;
}

.av-form .av-btn {
  margin-top: 1.4rem;
}

.av-contact-alt {
  text-align: center;
  font-size: 0.9rem;
  color: #4a4a46;
  margin-top: 2.2rem;
}

/* ---------- Delivery details / policy pages ---------- */

.av-policy-section {
  max-width: 760px;
  margin: 0 auto 2.4rem;
}

.av-policy-section h2 {
  font-size: 1.6rem;
  border-bottom: 1px solid var(--av-line);
  padding-bottom: 0.4rem;
  margin-bottom: 0.8rem;
}

.av-policy-section h3.av-nested {
  font-family: var(--av-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--av-wood);
  margin: 1.2rem 0 0.4rem;
}

.av-policy-section ul {
  padding-left: 1.2rem;
}

.av-policy-section li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #3d3d3a;
}

/* Postal address block (Privacy Policy "Who We Are"). */
.av-address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3d3d3a;
  border-left: 3px solid var(--av-light-green);
  padding-left: 1rem;
  margin: 1rem 0 0;
}

.av-county-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem;
  margin-top: 1.4rem;
}

.av-county h3 {
  font-family: var(--av-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--av-green-deep);
  margin-bottom: 0.3rem;
}

.av-county p {
  font-size: 0.88rem;
  color: #4a4a46;
  margin: 0;
}

@media (max-width: 640px) {
  .av-county-grid {
    grid-template-columns: 1fr;
  }
}

.av-placeholder-note {
  background: var(--av-cream-dark);
  border: 2px dashed var(--av-wood);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  color: var(--av-wood);
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */

.av-footer {
  background: var(--av-green-deep);
  color: var(--av-cream);
  padding: 3rem 2rem 1.5rem;
  margin-top: 3rem;
}

.av-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.av-footer-brand img {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
}

.av-footer-brand p {
  font-size: 0.85rem;
  color: var(--av-light-green);
  max-width: 300px;
}

.av-footer h4 {
  font-family: var(--av-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--av-light-green);
  margin: 0 0 0.8rem;
}

.av-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.av-footer li {
  margin-bottom: 0.5rem;
}

.av-footer a {
  color: var(--av-cream);
  text-decoration: none;
  font-size: 0.88rem;
}

.av-footer a:hover {
  color: var(--av-light-green);
  text-decoration: underline;
}

.av-footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(247, 243, 234, 0.15);
  font-size: 0.78rem;
  color: rgba(247, 243, 234, 0.6);
  text-align: center;
}

@media (max-width: 760px) {
  .av-footer-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* ---------- Status pages ---------- */

.av-status-page {
  max-width: 560px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 1.5rem;
}
