/* ==============================
   Base Styles and Variables
   ============================== */
:root {
  --primary-green: #0F3F1C;
  --secondary-green: #2E6B24;
  --leaf-green: #78A51D;
  --accent-orange: #E85D1A;
  --light-orange: #FFF1E8;
  --cream: #F8F7EE;
  --soft-green-bg: #EEF6E8;
  --dark-text: #1F2A1F;
  --muted-text: #5F665C;
  --white: #FFFFFF;
  --border-color: rgba(15, 63, 28, 0.14);
  --shadow-soft: 0 20px 45px rgba(15, 63, 28, 0.14);
  --shadow-card: 0 14px 30px rgba(15, 63, 28, 0.1);
  --radius-large: 30px;
  --radius-card: 22px;
  --container-width: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  background: var(--cream);
  color: var(--dark-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

ul {
  list-style: none;
}

.container {
  margin: 0 auto;
  width: min(100% - 32px, var(--container-width));
}

.section {
  padding: 88px 0;
}

.section-heading {
  margin: 0 auto 42px;
  max-width: 680px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.contact-layout h2,
.cta-content h2 {
  color: var(--primary-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted-text);
  margin-top: 14px;
}

.eyebrow {
  color: var(--accent-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ==============================
   Buttons and Links
   ============================== */
.btn,
.card-link {
  align-items: center;
  background: var(--accent-orange);
  border: 1px solid var(--accent-orange);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.card-link:hover {
  background: #c9470f;
  border-color: #c9470f;
  box-shadow: 0 12px 24px rgba(232, 93, 26, 0.22);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 10px 18px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary-green);
}

/* ==============================
   Header and Navigation
   ============================== */
.site-header {
  background: rgba(248, 247, 238, 0.96);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(15, 63, 28, 0.08);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.navbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 78px;
  width: min(100% - 32px, var(--container-width));
}

.logo {
  align-items: center;
  color: var(--primary-green);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 800;
  gap: 3px;
  letter-spacing: 0.5px;
  line-height: 1;
  text-decoration: none;
}

.logo-icon {
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
  height: 30px;
  margin: 0;
  mix-blend-mode: multiply;
  object-fit: contain;
  padding: 0;
  width: 30px;
}

.logo img {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.nav-menu,
.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--muted-text);
  font-size: 0.95rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-green);
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  padding: 8px;
}

.menu-toggle span {
  background: var(--primary-green);
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 6px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 28px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==============================
   Hero Section
   ============================== */
.hero {
  align-items: center;
  background:
    url("images/hero-background.png") center/cover no-repeat,
    var(--cream);
  display: flex;
  aspect-ratio: 1792 / 1024;
  margin-top: 78px;
  min-height: auto;
  padding: 0;
  position: relative;
}

.hero-overlay {
  background: transparent;
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  margin: 0 auto;
  max-width: 760px;
  padding: 0 24px;
  position: relative;
  text-align: center;
  text-shadow: 0 3px 18px rgba(8, 39, 19, 0.52);
  z-index: 1;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

.hero h2 {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin: 0 auto 32px;
  max-width: 640px;
}

.hero .eyebrow {
  color: #ffd8c3;
  text-shadow: 0 2px 12px rgba(8, 39, 19, 0.55);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ==============================
   Image Fallbacks
   ============================== */
.image-frame {
  background:
    linear-gradient(135deg, rgba(238, 246, 232, 0.9), rgba(255, 241, 232, 0.82)),
    var(--soft-green-bg);
  overflow: hidden;
  position: relative;
}

.image-frame.image-missing img {
  display: none;
}

.image-frame.image-missing::after {
  align-items: center;
  color: var(--secondary-green);
  content: attr(data-label);
  display: flex;
  font-weight: 800;
  inset: 0;
  justify-content: center;
  letter-spacing: 0.04em;
  position: absolute;
  text-transform: uppercase;
}

.expandable-image {
  cursor: zoom-in;
}

/* ==============================
   Image Lightbox
   ============================== */
.image-modal {
  align-items: center;
  background: rgba(15, 63, 28, 0.88);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 9999;
}

.image-modal.active {
  display: flex;
}

.image-modal-img {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  display: block;
  height: auto;
  max-height: 88vh;
  max-width: 92vw;
  object-fit: contain;
  width: auto;
}

.image-modal-close {
  align-items: center;
  background: #FFFFFF;
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--primary-green);
  cursor: pointer;
  display: flex;
  font-size: 32px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: fixed;
  right: 28px;
  top: 24px;
  width: 44px;
}

.image-modal-close:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
}

.image-modal-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 63, 28, 0.12);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--primary-green);
  cursor: pointer;
  display: flex;
  font-size: 2.5rem;
  height: 54px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 54px;
  z-index: 1;
}

.image-modal-arrow:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.05);
}

