/* BAJSZI TÉSZTA – WordPress téma (bajsziteszta-core felülírja a :root értékeket) */

:root {
  --layout-max: 1180px;
  --section-pad: 56px;
  --section-pad-h: 24px;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --header-logo-h: 54px;
  --footer-logo-h: 60px;
  --hero-pad-top: 56px;
  --hero-pad-bottom: 48px;
  --hero-gap: 48px;
  --hero-showcase-min-h: 420px;
  --trust-offset: -20px;
  --trust-columns: 4;
  --products-col-min: 220px;
  --products-gap: 20px;
  --products-card-radius: 20px;
  --cats-col-min: 160px;
  --cats-gap: 14px;
  --cats-aspect: 0.85;
  --footer-bg: #1e2421;
  --announce-bg-start: #2d4a3e;
  --announce-bg-end: #3f6354;
  --bp-tablet: 960px;
  --bp-mobile: 560px;
  --woo-cols: 4;
  --cat-hero-overlay: 0.88;
  --ink: #1e2421;
  --ink-soft: #4d5651;
  --ink-muted: #8a9390;
  --forest: #2d4a3e;
  --forest-mid: #3f6354;
  --forest-light: #5f8573;
  --forest-pale: #dce8e2;
  --forest-ghost: #eef4f1;
  --honey: #c17f2e;
  --honey-light: #d9a24e;
  --honey-pale: #f8f0e4;
  --wheat: #faf7f2;
  --wheat-dark: #ede8df;
  --accent: #a84d32;
  --white: #ffffff;
  --sale: #c23d3d;
  --ok: #34855a;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 2px 20px rgba(30, 36, 33, 0.06);
  --shadow-md: 0 10px 40px rgba(30, 36, 33, 0.1);
  --ease: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--wheat);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Proto banner */
.proto {
  background: var(--ink);
  color: #b5c0ba;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 500;
}
.proto b { color: #fff; font-weight: 600; }
.proto a { color: var(--honey-light); text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wheat-dark);
}
.announce {
  background: linear-gradient(90deg, var(--announce-bg-start) 0%, var(--announce-bg-end) 100%);
  color: #fff;
  text-align: center;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 500;
}
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.header-row {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: var(--header-row-pad, 14px) var(--section-pad-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo img, .custom-logo-link img { height: var(--header-logo-h); width: auto; }
.main-nav { flex: 1; min-width: 0; }
.main-nav > ul,
.main-nav .menu {
  display: flex;
  list-style: none;
  gap: 2px;
  justify-content: center;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav > ul > li,
.main-nav .menu > .menu-item {
  position: relative;
  list-style: none;
}
.main-nav > ul > li > a,
.main-nav .menu > .menu-item > a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: var(--ease);
  display: block;
}
.main-nav > ul > li > a:hover,
.main-nav .menu > .menu-item > a:hover,
.main-nav .current-menu-item > a,
.main-nav a.active {
  color: var(--forest);
  background: var(--forest-pale);
}

/* WordPress submenu + mockup .nav-dd */
.main-nav .menu-item-has-children,
.nav-dd { position: relative; }
.main-nav .sub-menu,
.nav-dd-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  z-index: 120;
  list-style: none;
  margin: 0;
}
.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu,
.nav-dd:hover .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.main-nav .sub-menu a,
.nav-dd-panel a {
  display: block;
  padding: 8px 10px;
  font-size: 0.82rem;
  border-radius: 8px;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
}
.main-nav .sub-menu a:hover,
.nav-dd-panel a:hover { background: var(--wheat); color: var(--forest); }
.nav-dd-panel small,
.main-nav .sub-menu small { color: var(--ink-muted); font-weight: 400; }

.header-tools { display: flex; align-items: center; gap: 6px; }
.tool-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--wheat);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: var(--ease);
  position: relative;
}
.tool-btn:hover { background: var(--wheat-dark); }
.cart-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 999px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.cart-dot.is-empty,
.cart-dot[hidden] {
  display: none;
}
.bajsziteszta-cart-btn.updating .cart-dot:not(.is-empty) {
  animation: bajszi-cart-pop 0.35s ease;
}
@keyframes bajszi-cart-pop {
  0% { transform: scale(0.6); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--wheat);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}
