﻿:root {
  --bg: #050505;
  --bg-2: #080706;
  --panel: rgba(10, 10, 8, 0.88);
  --panel-2: rgba(15, 13, 10, 0.94);
  --border: rgba(184, 138, 69, 0.35);
  --border-strong: rgba(214, 168, 90, 0.55);
  --orange: #f05a16;
  --orange-dark: #c64214;
  --gold: #b88a45;
  --gold-light: #d6a85a;
  --title: #f2dfc2;
  --text: #d8c7ad;
  --muted: #9b8b78;
  --green: #8fb83e;
  --frame: 8px;
  --soft: 6px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  background: #030303;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 52% 0%, rgba(240, 90, 22, 0.11), transparent 34rem),
    radial-gradient(circle at 0% 35%, rgba(143, 184, 62, 0.05), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #080706 48%, #030303 100%);
  font-family: var(--font-sans), Arial, sans-serif;
  min-height: 100dvh;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.page-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent),
    rgba(4, 4, 4, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 34px 120px rgba(0, 0, 0, 0.62);
}

.shell {
  width: min(1380px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(184, 138, 69, 0.19);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  color: #d7c5a9;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 35px 0 31px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  background: var(--orange);
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--orange);
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  color: var(--gold-light);
}

.icon-button,
.mobile-menu-button,
.mobile-panel-head button,
.trash-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: inherit;
  background: transparent;
}

.icon-button {
  width: 36px;
  height: 36px;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-label {
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.mobile-menu-button,
.mobile-panel {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--soft);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  color: #fff8ef;
  background: linear-gradient(180deg, #ff741f, var(--orange-dark));
  box-shadow: 0 14px 38px rgba(240, 90, 22, 0.28);
}

.mobile-panel {
  display: none;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

.woocommerce .button.alt,
.woocommerce button.button,
.woocommerce a.button,
.single_add_to_cart_button,
.checkout-button,
#place_order {
  color: #fff8ef;
  background: linear-gradient(180deg, #ff741f, var(--orange-dark));
  border-color: transparent;
  box-shadow: 0 14px 38px rgba(240, 90, 22, 0.28);
}

.button-secondary,
.button-ghost {
  color: var(--gold-light);
  border-color: rgba(214, 168, 90, 0.45);
  background: rgba(8, 7, 6, 0.76);
}

.button-secondary:hover {
  border-color: var(--orange);
  color: var(--title);
}

.button-ghost.active {
  border-color: var(--orange);
  color: #fff8ef;
  background: rgba(240, 90, 22, 0.18);
}

.eyebrow,
.breadcrumb,
.section-title {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--title);
  font-family: var(--font-display), Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

p {
  line-height: 1.65;
}

.hero-section {
  position: relative;
  min-height: clamp(430px, 30vw, 535px);
  display: flex;
  align-items: center;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid rgba(184, 138, 69, 0.22);
}

.hero-compact {
  min-height: 350px;
  background-position: center right;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.78) 28%, rgba(5, 5, 5, 0.18) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.68));
}

.hero-content {
  position: relative;
  width: min(620px, calc(100% - 56px));
  margin-left: max(28px, calc((100% - 1380px) / 2));
}

.hero-content h1 {
  max-width: 620px;
  margin-top: 14px;
  font-size: clamp(50px, 5.3vw, 76px);
}

.hero-content h1::first-letter,
.about-hero h1 strong {
  color: var(--title);
}

.hero-content h1 span,
.accent-orange h1 .accent,
.accent-green h1 .accent {
  color: var(--orange);
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 25px;
  font-size: 16px;
}

.hero-compact .hero-content h1 {
  font-size: clamp(58px, 6vw, 82px);
}

.featured-wrap {
  margin-top: 0;
  padding: 0 0 16px;
}

.framed-title {
  width: max-content;
  max-width: 100%;
  margin: -1px auto 0;
  padding: 9px 18px 7px;
  border: 1px solid var(--border);
  border-top: 0;
  background: rgba(6, 6, 5, 0.95);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: -1px;
}

.featured-card,
.section-card,
.product-card,
.contact-panel,
.cart-table,
.cart-summary,
.form-block,
.checkout-summary,
.value-strip article,
.map-band,
.about-story,
.about-cards article {
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 34%),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.featured-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  min-height: 214px;
  align-items: center;
  padding: 17px 30px;
}

.featured-card > img {
  max-height: 184px;
  object-fit: contain;
}

.featured-card h2,
.product-card h2,
.cart-item h2 {
  color: var(--accent, var(--orange));
  font-size: 34px;
}

.accent-green {
  --accent: var(--green);
}

.accent-orange {
  --accent: var(--orange);
}

.spaced,
.mini-meter span,
.card-meter span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.featured-card p {
  max-width: 360px;
  margin: 8px 0;
  line-height: 1.45;
}

