﻿: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);
  /*
   * Csak a tömör alapszín a body-n. A színes „ragyogásokat" egy KÉPERNYŐ-méretű,
   * fix rétegre tesszük (body::before) - különben a teljes (nagyon magas) főoldal
   * dokumentumában kirajzolódó gradiens-textúra a Samsung Internet böngészőben
   * túllép egy GPU-textúra korlátot, és görgetéskor színes „zajt" okoz.
   */
  background: linear-gradient(180deg, #050505 0%, #080706 48%, #030303 100%);
  font-family: var(--font-sans), Arial, sans-serif;
  min-height: 100dvh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  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);
}

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);
  /*
   * Tömör (közel átlátszatlan) háttér backdrop-filter NÉLKÜL.
   * A korábbi sticky + backdrop-filter: blur() kombináció a Samsung Internet
   * böngészőben görgetéskor „szellemkép"/elkenődés hibát okozott.
   */
  background: rgba(8, 6, 5, 0.96);
}

/* Csak ott kapcsoljuk be a finom blurt, ahol biztosan nem okoz repaint-hibát. */
@supports (backdrop-filter: blur(1px)) {
  @media (min-width: 1025px) {
    .site-header {
      background: rgba(8, 6, 5, 0.82);
      backdrop-filter: blur(14px);
    }
  }
}

.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;
  border-radius: var(--soft);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible,
.account-link:hover,
.account-link:focus-visible {
  color: var(--title);
  background: rgba(184, 138, 69, 0.1);
  outline: 1px solid rgba(214, 168, 90, 0.28);
}

.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);
}

/*
 * Kompakt banner (Szoszok, kereses, bejelentkezes).
 * A hattérkep kozepen all a MERAVA monogram-medal. A korabbi 350px-es
 * sav + cover kombinacio szo szerint felbevagta. A magassag mersekelten
 * no (nem hero-meret), a fuggoleges pozicio pedig a medalra van igazitva,
 * hogy egeszben latszodjon szeles kepernyon is.
 */
.hero-compact {
  min-height: clamp(380px, 26vw, 470px);
  background-position: center 32%;
}

.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/brand/hero-medallion.webp") 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/brand/chili-macro.webp") 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(5, 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);
  /*
   * Markaszintu hatter. Korabban a regi Reaper/GreenBlaze uveges foto volt itt,
   * ami mar nem letezo termekeket mutatott. Amig nincs uj markafoto, tiszta
   * tuz-gradiens all a helyen (nincs benne termek).
   */
  background:
    radial-gradient(circle at 6% 78%, rgba(240, 90, 22, 0.34), transparent 13rem),
    radial-gradient(circle at 92% 18%, rgba(217, 39, 24, 0.2), transparent 15rem),
    linear-gradient(100deg, #080706 0%, #0d0a08 54%, #120c09 100%);
}

.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;
}

/* ============================================================
   HIRLEVEL-URLAP: stabil doboz beküldes/fokusz/autofill kozben
   ------------------------------------------------------------
   Harom dolog bontotta szet a dobozt:
   1. a globalis input:focus box-shadow egy belso keretet rajzolt
      a pill BELSEJEBE (a .newsletter input border:0 miatt csunya volt)
   2. a Chrome autofill sajat feher hatteret es sotet szoveget tolt be
   3. a letiltott gomb bongeszo-alapertelmezett kinezetet kapott
   ============================================================ */

/* 1. A fokusz a TELJES pillt emelje ki, ne a mezot kulon. */
.newsletter form:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 90, 22, 0.15);
}

.newsletter input:focus {
  border: 0;
  box-shadow: none;
}

/* 2. Autofill: a Chrome hatteret nagy inset box-shadow-val nyomjuk el,
      a szoveg szinet pedig -webkit-text-fill-color-ral allitjuk.
      A hosszu transition megakadalyozza a rovid feher felvillanast. */
.newsletter input:-webkit-autofill,
.newsletter input:-webkit-autofill:hover,
.newsletter input:-webkit-autofill:focus,
.newsletter input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--title);
  -webkit-box-shadow: 0 0 0 1000px #0b0908 inset;
  box-shadow: 0 0 0 1000px #0b0908 inset;
  caret-color: var(--title);
  border-radius: 0;
  transition: background-color 100000s ease-in-out 0s;
}

/* 3. Bekuldes kozben: a gomb halvanyabb, de a doboz merete valtozatlan. */
.newsletter .button[disabled] {
  opacity: 0.65;
  cursor: progress;
}

.newsletter .button[disabled]:hover {
  transform: none;
}

/* --- GDPR hozzajarulas a hirlevel alatt --- */
.newsletter-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.newsletter-consent a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-consent a:hover {
  color: #fff8ef;
}

/* ============================================================
   IMPRESSZUM (lablec alja) - Ekertv. szerint kotelezo adatok
   ============================================================ */
.footer-imprint {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.footer-imprint h3 {
  margin: 0 0 16px;
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-imprint ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px 32px;
  margin: 0;
  padding: 0;
}

.footer-imprint li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
}

.footer-imprint span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(216, 199, 173, 0.55);
}

.footer-imprint strong {
  font-weight: 500;
  color: var(--muted);
}

.footer-imprint a {
  color: var(--muted);
}

.footer-imprint a:hover {
  color: var(--gold-light);
}

/* Hianyzo kotelezo adat - lathatoan jelolve, hogy potolni kelljen */
.footer-imprint strong.is-missing {
  color: #ff8a7a;
  font-style: italic;
}

/* ============================================================
   JOGI OLDALAK (ASZF, adatvedelem) - olvashato hosszu szoveg
   ============================================================ */
.legal-missing {
  padding: 1px 7px;
  border-radius: 4px;
  background: rgba(255, 138, 122, 0.14);
  color: #ff8a7a;
  font-style: italic;
}

.entry-content table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  font-size: 13px;
}

.entry-content th,
.entry-content td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.entry-content th {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.entry-content blockquote {
  margin: 18px 0;
  padding: 18px 22px;
  border-left: 2px solid var(--border-strong);
  border-radius: 0 var(--soft) var(--soft) 0;
  background: rgba(255, 255, 255, 0.02);
}

.entry-content blockquote p {
  margin: 0 0 10px;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

/* Szeles tablazat mobilon ne feszitse szet az oldalt */
@media (max-width: 760px) {
  .entry-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.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;
}

.food-info-section {
  margin-block: 18px;
  padding: 26px;
}

.food-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.food-info-grid article {
  padding: 14px;
  border: 1px solid rgba(184, 138, 69, 0.22);
  border-radius: var(--soft);
  background: rgba(5, 5, 5, 0.42);
}

.food-info-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.food-info-grid strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.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;
}

/* Sikeres / sikertelen feliratkozas visszajelzese */
.form-status.is-success {
  color: #8fd18a;
}

.form-status.is-error {
  color: #ff8a7a;
}

/* A hirlevel-sav statuszsora a racs alatt, teljes szelessegben */
.newsletter .form-status:empty {
  display: none;
}

.newsletter .form-status {
  grid-column: 1 / -1;
  margin: 12px 0 0;
}

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-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.cart-size-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  background: rgba(184, 138, 69, 0.12);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.cart-size-pill svg {
  color: var(--orange);
}

.cart-item-meta small {
  margin: 0;
}

.cart-item strong,
.cart-price {
  color: var(--title);
  font-size: 18px;
}

.quantity-selector {
  display: inline-grid;
  grid-template-columns: 38px 58px 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 .quantity {
  display: contents;
}

.quantity-selector .qty-button {
  font-size: 18px;
  font-weight: 800;
}

.quantity-selector .qty-button:hover {
  color: #fff8ef;
  background: rgba(240, 90, 22, 0.24);
}

.quantity-selector button + span,
.quantity-selector span + button,
.quantity-selector .quantity + button,
.quantity-selector .quantity input.qty {
  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/brand/hero-medallion.webp") 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);
}

/*
 * Robusztusság: a checkout form egy grid, aminek csak a két oszlop (.checkout-form
 * és .checkout-summary) a valódi cellája. Bármilyen más közvetlen gyermek
 * (WooCommerce hibaüzenet, kupon/login blokk, plugin-kimenet) fogja át a teljes
 * szélességet, hogy ne lökhesse el a „Rendelés összegzése" oszlopot.
 */
.checkout-layout > *:not(.checkout-form):not(.checkout-summary) {
  grid-column: 1 / -1;
}

.checkout-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-width: 0;
}

.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);
}

