:root {
  --bg: #080808;
  --bg-soft: #111111;
  --panel: #121212;
  --panel-alt: #171717;
  --text: #f6f1e9;
  --muted: #b7aa9a;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #c8a05b;
  --gold-soft: rgba(200, 160, 91, 0.18);
  --gold-strong: #e2c88c;
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  --success: #8fd8ba;
  --danger: #f4b3a8;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(200, 160, 91, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 20%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.02), transparent 20%, rgba(200,160,91,0.02) 50%, transparent 80%);
  pointer-events: none;
  animation: sheen 16s ease-in-out infinite alternate;
}

@keyframes sheen {
  0% { transform: translate3d(-3%, 0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate3d(3%, 2%, 0) scale(1.05); opacity: 1; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(200, 160, 91, 0.75), rgba(236, 213, 165, 1));
  box-shadow: 0 0 18px rgba(200, 160, 91, 0.9);
  transition: width 0.18s ease-out;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.98);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.18s; }
.stagger-4 { transition-delay: 0.24s; }

.hero-copy > * {
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.32s; }

.hero-photo-wrap {
  animation: floatY 7s ease-in-out infinite;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-space {
  padding: 96px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(200, 160, 91, 0.28);
  border-radius: 999px;
  background: rgba(200, 160, 91, 0.08);
  color: var(--gold-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: 176px;
  height: auto;
}

.header .brand-logo {
  width: 260px !important;
}

.header-logo {
  width: 260px !important;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200, 160, 91, 0.35), rgba(200, 160, 91, 0.08));
  border: 1px solid rgba(200, 160, 91, 0.4);
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover,
.footer-bottom a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-button,
.secondary-button,
.ghost-button,
.add-to-cart,
.quantity-button,
.filter-button,
.checkout-button,
.cart-action,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.primary-button,
.add-to-cart,
.checkout-button,
.cart-action {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #0e0e0e;
  border-color: rgba(200, 160, 91, 0.4);
  box-shadow: 0 18px 28px rgba(200, 160, 91, 0.2);
  font-weight: 700;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.add-to-cart:hover,
.checkout-button:hover,
.cart-action:hover,
.link-button:hover {
  transform: translateY(-1px);
}

.primary-button,
.secondary-button,
.ghost-button,
.checkout-button,
.cart-action,
.link-button {
  padding: 0.9rem 1.3rem;
}

.secondary-button,
.ghost-button,
.filter-button,
.quantity-button {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: var(--text);
}

.large {
  padding: 1.05rem 1.55rem;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.88);
  color: var(--text);
  font-size: 0.72rem;
}

.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
}

.mobile-menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 10px;
}

.hero {
  padding: 72px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 44px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 550px;
  font-size: 1.08rem;
}

.hero-farm-note {
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 14px;
}

.hero-meta div {
  display: grid;
  gap: 6px;
}

.hero-meta strong {
  font-size: 1.2rem;
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-photo-wrap {
  position: relative;
  width: min(560px, 100%);
  padding: 18px 18px 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: var(--shadow);
}

.hero-photo-wrap img {
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.64);
  border: 1px solid rgba(200, 160, 91, 0.4);
  color: var(--gold-strong);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-bar {
  padding-top: 36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-strong);
}

.trust-item strong,
.story-points strong,
.review-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.trust-item small {
  color: var(--muted);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.section-header.centered {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.section-header h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.95;
}

.text-link {
  color: var(--gold-strong);
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: grid;
  background: linear-gradient(180deg, rgba(18,18,18,0.96), rgba(12,12,12,0.96));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 8px 14px rgba(0,0,0,0.1);
}

.product-card:hover,
.benefit-card:hover,
.step-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 160, 91, 0.38);
  box-shadow: 0 24px 40px rgba(0,0,0,0.18);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.1;
}

.product-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-content {
  padding: 20px 20px 22px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  background: rgba(200, 160, 91, 0.1);
  color: var(--gold-strong);
  border: 1px solid rgba(200, 160, 91, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-rating {
  font-size: 0.8rem;
  color: #f0d38a;
}

.product-availability,
.product-weight {
  color: var(--muted);
  font-size: 0.72rem;
}

.product-weight {
  display: block;
  margin: -4px 0 10px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}

.product-card p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -0.05em;
  color: var(--gold-strong);
}

.add-to-cart {
  padding: 0.8rem 1.1rem;
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.step-card,
.review-card,
.faq-list details,
.page-card,
.checkout-form,
.cart-summary,
.product-gallery,.product-info {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.benefit-card,
.step-card,
.review-card {
  padding: 24px;
}

.benefit-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-strong);
  font-weight: 700;
  margin-bottom: 18px;
}

.benefit-card h3,
.step-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.story-media img {
  border-radius: 28px;
  aspect-ratio: 1.2;
  object-fit: cover;
  border: 1px solid var(--line);
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 10px;
}

.story-points div {
  padding: 18px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
}

.story-points span {
  color: var(--muted);
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,160,91,0.28), rgba(255,255,255,0.06));
  color: var(--gold-strong);
  font-weight: 800;
  margin-bottom: 18px;
}