.image-modal-arrow-left {
  left: 24px;
}

.image-modal-arrow-right {
  right: 24px;
}

/* ==============================
   Product Section
   ============================== */
.product-section {
  background: var(--cream);
}

.product-card-featured {
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  margin: 0 auto;
  max-width: 940px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-featured:hover {
  box-shadow: 0 24px 55px rgba(15, 63, 28, 0.18);
  transform: translateY(-5px);
}

.product-image {
  min-height: 430px;
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.product-tagline {
  color: var(--leaf-green);
  font-weight: 800;
  margin-bottom: 8px;
}

.product-details h3 {
  color: var(--primary-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.product-description {
  color: var(--muted-text);
  margin-bottom: 24px;
}

.product-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.product-meta span {
  background: var(--soft-green-bg);
  border-radius: 14px;
  color: var(--dark-text);
  padding: 12px 14px;
}

.product-meta strong {
  color: var(--primary-green);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.product-badges span {
  background: var(--light-orange);
  border: 1px solid rgba(232, 93, 26, 0.16);
  border-radius: 999px;
  color: var(--accent-orange);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 8px 12px;
}

.card-link {
  align-self: flex-start;
}

/* ==============================
   Benefits Section
   ============================== */
.benefits-section {
  background: linear-gradient(180deg, var(--soft-green-bg) 0%, var(--cream) 100%);
}

.benefit-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.benefit-icon {
  align-items: center;
  background: var(--soft-green-bg);
  border: 1px solid rgba(120, 165, 29, 0.28);
  border-radius: 50%;
  color: var(--secondary-green);
  display: inline-flex;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  margin-bottom: 18px;
  width: 56px;
}

.benefit-card h3 {
  color: var(--primary-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.18;
  margin-bottom: 10px;
}

.benefit-card p,
.about-content p:not(.eyebrow),
.contact-layout p {
  color: var(--muted-text);
}

.disclaimer {
  color: var(--muted-text);
  font-size: 0.88rem;
  margin: 28px auto 0;
  max-width: 850px;
  text-align: center;
}

/* ==============================
   About Section
   ============================== */
.about-section {
  background: var(--white);
}

.about-layout {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 1fr 1fr;
}

.about-image {
  aspect-ratio: 1023 / 1537;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  justify-self: center;
  max-width: 430px;
  width: 100%;
}

.about-image img {
  object-fit: contain;
  object-position: center;
}

.about-content p:not(.eyebrow) {
  font-size: 1.08rem;
  margin: 20px 0 28px;
}

/* ==============================
   Gallery Section
   ============================== */
.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-card,
.gallery-item {
  background: #FFFFFF;
  border: 1px solid rgba(15, 63, 28, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 63, 28, 0.10);
  overflow: hidden;
}

.gallery-item .image-frame {
  aspect-ratio: auto;
  background: #F8F7EE;
  height: auto;
}

.gallery-card img,
.gallery-item img,
.gallery-grid img {
  background: #F8F7EE;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.gallery-item img {
  transform: none;
}

.gallery-caption {
  background: #FFFFFF;
  color: var(--primary-green);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 12px 16px;
  text-align: center;
}

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

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

  .image-modal {
    padding: 14px;
  }

  .image-modal-img {
    border-radius: 10px;
    max-height: 84vh;
    max-width: 96vw;
  }

  .image-modal-close {
    font-size: 28px;
    height: 40px;
    right: 14px;
    top: 14px;
    width: 40px;
  }

  .image-modal-arrow {
    font-size: 2rem;
    height: 42px;
    width: 42px;
  }

  .image-modal-arrow-left {
    left: 10px;
  }

  .image-modal-arrow-right {
    right: 10px;
  }
}

/* ==============================
   Call To Action Section
   ============================== */
.cta-section {
  background:
    linear-gradient(135deg, rgba(15, 63, 28, 0.96), rgba(46, 107, 36, 0.9)),
    var(--primary-green);
  padding: 82px 0;
}

.cta-content {
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
}

.cta-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  margin: 16px auto 28px;
  max-width: 620px;
}

.cta-content .eyebrow {
  color: #ffd8c3;
}

/* ==============================
   Founder Testimonial Section
   ============================== */
.testimonial-section {
  background: var(--cream);
}

.testimonial-layout {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(270px, 0.82fr) minmax(320px, 1.18fr);
}

.testimonial-image {
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  justify-self: center;
  max-width: 390px;
  width: 100%;
}

.testimonial-image img {
  object-fit: cover;
  object-position: center top;
}

.testimonial-content {
  max-width: 600px;
}

.testimonial-content blockquote {
  border-left: 3px solid var(--accent-orange);
  margin: 18px 0 0;
  padding-left: 28px;
}

.testimonial-content blockquote p {
  color: var(--primary-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.18;
  margin: 0;
}

.testimonial-signoff {
  color: var(--muted-text);
  font-weight: 800;
  margin: 28px 0 0 31px;
}

/* ==============================
   Contact Section
   ============================== */
.contact-section {
  background: var(--soft-green-bg);
}

.contact-layout {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr;
}

.contact-layout p {
  font-size: 1.08rem;
  margin-top: 18px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
  padding: 28px;
}

.contact-card a {
  background: var(--cream);
  border-radius: 14px;
  color: var(--primary-green);
  font-weight: 800;
  padding: 14px 16px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-card a:hover {
  color: var(--accent-orange);
  transform: translateX(4px);
}

/* ==============================
   Footer
   ============================== */
.site-footer {
  background: #082713;
  color: rgba(255, 255, 255, 0.78);
}

.footer-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  padding: 54px 0 28px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 14px;
}

.footer-links,
.contact-list {
  display: grid;
  gap: 8px;
}

.footer-icon-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a,
.contact-list a {
  transition: color 0.2s ease;
}

.footer-icon-list a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 44px;
}

.footer-icon-list svg {
  display: block;
  fill: currentColor;
  height: 21px;
  width: 21px;
}

.footer-links a:hover,
.contact-list a:hover {
  color: #ffd8c3;
}

.footer-icon-list a:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  padding-bottom: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  text-align: center;
}

/* ==============================
   Shop Page
   ============================== */
.shop-intro {
  background:
    radial-gradient(circle at 16% 20%, rgba(120, 165, 29, 0.16), transparent 28%),
    linear-gradient(180deg, var(--soft-green-bg) 0%, var(--cream) 100%);
  margin-top: 78px;
  padding-top: 96px;
  scroll-margin-top: 96px;
}

.shop-intro h1 {
  color: var(--primary-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1;
}

.shop-product-layout {
  align-items: stretch;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(360px, 1fr) minmax(340px, 1fr);
  scroll-margin-top: 110px;
}

.shop-gallery {
  align-self: start;
  width: 100%;
}

#benefits,
#shipping {
  scroll-margin-top: 110px;
}

.shop-main-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.image-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  color: var(--primary-green);
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 46px;
  z-index: 2;
}

.image-arrow:hover {
  background: var(--cream);
  color: var(--accent-orange);
  transform: translateY(-50%) scale(1.06);
}

.image-arrow-left {
  left: 14px;
}

.image-arrow-right {
  right: 14px;
}

.shop-thumbnails {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 128px));
  justify-content: center;
  margin: 12px auto 0;
  max-width: 100%;
}