.mini-meter,
.card-meter {
  display: grid;
  gap: 8px;
  margin: 12px 0 13px;
}

.heat-meter {
  display: inline-flex;
  gap: 4px;
  color: rgba(184, 138, 69, 0.35);
}

.heat-meter .on {
  color: var(--orange);
  fill: currentColor;
}

.heat-green .on {
  color: var(--green);
}

.story-band {
  position: relative;
  min-height: 330px;
  margin-top: 0;
  padding: 48px 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background:
    radial-gradient(circle at 70% 50%, rgba(143, 184, 62, 0.14), transparent 18rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.32)),
    url("../images/reaper-banner-1.png") center right / cover;
}

.story-band > div {
  position: relative;
  z-index: 1;
}

.story-band::after {
  content: "";
  position: absolute;
  right: clamp(18px, 8vw, 130px);
  bottom: -52px;
  width: min(390px, 38vw);
  aspect-ratio: 863 / 1024;
  background: url("../images/blaze-reaper.png") center bottom / contain no-repeat;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.story-band h2 {
  max-width: 530px;
  margin: 10px 0 16px;
  font-size: 48px;
}

.story-band p:not(.eyebrow) {
  max-width: 520px;
}

.section-card {
  margin-top: 18px;
  padding: 34px 40px;
}

.use-section h2,
.why-section h2 {
  margin: 8px 0 30px;
  text-align: center;
  font-size: 42px;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.usage-grid article {
  text-align: center;
}

.usage-grid img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border: 2px solid rgba(184, 138, 69, 0.7);
  border-radius: 999px;
}

.usage-grid h3,
.why-grid h3 {
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 25px;
}

.usage-grid p,
.why-grid p,
.footer-grid p {
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.why-grid article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: center;
}

.why-grid svg,
.value-strip svg,
.feature-icons svg {
  color: var(--orange);
  stroke-width: 1.5;
}

.newsletter {
  width: 100%;
  margin-top: 18px;
  padding: 38px max(28px, calc((100% - 1380px) / 2));
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.9fr);
  gap: 36px;
  align-items: center;
  border-top: 1px solid rgba(184, 138, 69, 0.26);
  border-bottom: 1px solid rgba(184, 138, 69, 0.26);
  background:
    radial-gradient(circle at 7% 70%, rgba(240, 90, 22, 0.35), transparent 11rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.76) 52%, rgba(5, 5, 5, 0.34)),
    url("../images/reaper-banner-1.png") center right / cover;
}

.newsletter h2 {
  font-size: 42px;
}

.newsletter form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(184, 138, 69, 0.5);
  border-radius: var(--soft);
  overflow: hidden;
  background: rgba(8, 7, 6, 0.85);
}

.newsletter form svg {
  margin-left: 18px;
  color: var(--gold-light);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(184, 138, 69, 0.28);
  border-radius: var(--soft);
  color: var(--title);
  background: rgba(4, 4, 4, 0.48);
  outline: none;
}

body {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", Arial, sans-serif;
}

input {
  height: 44px;
  padding: 0 14px;
}

textarea {
  padding: 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(216, 199, 173, 0.45);
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 90, 22, 0.15);
}

.newsletter input {
  border: 0;
  background: transparent;
}

.newsletter .button {
  border-radius: 0;
  min-height: 58px;
}

.site-footer {
  padding: 36px 0 44px;
  background: rgba(3, 4, 4, 0.96);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 64px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 6px 0;
  color: var(--muted);
}

.footer-grid small {
  color: rgba(216, 199, 173, 0.6);
}

.social-row {
  display: flex;
  gap: 16px;
}

.social-row a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(184, 138, 69, 0.55);
  border-radius: 999px;
  color: var(--gold-light);
}

.listing-toolbar {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184, 138, 69, 0.2);
}

.listing-toolbar button,
.toolbar-popover button,
.toolbar-popover a {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(184, 138, 69, 0.35);
  border-radius: var(--soft);
  color: var(--text);
  background: rgba(8, 7, 6, 0.72);
}

.toolbar-control {
  position: relative;
}

.toolbar-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10;
  display: grid;
  gap: 8px;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: rgba(6, 5, 4, 0.98);
  box-shadow: var(--shadow);
}

.toolbar-popover:not(.is-open) {
  display: none;
}

.toolbar-popover button,
.toolbar-popover a {
  justify-content: flex-start;
  min-height: 36px;
  width: 100%;
}

.toolbar-popover .is-active {
  color: #fff8ef;
  border-color: rgba(240, 90, 22, 0.7);
  background: rgba(240, 90, 22, 0.16);
}

.listing-toolbar span {
  justify-self: end;
  color: var(--gold-light);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 22px 0 54px;
}