.gift-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(200,160,91,0.08), rgba(255,255,255,0.02));
}

.gift-copy {
  display: grid;
  gap: 18px;
}

.gift-copy h2 {
  font-size: clamp(2.3rem, 3vw, 4rem);
}

.gift-media img {
  border-radius: 24px;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stars {
  margin-bottom: 16px;
  color: #f3d281;
  letter-spacing: 0.22em;
}

.review-meta {
  margin-top: 18px;
}

.review-meta span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 12px;
}

.final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(200, 160, 91, 0.25);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(200,160,91,0.08), rgba(255,255,255,0.02));
}

.final-cta-box h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.footer {
  margin-top: 90px;
  padding: 34px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  margin-top: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-links h4 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 99;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(200,160,91,0.9), rgba(232,210,161,0.85));
  color: #111;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(200,160,91,0.22);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 90px;
  transform: translateY(20px);
  opacity: 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(200, 160, 91, 0.4);
  background: rgba(17, 17, 17, 0.96);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 101;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.template-page {
  padding: 60px 0 0;
}

.page-header {
  display: grid;
  gap: 16px;
  text-align: center;
  padding-bottom: 14px;
}

.page-header h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.page-card {
  padding: 28px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.filter-button {
  padding: 0.75rem 1rem;
  color: var(--muted);
}

.filter-button.active {
  border-color: rgba(200, 160, 91, 0.26);
  background: var(--gold-soft);
  color: var(--text);
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.search-input {
  width: min(340px, 100%);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--text);
}

.product-page {
  padding-top: 70px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.product-gallery {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.product-gallery-main {
  overflow: hidden;
  border-radius: 20px;
}

.product-gallery-main img {
  height: 520px;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-gallery-thumbs img {
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid transparent;
}

.product-gallery-thumbs img.active {
  border-color: rgba(200, 160, 91, 0.5);
}

.product-info {
  padding: 26px;
}

.product-info h1 {
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 0.95;
}

.product-info .product-subhead {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.product-info .price {
  margin: 18px 0 12px;
}

.option-label {
  display: block;
  margin: 20px 0 10px;
  color: var(--text);
  font-weight: 700;
}

.weight-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.weight-selector button {
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  color: var(--text);
}

.weight-selector button.active {
  border-color: rgba(200, 160, 91, 0.45);
  background: var(--gold-soft);
  color: var(--gold-strong);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 26px;
  color: var(--muted);
}

.product-specs strong {
  color: var(--text);
}

.related-products {
  padding-top: 90px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.cart-item img {
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

.cart-item h4 {
  font-size: 2.1rem;
}

.cart-item p {
  margin-top: 6px;
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
}

.quantity-button {
  width: 42px;
  height: 42px;
  padding: 0;
}

.cart-summary {
  padding: 24px;
  height: fit-content;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 1.6rem;
  font-weight: 700;
}

.checkout-form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  color: var(--text);
  padding: 0.9rem 1rem;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.checkout-page .cart-summary {
  margin-top: 0;
}

@media (max-width: 980px) {
  .nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
  }

  .header-actions .ghost-button {
    display: none;
  }

  .header-actions .primary-button {
    min-height: 44px;
    padding: 0.65rem 0.8rem;
  }

  .hero-grid,
  .story-grid,
  .gift-box,
  .product-layout,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .benefit-grid,
  .steps-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header,
  .final-cta-box,
  .catalog-toolbar,
  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 68px;
    gap: 8px;
  }

  .brand-logo {
    width: 142px;
  }

  .header .brand-logo {
    width: 190px !important;
  }

  .header-logo {
    width: 190px !important;
  }

  .mobile-menu {
    width: 44px;
    height: 44px;
  }

  .header-actions .primary-button {
    font-size: 0.78rem;
    padding-inline: 0.65rem;
  }

  .nav {
    top: 68px !important;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-copy h1,
  .section-header h2,
  .story-copy h2,
  .final-cta-box h2,
  .page-header h1,
  .product-info h1 {
    line-height: 1;
  }

  .trust-grid,
  .benefit-grid,
  .steps-grid,
  .product-grid,
  .review-grid,
  .story-points,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .product-actions,
  .cart-controls,
  .weight-selector {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .filter-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .primary-button,
  .secondary-button,
  .ghost-button,
  .add-to-cart,
  .checkout-button,
  .cart-action,
  .link-button,
  .filter-button {
    width: 100%;
  }

  .product-card {
    overflow: hidden;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cart-item > strong {
    font-size: 1.2rem;
  }

  .cart-summary {
    position: sticky;
    bottom: 0;
    z-index: 20;
    padding: 18px;
    border-color: rgba(200, 160, 91, 0.3);
    background: rgba(18, 18, 18, 0.96);
    backdrop-filter: blur(16px);
  }

  .floating-contact {
    right: 14px;
    bottom: 16px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 124px;
  }

  .header-actions .primary-button {
    font-size: 0;
    width: 44px;
    padding: 0;
  }

  .header-actions .primary-button::before {
    content: "▱";
    font-size: 1.3rem;
    color: var(--text);
  }

  .cart-count {
    position: absolute;
    margin: -25px 0 0 20px;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