.btn-fill {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45, 74, 62, 0.25);
}
.btn-fill:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(45, 74, 62, 0.32); }
.btn-honey {
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-light) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(193, 127, 46, 0.3);
}
.btn-honey:hover { transform: translateY(-1px); }
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--wheat-dark);
}
.btn-line:hover { border-color: var(--forest-light); color: var(--forest); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.link-arrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}
.link-arrow:hover { text-decoration: underline; }

/* Hero */
.hero-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(193, 127, 46, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(45, 74, 62, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--wheat) 100%);
}
.hero-wrap::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(45, 74, 62, 0.06);
  top: -120px;
  right: -80px;
  pointer-events: none;
}
.hero {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: var(--hero-pad-top) var(--section-pad-h) var(--hero-pad-bottom);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hero-gap);
  align-items: center;
  position: relative;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--honey-pale);
  color: var(--honey);
  border: 1px solid rgba(193, 127, 46, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--forest-mid);
}
.hero-copy > p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 26px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.hero-pill strong { color: var(--forest); }

/* Hero showcase */
.hero-showcase {
  position: relative;
  min-height: var(--hero-showcase-min-h);
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-ring {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(45, 74, 62, 0.12);
  pointer-events: none;
}
.showcase-main {
  position: relative;
  width: 72%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  z-index: 2;
}
.showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-float {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
  z-index: 3;
  transition: transform 0.4s ease;
}
.showcase-float:hover { transform: scale(1.04) rotate(0deg) !important; }
.showcase-float--1 {
  width: 34%;
  aspect-ratio: 1;
  top: 8%;
  right: 0;
  transform: rotate(4deg);
}
.showcase-float--2 {
  width: 30%;
  aspect-ratio: 1;
  bottom: 6%;
  left: 0;
  transform: rotate(-5deg);
}
.showcase-float img { width: 100%; height: 100%; object-fit: cover; }
.showcase-award {
  position: absolute;
  bottom: 12%;
  right: 6%;
  z-index: 4;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 200px;
}
.showcase-award img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.showcase-award span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}

/* Trust */
.trust {
  max-width: var(--layout-max);
  margin: var(--trust-offset) auto 0;
  padding: 0 var(--section-pad-h) 8px;
  position: relative;
  z-index: 2;
}
.trust-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(var(--trust-columns), 1fr);
  gap: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--wheat-dark);
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--forest-pale);
  color: var(--forest);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: 0.88rem; }
.trust-item span { font-size: 0.78rem; color: var(--ink-muted); }

/* Layout sections */
.wrap { max-width: var(--layout-max); margin: 0 auto; padding: var(--section-pad) var(--section-pad-h); }
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.sec-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
}
.sec-head p { color: var(--ink-muted); font-size: 0.95rem; margin-top: 6px; }

/* Product cards */
ul.products.grid-products,
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--products-col-min, 220px), 1fr));
  gap: var(--products-gap, 20px);
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.products.grid-products::before,
ul.products.grid-products::after {
  display: none !important;
  content: none !important;
}
.card,
li.product.card,
.bajsziteszta-product-card {
  background: var(--white);
  border-radius: var(--products-card-radius);
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--ease);
  position: relative;
  list-style: none;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}