.product-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 34px;
  min-height: 370px;
}

.product-bottle {
  display: grid;
  min-height: 315px;
  place-items: end center;
  background: radial-gradient(ellipse at 50% 84%, rgba(255, 255, 255, 0.08), transparent 52%);
}

.product-bottle img {
  max-height: 310px;
  object-fit: contain;
}

.product-card-copy p {
  min-height: 76px;
}

.product-card strong {
  display: block;
  color: var(--title);
  font-size: 28px;
  font-weight: 500;
}

.product-card small {
  display: block;
  margin: 6px 0 20px;
  color: var(--gold-light);
}

.card-main-button {
  min-width: 220px;
}

.detail-hero {
  position: relative;
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(250px, 0.7fr) minmax(270px, 0.55fr);
  gap: 28px;
  align-items: center;
  padding: 52px max(28px, calc((100% - 1380px) / 2)) 34px;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.52) 46%, rgba(5, 5, 5, 0.86)),
    var(--detail-bg);
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid rgba(184, 138, 69, 0.22);
}

.detail-copy h1 {
  max-width: 590px;
  margin: 12px 0 18px;
  font-size: clamp(58px, 7vw, 84px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.detail-copy p:not(.eyebrow) {
  max-width: 520px;
}

.button-row {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.detail-bottle {
  display: grid;
  place-items: center;
  align-self: end;
}

.detail-bottle img {
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.58));
}

.taste-profile {
  align-self: start;
  margin-top: 46px;
  padding: 24px;
  border: 1px solid rgba(184, 138, 69, 0.55);
  border-radius: var(--frame);
  background: rgba(8, 7, 6, 0.78);
}

.taste-profile h3 {
  margin-bottom: 22px;
  color: var(--gold-light);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.taste-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  margin: 14px 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.taste-bars {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
}

.taste-bars i {
  display: block;
  height: 10px;
  background: rgba(216, 199, 173, 0.18);
}

.taste-bars .filled {
  background: var(--orange);
}

.tone-green .filled {
  background: var(--green);
}

.feature-icons {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-self: end;
  border-top: 1px solid rgba(184, 138, 69, 0.22);
  border-bottom: 1px solid rgba(184, 138, 69, 0.22);
}

.feature-icons div {
  min-height: 92px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  border-right: 1px solid rgba(184, 138, 69, 0.24);
  color: var(--title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.ingredient-grid article,
.size-card,
.reserve-card,
.recommendation-grid article,
.checkout-item {
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: var(--panel);
}

.ingredient-grid article {
  min-height: 116px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.ingredient-grid img {
  width: 92px;
  height: 76px;
  object-fit: contain;
}

.ingredient-grid h3,
.size-card h3,
.recommendation-grid span {
  color: var(--gold-light);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ingredient-grid p {
  margin: 6px 0 0;
  font-size: 12px;
}

.detail-shop-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  margin-top: 18px;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.size-grid .framed-title {
  grid-column: 1 / -1;
}

.size-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px;
}

.popular {
  position: absolute;
  top: -9px;
  right: 14px;
  padding: 3px 8px;
  border-radius: 3px;
  color: #1a0d05;
  background: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.size-card p,
.size-card strong {
  display: block;
  margin: 7px 0;
}

.merava-size-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.merava-size-form .quantity {
  display: inline-grid;
}

.merava-size-form .button {
  min-height: 38px;
  padding-inline: 14px;
}

.size-card .button {
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  padding-inline: 12px;
  font-size: 11px;
}

.reserve-card {
  padding: 26px;
  background-image:
    linear-gradient(90deg, rgba(7, 6, 5, 0.86), rgba(7, 6, 5, 0.26)),
    var(--reserve-bg);
  background-size: cover;
  background-position: center;
}

.reserve-card h2 {
  margin: 10px 0;
  font-size: 30px;
  text-transform: uppercase;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.recommendation-grid article {
  overflow: hidden;
  text-align: center;
}

.recommendation-grid img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.recommendation-grid span {
  display: block;
  padding: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  margin-top: 0;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  overflow: hidden;
}

.contact-panel {
  border: 0;
  border-radius: 0;
  padding: 32px;
}

.contact-panel + .contact-panel {
  border-left: 1px solid var(--border);
}

.contact-panel h2,
.form-block h2,
.checkout-summary h2 {
  color: var(--orange);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: rgba(3, 3, 3, 0.28);
}

.contact-panel svg {
  color: var(--orange);
}

.contact-panel h3 {
  font-family: var(--font-sans), Arial, sans-serif;
  color: var(--gold-light);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-panel p,
.contact-panel small {
  display: block;
  margin: 3px 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-status {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.map-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 18px;
  padding: 0 0 0 32px;
  overflow: hidden;
}

.map-visual {
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--title);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.45), rgba(7, 7, 7, 0.82)),
    radial-gradient(circle at 40% 50%, rgba(240, 90, 22, 0.28), transparent 80px),
    repeating-linear-gradient(25deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 28px);
}

.map-visual svg {
  color: var(--orange);
}

.page-heading {
  position: relative;
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at 62% 48%, rgba(240, 90, 22, 0.12), transparent 20rem);
}

.page-heading h1 {
  margin: 8px 0;
  font-size: 68px;
}

.page-heading > span {
  position: absolute;
  right: 0;
  bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--title);
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
  margin-bottom: 56px;
}

.cart-table-head {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 110px 122px 120px 34px;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(184, 138, 69, 0.28);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 110px 122px 120px 34px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(184, 138, 69, 0.18);
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-product {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
}

.cart-image {
  height: 116px;
  display: grid;
  place-items: center;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.7)),
    var(--cart-bg);
  background-size: cover;
  background-position: center;
}

.cart-image img {
  max-height: 108px;
  object-fit: contain;
}

.cart-item p,
.cart-item small {
  margin: 6px 0;
  color: var(--muted);
}

.cart-item strong,
.cart-price {
  color: var(--title);
  font-size: 18px;
}

.quantity-selector {
  display: inline-grid;
  grid-template-columns: 38px 48px 38px;
  width: max-content;
  border: 1px solid rgba(184, 138, 69, 0.4);
  border-radius: var(--soft);
  overflow: hidden;
}

.quantity-small {
  grid-template-columns: 30px 38px 30px;
}

.quantity-selector button,
.quantity-selector span {
  display: grid;
  min-height: 36px;
  place-items: center;
  border: 0;
  color: var(--title);
  background: rgba(6, 6, 5, 0.72);
}

.quantity-selector button + span,
.quantity-selector span + button {
  border-left: 1px solid rgba(184, 138, 69, 0.28);
}

.trash-button {
  color: var(--orange);
}

.cart-summary {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: var(--panel);
}

.empty-cart {
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 34px;
}

.empty-cart-clean {
  min-height: 360px;
  margin: 0 0 60px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.72)),
    url("../images/reaper-banner-1.png") center / cover;
}

.empty-cart h2 {
  font-size: 38px;
}

.empty-cart p,
.checkout-empty {
  color: var(--muted);
}

.checkout-lines div,
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 12px 0;
}

