:root {
  --bg: #fcfaf7;
  --surface: #ffffff;
  --surface-soft: #f5efe7;
  --text: #1f1814;
  --muted: #6f665f;
  --line: #ded5cb;
  --gold: #b88746;
  --gold-deep: #966a35;
  --forest: #284f45;
  --shadow: 0 24px 60px rgba(23, 18, 15, 0.08);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
}

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

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

button {
  font: inherit;
}

.shell {
  min-height: 100vh;
}

.announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 8px 16px;
  background: #17120f;
  color: #fff;
  font: 600 14px/1.4 Arial, sans-serif;
  text-align: center;
}

.announcement a {
  color: #f0c889;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(252, 250, 247, 0.9);
  border-bottom: 1px solid rgba(222, 213, 203, 0.9);
}

.site-header__inner,
.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 92px;
  height: auto;
}

.brand__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand__name strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand__name span {
  font: 600 11px/1.3 Arial, sans-serif;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font: 600 14px/1.4 Arial, sans-serif;
  color: var(--text);
}

.nav a[aria-current="page"] {
  color: var(--gold-deep);
}

.nav__icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
}

.icon-button__count {
  position: relative;
  top: -8px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font: 700 11px/18px Arial, sans-serif;
}

.icon-button__count[hidden] {
  display: none;
}

.section {
  padding: 72px 0;
}

.hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.86), rgba(23, 18, 15, 0.54), rgba(23, 18, 15, 0.18)),
    url("./assets/images/2024-04-26_20-16-00_000.jpeg") center/cover no-repeat;
  color: #fff;
}

.hero__content {
  width: min(720px, 100%);
  padding: 84px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font: 700 12px/1.4 Arial, sans-serif;
  text-transform: uppercase;
}

.hero h1,
.display-title,
.section-heading h2,
.product-hero__copy h1,
.page-header h1,
.cta-banner h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 10ch;
}

.hero p,
.section-copy,
.page-header p,
.product-hero__copy p,
.policy-intro,
.support-intro {
  font: 400 18px/1.75 Arial, sans-serif;
  color: inherit;
}

.hero p {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font: 700 15px/1.2 Arial, sans-serif;
  transition: 150ms ease;
}

.button--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.button--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.button--light {
  background: #fff;
  border-color: #fff;
  color: var(--text);
}

.button--light:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.button--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.button--outline:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.featured {
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.feature-media {
  min-height: 380px;
  border: 1px solid #e7ded2;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(244, 236, 225, 0.82));
}

.feature-media--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font: 700 18px/1.4 Arial, sans-serif;
  text-align: center;
}

.feature-media--placeholder::before {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(184, 135, 70, 0.42);
  background: radial-gradient(circle at 50% 38%, rgba(184, 135, 70, 0.32) 0 18%, transparent 19%), linear-gradient(135deg, rgba(184, 135, 70, 0.18), rgba(40, 79, 69, 0.08));
}

.feature-copy h2,
.section-heading h2,
.page-header h1,
.product-hero__copy h1,
.cta-banner h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.feature-copy p,
.section-copy,
.page-header p,
.product-hero__copy p,
.support-intro,
.policy-intro {
  color: var(--muted);
  margin: 18px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.inline-link {
  white-space: nowrap;
  color: var(--forest);
  font: 800 14px/1.4 Arial, sans-serif;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #f7f2eb 0%, #fefdfb 100%);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
}

.sku {
  font: 700 11px/1.3 Arial, sans-serif;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.product-card__price {
  font: 700 18px/1.4 Arial, sans-serif;
  color: var(--text);
}

.product-card__price--soon {
  color: var(--gold-deep);
}

.product-card__sub {
  color: var(--muted);
  font: 500 14px/1.6 Arial, sans-serif;
}

.product-card__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.product-card__inline-options {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.field,
.quantity-stepper input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
  font: 600 14px/1.4 Arial, sans-serif;
}

.shop-shell {
  padding-top: 28px;
}

.breadcrumb {
  margin-bottom: 18px;
  font: 600 13px/1.4 Arial, sans-serif;
  color: var(--muted);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: 700 14px/1.3 Arial, sans-serif;
}

.shop-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 28px;
  color: var(--muted);
  font: 600 13px/1.5 Arial, sans-serif;
}

.support-grid,
.info-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.panel h3,
.panel h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

.panel p,
.panel li {
  color: var(--muted);
  font: 400 15px/1.7 Arial, sans-serif;
}

.panel ul {
  margin: 0;
  padding-left: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font: 700 18px/1.4 Arial, sans-serif;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font: 400 15px/1.7 Arial, sans-serif;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}

.product-hero__media {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: linear-gradient(180deg, #f8f3ec 0%, #fff 100%);
  padding: 22px;
}

.product-hero__copy {
  display: grid;
  gap: 16px;
}

.product-hero__price {
  font: 700 22px/1.4 Arial, sans-serif;
}

.product-hero__facts,
.support-list {
  display: grid;
  gap: 12px;
}

.product-form {
  display: grid;
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font: 700 13px/1.4 Arial, sans-serif;
  color: var(--text);
  text-transform: uppercase;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
}

.qty-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font: 700 20px/1 Arial, sans-serif;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
  gap: 28px;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cart-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: linear-gradient(180deg, #f8f3ec 0%, #fff 100%);
  border-radius: 6px;
}

.cart-item__meta {
  display: grid;
  gap: 8px;
}

.cart-item__meta h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.cart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font: 600 14px/1.5 Arial, sans-serif;
}

.cart-summary {
  position: sticky;
  top: 110px;
  align-self: start;
}

.helper-note,
.status-note {
  color: var(--muted);
  font: 500 14px/1.6 Arial, sans-serif;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-hero__facts .panel {
  padding: 18px 20px;
}

.support-banner,
.cta-banner {
  margin-top: 40px;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff 0%, #f2eadf 100%);
  border: 1px solid #e6d9ca;
}

.cta-banner {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 36px 0 46px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font: 500 14px/1.7 Arial, sans-serif;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .two-col,
  .product-hero,
  .support-grid,
  .info-grid,
  .policy-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    min-height: 92px;
    padding: 10px 0;
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 560px;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

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

  .cart-item {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .shop-meta {
    flex-direction: column;
  }

  .nav {
    gap: 12px;
  }
}