.account-heading {
  padding-bottom: 18px;
}

.account-heading p:not(.breadcrumb) {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.merava-woo-page.account-page {
  margin-bottom: 72px;
}

.account-page .woocommerce {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 34%),
    var(--panel);
}

.account-page .woocommerce::after {
  content: "";
  display: block;
  clear: both;
}

.account-page .woocommerce h2,
.account-page .woocommerce h3 {
  margin: 0 0 18px;
  color: var(--title);
  font-size: clamp(32px, 4vw, 48px);
}

.account-page .woocommerce form.login,
.account-page .woocommerce form.register,
.account-page .woocommerce form.lost_reset_password,
.account-page .woocommerce-ResetPassword,
.account-page .woocommerce-MyAccount-content {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
}

.account-page .woocommerce form.login,
.account-page .woocommerce form.register,
.account-page .woocommerce-ResetPassword {
  display: grid;
  gap: 18px;
  max-width: 560px;
}

.account-page .woocommerce-form-row,
.account-page .form-row {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
}

.account-page .woocommerce label,
.account-page .woocommerce-form__label {
  color: var(--gold-light);
}

.account-page .woocommerce input.input-text,
.account-page .woocommerce input[type="text"],
.account-page .woocommerce input[type="email"],
.account-page .woocommerce input[type="password"],
.account-page .woocommerce textarea,
.account-page .woocommerce select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(184, 138, 69, 0.38);
  border-radius: var(--soft);
  color: var(--title);
  background: rgba(5, 5, 5, 0.72);
}

.account-page .woocommerce input:focus,
.account-page .woocommerce textarea:focus,
.account-page .woocommerce select:focus {
  border-color: var(--orange);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(240, 90, 22, 0.16);
}

.account-page .woocommerce button.button,
.account-page .woocommerce a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--soft);
  color: #fff8ef;
  background: linear-gradient(180deg, #ff741f, var(--orange-dark));
}

.account-page .woocommerce-LostPassword,
.account-page .woocommerce-privacy-policy-text,
.account-page .woocommerce-form-login__rememberme {
  color: var(--muted);
  font-size: 13px;
}

.account-page .woocommerce-LostPassword a,
.account-page .woocommerce-privacy-policy-text a,
.account-page .woocommerce-MyAccount-content a {
  color: var(--gold-light);
}

.account-page .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
  margin: 0 0 22px;
}

.account-page .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-page .woocommerce-MyAccount-navigation li a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(184, 138, 69, 0.32);
  border-radius: var(--soft);
  color: var(--gold-light);
  background: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.account-page .woocommerce-MyAccount-navigation li.is-active a,
.account-page .woocommerce-MyAccount-navigation li a:hover {
  border-color: var(--orange);
  color: #fff8ef;
  background: rgba(240, 90, 22, 0.16);
}

.account-page .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  max-width: none;
}

.account-page .woocommerce table.shop_table {
  width: 100%;
  border: 1px solid rgba(184, 138, 69, 0.28);
  border-collapse: collapse;
  border-radius: var(--frame);
  overflow: hidden;
  color: var(--text);
  background: rgba(5, 5, 5, 0.48);
}

.account-page .woocommerce table.shop_table th,
.account-page .woocommerce table.shop_table td {
  padding: 14px;
  border-bottom: 1px solid rgba(184, 138, 69, 0.18);
  text-align: left;
}

.account-page .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.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: 58px;
  height: 38px;
  text-align: center;
  border: 0;
  color: var(--title);
  background: rgba(6, 6, 5, 0.72);
  appearance: textfield;
  -moz-appearance: textfield;
}

.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.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;
  display: block;
  width: 100%;
  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);
}

/*
 * A csomagpont-plugin által beszúrt „Átvételi hely" sor (foxpost.js jelöli meg):
 * teljes szélességű, balra zárt elrendezés, hogy a hosszú cím ne nyomódjon össze.
 */
.foxpost-ext-row th,
.foxpost-ext-row td {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
}

.foxpost-ext-row th {
  padding-bottom: 4px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.foxpost-ext-row td {
  padding-top: 6px;
  color: var(--text);
  line-height: 1.5;
}

.foxpost-ext-row td a {
  color: var(--gold-light);
  font-weight: 700;
}

/* „X db raktáron" jelvény a termékoldalon. */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(8, 7, 6, 0.6);
}

.stock-badge .stock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stock-badge.in {
  color: #9fe6b0;
}

.stock-badge.in .stock-dot {
  background: #4cc46a;
  box-shadow: 0 0 0 3px rgba(76, 196, 106, 0.18);
}

.stock-badge.low {
  color: #f3c87a;
}

.stock-badge.low .stock-dot {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 90, 22, 0.18);
}

.stock-badge.out {
  color: var(--muted);
}

.stock-badge.out .stock-dot {
  background: #6b6b6b;
}

/* ============================================================
   TERMÉKENKÉNTI SZÍNVILÁG
   A .product-theme wrapper inline style-ban kapja az --accent és
   származtatott változóit a termék _merava_color mezőjéből, így egy
   új terméknél egyetlen hex adja a teljes aloldal arculatát.
   ============================================================ */
.product-theme .eyebrow,
.product-theme .price-pending,
.product-theme .food-block h3,
.product-theme .recommendation-section h2 {
  color: var(--accent-bright, var(--gold-light));
}

/* A WooCommerce-hatókörű gombszabály (.woocommerce a.button) magasabb
   specificitású, ezért itt szándékosan erősebb szelektorokat használunk. */
.product-theme .button.button-primary,
.woocommerce .product-theme a.button.button-primary,
.woocommerce .product-theme button.button.button-primary {
  background: linear-gradient(150deg, var(--accent, var(--orange)), var(--accent-deep, #b8441a));
  box-shadow: 0 14px 38px var(--accent-glow, rgba(240, 90, 22, 0.28));
}

.product-theme .allergen-block {
  border-color: var(--accent-line, var(--border));
  background: var(--accent-soft, rgba(240, 90, 22, 0.06));
}

.product-theme .food-block h3 svg,
.product-theme .image-coming-soon svg,
.product-theme .heat-meter span.on svg {
  color: var(--accent, var(--orange));
}

.product-theme .taste-bars i.filled {
  background: var(--accent, var(--orange));
}

.product-theme .size-card .popular {
  background: var(--accent, var(--orange));
  color: #fff8ef;
}

.product-theme .image-coming-soon {
  border-color: var(--accent-line, var(--border-strong));
  background:
    linear-gradient(140deg, var(--accent-soft, rgba(240, 90, 22, 0.07)), transparent 62%),
    rgba(8, 7, 6, 0.6);
}

.product-theme .price-pending {
  border-color: var(--accent-line, var(--border-strong));
  background: var(--accent-soft, rgba(184, 138, 69, 0.12));
}

/* ============ Kép hamarosan placeholder ============ */
.image-coming-soon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: var(--ph-w, 220px);
  max-width: 100%;
  min-height: var(--ph-h, 300px);
  padding: 20px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--border-strong);
  border-radius: var(--frame);
  background:
    linear-gradient(140deg, rgba(240, 90, 22, 0.07), transparent 60%),
    rgba(8, 7, 6, 0.6);
}