.merava-total-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(184, 138, 69, 0.2);
}

.merava-total-line span {
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.merava-total-line strong {
  color: var(--title);
  text-align: right;
}

.merava-total-line.order-total {
  margin-top: 8px;
  border-bottom: 0;
}

.cart-summary hr {
  border: 0;
  border-top: 1px solid rgba(184, 138, 69, 0.3);
  margin: 20px 0;
}

.summary-total strong,
.checkout-total strong {
  color: var(--title);
  font-family: var(--font-display), Georgia, serif;
  font-size: 31px;
  font-weight: 700;
}

.cart-summary .button {
  width: 100%;
  margin: 16px 0;
}

.cart-summary .checkout-button,
#place_order {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

.cart-summary p,
.checkout-summary > ul > li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
}

.continue-shopping {
  margin-bottom: 42px;
}

.checkout-layout {
  grid-template-columns: minmax(0, 680px) minmax(340px, 420px);
  justify-content: space-between;
  gap: clamp(28px, 6vw, 86px);
}

.checkout-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-block {
  padding: 22px;
}

.form-block:nth-child(1),
.form-block:nth-child(2),
.form-block:nth-child(3) {
  grid-column: 1 / -1;
}

.option-block {
  grid-column: 2 / 3;
}

.form-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.radio-row {
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(184, 138, 69, 0.18);
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
}

.radio-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.radio-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.checkout-summary {
  position: sticky;
  top: 112px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: var(--panel);
}

.checkout-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  margin: 16px 0;
  padding: 12px;
}

.checkout-item .quantity-selector {
  grid-column: 3;
}

.checkout-item h3 {
  color: var(--gold-light);
  font-size: 15px;
  font-family: var(--font-sans), Arial, sans-serif;
}

.checkout-item p,
.checkout-item small {
  margin: 4px 0;
  color: var(--muted);
}

.checkout-lines {
  padding-top: 10px;
  border-top: 1px solid rgba(184, 138, 69, 0.2);
}

.checkout-total {
  padding: 18px 0;
  border-top: 1px solid rgba(184, 138, 69, 0.3);
  border-bottom: 1px solid rgba(184, 138, 69, 0.3);
  color: var(--gold-light);
}

.checkout-summary ul {
  padding: 0;
  list-style: none;
}

.checkout-summary .button {
  width: 100%;
}