.thumbnail-button {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.thumbnail-button img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.thumbnail-button.active {
  border-color: var(--accent-orange);
}

.thumbnail-button:hover {
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

.shop-product-card {
  display: grid;
  gap: 20px;
  grid-template-rows: auto auto;
  height: 100%;
  max-width: 920px;
  width: 100%;
}

.product-info-tile {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  padding: 32px 34px;
}

.product-buy-tile {
  align-content: center;
  display: grid;
}

.product-info-tile h2,
.product-buy-tile h3 {
  color: var(--primary-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.shop-price {
  color: var(--accent-orange);
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 26px;
}

.shop-benefits-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
}

.shop-benefits-list li {
  background: var(--soft-green-bg);
  border-radius: 14px;
  color: var(--dark-text);
  font-weight: 700;
  padding: 12px 15px;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-note {
  color: var(--muted-text);
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 16px;
}

/* Compact shop product presentation on desktop screens only. */
@media (min-width: 921px) {
  .shop-main-image {
    aspect-ratio: auto;
    height: 560px;
  }

  .shop-product-card {
    gap: 16px;
    height: auto;
  }

  .product-info-tile {
    padding: 28px 30px;
  }

  .product-buy-tile h3 {
    font-size: clamp(2rem, 3.25vw, 2.875rem);
    margin-bottom: 12px;
  }

  .shop-price {
    font-size: 1.35rem;
    margin-bottom: 18px;
  }

  .shop-benefits-list {
    gap: 9px;
    margin-top: 18px;
  }

  .shop-benefits-list li {
    padding: 10px 14px;
  }
}

.btn-secondary {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-secondary:hover {
  background: var(--secondary-green);
  border-color: var(--secondary-green);
}

.how-to-section {
  background: var(--soft-green-bg);
}

.info-card,
.directions-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 63, 28, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(15, 63, 28, 0.10);
  margin: 0 auto;
  max-width: 960px;
  padding: 42px;
}

.directions-card h2 {
  color: var(--primary-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 10px 0 20px;
}

.info-section {
  border-bottom: 1px solid rgba(15, 63, 28, 0.12);
  padding: 18px 0;
}

.info-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-section h3 {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.info-section p {
  color: var(--muted-text);
  line-height: 1.7;
}

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

.shipping-note {
  background: var(--primary-green);
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
  padding: 28px 0;
  text-align: center;
}

.disclaimer-section {
  background: var(--white);
  color: var(--muted-text);
  font-size: 0.9rem;
  padding: 30px 0;
  text-align: center;
}

/* ==============================
   Responsive Layout
   ============================== */
@media (max-width: 1020px) {
  .nav-menu,
  .nav-links {
    gap: 16px;
  }
}

@media (max-width: 920px) {
  .product-card-featured,
  .about-layout,
  .testimonial-layout,
  .benefit-grid,
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 360px;
  }

  .about-layout {
    gap: 34px;
  }

  .testimonial-layout {
    gap: 34px;
  }

  .testimonial-content {
    margin: 0 auto;
  }

  .product-info-tile {
    padding: 34px;
  }
}

@media (max-width: 768px) {
  .shop-product-layout {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .shop-product-card {
    gap: 18px;
    grid-template-rows: auto auto;
  }

  .shop-main-image {
    margin: 0 auto;
    max-width: 520px;
  }

  .shop-thumbnails {
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 100px));
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 340px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .logo {
    font-size: 1.25rem;
    gap: 2px;
  }

  .logo-icon {
    height: 26px;
    width: 26px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 18px;
    left: 0;
    padding: 22px 16px 26px;
    position: absolute;
    right: 0;
    top: 78px;
    transform: translateY(-120%);
    transition: transform 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links {
    align-items: stretch;
    display: grid;
    gap: 12px;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 10px;
  }

  .nav-menu .btn {
    justify-self: center;
    width: min(100%, 320px);
  }

  .hero {
    aspect-ratio: auto;
    background-position: center;
    min-height: 720px;
  }

  .shop-intro {
    padding-top: 76px;
  }

  .hero-content {
    max-width: 560px;
    padding: 92px 22px 40px;
  }

}

@media (max-width: 560px) {
  .container,
  .navbar {
    width: min(100% - 24px, var(--container-width));
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
    min-height: 650px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 16vw, 4.5rem);
  }

  .hero-buttons,
  .hero-buttons .btn {
    width: 100%;
  }

  .product-details,
  .benefit-card,
  .contact-card,
  .product-info-tile {
    padding: 24px;
  }

  .info-card,
  .directions-card {
    padding: 28px 22px;
  }

  .shop-thumbnails {
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 82px));
    max-width: 262px;
  }

  .image-arrow {
    font-size: 1.55rem;
    height: 38px;
    width: 38px;
  }

  .image-arrow-left {
    left: 10px;
  }

  .image-arrow-right {
    right: 10px;
  }

  .shop-actions,
  .shop-actions .btn {
    width: 100%;
  }

  .footer-icon-list {
    gap: 10px;
  }

  .footer-icon-list a {
    height: 40px;
    width: 40px;
  }

  .footer-icon-list svg {
    height: 19px;
    width: 19px;
  }

  .product-image {
    min-height: 300px;
  }

  .testimonial-image {
    max-width: 340px;
  }

  .testimonial-content blockquote {
    padding-left: 18px;
  }

  .testimonial-signoff {
    margin-left: 21px;
  }
}

@media (max-width: 480px) {
  .shop-product-layout {
    gap: 22px;
  }

  .shop-main-image {
    border-radius: 22px;
  }

  .shop-thumbnails {
    gap: 7px;
    grid-template-columns: repeat(3, minmax(0, 70px));
    max-width: 224px;
  }

  .thumbnail-button {
    border-radius: 12px;
  }
}
