:root {
  --site-width: 1200px;
  --page-bg: #f7f3ec;
  --white: #fffdf9;
  --cream: #f5f0e8;
  --cream-2: #ebe5da;
  --green: #34452b;
  --ink: #182015;
  --shadow: 0 18px 36px rgba(31, 39, 28, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-shell {
  width: min(100%, var(--site-width));
  margin-inline: auto;
  background: var(--white);
  overflow: hidden;
}

.site-header {
  height: 63px;
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid rgba(80, 99, 65, 0.07);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding-inline: 34px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 0.86rem;
  line-height: 1.12;
}

.hero-desktop img,
.benefits-desktop img {
  width: 100%;
  height: auto;
}

.hero-mobile,
.benefits-mobile {
  display: none;
}

.products-section {
  background:
    radial-gradient(circle at 7% 52%, rgba(80, 99, 65, 0.10), transparent 16%),
    radial-gradient(circle at 94% 48%, rgba(80, 99, 65, 0.11), transparent 17%),
    linear-gradient(#fffdf9, #fbf8f2);
}

.products-inner {
  padding: 18px 34px 38px;
  text-align: center;
}

.section-divider {
  width: 134px;
  height: auto;
  margin: 0 auto 4px;
  opacity: 0.92;
}

.products-inner h2 {
  margin: 0 0 17px;
  color: var(--green);
  font-size: 1.42rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.carousel-shell {
  position: relative;
  padding-inline: 48px;
}

.carousel-viewport {
  overflow: hidden;
  cursor: grab;
  padding: 6px 0 10px;
  user-select: none;
  touch-action: pan-y;
}

.carousel-viewport.is-dragging {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 28px;
  will-change: transform;
}

.product-card {
  width: 184px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(80, 99, 65, 0.08);
  border-radius: 7px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(31, 39, 28, 0.14);
}

.product-card:focus-visible {
  outline: 3px solid rgba(80, 99, 65, 0.35);
  outline-offset: 3px;
}

.product-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.product-body {
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 8px 11px 11px;
  background: rgba(255, 253, 249, 0.98);
}

.product-body strong {
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.13;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.product-body span {
  font-size: 0.72rem;
}

.product-body em {
  justify-self: center;
  margin-top: 5px;
  padding: 7px 13px;
  border-radius: 4px;
  background: var(--green);
  color: #fffdf9;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--green);
  color: #fffdf9;
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 253, 249, 0.08), transparent 24%),
    linear-gradient(90deg, #314229, #536245);
  color: #fffdf9;
}

.footer-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 18px 34px;
}

.footer-brand {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 253, 249, 0.42);
}

.footer-brand img {
  width: 58px;
  height: 58px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand span {
  font-size: 0.86rem;
  line-height: 1.12;
}

.footer-inner p {
  margin: 0;
  font-size: 0.83rem;
}

.footer-inner small {
  font-size: 0.72rem;
  opacity: 0.92;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 760px) {
  .site-shell {
    width: 100%;
  }

  .site-header {
    height: 64px;
  }

  .header-inner {
    padding-inline: 18px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-text {
    font-size: 0.84rem;
  }

  .hero-desktop,
  .benefits-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
    background:
      radial-gradient(circle at 95% 12%, rgba(190,178,161,0.30), transparent 34%),
      linear-gradient(90deg, rgba(255,253,249,1), rgba(237,228,215,0.86));
    padding: 34px 18px 0;
  }

  .hero-mobile-copy h1 {
    margin: 0;
    color: var(--green);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3rem, 15vw, 4.35rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    font-weight: 700;
  }

  .script-line {
    margin: 14px 0 6px;
    color: var(--green);
    font-family: "Parisienne", "Brush Script MT", cursive;
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.05;
  }

  .hero-divider {
    margin: 8px 0 14px;
  }

  .hero-mobile .section-divider {
    margin-inline: 0;
  }

  .trust-copy {
    margin: 0 0 18px;
    font-size: 0.97rem;
  }

  .hero-mobile-products {
    width: 112%;
    max-width: none;
    margin-left: -6%;
    mix-blend-mode: multiply;
  }

  .benefits-mobile {
    display: grid;
    gap: 20px;
    padding: 28px 18px;
    text-align: center;
    background: linear-gradient(90deg, #e4e0d4, #efeadf);
  }

  .benefits-mobile h2 {
    margin: 7px 0 4px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .benefits-mobile p {
    margin: 0;
    font-size: 0.86rem;
  }

  .benefit-icon {
    color: var(--green);
    font-size: 2rem;
    line-height: 1;
  }

  .products-inner {
    padding: 24px 18px 36px;
  }

  .products-inner h2 {
    font-size: 1.32rem;
    margin-bottom: 18px;
  }

  .carousel-shell {
    padding-inline: 0;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-track {
    gap: 18px;
  }

  .product-card {
    width: min(78vw, 270px);
  }

  .product-card img {
    height: 160px;
  }

  .product-body {
    min-height: 100px;
    padding: 12px 14px 14px;
  }

  .product-body strong {
    font-size: 0.9rem;
  }

  .product-body span {
    font-size: 0.82rem;
  }

  .product-body em {
    font-size: 0.72rem;
    padding: 8px 18px;
  }



  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 18px 30px;
  }

  .back-link {
    margin-bottom: 20px;
  }

  .product-kicker {
    font-size: 1.6rem;
  }

  .product-detail-copy h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .ingredients-section {
    padding: 24px 18px 42px;
  }

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

  .ingredient-card {
    padding: 18px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .footer-brand {
    padding-right: 0;
    border-right: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .product-card,
  .carousel-arrow {
    transition: none;
  }
}


.product-detail-main {
  background:
    radial-gradient(circle at 10% 18%, rgba(80, 99, 65, 0.10), transparent 18%),
    radial-gradient(circle at 92% 22%, rgba(190, 178, 161, 0.28), transparent 26%),
    linear-gradient(#fffdf9, #fbf8f2 54%, #f7f3ec);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 56px 64px 44px;
}

.product-detail-copy {
  max-width: 460px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.065em;
}

.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-family: "Parisienne", "Brush Script MT", cursive;
  font-size: 1.85rem;
  line-height: 1.05;
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 5.1rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.product-tagline {
  margin: 18px 0 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-detail-copy p:last-child {
  margin: 0;
  max-width: 430px;
  font-size: 1rem;
}

.product-detail-image-card {
  overflow: hidden;
  border: 1px solid rgba(80, 99, 65, 0.08);
  border-radius: 14px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.product-detail-image-card img {
  width: 100%;
  height: auto;
}

.ingredients-section {
  padding: 26px 64px 62px;
  text-align: center;
}

.ingredients-section h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1.42rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.ingredients-intro {
  max-width: 660px;
  margin: 0 auto 24px;
  font-size: 0.9rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.ingredient-card {
  padding: 20px 22px;
  border: 1px solid rgba(80, 99, 65, 0.08);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 12px 30px rgba(31, 39, 28, 0.08);
}

.ingredient-card h2 {
  margin: 0 0 7px;
  color: var(--green);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.ingredient-card p {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 18px 30px;
  }

  .back-link {
    margin-bottom: 20px;
  }

  .product-kicker {
    font-size: 1.6rem;
  }

  .product-detail-copy h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .ingredients-section {
    padding: 24px 18px 42px;
  }

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

  .ingredient-card {
    padding: 18px 18px;
  }
}