.image-coming-soon svg {
  color: var(--orange);
  opacity: 0.85;
}

.image-coming-soon em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ Élelmiszer-információk ============ */
.food-text-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 26px 0 22px;
}

.food-block {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: rgba(5, 5, 5, 0.42);
}

.food-block h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.food-block h3 svg {
  color: var(--orange);
}

.food-block p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.food-block small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.allergen-block {
  border-color: rgba(240, 90, 22, 0.4);
  background: rgba(240, 90, 22, 0.06);
}

.food-pending {
  color: var(--muted);
  font-style: normal;
}

/* ============ Ár hamarosan ============ */
.price-pending {
  display: inline-block;
  padding: 6px 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(184, 138, 69, 0.12);
}

.size-pending-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Kötelező pontválasztás figyelmeztetés a pénztárban. */
.foxpost-required-msg {
  margin: 12px 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #ffd9c2;
  background: rgba(240, 90, 22, 0.12);
  border: 1px solid var(--orange);
  border-radius: var(--soft);
}

#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-terms-and-conditions-wrapper .form-row {
  display: block;
  margin: 0;
}

.woocommerce-terms-and-conditions-wrapper label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.woocommerce-terms-and-conditions-wrapper a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.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/brand/hero-medallion.webp") 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: 1180px) {
  .usage-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 980px) {
  .page-frame {
    margin: 0;
    border-radius: 0;
    border-inline: 0;
    /* A dokumentum-magas, 120px-es elmosott árnyék GPU-zajt okoz Samsungon. */
    box-shadow: none;
  }

  .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/brand/hero-medallion.webp");
    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 {
    min-height: 340px;
    align-items: start;
    background-position: center right;
  }

  /* Mobilon a kep magassagra skalaz, ezert kozepre igazitjuk,
     kulonben a "center right" levagja a medalt. */
  .hero-compact {
    min-height: 330px;
    align-items: start;
    background-position: center center;
  }

  .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: 30px 22px;
  }

  .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;
  }

  .food-info-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;
  }

  .account-page .woocommerce {
    max-width: 100%;
    padding: 20px;
  }

  .account-page .woocommerce-MyAccount-navigation ul,
  .account-page .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }

  .account-page .woocommerce-MyAccount-navigation ul {
    display: grid;
  }

  .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;
}

/* Elementor Free compatibility layer. Keeps editable pages on the MERAVA visual system. */
.merava-builder-page {
  width: 100%;
  min-height: 60dvh;
  color: var(--text);
  background:
    radial-gradient(circle at 52% 0%, rgba(240, 90, 22, 0.1), transparent 32rem),
    linear-gradient(180deg, #050505 0%, #080706 58%, #030303 100%);
}

.merava-builder-page > .elementor,
.merava-elementor-fullwidth > .elementor {
  width: 100%;
}

.merava-builder-page .elementor-section.elementor-section-boxed > .elementor-container,
.merava-builder-page .e-con.e-con-boxed > .e-con-inner {
  width: min(1380px, calc(100% - 56px));
  max-width: 1380px;
}

.merava-builder-page .elementor-widget-heading .elementor-heading-title,
.merava-builder-page h1,
.merava-builder-page h2,
.merava-builder-page h3 {
  color: var(--title);
  font-family: var(--font-display), Georgia, serif;
  letter-spacing: 0;
  text-wrap: balance;
}

.merava-builder-page .elementor-widget-text-editor,
.merava-builder-page .elementor-widget-text-editor p,
.merava-builder-page p {
  color: var(--text);
  font-family: var(--font-sans), Arial, sans-serif;
  line-height: 1.7;
}

.merava-builder-page a:not(.button):not(.elementor-button) {
  color: var(--gold-light);
}

.merava-builder-page .elementor-button,
.merava-builder-page a.elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--soft);
  color: #fff;
  background: linear-gradient(180deg, #ff6b1d 0%, var(--orange) 100%);
  box-shadow: 0 14px 32px rgba(240, 90, 22, 0.32);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.merava-builder-page .elementor-button:hover,
.merava-builder-page a.elementor-button:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(240, 90, 22, 0.42);
  transform: translateY(-1px);
}

.merava-builder-page .elementor-widget-image img {
  border-radius: var(--frame);
}

.merava-builder-page input:not([type="checkbox"]):not([type="radio"]),
.merava-builder-page textarea,
.merava-builder-page select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--soft);
  color: var(--title);
  background: rgba(5, 5, 5, 0.76);
}

.merava-shortcode-section {
  margin-block: clamp(18px, 4vw, 46px);
}

.merava-builder-page .merava-shortcode-section:first-child {
  margin-top: 0;
}

.elementor-editor-active .site-header {
  position: relative;
}

.elementor-editor-active .merava-builder-page {
  min-height: 320px;
}

@media (max-width: 720px) {
  .merava-builder-page .elementor-section.elementor-section-boxed > .elementor-container,
  .merava-builder-page .e-con.e-con-boxed > .e-con-inner {
    width: min(100% - 28px, 1380px);
  }

  .merava-builder-page .elementor-button,
  .merava-builder-page a.elementor-button {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
    white-space: normal;
  }
}

/* ---- Search overlay ---- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(80px, 16vh, 200px) 20px 40px;
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.search-open {
  overflow: hidden;
}

.search-overlay-inner {
  position: relative;
  width: min(680px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: var(--panel-2);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
  transition: transform 260ms ease;
}

.search-overlay.is-open .search-overlay-inner {
  transform: translateY(0);
}

.search-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

.search-close:hover {
  color: var(--gold-light);
  border-color: var(--border-strong);
}

.search-form {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.search-form input[type="search"] {
  flex: 1;
  min-height: 54px;
  padding: 0 20px;
  color: var(--title);
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--soft);
  outline: none;
  transition: border-color 160ms ease;
}

.search-form input[type="search"]:focus {
  border-color: var(--border-strong);
}

.search-form input[type="search"]::placeholder {
  color: var(--muted);
}

@media (max-width: 560px) {
  .search-form {
    flex-direction: column;
  }
}

/* ---- Product reviews ---- */
.reviews-section {
  display: grid;
  gap: 26px;
}

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-avg {
  font-size: 34px;
  font-weight: 800;
  color: var(--title);
  line-height: 1;
}

.reviews-count {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.star-rating {
  position: relative;
  display: inline-block;
  width: 5.6em;
  height: 1.2em;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.star-rating::before {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(214, 168, 90, 0.28);
}

.star-rating span {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -9999px;
}

.star-rating span::before {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  text-indent: 0;
  color: var(--gold-light);
}

.reviews-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.review-item {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: var(--panel);
}

.review-item-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.review-item-head strong {
  color: var(--title);
  font-size: 15px;
}

.review-item-head time {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.review-item-body {
  color: var(--text);
  line-height: 1.6;
}

.review-item-body p {
  margin: 0;
}

.reviews-empty {
  color: var(--muted);
}

.review-form-wrap {
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.review-form-wrap .comment-reply-title {
  font-size: 19px;
  color: var(--title);
  margin-bottom: 16px;
}

.review-form-wrap label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.review-form-wrap select,
.review-form-wrap textarea,
.review-form-wrap input[type="text"],
.review-form-wrap input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  color: var(--title);
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--soft);
  outline: none;
}

.review-form-wrap select:focus,
.review-form-wrap textarea:focus,
.review-form-wrap input:focus {
  border-color: var(--border-strong);
}

/* ============ Account: login + registration ============ */
.account-auth {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  max-width: 1180px;
  margin: 56px auto 80px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  overflow: hidden;
  background: var(--panel);
}

.auth-aside {
  position: relative;
  display: flex;
  align-items: center;
  padding: 56px 48px;
  background-image: linear-gradient(160deg, rgba(8, 6, 4, 0.62), rgba(6, 5, 4, 0.92)), var(--auth-bg);
  background-size: cover;
  background-position: center;
}

.auth-aside-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 20% 10%, rgba(240, 90, 22, 0.18), transparent 60%);
  pointer-events: none;
}