.woocommerce-notices-wrapper {
  width: min(1380px, calc(100% - 56px));
  margin: 18px auto 0;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  margin: 0 0 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  color: var(--text);
  background: rgba(8, 7, 6, 0.92);
  list-style-position: inside;
}

.woocommerce-message a,
.woocommerce-info a {
  color: var(--gold-light);
}

.woocommerce-error {
  border-color: rgba(240, 90, 22, 0.55);
}

.price,
.single-price,
.amount {
  color: var(--title);
}

.stock-line,
.stock {
  color: var(--gold-light);
}

.out-of-stock {
  color: var(--orange);
}

.merava-single-cart form.cart,
.merava-single-cart .variations_form,
.merava-single-cart .grouped_form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.merava-single-cart .quantity,
.woo-quantity .quantity {
  display: inline-grid;
}

.quantity input.qty {
  width: 72px;
  height: 42px;
  text-align: center;
  border: 1px solid rgba(184, 138, 69, 0.42);
  color: var(--title);
  background: rgba(6, 6, 5, 0.72);
}

.variations {
  width: 100%;
  border-collapse: collapse;
}

.variations th,
.variations td {
  display: block;
  padding: 6px 0;
  text-align: left;
}

.variations label {
  display: block;
}

.variations select,
.merava-single-cart select {
  width: 100%;
  min-height: 42px;
  padding: 0 42px 0 12px;
  border: 1px solid rgba(184, 138, 69, 0.45);
  border-radius: var(--soft);
  color: var(--title);
  background:
    linear-gradient(45deg, transparent 50%, var(--gold-light) 50%) right 16px center / 7px 7px no-repeat,
    linear-gradient(135deg, var(--gold-light) 50%, transparent 50%) right 11px center / 7px 7px no-repeat,
    rgba(6, 6, 5, 0.9);
  font: inherit;
  appearance: none;
}

.variations select option,
.merava-single-cart select option {
  color: #fff8ef;
  background: #14100b;
}

.reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 12px;
}

.single_variation_wrap {
  display: grid;
  gap: 12px;
}

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

.cart-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px;
  border-top: 1px solid rgba(184, 138, 69, 0.18);
}

.cart-actions input {
  max-width: 220px;
}

.cart-summary .cart_totals h2 {
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-summary table,
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.cart-summary th,
.cart-summary td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(184, 138, 69, 0.2);
  color: var(--text);
  text-align: left;
}

.cart-summary td,
.woocommerce-checkout-review-order-table td {
  text-align: right;
}

.woocommerce-checkout-review-order-table .woocommerce-shipping-totals th,
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td,
.cart-summary .woocommerce-shipping-totals th,
.cart-summary .woocommerce-shipping-totals td {
  display: block;
  width: 100%;
  text-align: left;
}