.card:hover,
li.product.card:hover {
  border-color: var(--wheat-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--wheat);
  overflow: hidden;
  display: block;
}
.card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.tag,
.card .onsale,
.tag-sale.onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--sale);
  color: #fff;
  min-height: 0;
  line-height: 1.2;
}
.tag-sale { background: var(--sale); color: #fff; }
.tag-demo { background: var(--forest); color: #fff; }
.add-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--forest) !important;
  color: #fff !important;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--ease);
  display: grid !important;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 !important;
  text-indent: 0 !important;
  box-shadow: var(--shadow);
  text-decoration: none !important;
}
.card:hover .add-btn,
.card:focus-within .add-btn { opacity: 1; transform: translateY(0); }
.add-btn:hover { background: var(--honey) !important; color: #fff !important; }
@media (hover: none) {
  .add-btn { opacity: 1; transform: none; }
}
.card-body {
  display: block;
  padding: 14px 16px 18px;
  color: inherit;
  text-decoration: none;
}
.card-cat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest-light);
  margin-bottom: 4px;
}
.card-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; line-height: 1.3; color: var(--ink); }
.card-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.card-price .price,
.card-price { font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.card-price del {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: line-through;
  opacity: 0.85;
}
.card-price ins {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}
.price-now { font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.price-was { font-size: 0.85rem; color: var(--ink-muted); text-decoration: line-through; }

/* Categories */
.grid-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--cats-col-min), 1fr));
  gap: var(--cats-gap);
}
.cat {
  position: relative;
  aspect-ratio: var(--cats-aspect);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat:hover img { transform: scale(1.06); }
.cat-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 36, 33, 0.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #fff;
}
.cat-label h3 { font-size: 0.9rem; font-weight: 700; }
.cat-label span { font-size: 0.75rem; opacity: 0.75; }

/* About */
.about {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
  border: 1px solid var(--wheat-dark);
}
.about-img { min-height: 360px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.about-text p { color: var(--ink-soft); margin-bottom: 14px; font-size: 0.95rem; }

/* Static page content (ex-WPBakery) */
.entry-content .content-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--honey-pale);
  color: var(--honey);
  border: 1px solid rgba(193, 127, 46, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}