.auth-aside-inner {
  position: relative;
  z-index: 1;
  max-width: 380px;
}

.auth-aside-inner h1 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  margin: 12px 0 16px;
  color: #fff8ef;
}

.auth-lead {
  color: rgba(243, 230, 214, 0.82);
  line-height: 1.65;
  margin-bottom: 28px;
}

.auth-perks {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.auth-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3e6d6;
  font-size: 14px;
}

.auth-perks svg {
  color: var(--orange);
  flex-shrink: 0;
}

.auth-aside-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.auth-aside-link:hover {
  color: #fff8ef;
}

.auth-forms {
  display: grid;
  gap: 26px;
  padding: 48px 44px;
  align-content: center;
}

.auth-forms.has-register {
  grid-template-columns: 1fr 1fr;
}

.auth-card {
  display: flex;
  flex-direction: column;
}

.auth-card-head {
  margin-bottom: 22px;
}

.auth-card-head h2 {
  font-size: 22px;
  color: var(--title);
  margin: 0 0 6px;
}

.auth-card-head p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.auth-register {
  padding-left: 32px;
  border-left: 1px solid var(--border);
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-field {
  display: grid;
  gap: 7px;
}

.auth-field label {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.auth-field label .required {
  color: var(--orange);
}

.auth-form .input-text {
  width: 100%;
  padding: 13px 16px;
  color: var(--title);
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--soft);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.auth-form .input-text:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 90, 22, 0.16);
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  cursor: pointer;
}

.auth-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.auth-lost {
  color: var(--gold-light);
}

.auth-lost:hover {
  color: var(--orange);
}

.auth-submit {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.auth-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 880px) {
  .account-auth {
    grid-template-columns: 1fr;
    margin: 32px 16px 56px;
  }

  .auth-aside {
    padding: 40px 32px;
  }

  .auth-forms.has-register {
    grid-template-columns: 1fr;
  }

  .auth-register {
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}

/* ============ Account: logged-in dashboard ============ */
.account-shell {
  margin: 48px auto 84px;
}

.account-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

/* Sidebar */
.account-nav {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: var(--panel);
}

.account-user-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff8ef;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--orange), #b8441a);
}

.account-user-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.account-user-meta strong {
  color: var(--title);
  font-size: 15px;
}

.account-user-meta span {
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.account-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: var(--soft);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.16s ease, color 0.16s ease;
}

.account-nav-icon {
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color 0.16s ease;
}

.account-nav li a:hover {
  background: rgba(184, 138, 69, 0.1);
  color: var(--title);
}

.account-nav li.is-active a {
  background: rgba(240, 90, 22, 0.14);
  color: #fff8ef;
}

.account-nav li.is-active .account-nav-icon {
  color: var(--orange);
}

.account-nav li.woocommerce-MyAccount-navigation-link--customer-logout a {
  margin-top: 6px;
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--soft) var(--soft);
  color: var(--muted);
}

/* Content panel */
.account-content {
  padding: 30px 32px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: var(--panel);
  min-width: 0;
}

.account-content > p {
  color: var(--text);
  line-height: 1.65;
}

.account-content a {
  color: var(--gold-light);
}

.account-content a:hover {
  color: var(--orange);
}

/* Dashboard */
.account-welcome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.account-welcome h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 8px 0 8px;
  color: var(--title);
}

.account-welcome h2 span {
  color: var(--orange);
}

.account-welcome-copy {
  color: var(--muted);
  margin: 0;
  max-width: 460px;
}

.account-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.account-card {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: rgba(5, 5, 5, 0.4);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.account-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.account-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  color: var(--orange);
  border-radius: var(--soft);
  background: rgba(240, 90, 22, 0.12);
}

.account-card strong {
  font-size: 22px;
  color: var(--title);
}

.account-card-label {
  color: var(--muted);
  font-size: 13px;
}

.account-recent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account-recent-head h3 {
  margin: 0;
  font-size: 18px;
  color: var(--title);
}

.account-recent-head a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

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

.account-order-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--soft);
  background: rgba(5, 5, 5, 0.4);
}

.account-order-main {
  display: grid;
  gap: 2px;
}

.account-order-main strong {
  color: var(--title);
}

.account-order-main span {
  color: var(--muted);
  font-size: 12px;
}

.account-order-status {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(184, 138, 69, 0.14);
  border: 1px solid var(--border);
}

.account-order-status.status-completed {
  color: #8fe3a6;
  background: rgba(60, 160, 90, 0.14);
  border-color: rgba(60, 160, 90, 0.3);
}

.account-order-total {
  color: var(--title);
  font-weight: 700;
}

.account-empty {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 26px;
  border: 1px dashed var(--border);
  border-radius: var(--frame);
}

.account-empty p {
  margin: 0;
  color: var(--muted);
}

/* Generic WC sub-pages (orders table, forms) inside the panel */
.account-content .woocommerce-Pagination,
.account-content table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}

.account-content table.shop_table th,
.account-content table.shop_table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
}

.account-content table.shop_table th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.account-content .woocommerce-form-row label,
.account-content .form-row label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.account-content .input-text,
.account-content input[type="text"],
.account-content input[type="email"],
.account-content input[type="password"],
.account-content input[type="tel"],
.account-content select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 16px;
  color: var(--title);
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--soft);
  outline: none;
}

.account-content .input-text:focus,
.account-content input:focus,
.account-content select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 90, 22, 0.16);
}

.account-content fieldset {
  margin-top: 18px;
  padding-top: 18px;
  border: 0;
  border-top: 1px solid var(--border);
}

.account-content legend {
  padding: 0;
  font-size: 16px;
  color: var(--title);
}

@media (max-width: 880px) {
  .account-grid {
    grid-template-columns: 1fr;
  }

  .account-nav {
    position: static;
  }

  .account-cards {
    grid-template-columns: 1fr;
  }

  .account-order-row {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
  }
}

/* ============ Foxpost átvételipont-választó ============ */
.foxpost-pickup {
  margin: 10px 0 4px;
}

.foxpost-empty {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foxpost-empty-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.foxpost-choose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  color: #fff8ef;
  background: linear-gradient(150deg, var(--orange), #c2491c);
  border: 0;
  border-radius: var(--soft);
  transition: filter 0.16s ease, transform 0.16s ease;
}

.foxpost-choose:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

/* Külső Foxpost/csomagpont-plugin linkjének kiemelése. */
.foxpost-ext-choose {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  cursor: pointer;
  color: #fff8ef !important;
  background: linear-gradient(150deg, var(--orange), #c2491c);
  border: 0;
  border-radius: var(--soft);
  transition: filter 0.16s ease, transform 0.16s ease;
}

.foxpost-ext-choose:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
  color: #fff8ef !important;
}

.foxpost-choose svg {
  flex-shrink: 0;
}

.foxpost-selected {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--soft);
  background: rgba(240, 90, 22, 0.08);
}

.foxpost-pin {
  color: var(--orange);
  margin-top: 2px;
}

.foxpost-selected-meta {
  display: grid;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.foxpost-selected-meta strong {
  color: var(--title);
  font-size: 14px;
}

.foxpost-selected-meta span {
  color: var(--muted);
  font-size: 12px;
}

.foxpost-change {
  flex-shrink: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
}

.foxpost-change:hover {
  color: var(--orange);
}

/* Modal */
.foxpost-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.foxpost-modal.is-open {
  display: flex;
}

.foxpost-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.74);
  backdrop-filter: blur(3px);
}

