:root {
  --ink: #303030;
  --gold: #c49a5f;
  --dark: #303030;
  --line: #ddd;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.announcement {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  color: #303030;
}
.header-over-hero {
  background: transparent;
  color: #fff;
  margin-bottom: -72px;
}
.site-header.scrolled,
.site-header.header-over-hero.scrolled {
  background: #fff;
  color: #303030;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav {
  margin: auto;
  height: 72px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  max-width: 1440px;
}
.brand img {
  width: 74px;
}
.nav-right,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}
.nav-right {
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
}
.nav-links,
.nav-actions {
  gap: 24px;
}
.nav-actions button,
.mobile-menu-btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.icon-btn {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
}
.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.mobile-menu-btn {
  display: none;
}
.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.16),
    transparent 50%,
    rgba(0, 0, 0, 0.08)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: auto;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 34px 56px;
  color: #fff;
}
.hero h1 {
  margin: 0 0 7px;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.hero-sub {
  display: grid;
  gap: 2px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
}
.btn {
  border: 1px solid currentColor;
  background: #000;
  color: #fff;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.btn.light {
  background: transparent;
  color: #fff;
  min-width: 74px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 6px;
  font-size: 12px;
}
.btn.secondary {
  background: transparent;
  color: #000;
}
.section {
  padding: 72px 28px;
}
.wide-container {
  max-width: 1260px;
  margin: auto;
}
.container {
  max-width: 1080px;
  margin: auto;
}
.section-heading {
  text-align: center;
  margin-bottom: 24px;
}
.home-eyebrow {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}
.section-heading h2 {
  font-size: 20px;
  margin: 0;
}
.products-section {
  padding-top: 28px;
  padding-bottom: 44px;
}
.products-grid {
  max-width: 960px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product-media {
  position: relative;
  aspect-ratio: 1/1.34;
  background: #eee;
  overflow: hidden;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: #303030;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}
.muted {
  color: #999;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  padding-top: 11px;
}
.product-info h3 {
  font-size: 11px;
  font-weight: 400;
  margin: 0 0 6px;
}
.product-info p {
  font-size: 11px;
  margin: 0;
}
.marquee {
  height: 36px;
  background: #303030;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
}
.marquee-track {
  display: flex;
  gap: 42px;
  animation: marquee 18s linear infinite;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.donations {
  padding-top: 58px;
}
.donations-inner {
  max-width: 680px;
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
}
.donations h2 {
  font-size: 36px;
  margin: 0;
}
.donations p {
  font-size: 12px;
}
.donation-total {
  color: var(--gold);
  font-size: 43px;
  font-weight: 800;
}
.gold-rule {
  height: 1px;
  background: var(--gold);
  max-width: 620px;
  margin: auto;
}
.reviews-row {
  max-width: 1260px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 150px repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  font-size: 11px;
}
.review-brand {
  text-align: center;
}
.reviews-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}
.stars {
  color: #ff8a00;
  font-size: 17px;
}
.review-card {
  background: #f7f7f7;
  border-radius: 4px;
  padding: 16px;
  min-height: 105px;
}
.promise {
  max-width: 810px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 78px;
  align-items: center;
  padding: 34px 0 64px;
}
.promise h2 {
  font-size: 20px;
  margin: 0 0 16px;
}
.promise .subtitle {
  font-size: 13px;
  margin-bottom: 25px;
  color: #555;
}
.promise p {
  font-size: 12px;
}
.newsletter {
  background: #303030;
  color: #fff;
  padding: 32px 28px;
}
.newsletter .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.newsletter h2 {
  font-size: 22px;
  margin: 0;
}
.newsletter p {
  font-size: 13px;
  margin: 4px 0 0;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  height: 54px;
  border: 1px solid #fff;
  border-radius: 999px;
  overflow: hidden;
}
.newsletter-form input {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 24px;
  outline: 0;
}
.newsletter-form button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.newsletter-note {
  font-size: 11px;
  opacity: 0.7;
  margin: 10px 4px 0;
}
.newsletter-note a {
  text-decoration: underline;
}
.site-footer {
  padding: 28px;
  background: #fff;
  color: #777;
  font-size: 11px;
}
.footer-inner {
  max-width: 1080px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
}
.footer-inner > a {
  text-align: center;
}
.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  font-size: 1rem;
}

.social-links a {
  color: #777;
  display: grid;
  place-items: center;
}
.social-links a:hover {
  color: var(--gold);
}
.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.social-links .filled,
.social-links .filled circle,
.social-links .filled rect,
.social-links .filled path,
.social-links .dot {
  fill: currentColor;
  stroke: none;
}
.about-main {
  padding: 50px 28px 0;
}
.about-intro {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  padding-bottom: 54px;
}
.about-intro h1 {
  font-size: 32px;
  margin: 0 0 24px;
}
.about-intro p {
  font-size: 14px;
  max-width: 940px;
  margin: 0 auto 28px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 22px;
}
.story-row {
  max-width: 960px;
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.story-row p {
  font-size: 13px;
}
.story-image img {
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}
.split-section {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.split-section img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.split-copy {
  text-align: center;
  padding: 34px 60px;
}
.split-copy h2 {
  font-size: 24px;
  margin: 0 0 18px;
}
.split-copy p {
  font-size: 13px;
}

.policies-page {
  max-width: 780px;
  margin: auto;
  padding: 64px 28px 96px;
}
.policies-page h1 {
  font-size: 36px;
  margin: 0 0 32px;
}
.policies-page h2 {
  font-size: 18px;
  margin: 36px 0 10px;
}
.policies-page p {
  font-size: 13px;
  color: #555;
}
.policies-page a {
  color: var(--gold);
  text-decoration: underline;
}

.affiliate-page {
  max-width: 820px;
  margin: auto;
  padding: 64px 28px 110px;
}
.affiliate-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.affiliate-intro h1 {
  font-size: 36px;
  margin: 0 0 18px;
}
.affiliate-intro p {
  font-size: 14px;
  color: #555;
}
.affiliate-form select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 21px 24px;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
  appearance: none;
}
.affiliate-form textarea {
  min-height: 160px;
}
.hidden-field {
  display: none;
}
.agree-box {
  display: grid;
  gap: 14px;
  background: #faf7f2;
  border: 1px solid rgba(196, 154, 95, 0.4);
  border-radius: 8px;
  padding: 20px 22px;
}
.agree-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13px;
  color: #444;
  cursor: pointer;
}
.agree-row input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
}
.agree-row a {
  color: var(--gold);
  text-decoration: underline;
}
.terms-page {
  text-align: left;
}
.terms-page h1 {
  font-size: 30px;
}
.terms-version {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 28px;
}
.terms-page ul {
  font-size: 13px;
  color: #555;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.thanks-page {
  max-width: 640px;
  margin: auto;
  padding: 96px 28px 140px;
  text-align: center;
}
.thanks-page h1 {
  font-size: 34px;
  margin: 8px 0 20px;
}
.thanks-page p {
  font-size: 14px;
  color: #555;
}
.thanks-page a:not(.btn) {
  color: var(--gold);
  text-decoration: underline;
}

.contact-page {
  min-height: 780px;
  padding: 72px 28px 122px;
}
.contact-page h1 {
  text-align: center;
  font-size: 48px;
  margin: 0 0 48px;
}
.contact-form {
  max-width: 780px;
  margin: auto;
  display: grid;
  gap: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 21px 24px;
  font-size: 16px;
}
.contact-form textarea {
  min-height: 280px;
}
.contact-form button {
  justify-self: start;
  background: #000;
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 18px 33px;
  font-size: 16px;
}
.product-layout {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  min-height: 760px;
}
.product-hero-image img {
  width: 100%;
  height: 55rem;
  object-fit: cover;
}

.buynow {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    border-radius: 60px;
    border: 1px solid rgba(196, 154, 95, 0.95);
    background: linear-gradient(135deg, #f4e3c4 0%, #c49a5f 100%);
    color: #303030;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 18px 30px rgba(196, 154, 95, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
.buynow:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(196, 154, 95, 0.28);
}
.buynow:active {
    transform: translateY(0);
}
.buynow:focus-visible {
    outline: 3px solid rgba(196, 154, 95, 0.35);
    outline-offset: 3px;
}

.product-detail {
  padding: 78px 34px 40px 18px;
  max-width: 520px;
}
.product-detail h1 {
  font-size: 31px;
  margin: 0 0 12px;
}
.product-detail .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 34px;
}
.benefits {
  font-size: 13px;
  color: #444;
  margin: 0 0 10px;
  padding-left: 18px;
}
.benefits li {
  margin-bottom: 4px;
}
.fulfilment-note {
  font-size: 11px;
  color: #999;
  margin-top: 12px;
}
.product-detail p {
  font-size: 13px;
  margin: 0 0 10px;
  color: #444;
}
.recommendations {
  max-width: 1100px;
  margin: 80px auto 70px;
  padding: 0 28px;
}
.recommendations h2 {
  font-size: 23px;
}
.drawer,
.modal,
.mobile-panel {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}
.drawer.is-open,
.modal.is-open,
.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(430px, 92vw);
  background: #fff;
  padding: 28px;
  transform: translateX(100%);
  transition: 0.23s;
}
.drawer.is-open .drawer-panel {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  justify-content: space-between;
}
.close {
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}
.cart-empty {
  text-align: center;
  margin-top: 70px;
}
.modal-panel {
  position: relative;
  max-width: 720px;
  margin: 10vh auto;
  background: #fff;
  padding: 30px;
}
.search-input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 15px 20px;
  margin: 20px 0;
}
.mobile-panel-content {
  position: absolute;
  left: 0;
  top: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: #fff;
  padding: 28px;
  transform: translateX(-100%);
  transition: 0.23s;
}
.mobile-panel.is-open .mobile-panel-content {
  transform: translateX(0);
}
.mobile-nav-list {
  display: grid;
  gap: 22px;
  font-size: 22px;
  margin-top: 34px;
}
@media (max-width: 920px) {
  .header-over-hero {
    color: #303030;
    background: #fff;
    margin-bottom: 0;
  }
  .nav {
    height: 64px;
    padding: 0 18px;
    grid-template-columns: 42px 1fr auto;
  }
  .mobile-menu-btn {
    display: grid;
  }
  .brand {
    justify-self: center;
  }
  .nav-links,
  .hide-mobile {
    display: none;
  }
  .hero,
  .hero-content {
    min-height: 560px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .donations-inner,
  .newsletter .container,
  .promise,
  .story-row,
  .split-section,
  .product-layout {
    grid-template-columns: 1fr;
  }
  .reviews-row {
    grid-template-columns: 1fr;
  }
  .split-section img,
  .product-hero-image img {
    height: auto;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .social-links {
    justify-content: center;
  }
  .contact-page h1 {
    font-size: 40px;
  }
}