.entry-content .content-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 0 28px;
}
.entry-content .content-about.about {
  margin-top: 8px;
}
.entry-content .contact-list {
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.entry-content .contact-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 12px 24px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--wheat-dark);
  margin: 0;
}
.entry-content .contact-row:last-child { border-bottom: none; }
.entry-content .contact-row dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}
.entry-content .contact-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}
.entry-content .contact-row a { color: var(--forest); }
.entry-content .shipping-block {
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 28px;
  margin-bottom: 20px;
}
.entry-content .shipping-block h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 16px;
}
.entry-content .shipping-table {
  width: 100%;
  border-collapse: collapse;
}
.entry-content .shipping-table th,
.entry-content .shipping-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--wheat-dark);
  font-size: 0.95rem;
}
.entry-content .shipping-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  background: var(--forest-ghost);
}
.entry-content .shipping-table td:last-child,
.entry-content .shipping-prices strong {
  font-weight: 800;
  white-space: nowrap;
}
.entry-content .shipping-prices {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.entry-content .shipping-prices li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--wheat-dark);
}
.entry-content .shipping-prices li:last-child { border-bottom: none; }
.entry-content .shipping-prices small { color: var(--ink-muted); width: 100%; }
.entry-content .recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.entry-content .recipe-card {
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 18px 18px 12px;
}
.entry-content .recipe-card h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-align: center;
  margin: 0 0 14px;
}
.entry-content .recipe-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  background: var(--wheat);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.entry-content .recipe-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.entry-content .recipe-embed .tiktok-embed {
  margin: 0 !important;
  max-width: none !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.entry-content .recipe-watch {
  margin: 12px 0 4px;
  text-align: center;
  font-size: 0.85rem;
}
.entry-content .recipe-watch a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.entry-content .recipe-watch a:hover {
  text-decoration: underline;
}
.entry-content .legal-frame {
  width: 100%;
  min-height: 1000px;
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
  background: var(--white);
}
.entry-content .content-legal h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 1.8em 0 0.7em;
  color: var(--ink);
}
.entry-content .content-legal h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 10px;
}
.entry-content .content-legal ol,
.entry-content .content-legal ul {
  margin: 0 0 1.2em 1.2em;
  color: var(--ink-soft);
}
.entry-content .content-legal li {
  margin-bottom: 6px;
}
.entry-content .content-note {
  margin-top: 28px;
  padding: 14px 18px;
  background: var(--forest-ghost);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.entry-content .elallas-box {
  margin: 28px 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.entry-content .elallas-box .btn,
.entry-content .elallas-box .wpcf7-submit {
  margin-top: 8px;
}
.entry-content .elallas-alt {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
@media (max-width: 960px) {
  .entry-content .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .entry-content .recipe-grid { grid-template-columns: 1fr; }
}

/* Blog */
.grid-blog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.blog {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--ease);
  border: 1px solid var(--wheat-dark);
}
.blog:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-body p { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 12px; }
.blog-body .link-arrow { font-size: 0.82rem; }

/* Recipe CTA */
.recipe-cta {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.recipe-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.recipe-cta p { opacity: 0.88; font-size: 0.92rem; max-width: 480px; }
.recipe-cta .btn-fill { background: #fff; color: var(--forest); box-shadow: none; }
.recipe-cta .btn-fill:hover { background: var(--wheat); }

/* Footer */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.72);
  margin-top: 24px;
}
.footer-grid {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 48px 24px 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer img, .footer .custom-logo { height: var(--footer-logo-h); margin-bottom: 14px; opacity: 0.95; }
.footer p { font-size: 0.88rem; line-height: 1.65; }
.footer h4 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 7px; }
.footer a { font-size: 0.88rem; transition: var(--ease); }
.footer a:hover { color: var(--honey-light); }
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px;
  font-size: 0.78rem;
  opacity: 0.5;
}

/* Modal */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 36, 33, 0.55);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}
.overlay.on { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: scale(0.96);
  transition: var(--ease);
}
.overlay.on .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 2;
}
.modal-img { aspect-ratio: 1; background: var(--wheat); }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 32px; }
.modal-info h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.45rem;
  margin: 6px 0 10px;
}
.modal-price { font-size: 1.35rem; font-weight: 800; margin-bottom: 14px; }
.modal-desc { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 20px; }
.qty { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.qty button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--wheat-dark);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}
.qty span { font-weight: 700; min-width: 24px; text-align: center; }

/* Mobile nav */
.mob-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 150;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mob-nav.on { transform: translateX(0); }
.mob-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mob-nav a,
.mob-nav .menu a {
  display: block;
  padding: 14px 0;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--wheat-dark);
}
.mob-nav .menu,
.mob-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mob-nav .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--wheat-dark);
}
.mob-nav .sub-menu a {
  padding: 8px 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-bottom: none;
}

.footer ul,
.footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mob-sub a { padding-left: 16px; font-size: 0.92rem; font-weight: 500; color: var(--ink-muted); }

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--forest);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 300;
  transform: translateY(80px);
  opacity: 0;
  transition: var(--ease);
}
.toast.on { transform: translateY(0); opacity: 1; }