.foxpost-modal-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(900px, 100%);
  height: min(80vh, 720px);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--frame);
  background: var(--panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.foxpost-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.foxpost-modal-head h3 {
  margin: 0;
  font-size: 16px;
  color: var(--title);
}

.foxpost-modal-close {
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--soft);
  transition: color 0.16s ease, border-color 0.16s ease;
}

.foxpost-modal-close:hover {
  color: var(--title);
  border-color: var(--border-strong);
}

.foxpost-modal-body {
  position: relative;
  flex: 1;
  display: flex;
}

.foxpost-modal-loading {
  margin: auto;
  color: var(--muted);
}

.foxpost-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.foxpost-modal-lock {
  overflow: hidden;
}

/* Köszönőoldal / fiók megjelenítés */
.foxpost-order-apm {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background: var(--panel);
}

.foxpost-order-apm h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--title);
}

.foxpost-order-apm p {
  margin: 0;
  color: var(--text);
}

@media (max-width: 560px) {
  .foxpost-modal {
    padding: 0;
  }

  .foxpost-modal-panel {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: 0;
  }
}

/* ============================================================
   MOZGAS / ANIMACIOK
   Minden mozgas csak transform + opacity (GPU-barat),
   es teljesen kikapcsol prefers-reduced-motion eseten.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .has-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .has-reveal [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .has-reveal [data-reveal][data-reveal-delay="1"] { transition-delay: 0.07s; }
  .has-reveal [data-reveal][data-reveal-delay="2"] { transition-delay: 0.14s; }
  .has-reveal [data-reveal][data-reveal-delay="3"] { transition-delay: 0.21s; }
  .has-reveal [data-reveal][data-reveal-delay="4"] { transition-delay: 0.28s; }
}

/* Kattintas-visszajelzes */
.merava-ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.32);
  animation: merava-ripple 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes merava-ripple {
  to {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Gomb mikrointerakciok */
.button {
  transition:
    transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button:focus-visible {
  outline: 2px solid var(--accent, var(--orange));
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .button:hover,
  .button:active {
    transform: none;
    transition: none;
  }
  .merava-ripple { display: none; }
}

/* Fejlec gorgetes kozben */
.site-header {
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-stuck {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.44);
}

/* ============================================================
   KEZDOLAP - MARKASZINTU SZEKCIOK
   ============================================================ */

/* 1. Hero */
.brand-hero {
  position: relative;
  display: flex;
  /* Oszlop: a cim-blokk felul, a tenyek-sav alatta (nem mellette). */
  flex-direction: column;
  justify-content: center;
  min-height: min(78dvh, 660px);
  padding: 96px 0 84px;
  overflow: hidden;
  background-image: var(--hero-bg, none);
  /*
   * A markafoto jobb oldalan van a MERAVA medal, a bal oldala sotet es ures:
   * oda kerul a szoveg. Teljes kep, kozepre igazitva.
   */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #070605;
}

/*
 * Balrol sotetit, hogy a szoveg olvashato legyen, jobbra viszont
 * atlatszova valik, hogy a MERAVA medal tisztan latszodjon.
 */
.brand-hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    98deg,
    rgba(5, 4, 4, 0.92) 0%,
    rgba(5, 4, 4, 0.78) 32%,
    rgba(6, 5, 4, 0.36) 56%,
    rgba(6, 5, 4, 0.06) 78%,
    transparent 100%
  );
}

.brand-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.brand-hero-inner h1 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.06;
  color: #fff8ef;
}

.brand-hero-copy {
  max-width: 46ch;
  margin: 0 0 30px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(243, 230, 214, 0.86);
}

.brand-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* 2. Termekracs */
.collection-section {
  margin: 76px auto 12px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--title);
}

.section-head-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  transition: gap 0.18s ease, color 0.18s ease;
}

.section-head-link:hover {
  gap: 11px;
  color: var(--orange);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.collection-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background:
    linear-gradient(150deg, var(--accent-soft, rgba(255, 255, 255, 0.03)), transparent 46%),
    var(--panel);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-line, var(--border-strong));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.46);
}

.collection-card-media {
  display: grid;
  place-items: center;
  min-height: 232px;
  padding: 22px;
  background:
    radial-gradient(66% 60% at 50% 42%, var(--accent-glow, rgba(240, 90, 22, 0.14)), transparent 68%);
}

.collection-card-media img {
  max-height: 224px;
  width: auto;
  object-fit: contain;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-card-media img {
  transform: scale(1.055) rotate(-1.2deg);
}

.collection-card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px 22px 22px;
  border-top: 1px solid var(--border);
}

.collection-card-type {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright, var(--gold-light));
}

.collection-card-body h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  color: var(--title);
}

.collection-card-body h3 a:hover {
  color: var(--accent-bright, var(--orange));
}

.collection-card-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.collection-card-heat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.collection-card-heat span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.collection-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.collection-card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--title);
}

/* Egytermekes allapot: a racs ne legyen felbehagyott */
.collection-grid.is-single {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.collection-teaser {
  display: grid;
  place-items: center;
  min-height: 100%;
  border-style: dashed;
  background: rgba(5, 5, 5, 0.4);
}

.collection-teaser-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 40px 28px;
  text-align: center;
}

.collection-teaser-inner svg {
  color: var(--orange);
  opacity: 0.85;
}

.collection-teaser-inner h3 {
  margin: 0;
  font-size: 21px;
  color: var(--title);
}

.collection-teaser-inner p {
  margin: 0;
  max-width: 32ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* 3. Tortenet - kep + szoveg */
.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  margin: 84px auto;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.024), transparent 40%),
    var(--panel);
}

.story-split-media {
  display: grid;
  place-items: center;
}

.story-split-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.5));
}

.story-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(25px, 3.4vw, 40px);
  line-height: 1.14;
  color: var(--title);
}

.story-split-copy p {
  margin: 0 0 22px;
  max-width: 56ch;
  color: var(--text);
  line-height: 1.68;
}

/* ---- Mobil ---- */
@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
    margin: 56px auto;
  }

  .story-split-media {
    order: -1;
  }
}

@media (max-width: 760px) {
  .brand-hero {
    min-height: auto;
    padding: 72px 0 60px;
    /* Mobilon a medal fele igazitunk, hogy latszodjon a markajel. */
    background-size: cover;
    background-position: 68% center;
  }

  .brand-hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 4, 4, 0.82) 0%, rgba(6, 5, 4, 0.9) 60%, rgba(6, 5, 4, 0.96) 100%),
      radial-gradient(90% 60% at 50% 20%, rgba(240, 90, 22, 0.18), transparent 66%);
  }

  .brand-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .collection-section {
    margin-top: 52px;
  }

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

  .collection-card-media {
    min-height: 200px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .collection-card-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .collection-card-foot .button {
    width: 100%;
    justify-content: center;
  }
}


/* Lablec: fuggoben levo adat jelolese + social ikon-link */
.footer-pending {
  color: var(--muted);
  font-style: italic;
  opacity: 0.75;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.4);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.18s ease, color 0.18s ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  color: #fff8ef;
  border-color: var(--border-strong);
}

.social-row svg {
  color: var(--orange);
}

@media (prefers-reduced-motion: reduce) {
  .social-row a:hover {
    transform: none;
  }
}


/* ============================================================
   KEZDOLAP - LATVANY RETEGEK
   ============================================================ */

/* --- Hero: felszallo parazs (csak CSS, GPU-barat) --- */
.ember-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.ember {
  position: absolute;
  bottom: -12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb469 0%, #f05a16 55%, transparent 72%);
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .ember {
    animation: ember-rise linear infinite;
  }
}