.woocommerce-checkout-review-order-table .woocommerce-shipping-totals th,
.cart-summary .woocommerce-shipping-totals th {
  padding-bottom: 4px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td,
.cart-summary .woocommerce-shipping-totals td {
  padding-top: 6px;
}

#shipping_method,
.woocommerce-shipping-methods {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#shipping_method li,
.woocommerce-shipping-methods li {
  position: relative;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(184, 138, 69, 0.3);
  border-radius: var(--soft);
  background: rgba(8, 7, 6, 0.76);
  color: var(--text);
}

#shipping_method input[type="radio"],
.woocommerce-shipping-methods input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0 9px 0 0;
  padding: 0;
  accent-color: var(--orange);
  vertical-align: middle;
}

#shipping_method label,
.woocommerce-shipping-methods label {
  display: inline;
  color: var(--title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

#shipping_method .amount,
.woocommerce-shipping-methods .amount {
  color: var(--gold-light);
  font-weight: 800;
}

.woocommerce-shipping-destination,
.woocommerce-shipping-calculator {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.merava-cart-shipping {
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(184, 138, 69, 0.22);
  border-bottom: 1px solid rgba(184, 138, 69, 0.22);
}

.merava-cart-shipping h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-summary .amount,
.woocommerce-checkout-review-order-table .amount,
.merava-total-line .amount {
  white-space: nowrap;
}

.cart-summary .wc-proceed-to-checkout {
  display: block !important;
  width: 100%;
  margin: 18px 0 0 !important;
}

.cart-summary .checkout-button,
#place_order {
  width: 100%;
  min-height: 48px;
}

.cart-summary .wc-proceed-to-checkout .checkout-button,
.cart-summary .wc-proceed-to-checkout a.checkout-button {
  position: static !important;
  inset: auto !important;
  box-sizing: border-box;
  display: inline-flex !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  transform: none !important;
  justify-content: center;
  text-align: center;
}

.woocommerce-checkout .form-row {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.checkout-form .field-grid {
  display: block;
}

.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.woocommerce-checkout .form-row-wide {
  grid-column: 1 / -1;
}

.woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-billing-fields__field-wrapper .form-row-last {
  grid-column: auto;
}

.woocommerce-billing-fields__field-wrapper label {
  color: var(--gold-light);
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
  display: none;
}

.woocommerce-checkout .select2-container .select2-selection--single {
  height: 44px;
  border: 1px solid rgba(184, 138, 69, 0.28);
  border-radius: var(--soft);
  background: rgba(4, 4, 4, 0.48);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--title);
  line-height: 42px;
}

.woocommerce-checkout-payment {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 138, 69, 0.24);
}

.wc_payment_methods {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.wc_payment_method {
  display: block;
  color: var(--text);
  padding: 0;
  border-bottom: 0;
}

.payment_box {
  margin-top: 8px;
  color: var(--muted);
}

.place-order {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.merava-payment .radio-row {
  position: relative;
  display: block;
  min-height: 62px;
  padding: 13px 52px 13px 14px;
  border: 1px solid rgba(184, 138, 69, 0.25);
  border-radius: var(--soft);
  background: rgba(6, 6, 5, 0.62);
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
}

.merava-payment .radio-row input[type="radio"] {
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 2;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.merava-payment .radio-row .payment-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.merava-payment .radio-row .payment-copy::before,
.merava-payment .radio-row .payment-copy::after {
  content: "";
  position: absolute;
  top: 50%;
  border-radius: 999px;
  transform: translateY(-50%);
  pointer-events: none;
}

.merava-payment .radio-row .payment-copy::before {
  right: 16px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(214, 168, 90, 0.58);
  background: rgba(4, 4, 4, 0.8);
  box-shadow: inset 0 0 0 4px rgba(4, 4, 4, 0.95);
}

.merava-payment .radio-row input[type="radio"]:checked + .payment-copy::after {
  right: 21px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(240, 90, 22, 0.45);
}

.merava-payment .radio-row strong {
  display: block;
  color: var(--title);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.merava-payment .radio-row small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.woocommerce-terms-and-conditions-wrapper {
  color: var(--muted);
  font-size: 13px;
}

.woocommerce-pagination {
  margin: 24px 0 54px;
}

.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  display: grid;
  min-width: 36px;
  min-height: 36px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--soft);
}

.thank-you-page {
  min-height: calc(100dvh - 280px);
  display: grid;
  place-items: center;
  padding-block: 80px;
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background:
    linear-gradient(135deg, rgba(240, 90, 22, 0.12), transparent 45%),
    var(--panel);
}

.thank-you-card svg {
  color: var(--orange);
}

.thank-you-card h1 {
  margin: 12px 0 16px;
  font-size: clamp(44px, 6vw, 72px);
}

.thank-you-card .button {
  margin-top: 20px;
}

.about-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 52px 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.52), rgba(5, 5, 5, 0.08)),
    url("../images/reaper-banner-1.png") center right / cover;
  border-bottom: 1px solid rgba(184, 138, 69, 0.22);
}

.about-hero > div {
  max-width: 620px;
}

.about-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(58px, 6vw, 78px);
}

.about-hero h1::first-line {
  color: var(--title);
}