/* ─── Termékoldal ─── */
.breadcrumb {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 20px 24px 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { margin: 0 8px; opacity: 0.4; }

.product-page {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 24px 24px 56px;
}
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.product-gallery { position: sticky; top: 120px; }
.gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--wheat);
  border: 1px solid var(--wheat-dark);
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: var(--ease);
}
.gallery-thumb.active, .gallery-thumb:hover {
  opacity: 1;
  border-color: var(--forest);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-buy { padding-top: 8px; }
.product-buy .card-cat { margin-bottom: 8px; }
.product-buy h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 12px;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--forest-ghost);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
}
.product-price-box {
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.product-price-box .product-price,
.product-buy .product-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.product-price-note { font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 20px; }
.product-short {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.65;
}
.buy-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 16px;
}
.buy-row .qty {
  margin: 0;
  background: var(--wheat);
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid var(--wheat-dark);
}
.buy-row .qty button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--white);
}
.buy-row .btn-fill { flex: 1; }
.trust-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--wheat-dark);
}
.trust-mini div {
  font-size: 0.78rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-tabs { margin-top: 48px; }
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--wheat-dark);
  margin-bottom: 28px;
}
.tab-btn {
  padding: 12px 20px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--ease);
}
.tab-btn.active {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  margin: 20px 0 10px;
}
.tab-panel h3:first-child { margin-top: 0; }
.tab-panel p, .tab-panel li {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 10px;
  line-height: 1.65;
}
.tab-panel ul { padding-left: 20px; margin-bottom: 16px; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--wheat-dark);
}
.info-table th { font-weight: 600; color: var(--ink-muted); width: 40%; }
.reviews-empty {
  text-align: center;
  padding: 40px;
  background: var(--forest-ghost);
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 36px; }
  .hero-showcase { min-height: 340px; max-width: 400px; margin: 0 auto; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
}

/* ─── Kosár oldal ─── */
.page-shell {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 24px 24px 56px;
}
.page-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 28px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.cart-table-wrap {
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  padding: 14px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  background: var(--forest-ghost);
  border-bottom: 1px solid var(--wheat-dark);
}
.cart-table td {
  padding: 18px;
  border-bottom: 1px solid var(--wheat-dark);
  vertical-align: middle;
}
.cart-table tr:last-child td { border-bottom: none; }
.cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--wheat-dark);
  flex-shrink: 0;
}
.cart-product-info a {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}
.cart-product-info a:hover { color: var(--forest); }
.cart-product-info span { font-size: 0.8rem; color: var(--ink-muted); }
.cart-qty {
  display: inline-flex;
  align-items: center;
  background: var(--wheat);
  border-radius: 999px;
  padding: 3px 6px;
  border: 1px solid var(--wheat-dark);
}
.cart-qty button {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
}
.cart-qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.cart-price { font-weight: 800; white-space: nowrap; }
.cart-remove {
  border: none;
  background: none;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  transition: var(--ease);
}
.cart-remove:hover { color: var(--sale); background: rgba(194, 61, 61, 0.08); }

.cart-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  background: var(--wheat);
  border-top: 1px solid var(--wheat-dark);
}
.coupon-form {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}
.coupon-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--wheat-dark);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
}
.coupon-form input:focus { border-color: var(--forest-light); }
.coupon-form button {
  padding: 10px 18px;
  border: none;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
.coupon-form button:hover { background: var(--forest-mid); }

.cart-summary {
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}
.cart-summary h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wheat-dark);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.summary-row.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--wheat-dark);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}
.summary-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin: 16px 0 20px;
  line-height: 1.5;
}
.cart-summary .btn-honey { width: 100%; margin-bottom: 10px; }
.cart-summary .btn-line { width: 100%; }

.cart-empty {
  text-align: center;
  padding: 64px 24px;
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
}
.cart-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--forest-ghost);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  font-size: 2rem;
}
.cart-empty h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cart-empty p { color: var(--ink-muted); margin-bottom: 24px; }