@keyframes ember-rise {
  0%   { opacity: 0; transform: translate3d(0, 0, 0) scale(0.6); }
  12%  { opacity: 0.9; }
  70%  { opacity: 0.65; }
  100% { opacity: 0; transform: translate3d(var(--drift, 18px), -78vh, 0) scale(1.15); }
}

.ember.e1  { left: 4%;  animation-duration: 13s; animation-delay: 0s;    --drift: 26px; }
.ember.e2  { left: 11%; animation-duration: 16s; animation-delay: 1.6s;  --drift: -18px; width: 3px; height: 3px; }
.ember.e3  { left: 18%; animation-duration: 11s; animation-delay: 3.1s;  --drift: 32px; }
.ember.e4  { left: 25%; animation-duration: 18s; animation-delay: 0.8s;  --drift: -24px; width: 5px; height: 5px; }
.ember.e5  { left: 32%; animation-duration: 14s; animation-delay: 4.4s;  --drift: 14px; }
.ember.e6  { left: 39%; animation-duration: 17s; animation-delay: 2.2s;  --drift: -30px; width: 3px; height: 3px; }
.ember.e7  { left: 46%; animation-duration: 12s; animation-delay: 5.6s;  --drift: 22px; }
.ember.e8  { left: 54%; animation-duration: 19s; animation-delay: 1.1s;  --drift: -16px; }
.ember.e9  { left: 62%; animation-duration: 15s; animation-delay: 3.8s;  --drift: 28px; width: 5px; height: 5px; }
.ember.e10 { left: 70%; animation-duration: 13s; animation-delay: 6.2s;  --drift: -22px; }
.ember.e11 { left: 78%; animation-duration: 16s; animation-delay: 2.7s;  --drift: 18px; width: 3px; height: 3px; }
.ember.e12 { left: 85%; animation-duration: 20s; animation-delay: 4.9s;  --drift: -26px; }
.ember.e13 { left: 91%; animation-duration: 14s; animation-delay: 0.4s;  --drift: 20px; }
.ember.e14 { left: 96%; animation-duration: 18s; animation-delay: 7.1s;  --drift: -14px; width: 3px; height: 3px; }

/* Hero cim kiemelt szava */
.hero-flame {
  display: block;
  background: linear-gradient(96deg, #ffb469 0%, #f05a16 48%, #d92718 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero also tenyek-sav */
.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  width: min(1380px, calc(100% - 56px));
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 138, 69, 0.24);
}

.hero-facts div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(243, 230, 214, 0.82);
}

.hero-facts svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* --- Csipossegi skala --- */
.heat-scale-section {
  margin: 84px auto 20px;
}

.heat-scale-head {
  max-width: 620px;
  margin-bottom: 46px;
}

.heat-scale-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--title);
}

.heat-scale-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.heat-scale {
  padding: 0 6px;
}

.heat-scale-track {
  position: relative;
  height: 96px;
}

.heat-scale-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f8f3c 0%, #d2a531 34%, #f05a16 68%, #b0170a 100%);
  box-shadow: 0 0 26px rgba(240, 90, 22, 0.28);
}

.heat-pin {
  position: absolute;
  bottom: 18px;
  left: var(--pin-pos, 50%);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.heat-pin:hover {
  transform: translateX(-50%) translateY(-4px);
}

.heat-pin-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent, var(--orange));
  border: 3px solid #0b0908;
  box-shadow: 0 0 0 3px var(--accent-line, rgba(240, 90, 22, 0.4)), 0 8px 20px rgba(0, 0, 0, 0.5);
  order: 2;
}

.heat-pin-label {
  order: 1;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #fff8ef;
  border: 1px solid var(--accent-line, var(--border));
  border-radius: 999px;
  background: rgba(10, 8, 7, 0.92);
}

.heat-scale-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Alapanyag-sav --- */
.ingredient-showcase {
  position: relative;
  margin: 88px 0;
  padding: 74px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(240, 90, 22, 0.11), transparent 62%),
    rgba(6, 5, 5, 0.55);
}

.ingredient-showcase-title {
  max-width: 18ch;
  margin: 10px auto 46px;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.12;
  text-align: center;
  color: var(--title);
}

.ingredient-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
}

.ingredient-strip figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.ingredient-orb {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 38%, rgba(240, 90, 22, 0.16), transparent 66%),
    rgba(9, 8, 7, 0.8);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.32s ease;
}

.ingredient-strip figure:hover .ingredient-orb {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.ingredient-orb img {
  width: 76%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.55));
}

.ingredient-strip figcaption {
  display: grid;
  gap: 3px;
}

.ingredient-strip figcaption strong {
  font-size: 15px;
  color: var(--title);
}

.ingredient-strip figcaption span {
  font-size: 12px;
  color: var(--muted);
}

/* --- Keszitesi lepesek --- */
.craft-steps {
  margin: 84px auto;
}

.craft-steps-head h2 {
  margin: 0 0 30px;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--title);
}

.craft-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  counter-reset: craft;
}

.craft-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.022), transparent 42%),
    var(--panel);
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.26s ease;
}