.about-hero .button {
  margin-top: 18px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.value-strip article {
  min-height: 138px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: 0;
}

.value-strip article:first-child {
  border-radius: var(--frame) 0 0 var(--frame);
}

.value-strip article:last-child {
  border-radius: 0 var(--frame) var(--frame) 0;
}

.value-strip h2 {
  color: var(--title);
  font-size: 28px;
}

.about-story {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 18px;
  padding: 34px;
}

.about-story h2 {
  margin: 10px 0 16px;
  font-size: 42px;
}

.about-story img {
  width: 100%;
  height: 285px;
  border-radius: var(--frame);
  object-fit: cover;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding-inline: 0;
}

.about-cards article {
  overflow: hidden;
}

.about-cards img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about-cards h3 {
  padding: 18px 18px 0;
  color: var(--gold-light);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-cards p {
  padding: 0 18px 18px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .page-frame {
    margin: 0;
    border-radius: 0;
    border-inline: 0;
  }

  .shell {
    width: min(100% - 28px, 680px);
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    color: var(--gold-light);
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    width: auto;
    height: 48px;
  }

  .header-actions {
    gap: 12px;
  }

  .cart-label {
    display: none;
  }

  .mobile-panel {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1000;
    display: grid;
    grid-template-rows: auto 1fr;
    width: min(88vw, 360px);
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    padding: 20px;
    transform: translateX(-110%);
    transition: transform 180ms ease;
    background-color: #050403;
    background-image:
      linear-gradient(180deg, rgba(5, 4, 3, 0.995), rgba(5, 4, 3, 0.985)),
      url("../images/reaper-banner-1.png");
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(184, 138, 69, 0.32);
    box-shadow: none;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-panel.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 0 0 200vw rgba(0, 0, 0, 0.76), 24px 0 60px rgba(0, 0, 0, 0.78);
  }

  .mobile-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #050403;
    opacity: 0.94;
  }

  .mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gold-light);
  }

  .mobile-panel-head button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(184, 138, 69, 0.32);
    border-radius: var(--soft);
    background: #090604;
  }

  .mobile-panel nav {
    display: grid;
    align-content: start;
    gap: 12px;
    margin-top: 30px;
    color: var(--title);
    font-size: 23px;
    font-family: var(--font-display), Georgia, serif;
  }

  .mobile-panel nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(184, 138, 69, 0.22);
    border-radius: var(--soft);
    background: #080604;
    color: #fff8ef;
    text-shadow: none;
    box-shadow: inset 0 0 0 1px rgba(255, 129, 35, 0.04);
  }

  .hero-section,
  .hero-compact {
    min-height: 340px;
    align-items: start;
    background-position: center right;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.38) 46%, rgba(5, 5, 5, 0.76)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.38) 62%, rgba(5, 5, 5, 0.18));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 28px auto 0;
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-copy {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
  }

  .hero-content h1 {
    color: #fff0d7;
  }

  .hero-copy {
    color: #f1dcc0;
  }

  .hero-content h1,
  .hero-compact .hero-content h1,
  .detail-copy h1,
  .about-hero h1,
  .page-heading h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-copy {
    margin: 16px 0 18px;
  }

  .hero-content .button,
  .story-band .button {
    width: fit-content;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 18px;
  }

  .featured-grid,
  .product-list,
  .contact-grid,
  .cart-layout,
  .checkout-layout,
  .about-story,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .featured-card,
  .product-card {
    grid-template-columns: 104px 1fr;
    gap: 11px;
    min-height: auto;
    padding: 12px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0) 38%),
      rgba(14, 12, 9, 0.96);
    border-color: rgba(214, 168, 90, 0.46);
  }

  .featured-card h2,
  .product-card h2,
  .cart-item h2 {
    font-size: 21px;
  }

  .featured-card p,
  .product-card p {
    display: -webkit-box;
    overflow: hidden;
    color: #e8d4b7;
    font-size: 11px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .featured-card .button,
  .product-card .button {
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    font-size: 10px;
  }

  .mini-meter,
  .card-meter {
    gap: 4px;
    margin: 6px 0 7px;
  }

  .mini-meter span,
  .card-meter span {
    font-size: 10px;
  }

  .featured-card .heat-meter svg,
  .product-card .heat-meter svg {
    width: 13px;
    height: 13px;
  }

  .story-band {
    min-height: 340px;
    padding: 28px;
    background-position: center;
  }

  .story-band::after {
    right: -42px;
    bottom: -34px;
    width: 220px;
    opacity: 0.5;
  }

  .story-band h2,
  .use-section h2,
  .newsletter h2 {
    font-size: 35px;
  }

  .usage-grid,
  .why-grid,
  .ingredient-grid,
  .recommendation-grid,
  .value-strip,
  .about-cards,
  .field-grid,
  .checkout-form {
    grid-template-columns: 1fr;
  }

  .section-card {
    padding: 24px 18px;
  }

  .why-grid article {
    grid-template-columns: 56px 1fr;
  }

  .newsletter {
    padding: 26px 14px;
  }

  .newsletter form {
    grid-template-columns: auto 1fr;
  }

  .newsletter .button {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .listing-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .listing-toolbar span {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .product-bottle {
    min-height: 240px;
  }

  .product-bottle img {
    max-height: 230px;
  }

  .detail-hero {
    min-height: 720px;
    grid-template-columns: 1fr;
    padding: 30px 14px;
    background-position: center;
  }

  .detail-bottle {
    position: absolute;
    right: 12px;
    top: 120px;
    width: 168px;
  }

  .detail-bottle img {
    max-height: 270px;
  }

  .detail-copy {
    padding-right: 150px;
  }

  .taste-profile {
    margin-top: 0;
  }

  .feature-icons {
    grid-column: auto;
  }

  .feature-icons div {
    min-height: 76px;
    font-size: 10px;
  }

  .ingredient-grid article,
  .size-card {
    grid-template-columns: 80px 1fr;
  }

  .detail-shop-grid,
  .size-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel + .contact-panel {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .map-band {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .page-heading > span {
    position: static;
    margin-top: 12px;
  }

  .cart-table-head {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 12px;
    border: 1px solid var(--border);
    border-radius: var(--frame);
  }

  .empty-cart {
    padding: 24px 18px;
  }

  .cart-product {
    grid-template-columns: 132px 1fr;
  }

  .cart-image {
    height: 120px;
  }

  .cart-summary,
  .checkout-summary {
    position: static;
  }

  .option-block,
  .form-block:nth-child(1),
  .form-block:nth-child(2),
  .form-block:nth-child(3) {
    grid-column: auto;
  }

  .value-strip article,
  .value-strip article:first-child,
  .value-strip article:last-child {
    border-radius: var(--frame);
  }

  .about-hero {
    min-height: 560px;
    align-items: start;
    padding-top: 42px;
    background-position: center bottom;
  }
}

@media (max-width: 520px) {
  .hero-content h1,
  .hero-compact .hero-content h1,
  .page-heading h1 {
    font-size: 39px;
  }

  .hero-copy {
    font-size: 12px;
    line-height: 1.45;
  }

  .featured-card,
  .product-card {
    grid-template-columns: 82px 1fr;
    align-items: start;
  }

  .featured-card img {
    max-height: 108px;
    object-fit: contain;
  }

  .product-card-copy p {
    min-height: 0;
  }

  .card-main-button {
    min-width: 0;
  }

  .detail-copy {
    padding-right: 0;
  }

  .detail-bottle {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: -20px;
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-bottle img {
    max-height: 310px;
  }

  .feature-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .taste-row {
    grid-template-columns: 88px 1fr;
  }

  .cart-product {
    grid-template-columns: 112px 1fr;
  }
}
/* Hard override for hosted WooCommerce payment methods. Also covers older uploaded templates. */
.woocommerce-checkout .checkout-summary .woocommerce-checkout-payment,
.woocommerce-checkout .checkout-summary .merava-payment {
  width: 100% !important;
  margin-top: 18px !important;
}

.woocommerce-checkout .checkout-summary .wc_payment_methods,
.woocommerce-checkout .checkout-summary ul.wc_payment_methods,
.woocommerce-checkout .checkout-summary .payment_methods {
  display: grid !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce-checkout .checkout-summary .wc_payment_method,
.woocommerce-checkout .checkout-summary li.wc_payment_method {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--text) !important;
}

.woocommerce-checkout .checkout-summary .wc_payment_method > label,
.woocommerce-checkout .checkout-summary .merava-payment .radio-row {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-height: 62px !important;
  margin: 0 !important;
  padding: 13px 52px 13px 14px !important;
  border: 1px solid rgba(184, 138, 69, 0.32) !important;
  border-radius: var(--soft) !important;
  background: rgba(8, 7, 6, 0.84) !important;
  color: var(--text) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.45 !important;
  text-transform: none !important;
  cursor: pointer !important;
}

.woocommerce-checkout .checkout-summary .wc_payment_method input[type="radio"],
.woocommerce-checkout .checkout-summary .merava-payment .radio-row input[type="radio"] {
  position: absolute !important;
  top: 50% !important;
  right: 16px !important;
  left: auto !important;
  z-index: 2 !important;
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
}

.woocommerce-checkout .checkout-summary .wc_payment_method > label::before,
.woocommerce-checkout .checkout-summary .merava-payment .radio-row::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: 16px !important;
  width: 20px !important;
  height: 20px !important;
  border: 1px solid rgba(214, 168, 90, 0.62) !important;
  border-radius: 999px !important;
  background: rgba(4, 4, 4, 0.86) !important;
  box-shadow: inset 0 0 0 4px rgba(4, 4, 4, 0.95) !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
}

.woocommerce-checkout .checkout-summary .wc_payment_method input[type="radio"]:checked + span::after,
.woocommerce-checkout .checkout-summary .wc_payment_method input[type="radio"]:checked ~ span::after,
.woocommerce-checkout .checkout-summary .merava-payment .radio-row input[type="radio"]:checked + span::after,
.woocommerce-checkout .checkout-summary .merava-payment .radio-row input[type="radio"]:checked + .payment-copy::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: 21px !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  background: var(--orange) !important;
  box-shadow: 0 0 16px rgba(240, 90, 22, 0.45) !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
}

.woocommerce-checkout .checkout-summary .wc_payment_method label > span,
.woocommerce-checkout .checkout-summary .merava-payment .radio-row > span,
.woocommerce-checkout .checkout-summary .merava-payment .payment-copy {
  position: static !important;
  display: grid !important;
  gap: 4px !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  color: var(--muted) !important;
  line-height: 1.45 !important;
}

.woocommerce-checkout .checkout-summary .wc_payment_method label > span > strong,
.woocommerce-checkout .checkout-summary .merava-payment .radio-row strong {
  display: block !important;
  color: var(--gold-light) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
}

.woocommerce-checkout .checkout-summary .wc_payment_method label small,
.woocommerce-checkout .checkout-summary .payment_box,
.woocommerce-checkout .checkout-summary .merava-payment .radio-row small {
  display: block !important;
  margin: 4px 0 0 !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.45 !important;
  text-transform: none !important;
}