/* ─── Kategória oldal ─── */
.cat-hero {
  --cat-hero-pad-y: 72px;
  --cat-hero-pad-x: 48px;
  --cat-hero-min-h: 260px;
  background:
    linear-gradient(135deg, rgba(45, 74, 62, 0.82) 0%, rgba(45, 74, 62, 0.58) 55%, rgba(45, 74, 62, 0.45) 100%),
    url('https://bajsziteszta.hu/wp-content/uploads/2026/05/image0-2026-05-28T235423.646-scaled.jpeg') center right / cover;
  border-radius: calc(var(--radius) + 4px);
  padding: var(--cat-hero-pad-y) var(--cat-hero-pad-x);
  min-height: var(--cat-hero-min-h);
  color: #fff;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 85% 50%, transparent 0%, rgba(30, 36, 33, 0.25) 100%);
  pointer-events: none;
}
.cat-hero::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  top: -70px;
  right: -50px;
  pointer-events: none;
}
.cat-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.cat-hero .card-cat {
  color: var(--honey-light);
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.cat-hero h1 {
  font-family: var(--font-heading, 'Libre Baskerville', Georgia, serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cat-hero p {
  max-width: 540px;
  opacity: 0.92;
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}
.cat-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 600;
}
.cat-hero-meta span {
  background: rgba(255,255,255,0.14);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
}
.cat-hero-meta-count {
  background: rgba(30, 36, 33, 0.35) !important;
  border-color: transparent !important;
}

.cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.cat-sidebar {
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 120px;
  box-shadow: var(--shadow);
}
.cat-sidebar h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group--html .filter-html {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.filter-group--html .filter-html p { margin: 0 0 8px; }
.filter-group--html .filter-html a { color: var(--forest); font-weight: 600; }
.filter-list { list-style: none; margin: 0; padding: 0; }
.filter-list li { margin-bottom: 6px; }
.filter-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  transition: var(--ease);
}
.filter-list label:hover { background: var(--wheat); }
.filter-list input { accent-color: var(--forest); }
.filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.88rem;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--ink-soft);
  transition: var(--ease);
}
.filter-link:hover,
.filter-link.is-active {
  background: var(--forest-pale);
  color: var(--forest);
  font-weight: 600;
}
.filter-link small { color: var(--ink-muted); font-weight: 400; }
.filter-clear { color: var(--accent) !important; font-weight: 600; }
.filter-widgets .widget { margin: 0; }
.filter-widgets .widget-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
/* Hide default WP blog widgets in shop sidebar – mockup filters first */
.filter-widgets .widget_search,
.filter-widgets .widget_recent_entries,
.filter-widgets .widget_recent_comments,
.filter-widgets .widget_archive,
.filter-widgets .widget_categories {
  display: none;
}
.filter-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.88rem;
  background: var(--wheat);
  cursor: pointer;
}
.cat-main-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.cat-main-toolbar .woocommerce-result-count {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  float: none;
}
.cat-main-toolbar .woocommerce-ordering {
  margin: 0;
  float: none;
}
.cat-main-toolbar .woocommerce-ordering select,
.cat-sort select {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--wheat-dark);
  background: var(--white);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
}
.woocommerce-products-header { display: none; }
.cat-result-count { font-size: 0.88rem; color: var(--ink-muted); }
.cat-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.cat-sort select {
  padding: 8px 12px;
  border: 1px solid var(--wheat-dark);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  background: var(--white);
  cursor: pointer;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
}
.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--wheat-dark);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--ease);
}
.page-btn:hover { border-color: var(--forest); color: var(--forest); }
.page-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.proto-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: center;
}
.proto-links a { color: var(--honey-light); text-decoration: underline; }

@media (max-width: 960px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cat-layout { grid-template-columns: 1fr; }
  .cat-sidebar { position: static; }
  .cart-table thead { display: none; }
  .cart-table tr {
    display: block;
    padding: 16px;
    border-bottom: 1px solid var(--wheat-dark);
  }
  .cart-table td {
    display: block;
    padding: 8px 0;
    border: none;
  }
  .cart-table td::before {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: block;
    margin-bottom: 4px;
  }
}