.craft-list li:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.craft-num {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  background: linear-gradient(150deg, var(--orange), #b0170a);
  -webkit-background-clip: text;
  background-clip: text;
}

.craft-list h3 {
  margin: 0 0 7px;
  font-size: 18px;
  color: var(--title);
}

.craft-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* --- Mobil --- */
@media (max-width: 900px) {
  .heat-scale-track {
    height: 320px;
  }

  /* Mobilon a skala fuggoleges lesz, hogy a nevek ne csusszanak egymasra. */
  .heat-scale-bar {
    top: 0;
    bottom: 0;
    left: 22px;
    right: auto;
    width: 8px;
    height: auto;
    background: linear-gradient(180deg, #6f8f3c 0%, #d2a531 34%, #f05a16 68%, #b0170a 100%);
  }

  .heat-pin {
    left: 0;
    bottom: auto;
    top: var(--pin-pos, 50%);
    transform: translateY(-50%);
    grid-auto-flow: column;
    align-items: center;
    gap: 12px;
  }

  .heat-pin:hover {
    transform: translateY(-50%) translateX(3px);
  }

  .heat-pin-dot { order: 1; }
  .heat-pin-label { order: 2; }

  .heat-scale-legend {
    flex-direction: column;
    gap: 4px;
    margin-top: 18px;
    margin-left: 46px;
  }
}

@media (max-width: 760px) {
  .hero-facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 32px;
    width: calc(100% - 28px);
  }

  .hero-facts div {
    font-size: 12px;
  }

  .ingredient-showcase {
    margin: 60px 0;
    padding: 54px 0;
  }

  .ingredient-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .craft-steps {
    margin: 58px auto;
  }

  .craft-list {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   MARKAKOZPONTU HERO
   A MERAVA markarol szol, nem egy termekrol. Tobb termek eseten
   sem kell ujratervezni.
   ============================================================ */
.brand-hero {
  padding: clamp(48px, 6vw, 84px) 0 0;
  min-height: auto;
}

/*
 * A hatterfoto jobb oldalan van a MERAVA medal, a bal oldala sotet es ures:
 * ide kerul a szoveg. Ezert a racs csak a bal felet hasznalja.
 */
.brand-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  min-height: min(72dvh, 620px);
  padding-bottom: clamp(40px, 5vw, 68px);
}

.brand-hero-copy-col h1 > span {
  display: block;
}

.brand-hero-copy-col h1 {
  margin: 14px 0 24px;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff8ef;
}

/* A kiemelt szo aranyban - a markaszin */
.hero-flame {
  display: block;
  color: var(--gold-light);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.brand-hero-copy {
  max-width: 46ch;
  margin: 0 0 32px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.72;
  color: var(--text);
}

.brand-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* --- Logo-medal: a hero vizualis kozeppontja --- */
.brand-medallion {
  display: grid;
  place-items: center;
}

.brand-medallion-disc {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 50% 34%, rgba(214, 168, 90, 0.13), transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(18, 15, 12, 0.96), rgba(8, 7, 6, 0.99) 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 90px rgba(0, 0, 0, 0.62);
}

/* Finom arany gyuru a korong korul */
.brand-medallion-disc::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(214, 168, 90, 0.26);
  pointer-events: none;
}

.brand-medallion-disc img {
  width: 62%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

@media (prefers-reduced-motion: no-preference) {
  .brand-medallion-disc {
    animation: medallion-breathe 9s ease-in-out infinite;
  }
}

@keyframes medallion-breathe {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* --- Markaertekek (4 piller) --- */
.brand-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1380px, calc(100% - 56px));
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.brand-pillars article {
  padding: 30px clamp(16px, 2vw, 32px) 34px;
  border-left: 1px solid var(--border);
}

.brand-pillars article:first-child {
  border-left: 0;
  padding-left: 0;
}

.brand-pillars svg {
  color: var(--gold-light);
  margin-bottom: 14px;
}

.brand-pillars h2 {
  margin: 0 0 8px;
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #fff8ef;
}

.brand-pillars p {
  margin: 0;
  font-size: 13px;
  line-height: 1.62;
  color: var(--muted);
}

/* --- ReszponzĂ­v --- */
@media (max-width: 1000px) {
  .brand-hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .brand-medallion {
    order: -1;
    margin-bottom: 8px;
  }

  .brand-medallion-disc {
    width: min(70%, 300px);
  }

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

  .brand-pillars article {
    padding: 24px 18px 26px;
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }

  .brand-pillars article:nth-child(-n+2) {
    border-top: 0;
  }

  .brand-pillars article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .brand-pillars {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .brand-pillars article {
    border-left: 0;
    padding: 22px 0 24px;
  }

  .brand-pillars article:first-child {
    border-top: 0;
  }

  .brand-hero-actions .button-primary {
    width: 100%;
  }
}


/* ============================================================
   MARKA-MANIFESZTO
   Teljes szelessegu, csendes sav. Csak a MERAVA-rol szol,
   termektol fuggetlen - tobb szosz eseten sem valtozik.
   ============================================================ */
.brand-manifesto {
  position: relative;
  /* Korabban margin ES padding is nagy volt (102+90px), ami feleslegesen
     nagy ures savot adott a szoveg kore. A sav sajat hatteret a padding
     hatarozza meg, a szomszedos szekcioktol valo tavolsagot a margin -
     mindketto mersekelve. */
  margin: clamp(40px, 4.5vw, 64px) 0;
  padding: clamp(44px, 5vw, 68px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(64% 76% at 50% 0%, rgba(214, 168, 90, 0.07), transparent 66%),
    rgba(8, 7, 6, 0.5);
}

.brand-manifesto-inner {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}

.brand-manifesto h2 {
  margin: 0 0 20px;
  font-size: clamp(27px, 3.4vw, 44px);
  line-height: 1.16;
  color: var(--title);
}

.brand-manifesto p {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.76;
  color: var(--muted);
}

/* A termek-szekcio fejlecehez tartozo eyebrow */
.section-head .eyebrow {
  margin: 0 0 6px;
}

.section-head > div,
.section-head {
  align-items: flex-end;
}

@media (max-width: 760px) {
  .brand-manifesto {
    margin: 52px 0;
    padding: 46px 0;
  }
}


/* ============================================================
   ROLUNK OLDAL - markakozpontu
   ============================================================ */
.about-hero-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(52dvh, 460px);
  padding: clamp(56px, 7vw, 96px) 0;
  overflow: hidden;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-color: #070605;
}

.about-hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    98deg,
    rgba(5, 4, 4, 0.93) 0%,
    rgba(5, 4, 4, 0.8) 34%,
    rgba(6, 5, 4, 0.4) 60%,
    rgba(6, 5, 4, 0.1) 82%,
    transparent 100%
  );
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.about-hero-inner h1 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.06;
  color: #fff8ef;
}

.about-hero-lead {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: var(--text);
}

/* --- Tortenet --- */
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  margin: clamp(56px, 7vw, 92px) auto;
}

.about-story h2 {
  margin: 10px 0 18px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.16;
}

.about-story p {
  margin: 0 0 14px;
  max-width: 52ch;
  line-height: 1.74;
  color: var(--muted);
}

.about-story-media {
  overflow: hidden;
  border-radius: var(--frame);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 2;
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Idezet sav --- */
.about-quote {
  margin: clamp(48px, 6vw, 84px) 0;
  padding: clamp(44px, 5vw, 72px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(60% 74% at 50% 0%, rgba(214, 168, 90, 0.07), transparent 66%),
    rgba(8, 7, 6, 0.5);
  text-align: center;
}

.about-quote blockquote {
  margin: 0 auto;
  max-width: 24ch;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.18;
  color: var(--title);
}

/* --- Ertekek sav (4 piller) --- */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(48px, 6vw, 80px) auto;
}

.value-strip article {
  display: grid;
  gap: 12px;
  padding: 28px 24px 30px;
}

.value-strip svg {
  color: var(--gold-light);
}

.value-strip h2 {
  margin: 0 0 6px;
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff8ef;
}

.value-strip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.62;
  color: var(--muted);
}

/* --- Kartyak --- */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: clamp(48px, 6vw, 80px) auto;
  padding: clamp(24px, 3vw, 36px);
}

.about-cards article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-cards img {
  width: 100%;
  /* Magasabb kep, hogy a fotok jobban latszodjanak: 160px fix helyett a
     forrasfotok natív 3:2 aranya - igy vagas nelkul latszik a teljes kep.
     A height:auto kell, kulonben a korabbi fix height:160px felulirna
     az aspect-ratio-t (az explicit magassag erosebb). */
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--soft);
  border: 1px solid var(--border);
}

.about-cards h3 {
  margin: 4px 0 0;
  font-size: 19px;
}

.about-cards p {
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  color: var(--muted);
}

/* --- Itthon keszul --- */
.about-origin {
  max-width: 620px;
  margin: clamp(48px, 6vw, 84px) auto;
  text-align: center;
}

.about-origin h2 {
  margin: 10px 0 16px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.16;
}

.about-origin p {
  margin: 0 0 26px;
  line-height: 1.74;
  color: var(--muted);
}

/* --- ReszponzĂ­v --- */
@media (max-width: 1000px) {
  .value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-media {
    order: -1;
  }

  .value-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .value-strip article {
    padding: 20px 18px 22px;
  }

  .about-origin .button {
    width: 100%;
  }
}


/* ============================================================
   JAVITASOK: Facebook pill, egy-meret vasarlopanel, Rolunk hero
   ============================================================ */

/* --- Facebook pill (a 44x44 kor-szabaly ne szoritsa ossze) --- */
.social-row a.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.social-row a.social-pill:hover {
  color: #fff8ef;
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.social-row a.social-pill svg {
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .social-row a.social-pill:hover { transform: none; }
}

/* --- Egy-meret vasarlopanel (nincs tobb-meret racs, nincs reserve kartya) --- */
.purchase-section {
  margin: 22px auto 0;
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(24px, 3vw, 46px);
  border: 1px solid var(--border);
  border-radius: var(--frame);
  background:
    radial-gradient(70% 80% at 20% 30%, var(--accent-glow, rgba(214, 168, 90, 0.1)), transparent 62%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.03), transparent 44%),
    var(--panel);
}

.purchase-media {
  display: grid;
  place-items: center;
}

.purchase-media img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.5));
}

.purchase-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.purchase-info h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.06;
}

.purchase-size {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 0;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(214, 168, 90, 0.08);
}