@media (max-width: 560px) {
  .trust-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .recipe-cta { padding: 28px 24px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .buy-row { flex-direction: column; }
  .trust-mini { grid-template-columns: 1fr; }
  .cat-hero {
    padding: 48px 28px;
    min-height: 200px;
  }
  .cat-hero h1 { font-size: clamp(1.8rem, 6vw, 2.3rem); }
  .cat-hero p { font-size: 0.95rem; }
  .cart-actions-row { flex-direction: column; align-items: stretch; }
  .coupon-form { max-width: none; }
}

/* ─── Receptkönyv bejegyzés ─── */
.page-shell--post {
  max-width: 820px;
  padding-top: 12px;
  padding-bottom: 72px;
}
.post-cookbook {
  background: transparent;
  border: none;
  box-shadow: none;
  transform: none;
}
.post-cookbook:hover {
  box-shadow: none;
  transform: none;
}
.post-cookbook__header {
  margin-bottom: 36px;
}
.post-cookbook__hero {
  margin: 0 0 28px;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(160deg, var(--forest-ghost), var(--honey-pale) 55%, var(--wheat-dark));
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
}
.post-cookbook__hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 18px 24px;
}
.post-cookbook__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 10px;
}
.post-cookbook__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.post-cookbook__deck {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38em;
  margin: 0;
}
.post-cookbook__content {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.post-cookbook__content > p,
.post-cookbook__content .ck-p {
  margin: 0 0 1.15em;
}
.post-cookbook__content .ck-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.4em;
}
.post-cookbook__content .ck-h {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 1.75em 0 0.75em;
}
.post-cookbook__content .ck-h:first-child {
  margin-top: 0;
}
.post-cookbook__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-cookbook__content a:hover {
  color: var(--forest);
}
.post-cookbook__content .ck-figure {
  margin: 0.4em 0 1.2em;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--wheat-dark);
}
.post-cookbook__content .ck-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--wheat-dark);
}
.post-cookbook__content .ck-figure figcaption {
  padding: 10px 14px 12px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-muted);
  background: var(--white);
}
.post-cookbook__content .ck-figure figcaption a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}
.post-cookbook__content .ck-figure figcaption a:hover {
  text-decoration: underline;
}
.post-cookbook__content .ck-figure--left {
  float: left;
  width: min(42%, 280px);
  margin: 0.25em 1.4em 1em 0;
}
.post-cookbook__content .ck-figure--right {
  float: right;
  width: min(42%, 280px);
  margin: 0.25em 0 1em 1.4em;
}
.post-cookbook__content .ck-figure--wide {
  float: none;
  clear: both;
  width: 100%;
  margin: 1.6em 0;
}
.post-cookbook__content .ck-figure--wide img {
  aspect-ratio: 16 / 10;
}
.post-cookbook__content .ck-pair {
  clear: both;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.6em 0;
}
.post-cookbook__content .ck-pair .ck-figure {
  margin: 0;
  width: 100%;
  float: none;
}
.post-cookbook__content .ck-note {
  clear: both;
  margin: 1.8em 0;
  padding: 18px 22px;
  background: var(--honey-pale);
  border-left: 3px solid var(--honey);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.post-cookbook__content .ck-note strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 4px;
}
.post-cookbook__content::after {
  content: "";
  display: table;
  clear: both;
}
.post-cookbook__nav {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--wheat-dark);
}
.post-cookbook__nav .post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.post-cookbook__nav .nav-previous,
.post-cookbook__nav .nav-next {
  background: var(--white);
  border: 1px solid var(--wheat-dark);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.post-cookbook__nav .nav-previous:hover,
.post-cookbook__nav .nav-next:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.post-cookbook__nav .nav-next {
  text-align: right;
  justify-self: end;
  width: 100%;
}
.post-cookbook__nav .nav-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.post-cookbook__nav .nav-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.35;
}

@media (max-width: 720px) {
  .post-cookbook__content .ck-figure--left,
  .post-cookbook__content .ck-figure--right {
    float: none;
    width: min(100%, 320px);
    margin: 1.2em auto;
  }
  .post-cookbook__content .ck-pair {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .post-cookbook__nav .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
  .post-cookbook__nav .nav-next {
    text-align: left;
  }
}