.purchase-size svg { color: var(--accent, var(--orange)); }

.purchase-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--title);
}

.purchase-note {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.6;
}

.purchase-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.purchase-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
}

.purchase-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.purchase-trust svg { color: var(--gold-light); }

@media (max-width: 820px) {
  .purchase-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .purchase-media { order: -1; }
  .purchase-form .button { width: 100%; justify-content: center; }
}

/* --- Rolunk hero: vilagos etelfoto jobbra, szoveg balra --- */
.about-hero-band {
  background-position: right center;
}

.about-hero-scrim {
  background: linear-gradient(
    96deg,
    rgba(6, 5, 4, 0.96) 0%,
    rgba(6, 5, 4, 0.9) 30%,
    rgba(6, 5, 4, 0.6) 54%,
    rgba(6, 5, 4, 0.22) 78%,
    rgba(6, 5, 4, 0.08) 100%
  );
}

/* Ha nincs kep, tiszta sotet hero */
.about-hero-plain {
  background:
    radial-gradient(60% 80% at 82% 40%, rgba(214, 168, 90, 0.1), transparent 60%),
    linear-gradient(120deg, #0b0908, #12100d);
}

@media (max-width: 760px) {
  .about-hero-band {
    background-position: 72% center;
  }
  .about-hero-scrim {
    background: linear-gradient(180deg, rgba(6,5,4,0.7) 0%, rgba(6,5,4,0.86) 55%, rgba(6,5,4,0.95) 100%);
  }
}

/* ============================================================
   KESZITES-SAV ("Ahogy keszul") markafoto hatterrel.
   A fuszeres uvegek fotoja: felul a fust/uvegek, alul ures sotet
   pala - oda kerul a szoveg, ezert a scrim alulrol erosebb.
   ============================================================ */
.craft-band {
  position: relative;
  isolation: isolate;
  /* Ugyanaz a logika, mint a manifesztonal: nem kell dupla terkoz.
     A markafoto jobban ervenyesul, ha nem nyomja szet a tul nagy padding. */
  margin: clamp(36px, 4vw, 56px) 0;
  padding: clamp(48px, 5.5vw, 74px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--craft-bg) center top / cover no-repeat, #080706;
}

.craft-band-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(6, 5, 4, 0.62) 0%,
    rgba(6, 5, 4, 0.78) 38%,
    rgba(6, 5, 4, 0.93) 72%,
    rgba(6, 5, 4, 0.97) 100%
  );
}

/* Ha nincs kep, csendes sotet sav */
.craft-band-plain {
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(214, 168, 90, 0.07), transparent 64%),
    rgba(8, 7, 6, 0.5);
}

.craft-band .craft-steps {
  margin: 0 auto;
}

/* --- Fejlec: cim balra, bevezeto jobbra --- */
.craft-band .craft-steps-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: clamp(20px, 4vw, 56px);
  margin-bottom: clamp(28px, 3.4vw, 42px);
}

.craft-band .craft-steps-head h2 {
  margin: 6px 0 0;
}

.craft-lead {
  margin: 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

/* --- Lepesek: szam + ikon egy sorban, kozottuk osszekoto vonal --- */
.craft-band .craft-list {
  position: relative;
}

/* Az osszekoto vonal a szamok magassagaban fut vegig (csak szeles nezetben,
   ahol a harom kartya egy sorban van). A kartyak fole nem kerul, mert a
   li-k sajat hatterrel es magasabb z-index-szel allnak. */
@media (min-width: 901px) {
  .craft-band .craft-list::before {
    content: "";
    position: absolute;
    /* A li 26px padding-top + a 40px magas ikonsor fele = 46px,
       igy a vonal pontosan a szamok/ikonok fuggoleges kozepen fut. */
    top: 46px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(214, 168, 90, 0.42) 18%,
      rgba(214, 168, 90, 0.42) 82%,
      transparent
    );
  }
}

.craft-band .craft-list li {
  position: relative;
  z-index: 1;
  display: block;
}

.craft-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.craft-step-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(214, 168, 90, 0.07);
  transition: color 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.craft-band .craft-list li:hover .craft-step-icon {
  color: #fff8ef;
  border-color: var(--gold-light);
  background: rgba(214, 168, 90, 0.14);
}

/* --- Zaro sav --- */
.craft-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: clamp(28px, 3.2vw, 40px);
  padding-top: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid var(--border);
}

.craft-promises {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin: 0;
  padding: 0;
}

.craft-promises li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.craft-promises svg {
  flex-shrink: 0;
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .craft-band .craft-steps-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .craft-foot {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .craft-band {
    background-position: 62% top;
  }
  .craft-band-scrim {
    background: linear-gradient(
      180deg,
      rgba(6, 5, 4, 0.72) 0%,
      rgba(6, 5, 4, 0.9) 42%,
      rgba(6, 5, 4, 0.97) 100%
    );
  }
}

/* ============================================================
   ETELPAROSITAS KARTYAK - visszafogott hover
   ("Mire ajanljuk?" - termekoldali racs es a kezdolapi kor alakuak)
   Minimal mozgas: finom emeles + kepnagyitas + arany keret.
   ============================================================ */
.recommendation-grid article {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.recommendation-grid img {
  transition: transform 380ms ease;
}

.recommendation-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--accent-line, var(--gold-light));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.recommendation-grid article:hover img {
  transform: scale(1.07);
}

.recommendation-grid article:hover span {
  color: #fff8ef;
}

/* Kezdolapi, kor alaku valtozat */
.usage-grid img {
  transition: transform 320ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.usage-grid article:hover img {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--gold-light);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.usage-grid article h3 {
  transition: color 220ms ease;
}

.usage-grid article:hover h3 {
  color: #fff8ef;
}

@media (prefers-reduced-motion: reduce) {
  .recommendation-grid article,
  .recommendation-grid img,
  .usage-grid img {
    transition: none;
  }
  .recommendation-grid article:hover,
  .recommendation-grid article:hover img,
  .usage-grid article:hover img {
    transform: none;
  }
}

/* ============================================================
   MOBIL FINOMHANGOLAS (user keres, 2026-07-22)
   A gombok NE erjenek szelrol-szelre ("full width"); a tartalmukhoz
   igazodjanak, kenyelmes tap-terulettel. A kartyak kapjanak levegot.
   Ez a blokk a fajl vegen all, hogy felulirja a korabbi
   width:100% mobil szabalyokat (azonos specificitasnal a kesobbi nyer).
   ============================================================ */
@media (max-width: 980px) {
  /* Alap: gomb a tartalmahoz igazodik, nem feszul ki */
  .button {
    width: auto;
    max-width: 100%;
  }

  /* Onallo szekcio-CTA-k (hero, story, stb.) - kenyelmes meret, balra */
  .brand-hero-actions {
    justify-content: flex-start;
  }
  .brand-hero-actions .button,
  .brand-hero-actions .button-primary,
  .story-band .button {
    width: auto;
    min-height: 50px;
    padding-inline: 30px;
  }

  /* Kartya-labl gomb: sajat szelesseg, ne toltse ki a kartyat teljesen */
  .collection-card-foot {
    align-items: flex-start;
  }
  .collection-card-foot .button {
    width: auto;
    min-width: 58%;
  }

  /* Termek-vasarlopanel CTA-ja is a tartalomhoz igazodjon */
  .purchase-form .button,
  .single-add .button {
    width: auto;
    min-width: 60%;
  }
}

/* Nagyon keskeny kepernyon a fo CTA kapjon tobb tap-teruletet,
   de meg mindig ne erjen ki teljesen a szelekig. */
@media (max-width: 620px) {
  .brand-hero-actions .button,
  .brand-hero-actions .button-primary {
    width: auto;
    min-width: 66%;
  }
}

