/* =============================================================
   MIDIBABY — main.css
   Organic Editorial design system
   ============================================================= */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --cream:        #FAF7F2;
  --warm-white:   #FFFEF9;
  --linen:        #F2EDE4;
  --sand:         #E4D9C8;
  --taupe:        #C4AF96;
  --stone:        #9E8E7A;
  --brown:        #6B5744;
  --dark:         #4A6B4D;   /* generikus „sötét" akcentus — lágy olíva (terrakotta helyett) */
  --sage:         #6B8F6E;
  --sage-light:   #EBF2EC;
  --sage-dark:    #4A6B4D;
  --terra:        #5A7D5E;   /* linkek/akcentus — közép-mély olíva */
  --terra-light:  #EFEAE0;
  --text:         #3A2E24;
  --text-muted:   #8A7A6A;
  --text-light:   #B0A090;
  --heading:      #4A6B4D;   /* címsorok — lágy olíva (bézs + olíva skandináv séma) */
  --footer-bg:    #ECE4D6;   /* világos bézs footer/CTA háttér */

  --font-display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-pill:  100px;

  --shadow-sm:    0 1px 4px rgba(44,35,24,.08);
  --shadow-md:    0 4px 16px rgba(44,35,24,.10);
  --shadow-lg:    0 8px 32px rgba(44,35,24,.12);

  --container:    1320px;
  --header-h:     72px;
  --transition:   .2s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
body > #main {
  flex: 1 0 auto;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
/* Tartalmi (prose) linkek — terrakotta, aláhúzva */
.mb-single-post__content a,
.mb-cat-description a,
.mb-editorial__content a,
.woocommerce-Tabs-panel a,
.woocommerce-product-details__short-description a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.mb-single-post__content a:hover,
.mb-cat-description a:hover,
.mb-editorial__content a:hover,
.woocommerce-Tabs-panel a:hover,
.woocommerce-product-details__short-description a:hover { color: var(--heading); }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .018;
  pointer-events: none;
  z-index: 9999;
}

/* ---- SKIP LINK ---- */
.mb-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--sage);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 13px;
  z-index: 10000;
  transition: top .15s;
}
.mb-skip-link:focus { top: 0; }

/* ---- CONTAINER ---- */
.mb-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 40px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(28px, 4.3vw, 48px); font-weight: 400; }
h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 400; }
h3 { font-size: clamp(16px, 2.2vw, 23px); font-weight: 500; }

.mb-section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 40px;
}
.mb-section-title.text-center { text-align: center; }

.mb-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.mb-eyebrow.mb-terra { color: var(--terra); }
.mb-eyebrow.mb-sage  { color: var(--sage); }

/* ---- BUTTONS ---- */
.btn-primary, .btn-secondary, .btn-terra, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  border: none;
  padding: 13px 26px;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: #fff;
  border-radius: var(--radius-pill);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107,143,110,.3);
}
.btn-secondary {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-pill);
}
.btn-secondary:hover { background: var(--sage-light); }
.btn-terra {
  background: var(--sage);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 32px;
}
.btn-terra:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74,107,77,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--heading);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-pill);
}
.btn-ghost:hover { border-color: var(--taupe); }
.btn-lg  { padding: 16px 36px; font-size: 15px; }
.btn-sm  { padding: 8px 16px;  font-size: 13px; }
.btn-full { width: 100%; }
.btn-full.btn-primary, .btn-full.btn-terra { border-radius: var(--radius-md); }

/* ---- HEADER ---- */
.mb-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--warm-white);
  border-bottom: 1px solid var(--sand);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.mb-header.scrolled { box-shadow: 0 2px 20px rgba(44,35,24,.07); }
.mb-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.mb-header__logo { flex-shrink: 0; display: flex; align-items: center; }
.mb-logo-img   { height: 44px; width: auto; }
.mb-logo-text  { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--heading); letter-spacing: -.01em; }
.mb-header__nav { flex: 1; display: flex; justify-content: center; }
.mb-header__actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

/* Nav list */
.mb-nav-list { display: flex; gap: 4px; align-items: center; }
.mb-nav-list li a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.mb-nav-list li a:hover,
.mb-nav-list li.current-menu-item > a { color: var(--sage); }
.mb-nav-list li.current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

/* Cart icon */
.mb-header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage);
  transition: background var(--transition);
}
.mb-header__cart:hover { background: var(--sage); color: #fff; }
.mb-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--terra);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--transition), transform var(--transition);
}
.mb-cart-badge.visible { opacity: 1; transform: scale(1); }

/* Hamburger */
.mb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.mb-hamburger__line {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s;
  display: block;
}
.mb-hamburger[aria-expanded="true"] .mb-hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mb-hamburger[aria-expanded="true"] .mb-hamburger__line:nth-child(2) { opacity: 0; }
.mb-hamburger[aria-expanded="true"] .mb-hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- MOBILE DRAWER ---- */
.mb-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  visibility: hidden;
}
.mb-mobile-drawer.open { visibility: visible; }
.mb-mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,35,24,.45);
  opacity: 0;
  transition: opacity .3s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.mb-mobile-drawer.open .mb-mobile-drawer__overlay { opacity: 1; }
.mb-mobile-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--warm-white);
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mb-mobile-drawer.open .mb-mobile-drawer__panel { transform: none; }
.mb-mobile-drawer__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--heading);
  padding: 4px;
}
.mb-mobile-nav-list { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.mb-mobile-nav-list li a {
  display: block;
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading);
  border-bottom: 1px solid var(--sand);
}
.mb-mobile-nav-list li a:hover { color: var(--sage); }
.mb-mobile-drawer__footer { margin-top: auto; padding-top: 16px; }

/* ---- FOOTER ---- */
.mb-footer {
  background: var(--footer-bg);
  color: var(--text-muted);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--sand);
}
.mb-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.mb-footer__col--brand { padding-right: 20px; }
.mb-footer__logo-text { font-family: var(--font-display); font-size: 24px; color: var(--heading); font-weight: 600; display: block; margin-bottom: 12px; }
.mb-footer__logo-img  { height: 44px; width: auto; margin-bottom: 12px; }
.mb-footer__desc  { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.mb-footer__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.mb-footer__badge { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; background: rgba(0,0,0,.05); border-radius: 20px; color: var(--text-muted); }
.mb-footer__heading { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--heading); margin-bottom: 16px; }
.mb-footer__links { display: flex; flex-direction: column; gap: 8px; }
.mb-footer__links li a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.mb-footer__links li a:hover { color: var(--heading); }
.mb-footer__trust-icons { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.mb-footer__trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.mb-footer__bottom {
  border-top: 1px solid var(--sand);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.mb-footer__bottom nav { display: flex; gap: 20px; }
.mb-footer__bottom a { color: var(--text-light); transition: color var(--transition); }
.mb-footer__bottom a:hover { color: var(--heading); }
.mb-footer__deco-letter {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 400px;
  font-weight: 300;
  color: rgba(0,0,0,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ---- HERO ---- */
/* =============================================================
   FŐOLDAL — modern redesign
   ============================================================= */

/* ---- HERO ---- */
.mb-hero {
  position: relative;
  background: var(--cream);
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* Floating ambient orbs */
.mb-hero__orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.mb-hero__orb  { position: absolute; border-radius: 50%; will-change: transform; }
.mb-hero__orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(107,143,110,.2) 0%, transparent 65%);
  top: -160px; right: 60px;
  animation: mbOrb1 11s ease-in-out infinite;
}
.mb-hero__orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(196,122,90,.16) 0%, transparent 65%);
  bottom: -60px; right: 340px;
  animation: mbOrb2 14s ease-in-out infinite;
}
.mb-hero__orb--3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(196,175,150,.3) 0%, transparent 65%);
  top: 55%; left: 36%;
  animation: mbOrb3 9s ease-in-out infinite;
}
@keyframes mbOrb1 {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(-20px,30px); }
  66%     { transform: translate(12px,16px); }
}
@keyframes mbOrb2 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(18px,-28px); }
}
@keyframes mbOrb3 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-22px,12px); }
}

.mb-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mb-hero__text { max-width: 580px; }

.mb-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.8vw, 78px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--sage-dark);
  margin-bottom: 22px;
}
.mb-hero__title-line1 {
  display: block;
  font-weight: 300;
  color: var(--sage);
}
.mb-hero__title-line2 {
  display: block;
  font-weight: 700;
}
.mb-hero__title-line2 em {
  font-style: normal;
  color: var(--sage);
}

.mb-hero__sub {
  font-size: 17px;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.mb-hero__badges {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.mb-hero__badges li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 5px 13px;
  border-radius: var(--radius-pill);
}
.mb-check-icon { font-weight: 700; font-size: 11px; }
.mb-hero__cta-group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Hero image column */
.mb-hero__image { position: relative; }
.mb-hero__image-frame {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sand);
  box-shadow: 0 28px 72px rgba(44,35,24,.18);
}
.mb-hero__image-frame img { width: 100%; height: 100%; object-fit: cover; }
.mb-hero__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--sage-light) 0%, var(--sand) 50%, var(--terra-light) 100%);
}

/* Floating badges */
.mb-hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 2;
}
.mb-hero__badge--top {
  top: 28px; left: -28px;
  background: var(--dark);
  color: #fff;
  animation: mbBadgeFloat 4s ease-in-out infinite;
}
.mb-hero__badge--bottom {
  bottom: 36px; right: -24px;
  background: var(--terra);
  color: #fff;
  animation: mbBadgeFloat 4s ease-in-out infinite .9s;
}
.mb-hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.mb-hero__badge--bottom .mb-hero__badge-dot { background: rgba(255,255,255,.55); }
@keyframes mbBadgeFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}

/* ---- USP TICKER ---- */
.mb-usp-ticker {
  background: var(--sage);
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.mb-usp-ticker__track {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  animation: ticker 28s linear infinite;
  padding-right: 48px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mb-usp-ticker:hover .mb-usp-ticker__track { animation-play-state: paused; }

/* ---- CATEGORY NAVIGATOR ---- */
.mb-cat-nav { padding: 96px 0; background: var(--cream); }
.mb-cat-nav__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.mb-cat-nav__header .mb-section-title { margin: 0; }
.mb-cat-nav__all {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-dark);
  border-bottom: 1.5px solid var(--sage);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition);
}
.mb-cat-nav__all:hover { color: var(--heading); border-color: var(--heading); }
.mb-cat-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Overlay-style category cards */
.mb-cat-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
  text-decoration: none;
}
.mb-cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,35,24,.88) 0%, rgba(44,35,24,.25) 45%, transparent 75%);
  transition: opacity .35s ease;
}
.mb-cat-card:hover::after { opacity: 0.96; }
.mb-cat-card__img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
}
.mb-cat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.mb-cat-card:hover .mb-cat-card__img img { transform: scale(1.06); }
.mb-cat-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(145deg, var(--linen), var(--sand));
}
.mb-cat-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 20px 22px;
  transition: transform .35s ease;
}
.mb-cat-card:hover .mb-cat-card__body { transform: translateY(-4px); }
.mb-cat-card__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.mb-cat-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.mb-cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .2s, gap .2s;
}
.mb-cat-card:hover .mb-cat-card__link { color: #fff; gap: 10px; }

/* ---- STATS BAR ---- */
.mb-stats-bar { background: var(--dark); padding: 0; }
.mb-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
}
.mb-stats-item {
  background: var(--dark);
  text-align: center;
  padding: 48px 32px;
}
.mb-stats-item__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.mb-stats-item__num span { color: var(--sage); }
.mb-stats-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* ---- FEATURED PRODUCTS ---- */
.mb-featured-products {
  padding: 96px 0;
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
}
.mb-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.mb-section-header .mb-section-title { margin: 0; }
.mb-section-header__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--terra);
  border-bottom: 1.5px solid var(--terra);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition);
}
.mb-section-header__link:hover { color: var(--heading); border-color: var(--heading); }
.mb-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ---- EDITORIAL ---- */
.mb-editorial { background: var(--cream); padding: 96px 0; }
.mb-editorial__inner {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 80px;
  align-items: center;
}
.mb-editorial__image { position: relative; }
.mb-editorial__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(44,35,24,.18);
}
.mb-editorial__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--sage-light) 20%, var(--sand) 80%);
}
/* ---- TELJES HÁTTÉRFOTÓ + OLVASHATÓSÁGI GRADIENS (hero + editorial) ---- */
.mb-hero--photo {
  background-image: var(--mb-hero-bg);
  background-size: cover;
  background-position: center right;
}
.mb-hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(250,247,242,1)   0%,
    rgba(250,247,242,.95) 28%,
    rgba(250,247,242,.6)  48%,
    rgba(250,247,242,0)   72%);
}
.mb-hero--photo .mb-hero__inner { grid-template-columns: 1fr; z-index: 2; }
.mb-hero--photo .mb-hero__text  { max-width: 600px; }

.mb-editorial--photo {
  position: relative;
  background-image: var(--mb-editorial-bg);
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}
.mb-editorial--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(250,247,242,1)   0%,
    rgba(250,247,242,.95) 30%,
    rgba(250,247,242,.55) 50%,
    rgba(250,247,242,0)   75%);
}
.mb-editorial--photo .mb-editorial__inner   { grid-template-columns: 1fr; position: relative; z-index: 2; }
.mb-editorial--photo .mb-editorial__content { max-width: 600px; }

/* Mobilon a vízszintes gradiens nem elég — erős, közel egyenletes fátyol a szöveg alá */
@media (max-width: 768px) {
  .mb-hero--photo::after,
  .mb-editorial--photo::after {
    background: linear-gradient(180deg,
      rgba(250,247,242,.82) 0%,
      rgba(250,247,242,.93) 60%,
      rgba(250,247,242,.97) 100%);
  }
}

.mb-editorial__features { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.mb-feature-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--sand);
  transition: background var(--transition);
}
.mb-feature-card:first-child { border-top: 1px solid var(--sand); }
.mb-feature-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  min-width: 62px;
  letter-spacing: -.03em;
  flex-shrink: 0;
}
.mb-feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.mb-feature-card__desc  {
  font-size: 15.5px;
  color: var(--brown);
  line-height: 1.7;
  font-weight: 400;
}

/* ---- KONFIGURÁTOR CTA ---- */
.mb-konfig-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--footer-bg);
}
.mb-konfig-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(107,143,110,.16) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(107,143,110,.10) 0%, transparent 50%);
  pointer-events: none;
}
.mb-konfig-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.mb-konfig-cta__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.mb-konfig-cta__title em {
  font-style: normal;
  color: var(--sage);
}
.mb-konfig-cta__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* ---- TRUST SECTION ---- */
.mb-trust-section {
  background: var(--linen);
  padding: 64px 0;
  border-top: 1px solid var(--sand);
}
.mb-trust-section__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.mb-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 14px;
  border-radius: var(--radius-md);
  background: var(--warm-white);
  border: 1px solid var(--sand);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mb-trust-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.mb-trust-item__icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  color: var(--sage-dark);
  flex-shrink: 0;
}
.mb-trust-item__title { font-size: 13px; font-weight: 700; color: var(--heading); }
.mb-trust-item__sub   { font-size: 11.5px; color: var(--text-muted); line-height: 1.4; }

/* ---- SOCIAL PROOF ---- */
.mb-reviews { background: var(--cream); padding: 96px 0; }
.mb-reviews__intro { text-align: center; margin-bottom: 48px; }
.mb-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mb-review-card {
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
}
.mb-review-card::before {
  content: '\201C';
  position: absolute;
  top: -16px; left: 18px;
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 700;
  color: var(--sage-light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.mb-review-card__stars { color: #e8a020; font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; position: relative; z-index: 1; }
.mb-review-card__text  { font-size: 14.5px; color: var(--brown); line-height: 1.75; margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }
.mb-review-card__name  { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--heading); position: relative; z-index: 1; }

/* ---- BLOG SZEKCIÓ (főoldal) ---- */
.mb-blog-section { padding: 96px 0; background: #fff; }

.mb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.mb-blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease;
}
.mb-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
}

.mb-blog-card__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--sage-light);
  flex-shrink: 0;
}
.mb-blog-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.mb-blog-card:hover .mb-blog-card__img img { transform: scale(1.04); }
.mb-blog-card__img-placeholder {
  position: absolute;
  inset: 0;
  background: var(--sage-light);
}

.mb-blog-card__body {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 28px;
  flex: 1;
}

.mb-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.mb-blog-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: 20px;
  padding: 3px 10px;
}
.mb-blog-card__date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .03em;
}

.mb-blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--heading);
  margin: 0 0 10px;
}

.mb-blog-card__excerpt {
  font-size: 13.5px;
  color: var(--brown);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.mb-blog-card__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  transition: color .2s;
}
.mb-blog-card:hover .mb-blog-card__link { color: var(--heading); }

/* ---- TRUST BAR (single product) ---- */
.mb-trust-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--sage-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 16px 0;
}
.mb-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sage-dark);
}

/* ---- ARCHIVE PRODUCT (shop) ---- */

/* Breadcrumb — horizontal sor */
.mb-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.mb-breadcrumb li { display: flex; align-items: center; }

/* Shop header */
.mb-shop-header {
  background: var(--linen);
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--sand);
}
.mb-shop-header .mb-breadcrumb { margin-bottom: 10px; }
.mb-shop-header__title { font-size: clamp(24px, 3.5vw, 40px); font-weight: 300; margin: 0; }

/* Shop body */
.mb-shop-body { padding: 32px 0 64px; }

/* 2-col layout: sidebar + main */
.mb-shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── SIDEBAR — sticky görgetésnél ── */
.mb-shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  align-self: start;          /* grid-ben: ne nyúljon ki a sor teljes magasságára */
  max-height: calc(100vh - var(--header-h, 72px) - 40px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--sand) transparent;
}
.mb-shop-sidebar::-webkit-scrollbar { width: 4px; }
.mb-shop-sidebar::-webkit-scrollbar-track { background: transparent; }
.mb-shop-sidebar::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 2px; }

/* Lapozó elrejtése — infinite scroll váltja fel */
.mb-shop-main .woocommerce-pagination { display: none; }

/* ── INFINITE SCROLL SENTINEL ── */
.mb-load-more-sentinel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 16px;
  min-height: 80px;
}
.mb-load-more-sentinel.is-done { display: none; }
.mb-load-more-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--sand);
  border-top-color: var(--sage);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.mb-load-more-sentinel.is-loading .mb-load-more-spinner {
  opacity: 1;
  animation: mb-spin 0.7s linear infinite;
}
@keyframes mb-spin { to { transform: rotate(360deg); } }
.mb-sidebar-close {
  display: none; /* csak mobilon */
}
.mb-sidebar-block {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  margin-bottom: 14px;
}
.mb-sidebar-block__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.mb-sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mb-sidebar-cats__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--brown);
  transition: background var(--transition), color var(--transition);
  gap: 8px;
}
.mb-sidebar-cats__item a:hover {
  background: var(--linen);
  color: var(--heading);
}
.mb-sidebar-cats__item.is-active a {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 600;
}
.mb-sidebar-cats__name { flex: 1; }
.mb-sidebar-cats__count {
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.mb-sidebar-cats__item.is-active .mb-sidebar-cats__count { color: var(--sage); }

/* Sidebar attribútum-szűrő */
.mb-sidebar-filter__clear {
  display: inline-block;
  font-size: 11px;
  color: var(--terra);
  margin-bottom: 10px;
}
.mb-sidebar-filter-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mb-sidebar-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--brown);
  transition: background var(--transition);
}
.mb-sidebar-filter-item:hover { background: var(--linen); }
.mb-sidebar-filter-item.is-active {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 600;
}
.mb-sidebar-filter-item__check {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--sand);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.mb-sidebar-filter-item.is-active .mb-sidebar-filter-item__check {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.mb-sidebar-filter-item.is-active .mb-sidebar-filter-item__check::after { content: '✓'; }
.mb-sidebar-filter-item__label { flex: 1; }
.mb-sidebar-filter-item__count { font-size: 11px; color: var(--text-muted); }

/* ── FŐ TARTALOM ── */
.mb-shop-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sand);
  flex-wrap: wrap;
}
.mb-shop-toolbar .woocommerce-result-count {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  margin: 0;
}
.mb-shop-toolbar .woocommerce-ordering {
  margin: 0;
  margin-left: auto;
}
.mb-shop-toolbar .woocommerce-ordering select {
  font-size: 13px;
  color: var(--brown);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 6px 28px 6px 12px;
  background: var(--warm-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238A7A6A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* Aktív szűrő tagek */
.mb-active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.mb-active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--sage-light);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--sage-dark);
  font-weight: 500;
}
.mb-active-filter-tag a {
  color: var(--sage);
  font-weight: 700;
  line-height: 1;
}
.mb-active-filter-clear {
  font-size: 12px;
  color: var(--terra);
  font-weight: 500;
}

/* Mobile filter toggle (alapban rejtett, mobilon látszik) */
.mb-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: border-color var(--transition);
  white-space: nowrap;
}
.mb-filter-toggle:hover { border-color: var(--taupe); }

/* Sidebar overlay (mob) */
.mb-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 35, 24, .45);
  z-index: 280;
  opacity: 0;
  transition: opacity .3s ease;
}
.mb-sidebar-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .mb-shop-layout { grid-template-columns: 180px 1fr; gap: 24px; }
}
@media (max-width: 680px) {
  .mb-shop-layout { display: block; }
  .mb-shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100dvh;
    overflow-y: auto;
    background: var(--warm-white);
    z-index: 300;
    padding: 20px;
    transition: left .3s ease;
    box-shadow: var(--shadow-lg);
    border-right: 1px solid var(--sand);
  }
  .mb-shop-sidebar.is-open { left: 0; }
  .mb-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: auto;
    margin-bottom: 16px;
    background: var(--linen);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--brown);
  }
  .mb-filter-toggle { display: flex; }
}

/* Konfigurátor banner */
.mb-konfig-banner {
  background: var(--terra-light);
  border: 1px solid rgba(196,122,90,.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.mb-konfig-banner p { font-size: 14px; font-weight: 500; color: var(--terra); }

/* Product grid */
.mb-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- PRODUCT CARD ---- */
.mb-product-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mb-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.mb-product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--linen);
}
.mb-product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mb-product-card:hover .mb-product-card__img-wrap img { transform: scale(1.04); }

/* Quick add hover button */
.mb-product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sage);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
  text-align: center;
  transform: translateY(100%);
  transition: transform .25s ease;
  border: none;
  cursor: pointer;
}
.mb-product-card:hover .mb-product-card__quick-add { transform: translateY(0); }

/* Badges */
.mb-product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.mb-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.mb-badge--bestseller { background: var(--terra); color: #fff; }
.mb-badge--new       { background: var(--sage);  color: #fff; }
.mb-badge--ce        { background: var(--sand);  color: var(--brown); }

.mb-product-card__body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.mb-product-card__material { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
.mb-product-card__title    { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--heading); margin-bottom: 4px; line-height: 1.4; }
.mb-product-card__size     { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.mb-product-card__footer   { display: flex; align-items: baseline; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.mb-product-card__name     { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--heading); line-height: 1.3; margin-bottom: 6px; letter-spacing: 0; }
.mb-product-card__price    { font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--heading); letter-spacing: -.01em; }
.mb-product-card__link     { font-size: 13px; color: var(--terra); }
.mb-product-card__link:hover { color: var(--heading); text-decoration: underline; }

/* ---- LABDAMEDENCE KATEGÓRIA (konfigurátor landing) ---- */
.mb-labda-landing { padding: 60px 0 80px; }
.mb-labda-landing .mb-container { max-width: 1024px; }
.mb-labda-landing__header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.mb-labda-landing__header h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 300; margin-bottom: 16px; }
.mb-labda-landing__header p  { font-size: 16px; color: var(--brown); line-height: 1.7; }
.mb-labda-landing__konfig { max-width: 760px; margin: 0 auto; }

/* Size guide */
.mb-size-guide { margin: 60px 0; }
.mb-cat-description { margin: 40px 0; font-size: 15px; line-height: 1.7; color: var(--brown); }
.mb-size-guide__title { font-size: 22px; font-family: var(--font-display); margin-bottom: 8px; }
.mb-size-guide__subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.mb-size-guide__group-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin: 28px 0 10px; }
.mb-size-guide__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mb-size-guide__grid--2col { grid-template-columns: repeat(2, 1fr); }
.mb-size-card {
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.mb-size-card:hover { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.mb-size-card--highlight { border-color: var(--sage); }
.mb-size-card__badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--sage); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px; white-space: nowrap; }
.mb-size-card__size  { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--heading); margin-bottom: 2px; }
.mb-size-card__depth { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.mb-size-card__age   { font-size: 13px; font-weight: 700; color: var(--terra); margin-bottom: 8px; }
.mb-size-card__room  { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.mb-size-card__balls { font-size: 12px; color: var(--brown); font-weight: 600; }
.mb-size-card__note  { font-size: 11px; color: var(--text-muted); margin-top: 6px; font-style: italic; }

/* ---- SINGLE PRODUCT ---- */
.mb-single-product-wrapper { padding: 32px 0 64px; }
.mb-single-product__breadcrumb { margin-bottom: 24px; }
.mb-breadcrumb { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.mb-breadcrumb a:hover { color: var(--terra); }
.mb-sep { color: var(--taupe); }

.mb-single-product__layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 64px;
  align-items: flex-start;
}

/* Gallery */
.mb-product-gallery {}
.mb-product-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--linen);
  margin-bottom: 10px;
}
.mb-product-gallery__main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.mb-product-gallery__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.mb-product-gallery__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--linen);
}
.mb-product-gallery__thumb:hover,
.mb-product-gallery__thumb.active { border-color: var(--sage); }
.mb-product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info */
.mb-product-info { position: sticky; top: calc(var(--header-h) + 24px); }
.mb-product-info__inner { padding: 8px 0; }
.mb-product-info__material { display: inline-block; background: var(--sage-light); color: var(--sage-dark); font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }
.mb-product-info__title { font-size: clamp(22px, 3vw, 34px); font-weight: 400; margin-bottom: 8px; }
.mb-product-info__price { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--heading); margin-bottom: 20px; }
.mb-product-info__price del { font-size: 18px; color: var(--text-muted); margin-right: 8px; }
/* Rövid leírás a jobb oszlopban */
.mb-product-info .woocommerce-product-details__short-description {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.mb-product-info .woocommerce-product-details__short-description p { margin: 0 0 8px; }
.mb-product-info .woocommerce-product-details__short-description p:last-child { margin-bottom: 0; }

/* ---- MENNYISÉG + KOSÁRBA GOMB ---- */
.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 24px;
  flex-wrap: wrap;
}
/* Qty stepper wrapper */
.cart .quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  height: 48px;
  flex-shrink: 0;
}
.cart .quantity .qty-btn,
.cart .quantity .mb-qty-btn {
  width: 42px;
  height: 100%;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 300;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  user-select: none;
  flex-shrink: 0;
}
.cart .quantity .qty-btn:hover,
.cart .quantity .mb-qty-btn:hover { background: var(--sand); }
.cart .quantity input.qty {
  width: 44px;
  height: 100%;
  border: none;
  border-left: 1.5px solid var(--sand);
  border-right: 1.5px solid var(--sand);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.cart .quantity input.qty::-webkit-outer-spin-button,
.cart .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; }
/* Kosárba teszem gomb */
.single_add_to_cart_button {
  flex: 1;
  min-width: 180px;
  height: 48px;
  padding: 0 28px;
  background: var(--terra, #c4714a);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background var(--transition), transform .1s;
}
.single_add_to_cart_button:hover { background: var(--terra-dark, #a85c38); }
.single_add_to_cart_button:active { transform: scale(.98); }
.single_add_to_cart_button.loading { opacity: .7; pointer-events: none; }

/* ---- FŐKÉP — nagyítható (kattintható) ---- */
.mb-product-gallery__main { position: relative; cursor: zoom-in; }
.mb-product-gallery__main::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center/18px no-repeat;
  border-radius: 8px;
  pointer-events: none;
  opacity: .6;
  transition: opacity .2s;
}
.mb-product-gallery__main:hover::after { opacity: 1; }

/* ---- LIGHTBOX ---- */
.mb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.mb-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.mb-lightbox img {
  max-width: min(90vw, 900px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  user-select: none;
}
.mb-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
}
.mb-lightbox__close:hover { opacity: 1; }

/* ---- STICKY MOBILE CTA ---- */
.mb-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 20px rgba(44,35,24,.1);
}
.mb-sticky-cta.visible { transform: translateY(0); }
.mb-sticky-cta__price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--heading); }
.mb-sticky-cta__btn   { background: var(--sage); color: #fff; border: none; border-radius: var(--radius-md); padding: 12px 24px; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; transition: background var(--transition); white-space: nowrap; }
.mb-sticky-cta__btn:hover { background: #b36a4a; }

/* Cross-sell konfig */
.mb-crossell-konfig {
  background: linear-gradient(110deg, var(--terra-light) 0%, #f5ede3 50%, var(--linen) 100%);
  border-top: 1px solid rgba(196,122,90,.18);
  border-bottom: 1px solid rgba(196,122,90,.18);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
/* Dekoratív háttér-körök */
.mb-crossell-konfig::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,122,90,.12) 0%, transparent 70%);
  pointer-events: none;
}
.mb-crossell-konfig::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,122,90,.08) 0%, transparent 70%);
  pointer-events: none;
}
.mb-crossell-konfig__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.mb-crossell-konfig__icon {
  flex-shrink: 0;
}
.mb-crossell-konfig__content .mb-eyebrow {
  color: var(--terra);
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.mb-crossell-konfig__title {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 10px;
}
.mb-crossell-konfig__desc {
  font-size: 15px;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 480px;
}
.mb-crossell-konfig__features {
  display: flex;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}
.mb-crossell-konfig__features li {
  font-size: 12px;
  font-weight: 600;
  color: var(--terra);
  background: rgba(196,122,90,.1);
  border: 1px solid rgba(196,122,90,.25);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  letter-spacing: .02em;
}
.mb-crossell-konfig__features li::before {
  content: '✓ ';
}
.mb-crossell-konfig__cta {
  text-align: center;
  flex-shrink: 0;
}
.mb-crossell-konfig__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: #fff;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(196,122,90,.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.mb-crossell-konfig__btn:hover {
  background: #b36a4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196,122,90,.45);
}
.mb-crossell-konfig__sub {
  font-size: 12px;
  color: var(--stone);
  margin-top: 10px;
  text-align: center;
}

/* Product tabs */
.mb-product-tabs { margin-top: 48px; }
.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--sand);
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}
.woocommerce-tabs ul.tabs li {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
}
.woocommerce-tabs ul.tabs li::before,
.woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover { color: var(--sage); border-bottom-color: var(--sage); }
.woocommerce-tabs .panel { padding: 24px 0; }

/* ---- CART ---- */

/* Checkout step indicator */
.mb-checkout-steps { padding: 32px 0 40px; }
.mb-checkout-steps__list {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 480px;
}
.mb-checkout-steps__item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
}
.mb-checkout-steps__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(20px + 8px);
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--sand);
  transform: translateY(-50%);
  pointer-events: none;
}
.mb-checkout-steps__item.is-done::after  { background: var(--sage); }
.mb-checkout-steps__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  background: var(--warm-white);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.mb-checkout-steps__item.is-active .mb-checkout-steps__num {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.mb-checkout-steps__item.is-done .mb-checkout-steps__num {
  background: var(--sage-light);
  border-color: var(--sage);
  color: var(--sage-dark);
}
.mb-checkout-steps__item.is-active .mb-checkout-steps__label { color: var(--heading); font-weight: 600; }
.mb-checkout-steps__label { white-space: nowrap; }

/* Wrapper + layout */
.mb-cart-wrapper { padding-bottom: 80px; }
.mb-cart-layout  { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }

/* Bal oszlop fejléc */
.mb-cart-items-col { display: flex; flex-direction: column; gap: 0; }
.mb-cart-items-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.mb-cart-title {
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  font-family: var(--font-display);
  color: var(--heading);
  margin: 0;
}
.mb-cart-count {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--linen);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

/* Termékek lista */
.mb-cart-items { display: flex; flex-direction: column; gap: 10px; }

.mb-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.mb-cart-item:hover { box-shadow: var(--shadow-sm); border-color: var(--taupe); }

.mb-cart-item__img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--linen);
  flex-shrink: 0;
}
.mb-cart-item__img img { width: 100%; height: 100%; object-fit: cover; }

.mb-cart-item__body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }

.mb-cart-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.mb-cart-item__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.4;
  margin: 0;
}
.mb-cart-item__name a { color: inherit; transition: color var(--transition); }
.mb-cart-item__name a:hover { color: var(--sage-dark); }

/* X gomb (jobb felső sarok) — anchor + button is lehet */
a.mb-cart-item__remove,
.mb-cart-item__remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0; /* WC default &times; szöveg elrejtése ha marad */
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
a.mb-cart-item__remove:hover,
.mb-cart-item__remove:hover {
  background: #fdecea;
  border-color: #e07060;
  color: #c0392b;
}

/* Meta: attribútumok, variáció */
.mb-cart-item__meta {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.mb-cart-item__meta dl,
.mb-cart-item__meta table { margin: 0; }
.mb-cart-item__meta dt,
.mb-cart-item__meta th { display: inline; font-weight: 600; }
.mb-cart-item__meta dd,
.mb-cart-item__meta td { display: inline; margin: 0 0 0 4px; }
.mb-cart-item__meta dd::after,
.mb-cart-item__meta td::after { content: '\A'; white-space: pre; }

/* Footer: qty + ár */
.mb-cart-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

/* Qty wrapper */
.mb-cart-item__qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--linen);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--sand);
  overflow: hidden;
}
.mb-qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--brown);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.mb-qty-btn:hover:not(:disabled) {
  background: var(--sand);
  color: var(--heading);
}
.mb-qty-btn:disabled { color: var(--text-light); cursor: default; }
.mb-qty-input {
  width: 44px;
  text-align: center;
  border: none;
  background: var(--warm-white);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  padding: 0;
  height: 36px;
  -moz-appearance: textfield;
  border-left: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
}
.mb-qty-input::-webkit-outer-spin-button,
.mb-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.mb-qty-input:focus { outline: none; background: var(--warm-white); }

.mb-cart-item__qty-single {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 16px;
}

.mb-cart-item__subtotal {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0;
}

/* Cart actions: kupon + frissítés */
.mb-cart-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  background: var(--linen);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.mb-cart-actions .coupon { display: flex; gap: 8px; flex: 1; min-width: 200px; }
.mb-cart-actions .coupon input[type="text"],
.mb-cart-actions input#coupon_code {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--heading);
  background: var(--warm-white);
  min-width: 0;
  transition: border-color var(--transition);
}
.mb-cart-actions .coupon input[type="text"]:focus,
.mb-cart-actions input#coupon_code:focus {
  border-color: var(--sage);
  outline: none;
}
.mb-cart-actions .button,
.mb-cart-actions button[name="apply_coupon"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  background: var(--sage-light);
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}
.mb-cart-actions .button:hover,
.mb-cart-actions button[name="apply_coupon"]:hover {
  background: var(--sage);
  color: #fff;
}

/* Frissítés gomb */
.mb-cart-update-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--sand);
  margin-left: auto;
}
.mb-cart-update-btn:hover { border-color: var(--taupe); color: var(--heading); }

/* Vásárlás folytatása link */
.mb-cart-continue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  transition: color var(--transition);
}
.mb-cart-continue:hover { color: var(--sage-dark); }

/* ── ÖSSZESÍTŐ DOBOZ ── */
.mb-cart-summary {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.mb-cart-summary__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--linen);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.mb-cart-summary__rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.mb-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--brown);
}
.mb-cart-summary__val { font-weight: 500; color: var(--heading); font-family: var(--font-body); }
.mb-cart-summary__free     { color: var(--sage-dark); font-weight: 600; }
.mb-cart-summary__discount { color: var(--sage-dark); font-weight: 600; }
.mb-cart-summary__row--discount > span:first-child { color: var(--sage-dark); }

/* WC natív sorok (shipping / coupon) a summary-ban */
.mb-cart-summary .woocommerce-shipping-totals { display: flex; justify-content: space-between; font-size: 14px; color: var(--brown); }
.mb-cart-summary .cart-subtotal,
.mb-cart-summary .order-total { display: none; }
.mb-cart-summary #shipping_method { list-style: none; padding: 0; margin: 0; }
.mb-cart-summary #shipping_method li { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--brown); margin-bottom: 4px; }
.mb-cart-summary #shipping_method input[type="radio"] { accent-color: var(--sage); }
.mb-cart-summary .cart-discount td { text-align: right; }

/* Total sor */
.mb-cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  padding: 16px 0;
  border-top: 2px solid var(--sand);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.mb-cart-summary__total span:first-child { font-size: 14px; font-family: var(--font-body); font-weight: 500; }

/* CTA gomb */
.mb-cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--terra);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.mb-cart-checkout-btn:hover {
  background: #b36a4a;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(196,122,90,.4);
  color: #fff;
}

/* Trust jelek */
.mb-cart-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--linen);
}
.mb-cart-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.mb-cart-trust__item svg { flex-shrink: 0; color: var(--sage); stroke: var(--sage); }

/* Cross-sells szekció */
.mb-cart-crosssells { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--sand); }
.mb-cart-crosssells__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 28px;
}
.mb-cart-crosssells .mb-product-grid,
.mb-cart-crosssells ul.products { grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Üres kosár */
.mb-empty-cart {
  text-align: center;
  padding: 80px 24px 100px;
  max-width: 440px;
  margin: 0 auto;
}
.mb-empty-cart__icon {
  width: 80px;
  height: 80px;
  background: var(--linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--taupe);
}
.mb-empty-cart__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 12px;
}
.mb-empty-cart__text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.mb-empty-cart__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.mb-empty-cart__cta:hover {
  background: color-mix(in srgb, var(--terra) 85%, #000);
  color: #fff;
  transform: translateY(-1px);
}

/* Üres kosár wrapper min-height: tartalom töltse ki a viewport-ot */
.mb-cart-wrapper--empty {
  min-height: calc(70vh - var(--header-h, 72px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* WC notices a cart oldalon — a container-en belül, kompakt stílus */
.mb-cart-wrapper .woocommerce-message,
.mb-cart-wrapper .woocommerce-info,
.mb-cart-wrapper .woocommerce-error {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin: 0 0 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  max-width: fit-content;
}
.mb-cart-wrapper .woocommerce-info {
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  color: var(--sage-dark);
}
.mb-cart-wrapper .woocommerce-message {
  background: #edf7ed;
  border-left: 3px solid var(--sage);
  color: var(--sage-dark);
}
.mb-cart-wrapper .woocommerce-error {
  background: #fdecea;
  border-left: 3px solid #c0392b;
  color: #7b241c;
}
/* WC az értesítéseket body-szinten is injektálhatja */
.mb-cart-wrapper + .woocommerce-message,
.mb-cart-wrapper + .woocommerce-info { display: none; }

/* ---- PRODUCT TABS SZEKCIÓ (teljes szélesség, single product alatt) ---- */
.mb-product-tabs-section {
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 48px 0;
  margin-top: 40px;
}
.mb-product-tabs-section .mb-container { max-width: var(--container); }
/* Hosszú leírás — bekezdések közötti sorköz */
.woocommerce-Tabs-panel p,
.woocommerce-Tabs-panel--description p {
  line-height: 1.8;
  margin-bottom: 1.4em;
}
.woocommerce-Tabs-panel p:last-child,
.woocommerce-Tabs-panel--description p:last-child { margin-bottom: 0; }
.woocommerce-Tabs-panel h1,
.woocommerce-Tabs-panel h2,
.woocommerce-Tabs-panel h3 { margin-top: 1.6em; margin-bottom: 0.6em; }
/* Panel első H-ja (tab cím) ne legyen felső margó */
.woocommerce-tabs .panel > h2:first-child,
.woocommerce-tabs .panel > h1:first-child { margin-top: 0; }

/* ---- Termékleírásban lévő képek — lekerekítve, egymás mellé ---- */

/* Minden kép lekerekített */
.woocommerce-Tabs-panel img,
.woocommerce-Tabs-panel figure img {
  border-radius: var(--radius-lg, 16px);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Gutenberg Gallery blokk */
.woocommerce-Tabs-panel .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.woocommerce-Tabs-panel .wp-block-gallery .wp-block-image,
.woocommerce-Tabs-panel .wp-block-gallery figure {
  flex: 1 1 200px;
  margin: 0;
}
.woocommerce-Tabs-panel .wp-block-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg, 16px);
}

/* Gutenberg Image blokkok egymás után → flex sor */
.woocommerce-Tabs-panel .wp-block-image {
  margin: 0;
}
.woocommerce-Tabs-panel .wp-block-image img {
  border-radius: var(--radius-lg, 16px);
}

/* Ha több wp-block-image van egymás után, egy sorba rendezzük */
.woocommerce-Tabs-panel .wp-block-image + .wp-block-image {
  display: inline-flex;
}
.woocommerce-Tabs-panel:has(.wp-block-image + .wp-block-image) {
  /* Wrapper-t nem tudunk hozzáadni, ezért a gallery-t preferáljuk */
}

/* Klasszikus szerkesztő: <p> belsejében vagy standalone <img> */
.woocommerce-Tabs-panel p > img:only-child {
  border-radius: var(--radius-lg, 16px);
  margin: 16px 0;
}

/* Több kép egy <p>-ben egymás mellé */
.woocommerce-Tabs-panel p:has(img) {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.woocommerce-Tabs-panel p:has(img) img {
  flex: 1 1 200px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg, 16px);
}

/* Figure + figcaption */
.woocommerce-Tabs-panel figure {
  margin: 24px 0;
}
.woocommerce-Tabs-panel figcaption {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

/* ---- TOVÁBBI INFORMÁCIÓK TAB — attribútum tábla ---- */
#tab-additional_information h2,
.woocommerce-product-attributes-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--heading);
  margin: 0 0 24px;
}

/* Tábla reset + egyedi dizájn */
.shop_attributes,
.woocommerce-product-attributes {
  width: 100%;
  max-width: 560px;
  border-collapse: collapse;
  border: none;
}
.shop_attributes tbody,
.woocommerce-product-attributes tbody { display: flex; flex-direction: column; gap: 0; }

.shop_attributes tr,
.woocommerce-product-attributes tr {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid var(--sand);
  padding: 12px 0;
}
.shop_attributes tr:first-child,
.woocommerce-product-attributes tr:first-child { border-top: 1px solid var(--sand); }

.shop_attributes th,
.woocommerce-product-attributes th {
  width: 160px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--stone, #8a7e72);
  padding: 0 16px 0 0;
  text-align: left;
  background: none;
  border: none;
}
.shop_attributes td,
.woocommerce-product-attributes td {
  flex: 1;
  font-size: 14px;
  color: var(--heading);
  padding: 0;
  background: none;
  border: none;
}
/* WC comma-separated értékek */
.shop_attributes td p,
.woocommerce-product-attributes td p { margin: 0; }

/* ---- VÉLEMÉNYEK TAB — WooCommerce reviews ---- */
/* Fő cím */
#reviews .woocommerce-Reviews-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--heading);
  margin: 0 0 24px;
}

/* "Még nincsenek értékelések" üzenet */
.woocommerce-noreviews {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

/* Meglévő vélemény lista */
#reviews #comments ol.commentlist {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
#reviews .comment_container {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
}
#reviews .comment_container img.avatar { display: none; }
#reviews .comment-text {
  flex: 1;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
#reviews .comment-text .star-rating { margin-bottom: 6px; }
#reviews .comment-text .meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
#reviews .comment-text .meta strong { color: var(--heading); font-weight: 600; }
#reviews .comment-text .description p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--brown);
  margin: 0;
}

/* Csillag megjelenítés (meglévő értékeléseken) */
.star-rating {
  overflow: hidden;
  position: relative;
  display: inline-block;
  font-size: 0;
  width: 5.4em;
  height: 1em;
  line-height: 1;
}
.star-rating::before {
  content: '\2605\2605\2605\2605\2605';
  font-size: 16px;
  color: var(--sand);
  letter-spacing: 2px;
  position: absolute;
  top: 0; left: 0;
}
.star-rating span {
  overflow: hidden;
  position: absolute;
  top: 0; left: 0;
  padding-top: 1.5em;
  height: 0;
}
.star-rating span::before {
  content: '\2605\2605\2605\2605\2605';
  font-size: 16px;
  color: #f5a623;
  letter-spacing: 2px;
  position: absolute;
  top: 0; left: 0;
}

/* ---- Vélemény írása form ---- */
#review_form_wrapper { margin-top: 40px; }
#review_form_wrapper h3,
#reply-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--heading);
  margin: 0 0 20px;
}

/* Csillag kiválasztó */
.comment-form-rating { margin-bottom: 20px; }
.comment-form-rating label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.comment-form-rating .stars {
  display: flex;
  gap: 4px;
}
.comment-form-rating .stars a {
  font-size: 0;
  display: inline-block;
  width: 28px;
  height: 28px;
  position: relative;
  color: transparent;
  text-decoration: none;
}
.comment-form-rating .stars a::before {
  content: '\2605';
  font-size: 24px;
  color: var(--sand);
  transition: color .15s;
  position: absolute;
  top: 0; left: 0;
}
.comment-form-rating .stars a:hover::before,
.comment-form-rating .stars a.active::before,
.comment-form-rating .stars:hover a::before { color: #f5a623; }
.comment-form-rating .stars a:hover ~ a::before { color: var(--sand); }

/* Textarea */
.comment-form-comment { margin-bottom: 20px; }
.comment-form-comment label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.comment-form-comment textarea,
#review_form textarea {
  width: 100%;
  max-width: 600px;
  min-height: 120px;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--heading);
  background: #fff;
  resize: vertical;
  outline: none;
  transition: border-color var(--transition);
  box-sizing: border-box;
}
.comment-form-comment textarea:focus,
#review_form textarea:focus { border-color: var(--sage); }

/* Egyéb mezők (névjegy, email — ha be van kapcsolva) */
.comment-form-author,
.comment-form-email { margin-bottom: 16px; }
.comment-form-author label,
.comment-form-email label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.comment-form-author input,
.comment-form-email input {
  width: 100%;
  max-width: 360px;
  padding: 10px 14px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--heading);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
  box-sizing: border-box;
}
.comment-form-author input:focus,
.comment-form-email input:focus { border-color: var(--sage); }

/* Küldés gomb */
#review_form .form-submit,
.comment-form .form-submit { margin-top: 8px; }
#submit,
.comment-form #submit {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 28px;
  background: var(--sage);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background var(--transition);
}
#submit:hover,
.comment-form #submit:hover { background: var(--sage-dark, #4a6741); }

/* ---- KORÁBBAN MEGTEKINTETT TERMÉKEK SZEKCIÓ ---- */
.mb-recently-viewed {
  padding: 56px 0 72px;
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
}

/* Fejléc: cím + nyílgombok egy sorban */
.mb-rv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.mb-recently-viewed__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--heading);
  margin: 0;
}

/* Nyílgombok */
.mb-rv-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.mb-rv-arrow {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  background: #fff;
  color: var(--heading);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  padding: 0;
}
.mb-rv-arrow:hover:not(:disabled) {
  background: var(--sand);
  border-color: var(--sage);
}
.mb-rv-arrow:disabled {
  opacity: .35;
  cursor: default;
}

/* Viewport — overflow rejtett, a track scrollozható */
.mb-rv-viewport {
  overflow: hidden;
}

/* Track — vízszintes flex, scroll snap */
.mb-rv-track {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 4px 2px 8px; /* kis shadow-tér */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mb-rv-track::-webkit-scrollbar { display: none; }

/* Kártya méret: 5 látható desktopon */
.mb-rv-item {
  flex: 0 0 calc((100% - 4 * 16px) / 5);
  min-width: 0;
  scroll-snap-align: start;
}

/* A kártya teljes linkként kattintható */
.mb-rv-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.mb-rv-card-link:hover { color: inherit; }

@media (max-width: 1024px) {
  .mb-rv-item { flex: 0 0 calc((100% - 3 * 16px) / 4); }
}
@media (max-width: 768px) {
  .mb-rv-item { flex: 0 0 calc((100% - 2 * 16px) / 3); }
}
@media (max-width: 540px) {
  .mb-rv-item { flex: 0 0 calc((100% - 16px) / 2); }
}

/* ---- PASSZOLÓ TERMÉKEK (upsell) SZEKCIÓ ---- */
.mb-upsell-section {
  padding: 56px 0 72px;
  background: var(--linen);
  border-top: 1px solid var(--sand);
}
.mb-upsell-section__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 32px;
}
.mb-upsell-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .mb-upsell-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mb-upsell-grid { grid-template-columns: 1fr; }
}

/* ---- KAPCSOLÓDÓ TERMÉKEK SZEKCIÓ ---- */
.mb-related-section {
  padding: 56px 0 72px;
  background: var(--cream);
}
.mb-related-section__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 32px;
}
.mb-related-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .mb-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mb-related-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   MY ACCOUNT — fiókom oldal
   ════════════════════════════════════════════════════════ */

/* Hero fejléc */
.mb-myaccount__hero {
  background: linear-gradient(120deg, var(--linen) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--sand);
  padding: 48px 0 40px;
}
.mb-myaccount__hero-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mb-myaccount__avatar-wrap .mb-myaccount__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  display: block;
}
.mb-myaccount__hero-text .mb-eyebrow {
  margin-bottom: 4px;
}
.mb-myaccount__hero-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--heading);
  margin: 0 0 4px;
  line-height: 1.2;
}
.mb-myaccount__hero-email {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* 2-col layout */
.mb-myaccount-wrapper .mb-container { padding-top: 48px; padding-bottom: 72px; }
.mb-myaccount__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar nav */
.mb-myaccount__sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.mb-myaccount__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mb-myaccount__nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--sand);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.mb-myaccount__nav-item:last-child a { border-bottom: none; }
.mb-myaccount__nav-item a:hover {
  background: var(--linen);
  color: var(--heading);
}
.mb-myaccount__nav-item.is-active a,
.mb-myaccount__nav-item a[aria-current="page"] {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 600;
}
.mb-myaccount__nav-item.is-active a .mb-myaccount__nav-icon,
.mb-myaccount__nav-item a[aria-current="page"] .mb-myaccount__nav-icon {
  color: var(--sage-dark);
}
.mb-myaccount__nav-icon {
  flex-shrink: 0;
  color: var(--stone);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.mb-myaccount__nav-label { flex: 1; }
.mb-myaccount__nav-arrow {
  color: var(--stone);
  opacity: .5;
  flex-shrink: 0;
}
/* Kijelentkezés piros tónus */
.mb-myaccount__nav-item--logout a {
  color: var(--terra);
}
.mb-myaccount__nav-item--logout a:hover {
  background: var(--terra-light);
}
.mb-myaccount__nav-item--logout .mb-myaccount__nav-icon {
  color: var(--terra);
}

/* Tartalom terület */
.mb-myaccount__content {
  min-width: 0;
}

/* Dashboard */
.mb-myaccount__section-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--heading);
  margin: 0 0 24px;
}
.mb-myaccount__quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.mb-myaccount__ql-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 20px 20px;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--heading);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.mb-myaccount__ql-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.mb-myaccount__ql-icon {
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
}
.mb-myaccount__ql-label {
  font-size: 15px;
  font-weight: 600;
  flex: 1;
}
.mb-myaccount__ql-arrow {
  font-size: 16px;
  color: var(--stone);
  align-self: flex-end;
}

/* WC tartalom általános stílusok */
.mb-myaccount__content .woocommerce-Message {
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  color: var(--sage-dark);
}
.mb-myaccount__content h2 { font-family: var(--font-display); font-weight: 400; font-size: 22px; margin-bottom: 16px; color: var(--heading); }
.mb-myaccount__content h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.mb-myaccount__content table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mb-myaccount__content table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--stone); padding: 8px 12px; border-bottom: 2px solid var(--sand); }
.mb-myaccount__content table td { padding: 14px 12px; border-bottom: 1px solid var(--sand); color: var(--text); vertical-align: middle; }
.mb-myaccount__content table tr:last-child td { border-bottom: none; }
.mb-myaccount__content table .woocommerce-button,
.mb-myaccount__content table .button { font-size: 12px; padding: 6px 14px; }
.mb-myaccount__content .woocommerce-Input,
.mb-myaccount__content input[type="text"],
.mb-myaccount__content input[type="email"],
.mb-myaccount__content input[type="password"],
.mb-myaccount__content select,
.mb-myaccount__content textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--heading);
  background: #fff;
  transition: border-color var(--transition);
}
.mb-myaccount__content input:focus,
.mb-myaccount__content select:focus,
.mb-myaccount__content textarea:focus { outline: none; border-color: var(--sage); }
.mb-myaccount__content label { font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 6px; }
.mb-myaccount__content p.form-row { margin-bottom: 16px; }
.mb-myaccount__content .woocommerce-Button,
.mb-myaccount__content button[type="submit"],
.mb-myaccount__content .button {
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
  display: inline-block;
}
.mb-myaccount__content .woocommerce-Button:hover,
.mb-myaccount__content button[type="submit"]:hover,
.mb-myaccount__content .button:hover { background: #b36a4a; color: #fff; }
.mb-myaccount__content .woocommerce-address-fields h3 { margin-top: 24px; }

/* Reszponzív */
@media (max-width: 900px) {
  .mb-myaccount__layout { grid-template-columns: 1fr; }
  .mb-myaccount__sidebar { position: static; }
  .mb-myaccount__nav ul { display: grid; grid-template-columns: repeat(2, 1fr); border-radius: var(--radius-md); }
  .mb-myaccount__nav-item a { border-bottom: 1px solid var(--sand); border-right: 1px solid var(--sand); }
  .mb-myaccount__nav-arrow { display: none; }
  .mb-myaccount__quick-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .mb-myaccount__hero-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .mb-myaccount__nav ul { grid-template-columns: 1fr; }
  .mb-myaccount__quick-links { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   CHECKOUT — teljes redesign
   ════════════════════════════════════════════════════════ */

/* Header */
.mb-co-header {
  height: 60px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 24px auto 0;
  padding: 0 24px;
  gap: 16px;
  border-radius: 16px 16px 0 0;
}
.mb-co-header__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  white-space: nowrap;
}

/* Progress lépések */
.mb-co-steps {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mb-co-steps__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
}
.mb-co-steps__item.is-done  { color: var(--sage-dark); }
.mb-co-steps__item.is-active { color: var(--heading); font-weight: 700; }
.mb-co-steps__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--stone);
}
.mb-co-steps__item.is-done .mb-co-steps__dot  { background: var(--sage-light); border-color: var(--sage); color: var(--sage-dark); }
.mb-co-steps__item.is-active .mb-co-steps__dot { background: var(--sage); border-color: var(--sage); color: #fff; }
.mb-co-steps__arrow { color: var(--taupe); font-size: 14px; padding: 0 2px; }

/* Fő layout */
.mb-co-form { background: var(--cream); min-height: calc(100vh - 60px); }
.mb-co-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 24px 80px;
  align-items: start;
}

/* ── Bal: Adatmegadás ── */
.mb-co-main { display: flex; flex-direction: column; gap: 20px; }

.mb-co-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.mb-co-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 20px;
  letter-spacing: 0;
}
.mb-co-card__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* WC form mezők */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  margin-top: 4px;
}
.woocommerce form .form-row {
  margin-bottom: 14px;
}
.woocommerce form .form-row label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 5px;
  display: block;
}
.woocommerce form .form-row .required { color: var(--terra); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--heading);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-light);
  outline: none;
  background: var(--warm-white);
}
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select { border-color: #c0392b; }
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select { border-color: var(--sage); }

/* Checkbox (szállítási cím toggle, ÁSZF) */
.woocommerce form .form-row.woocommerce-form-row--wide input[type="checkbox"],
.woocommerce-form__input-checkbox {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  accent-color: var(--sage);
  cursor: pointer;
  flex-shrink: 0;
}
.woocommerce-form-row--wide label.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  cursor: pointer;
  line-height: 1.5;
}

/* ── Jobb: Összesítő ── */
.mb-co-aside { position: sticky; top: 80px; }
.mb-co-summary {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mb-co-summary__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--stone);
  margin-bottom: 16px;
}

/* Cart tételek */
.mb-co-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.mb-co-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: start;
}
.mb-co-item__img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--linen);
  flex-shrink: 0;
}
.mb-co-item__img img { width: 100%; height: 100%; object-fit: cover; }
.mb-co-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 3px;
}
.mb-co-item__qty { font-weight: 400; color: var(--stone); margin-left: 4px; }
.mb-co-item__meta {
  font-size: 11px;
  color: var(--stone);
  line-height: 1.4;
}
.mb-co-item__meta--extra { color: var(--sage-dark); font-weight: 600; }
.mb-co-item__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  white-space: nowrap;
  text-align: right;
}

/* Összesítő sorok */
.mb-co-totals {
  border-top: 1px solid var(--sand);
  padding-top: 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mb-co-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--brown);
}
.mb-co-totals__row--discount { color: var(--sage-dark); }
.mb-co-totals__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--sand);
  margin-top: 4px;
  font-weight: 700;
}
.mb-co-totals__total > span:first-child { font-size: 13px; color: var(--heading); }
.mb-co-totals__total-val { font-size: 22px; font-family: var(--font-display); color: var(--heading); }

/* WC shipping sorok a totals-ban */
.mb-co-totals .woocommerce-shipping-totals { display: flex; justify-content: space-between; font-size: 13px; color: var(--brown); }
.mb-co-totals #shipping_method { list-style: none; padding: 0; margin: 0; text-align: right; }
.mb-co-totals #shipping_method li { font-size: 12px; color: var(--brown); }
.mb-co-totals #shipping_method input[type="radio"] { accent-color: var(--sage); margin-right: 4px; }
.mb-co-totals .cart-subtotal,
.mb-co-totals .order-total { display: none; } /* saját sorainkat mutatjuk */

/* Fizetési mód szekció */
.mb-co-payment { border-top: 1px solid var(--sand); padding-top: 20px; margin-bottom: 20px; }
.wc_payment_methods { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.wc_payment_method {
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.wc_payment_method:has(input:checked) { border-color: var(--sage); background: var(--sage-light); }
/* Radio gomb — saját padding, a label-től különálló */
.wc_payment_method > input[type="radio"] {
  order: 1;
  flex-shrink: 0;
  accent-color: var(--sage);
  width: 16px;
  height: 16px;
  margin: 14px 0 14px 14px;
  cursor: pointer;
}
/* Fizetési mód felirat + logók */
.wc_payment_method > label {
  order: 2;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  min-height: 44px;
}
.wc_payment_method label img { height: 24px; width: auto; display: inline-block; }
/* Kártya mezők / banki leírás — teljes szélességű sor alul */
.payment_box {
  order: 3;
  flex-basis: 100%;
  padding: 12px 14px;
  background: var(--cream);
  font-size: 13px;
  color: var(--brown);
  border-top: 1px solid var(--sand);
}
.payment_box p { margin: 0; }

/* ÁSZF checkbox + Megrendelés gomb */
.form-row.place-order { padding: 0; }
.woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--stone);
  line-height: 1.6;
}
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.woocommerce-terms-and-conditions-wrapper a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.woocommerce-privacy-policy-text { font-size: 11px; color: var(--text-light); line-height: 1.5; margin-bottom: 12px; }
.woocommerce-privacy-policy-text a { color: var(--sage-dark); text-decoration: underline; }

/* Megrendelés gomb */
.mb-co-btn-order,
#place_order {
  width: 100%;
  padding: 15px 24px;
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .02em;
}
.mb-co-btn-order:hover,
#place_order:hover {
  background: #b56a4a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,122,90,.3);
}

/* Trust jelek */
.mb-co-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sand);
}
.mb-co-trust__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--sage-dark);
  font-weight: 500;
  background: var(--sage-light);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.mb-co-trust__item svg { flex-shrink: 0; }

/* Jogi linkek */
.mb-co-legal {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--sand);
}
.mb-co-legal__intro {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.5;
}
.mb-co-legal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mb-co-legal__link {
  font-size: 11px;
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 4px 8px;
  border: 1px solid var(--sand);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}
.mb-co-legal__link:hover { border-color: var(--sage); color: var(--sage-dark); background: var(--sage-light); }

/* ---- Köszönőoldal: elállási tájékoztató ---- */
.mb-thankyou-elallas {
  max-width: 680px;
  margin: 24px auto 0;
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 14px 20px;
}
.mb-thankyou-elallas__text {
  font-size: 14px;
  color: var(--sage-dark);
  margin: 0;
  line-height: 1.6;
}
.mb-thankyou-elallas__link {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 8px;
}
.mb-thankyou-elallas__link:hover { color: var(--heading); }

/* WC notices a checkout-on — inline, a header szélességéhez igazítva */
.woocommerce-checkout .woocommerce > .woocommerce-notices-wrapper {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  padding: 0 24px;
  box-sizing: border-box;
}
/* A tényleges értesítő inline, ne foglalja el az egész sort */
.woocommerce-checkout .woocommerce > .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-checkout .woocommerce > .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-checkout .woocommerce > .woocommerce-notices-wrapper .woocommerce-error {
  display: inline-flex;
  width: auto;
  max-width: 100%;
}
/* Üres értesítő doboz elrejtése */
.woocommerce-checkout .woocommerce-notices-wrapper:empty { display: none; }

/* Kupon az összesítőben */
.mb-co-coupon {
  border-top: 1px solid var(--border, #e4d9c8);
  margin-top: 4px;
  padding-top: 4px;
}
.mb-co-coupon__toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted, #9e8e7a);
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.mb-co-coupon__toggle:hover { color: var(--sage-dark, #4a6741); }
.mb-co-coupon__chevron {
  margin-left: auto;
  transition: transform 0.2s;
}
.mb-co-coupon.is-open .mb-co-coupon__chevron { transform: rotate(180deg); }
.mb-co-coupon__body {
  display: none;
  padding-bottom: 12px;
}
.mb-co-coupon.is-open .mb-co-coupon__body { display: block; }
.mb-co-coupon__row {
  display: flex;
  gap: 8px;
}
.mb-co-coupon__input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--border, #e4d9c8);
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  outline: none;
}
.mb-co-coupon__input:focus { border-color: var(--sage, #7a9e6e); }
.mb-co-coupon__btn {
  padding: 9px 16px;
  background: var(--sage, #7a9e6e);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.mb-co-coupon__btn:hover { background: var(--sage-dark, #4a6741); }

/* Responsive */
@media (max-width: 860px) {
  .mb-co-header { padding: 0 16px; }
  .mb-co-steps__label { display: none; }
  .mb-co-steps__item.is-active .mb-co-steps__label { display: inline; }
  .mb-co-layout { grid-template-columns: 1fr; padding: 20px 16px 60px; gap: 16px; }
  .mb-co-aside { position: static; order: -1; }
  .mb-co-card { padding: 20px; }
}

/* ---- WOOCOMMERCE GENERAL ---- */
.woocommerce-notices-wrapper { margin-bottom: 16px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 16px;
  list-style: none;
}
.woocommerce-message { background: var(--sage-light); color: var(--sage-dark); border-left: 3px solid var(--sage); }
.woocommerce-error   { background: #fdecea; color: #c0392b; border-left: 3px solid #c0392b; }
.woocommerce-info    { background: #e8f4fd; color: #1a6fa0; border-left: 3px solid #1a6fa0; }

/* ---- MISC ---- */
.mb-page-content { padding-top: 60px; padding-bottom: 80px; }
.mb-article__title { font-size: clamp(26px, 3vw, 42px); font-weight: 400; margin-bottom: 24px; }
.mb-article__content { font-size: 16px; line-height: 1.8; color: var(--brown); max-width: 720px; }
.mb-article__content h2, .mb-article__content h3 { margin: 32px 0 16px; }
.mb-article__content p { margin-bottom: 16px; }
.mb-article__content ul { list-style: none; padding-left: 0; margin-bottom: 16px; }
.mb-article__content ul li { position: relative; padding-left: 28px; margin-bottom: 7px; }
.mb-article__content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23EBF2EC'/%3E%3Cpath d='M5 9.5l2.5 2.5 5-5' stroke='%236B8F6E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-repeat: no-repeat;
}
.mb-article__content ol { list-style: none; padding-left: 0; margin-bottom: 16px; counter-reset: article-ol; }
.mb-article__content ol li { position: relative; padding-left: 32px; margin-bottom: 7px; counter-increment: article-ol; }
.mb-article__content ol li::before {
  content: counter(article-ol);
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
  line-height: 20px; text-align: center;
}
.mb-no-results { font-size: 16px; color: var(--text-muted); padding: 60px 0; text-align: center; }

/* =============================================================
   BLOG — ARCHÍV
   ============================================================= */

.mb-blog-archive { background: var(--cream); padding-bottom: 80px; }

/* Hero */
.mb-blog-archive__hero {
  background: linear-gradient(135deg, var(--linen) 0%, var(--warm-white) 100%);
  border-bottom: 1px solid var(--sand);
  padding: 56px 0 48px;
}
.mb-blog-archive__hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--heading);
  margin: 8px 0 14px;
  line-height: 1.2;
}
.mb-blog-archive__hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

/* Közös pill + dátum */
.mb-blog__cat-pill {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
}
.mb-blog__cat-pill:hover { background: var(--sage); color: #fff; text-decoration: none; }
.mb-blog__cat-pill--sm { font-size: 0.68rem; padding: 2px 8px; }
.mb-blog__date { font-size: 0.82rem; color: var(--text-muted); }
.mb-blog__date--sm { font-size: 0.78rem; }

/* Featured poszt */
.mb-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 52px 0 56px;
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mb-blog-featured__img-wrap { display: block; height: 100%; min-height: 320px; overflow: hidden; }
.mb-blog-featured__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.mb-blog-featured:hover .mb-blog-featured__img-wrap img { transform: scale(1.03); }
.mb-blog-featured__body { padding: 36px 36px 36px 12px; }
.mb-blog-featured__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.mb-blog-featured__title { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: var(--heading); line-height: 1.25; margin: 0 0 16px; }
.mb-blog-featured__title a { color: inherit; text-decoration: none; }
.mb-blog-featured__title a:hover { color: var(--sage-dark); }
.mb-blog-featured__excerpt { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.mb-blog-featured__link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 700; color: var(--sage-dark); text-decoration: none; }
.mb-blog-featured__link:hover { color: var(--terra); text-decoration: none; gap: 10px; }

/* Kártya rács */
.mb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.mb-blog-card { background: var(--warm-white); border: 1.5px solid var(--sand); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; }
.mb-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(44,35,24,.09); border-color: var(--taupe); }
.mb-blog-card__thumb { display: block; overflow: hidden; aspect-ratio: 16/9; }
.mb-blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.mb-blog-card:hover .mb-blog-card__thumb img { transform: scale(1.04); }
.mb-blog-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.mb-blog-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.mb-blog-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--heading); line-height: 1.35; margin: 0 0 10px; flex: 1; }
.mb-blog-card__title a { color: inherit; text-decoration: none; }
.mb-blog-card__title a:hover { color: var(--sage-dark); }
.mb-blog-card__excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.mb-blog-card__link { font-size: 0.83rem; font-weight: 700; color: var(--terra); text-decoration: none; margin-top: auto; }
.mb-blog-card__link:hover { color: var(--sage-dark); text-decoration: none; }

/* Lapozó */
.mb-blog-pagination { display: flex; justify-content: center; padding: 16px 0 0; }
.mb-blog-pagination .nav-links { display: flex; align-items: center; gap: 6px; }
.mb-blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--sand); font-size: 0.88rem; font-weight: 600; color: var(--text); text-decoration: none; background: var(--warm-white); transition: all .15s; }
.mb-blog-pagination .page-numbers:hover { border-color: var(--sage); color: var(--sage-dark); text-decoration: none; }
.mb-blog-pagination .page-numbers.current { background: var(--sage); border-color: var(--sage); color: #fff; }
.mb-blog-pagination .page-numbers.dots { border: none; background: none; }

/* =============================================================
   BLOG — SINGLE POSZT
   ============================================================= */

.mb-single-post { background: var(--cream); padding-bottom: 80px; }

/* Hero kép */
.mb-single-post__hero { padding: 40px 0 0; }
.mb-single-post__hero-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius-lg); display: block; }

/* Layout: tartalom + sidebar */
.mb-single-post__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  padding-top: 48px;
  align-items: start;
}

/* Article */
.mb-single-post__header { margin-bottom: 36px; }
.mb-single-post__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.mb-single-post__readtime { display: inline-flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--text-muted); }
.mb-single-post__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--heading); line-height: 1.2; margin: 0 0 20px; }
.mb-single-post__lead { font-size: 1.08rem; color: var(--text-muted); line-height: 1.75; margin: 0; border-left: 3px solid var(--terra); padding-left: 18px; }

/* Tartalom tipográfia */
.mb-single-post__content { font-size: 1rem; line-height: 1.85; color: var(--text); max-width: 680px; }
.mb-single-post__content h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--heading); margin: 40px 0 16px; }
.mb-single-post__content h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--heading); margin: 32px 0 12px; }
.mb-single-post__content p { margin-bottom: 18px; }
.mb-single-post__content ul { list-style: none; padding-left: 0; margin-bottom: 18px; }
.mb-single-post__content ul li { position: relative; padding-left: 28px; margin-bottom: 8px; }
.mb-single-post__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23EBF2EC'/%3E%3Cpath d='M5 9.5l2.5 2.5 5-5' stroke='%236B8F6E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-repeat: no-repeat;
}
.mb-single-post__content ol { list-style: none; padding-left: 0; margin-bottom: 18px; counter-reset: post-ol; }
.mb-single-post__content ol li { position: relative; padding-left: 32px; margin-bottom: 8px; counter-increment: post-ol; }
.mb-single-post__content ol li::before {
  content: counter(post-ol);
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
  line-height: 20px; text-align: center;
}
.mb-single-post__content img { max-width: 100%; border-radius: var(--radius-md); margin: 8px 0; }
.mb-single-post__content a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.mb-single-post__content blockquote { border-left: 3px solid var(--terra); padding: 12px 20px; margin: 24px 0; background: var(--terra-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--brown); }

/* Footer: tagek */
.mb-single-post__footer { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--sand); }
.mb-single-post__tags-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.mb-single-post__tag { display: inline-block; background: var(--linen); color: var(--text-muted); font-size: 0.8rem; padding: 4px 12px; border-radius: 20px; text-decoration: none; transition: background .15s; }
.mb-single-post__tag:hover { background: var(--sand); color: var(--text); text-decoration: none; }

/* Sidebar */
.mb-single-post__sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 28px; }

.mb-single-post__back { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-decoration: none; padding: 10px 0; }
.mb-single-post__back:hover { color: var(--sage-dark); text-decoration: none; }

.mb-single-post__related { background: var(--warm-white); border: 1.5px solid var(--sand); border-radius: var(--radius-lg); padding: 22px; }
.mb-single-post__related-title { font-size: 0.88rem; font-weight: 700; color: var(--heading); margin: 0 0 16px; text-transform: uppercase; letter-spacing: .05em; }
.mb-single-post__related-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.mb-single-post__related-list a { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.mb-single-post__related-list a:hover .mb-single-post__related-name { color: var(--sage-dark); }
.mb-single-post__related-thumb { width: 52px; height: 52px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--linen); }
.mb-single-post__related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mb-single-post__related-text { display: flex; flex-direction: column; gap: 2px; }
.mb-single-post__related-name { font-size: 0.85rem; font-weight: 600; color: var(--heading); line-height: 1.3; }
.mb-single-post__related-date { font-size: 0.75rem; color: var(--text-muted); }

.mb-single-post__cta-card { background: linear-gradient(135deg, var(--sage-light) 0%, var(--linen) 100%); border: 1.5px solid var(--sage); border-radius: var(--radius-lg); padding: 22px; }
.mb-single-post__cta-card .mb-eyebrow { color: var(--sage-dark); margin-bottom: 6px; }
.mb-single-post__cta-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }

/* Reszponzív */
@media (max-width: 960px) {
  .mb-blog-featured { grid-template-columns: 1fr; }
  .mb-blog-featured__img-wrap { min-height: 240px; }
  .mb-blog-featured__body { padding: 24px; }
  .mb-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-single-post__layout { grid-template-columns: 1fr; }
  .mb-single-post__sidebar { position: static; }
}
@media (max-width: 600px) {
  .mb-blog-grid { grid-template-columns: 1fr; }
  .mb-single-post__hero-img { max-height: 260px; border-radius: var(--radius-md); }
}
.mb-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.mb-404__inner { text-align: center; max-width: 480px; }
.mb-404__code  { font-family: var(--font-display); font-size: 120px; font-weight: 300; color: var(--sand); line-height: 1; margin-bottom: 16px; }
.mb-404__title { font-size: 28px; margin-bottom: 12px; }
.mb-404__text  { font-size: 15px; color: var(--brown); margin-bottom: 28px; }

/* Pagination */
.page-numbers { display: flex; gap: 8px; justify-content: center; padding: 32px 0; list-style: none; }
.page-numbers li a,
.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand);
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  transition: all var(--transition);
}
.page-numbers .current,
.page-numbers li a:hover { background: var(--sage); color: #fff; border-color: var(--sage); }

/* ---- SCROLL REVEAL ANIMATIONS ---- */
/* Alapallapot: LATHATO. A JS csak azoknal az elemeknel kapcsolja be a
   rejtest (.reveal-hide), amik induláskor tenylegesen a nezeten kivul
   vannak — igy ha a JS nem/kesobb fut (bot, screenshot-eszkoz, lassu
   halozat), semmi nem marad tartosan lathatatlan. */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.reveal-hide { opacity: 0; transform: translateY(28px); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

.reveal-group .reveal-child {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-group.reveal-hide .reveal-child { opacity: 0; transform: translateY(20px); }
.reveal-group .reveal-child:nth-child(1) { transition-delay: 0ms; }
.reveal-group .reveal-child:nth-child(2) { transition-delay: 80ms; }
.reveal-group .reveal-child:nth-child(3) { transition-delay: 160ms; }
.reveal-group .reveal-child:nth-child(4) { transition-delay: 240ms; }
.reveal-group .reveal-child:nth-child(5) { transition-delay: 320ms; }

/* pageIn animacio eltavolitva: body-szintu opacity:0 kezdoallapot minden
   oldalbetoltest 0.4s-mal keslelteti — Core Web Vitals (LCP) anti-minta */

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .mb-container { padding-inline: 24px; }
  .mb-cat-nav__grid { grid-template-columns: repeat(2, 1fr); }
  .mb-trust-section__grid { grid-template-columns: repeat(3, 1fr); }
  .mb-footer__grid { grid-template-columns: 1fr 1fr; }
  .mb-product-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-editorial__inner { grid-template-columns: 1fr; gap: 32px; }
  .mb-editorial__img, .mb-editorial__img-placeholder { aspect-ratio: 16/9; }
  .mb-cart-layout { grid-template-columns: 1fr; }
  .mb-cart-summary { position: static; margin-top: 8px; }
  .mb-checkout-steps__label { display: none; }
  .mb-checkout-steps__item.is-active .mb-checkout-steps__label { display: inline; }
  .mb-cart-item { grid-template-columns: 80px 1fr; gap: 14px; padding: 14px; }
  .mb-cart-item__img { width: 80px; height: 80px; }
  .mb-cart-item__subtotal { font-size: 17px; }
  .mb-cart-crosssells .mb-product-grid,
  .mb-cart-crosssells ul.products { grid-template-columns: repeat(2, 1fr); }
  .mb-checkout-wrapper { grid-template-columns: 1fr; }
  .mb-single-product__layout { grid-template-columns: 1fr; }
  .mb-product-info { position: static; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .mb-container { padding-inline: 16px; }
  .mb-header__nav { display: none; }
  .mb-hamburger { display: flex; }
  .mb-hero { min-height: auto; padding: 72px 0 56px; }
  .mb-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .mb-hero__image { order: -1; }
  .mb-hero__image-frame { max-width: 340px; margin-inline: auto; aspect-ratio: 1/1; }
  .mb-hero__badge--top { left: -8px; }
  .mb-hero__badge--bottom { right: -8px; }
  .mb-stats-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .mb-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-cat-nav__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mb-konfig-cta__inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .mb-reviews__grid { grid-template-columns: 1fr; }
  .mb-trust-section__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .mb-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .mb-footer__bottom { flex-direction: column; text-align: center; }
  .mb-size-guide__grid, .mb-size-guide__grid--2col { grid-template-columns: repeat(2, 1fr); }
  .mb-konfig-cta__inner { flex-direction: column; text-align: center; }
  .mb-crossell-konfig__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .mb-crossell-konfig__icon { margin: 0 auto; }
  .mb-crossell-konfig__features { justify-content: center; }
  .mb-crossell-konfig__desc { max-width: 100%; }
  .mb-crossell-konfig__cta { margin: 0 auto; }
  .mb-post-grid { grid-template-columns: 1fr; }
  .mb-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mb-checkout-wrapper { padding-inline: 16px; }
  .mb-blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .mb-elallas__card-head { padding: 18px 20px 16px; }
  .mb-elallas__card-body { padding: 28px 20px 36px; }
  .mb-elallas__step-item { min-width: 60px; }
  .mb-elallas__step-label { font-size: 9px; }
  .mb-elallas__field-row { grid-template-columns: 1fr; }
  .mb-elallas__order-meta { align-items: flex-start; }
  .mb-elallas__actions { flex-direction: column-reverse; align-items: stretch; }
  .mb-elallas__btn { width: 100%; min-width: unset; justify-content: center; }
}

/* =============================================================
   ONLINE ELÁLLÁSI NYILATKOZAT FORM
   ============================================================= */

/* Elállás oldalwrapper — teljes szélességű, középre igazítja a kártyát */
.mb-elallas-page-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 0 80px;
}
.mb-elallas-page-wrap .mb-elallas { width: 100%; }

/* Külső konténer */
.mb-elallas { padding: 0 0 80px; }

/* ---- KÁRTYA ---- */
.mb-elallas__card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 48px rgba(44,35,24,.11);
  overflow: hidden;
}

/* --- Kártya fejléc: lépésjelző --- */
.mb-elallas__card-head {
  background: var(--cream);
  padding: 22px 40px 20px;
  border-bottom: 1px solid rgba(44,35,24,.07);
}
.mb-elallas__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.mb-elallas__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}
.mb-elallas__step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #ddd9d1;
  background: #fff;
  color: #bbb;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, color .25s, box-shadow .25s;
}
.mb-elallas__step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #bbb;
  text-align: center;
  transition: color .25s;
  white-space: nowrap;
}
.mb-elallas__step-line {
  flex: 1;
  height: 1px;
  background: #ddd9d1;
  margin-top: 15px;
  min-width: 20px;
  max-width: 64px;
  transition: background .3s;
}
/* Aktív lépés */
.mb-elallas__step-item.is-active .mb-elallas__step-dot {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
  box-shadow: 0 2px 14px rgba(74,107,77,.3);
}
.mb-elallas__step-item.is-active .mb-elallas__step-label { color: var(--sage-dark); }
/* Kész lépés */
.mb-elallas__step-item.is-done .mb-elallas__step-dot {
  background: var(--sage-light);
  border-color: var(--sage);
  color: var(--sage-dark);
  font-size: 13px;
}
.mb-elallas__step-item.is-done .mb-elallas__step-label { color: var(--sage); }
.mb-elallas__step-line.is-done { background: var(--sage); }

/* --- Kártya törzs --- */
.mb-elallas__card-body { padding: 40px 44px 48px; }

/* Lépés cím + leírás */
.mb-elallas__pane-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -.01em;
  margin: 0 0 10px;
}
.mb-elallas__pane-desc {
  font-size: 14px;
  color: var(--brown);
  line-height: 1.75;
  margin: 0 0 32px;
}

/* ---- MEZŐK ---- */
.mb-elallas__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mb-elallas__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.mb-elallas__field label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.mb-elallas__field abbr { color: var(--sage-dark); text-decoration: none; }
.mb-elallas__optional   { font-weight: 400; color: var(--muted); font-size: 11px; text-transform: none; letter-spacing: 0; }

.mb-elallas__field input[type="text"],
.mb-elallas__field input[type="email"],
.mb-elallas__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd9d1;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--heading);
  background: var(--cream);
  transition: border-color .18s, box-shadow .18s, background .18s;
  box-sizing: border-box;
}
.mb-elallas__field input[type="text"]:focus,
.mb-elallas__field input[type="email"]:focus,
.mb-elallas__field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 3px rgba(74,107,77,.12);
}
.mb-elallas__field-note { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---- GOMBOK ---- */
.mb-elallas__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: var(--sage-dark);
  color: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  min-width: 220px;
}
.mb-elallas__btn:hover    { background: var(--dark); box-shadow: 0 4px 20px rgba(44,35,24,.18); }
.mb-elallas__btn:active   { transform: scale(.98); }
.mb-elallas__btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.mb-elallas__btn--ghost {
  background: transparent;
  color: var(--sage-dark);
  border-color: currentColor;
  min-width: auto;
  padding: 11px 22px;
}
.mb-elallas__btn--ghost:hover { background: var(--sage-light); color: var(--heading); box-shadow: none; }
.mb-elallas__btn--submit { min-width: 260px; }

/* Spinner */
.mb-elallas__btn-spin {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: mb-el-spin .65s linear infinite;
}
.mb-elallas__btn--ghost .mb-elallas__btn-spin {
  border-color: rgba(74,107,77,.2);
  border-top-color: var(--sage-dark);
}
@keyframes mb-el-spin { to { transform: rotate(360deg); } }

/* Gombok sor */
.mb-elallas__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ---- ÜZENETEK ---- */
.mb-elallas__msg {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 16px;
}
.mb-elallas__msg--error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.mb-elallas__msg--warn  { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* ---- RENDELÉS ÖSSZEFOGLALÓ (step 2 teteje) ---- */
.mb-elallas__order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.mb-elallas__order-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 4px;
}
.mb-elallas__order-number {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--heading);
  margin: 0;
}
.mb-elallas__order-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 13px;
  color: var(--brown);
  text-align: right;
}
.mb-elallas__deadline-warn {
  font-size: 11px;
  font-weight: 600;
  color: #92400e;
  background: #fffbeb;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ---- SZEKCIÓK ---- */
.mb-elallas__section { margin-bottom: 28px; }
.mb-elallas__section-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--heading);
  margin: 0 0 6px;
}
.mb-elallas__hint { font-size: 13px; color: var(--muted); margin: 0 0 14px; }

/* ---- TÉTEL KÁRTYÁK ---- */
.mb-elallas__items { display: flex; flex-direction: column; gap: 8px; }

.mb-elallas__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid #e4e0d8;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--cream);
  transition: border-color .18s, background .18s;
  user-select: none;
}
.mb-elallas__item:hover { border-color: var(--sage); background: var(--sage-light); }
.mb-elallas__item-checkbox { position: absolute; opacity: 0; width: 0; height: 0; }

.mb-elallas__item:has(.mb-elallas__item-checkbox:checked) {
  border-color: var(--sage-dark);
  background: var(--sage-light);
}

/* Custom checkbox */
.mb-elallas__item-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid #c8c3ba;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
}
.mb-elallas__item:has(.mb-elallas__item-checkbox:checked) .mb-elallas__item-check {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}
.mb-elallas__item:has(.mb-elallas__item-checkbox:checked) .mb-elallas__item-check::after {
  content: '';
  display: block;
  width: 5px; height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}
.mb-elallas__item-img {
  width: 54px; height: 54px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: #e8e4dc;
}
.mb-elallas__item-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.mb-elallas__item-name { font-weight: 600; font-size: 14px; color: var(--heading); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mb-elallas__item-qty  { font-size: 12.5px; color: var(--brown); }

/* ---- ELVÁLASZTÓ ---- */
.mb-elallas__divider { border: none; border-top: 1px solid #e8e4dc; margin: 28px 0; }

/* ---- NYILATKOZAT SZÖVEG ---- */
.mb-elallas__declaration-text {
  background: var(--cream);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 20px;
  font-size: 13.5px;
  font-style: italic;
  color: var(--brown);
  line-height: 1.72;
  margin: 0;
}
.mb-elallas__declaration-text strong {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--sage-dark);
  margin-bottom: 6px;
}
.mb-elallas__declaration-text p { margin: 0; }

/* ---- SIKERES BEKÜLDÉS ---- */
.mb-elallas__success {
  text-align: center;
  padding: 60px 32px;
}
.mb-elallas__success-icon {
  width: 68px; height: 68px;
  margin: 0 auto 28px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
}
.mb-elallas__success-icon svg { width: 32px; height: 32px; stroke-width: 2.5; }
.mb-elallas__success-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -.01em;
  margin: 0 0 14px;
}
.mb-elallas__success-ref {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--sage-dark);
  background: var(--sage-light);
  border-radius: var(--radius-pill);
  padding: 6px 22px;
  margin: 0 0 28px;
}
.mb-elallas__success-note {
  font-size: 14px;
  color: var(--brown);
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 10px;
}

/* =============================================================
   JOGI OLDALAK
   ============================================================= */

.mb-legal-wrapper {
  background: var(--cream);
  padding-bottom: 80px;
}

/* Hero */
.mb-legal__hero {
  background: var(--linen);
  border-bottom: 1px solid var(--sand);
  padding: 40px 0 32px;
}
.mb-legal__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.mb-legal__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.mb-legal__breadcrumb a:hover { color: var(--sage-dark); }
.mb-legal__hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 10px;
  line-height: 1.2;
}
.mb-legal__hero-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* Layout */
.mb-legal__layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  padding-top: 48px;
  align-items: start;
}

/* Tartalom tipográfia */
.mb-legal__content {
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
}
.mb-legal__content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading);
  margin: 44px 0 14px;
  padding-top: 44px;
  border-top: 1px solid var(--sand);
  scroll-margin-top: 100px;
}
.mb-legal__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.mb-legal__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin: 28px 0 10px;
}
.mb-legal__content p {
  margin-bottom: 14px;
}
/* Unordered list — pipa ikon */
.mb-legal__content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.mb-legal__content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.mb-legal__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23EBF2EC'/%3E%3Cpath d='M5 9.5l2.5 2.5 5-5' stroke='%236B8F6E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-repeat: no-repeat;
}

/* Ordered list — sorszámozott kör */
.mb-legal__content ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
  counter-reset: legal-ol;
}
.mb-legal__content ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
  line-height: 1.6;
  counter-increment: legal-ol;
}
.mb-legal__content ol li::before {
  content: counter(legal-ol);
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
.mb-legal__content strong { color: var(--heading); font-weight: 600; }
.mb-legal__content a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mb-legal__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.mb-legal__content th,
.mb-legal__content td {
  padding: 10px 14px;
  border: 1px solid var(--sand);
  text-align: left;
}
.mb-legal__content th {
  background: var(--linen);
  font-weight: 600;
  color: var(--heading);
}

/* Sidebar TOC */
.mb-legal__sidebar { position: sticky; top: 100px; }
.mb-legal__toc {
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.mb-legal__toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.mb-legal__toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: toc-counter;
}
.mb-legal__toc-list li { counter-increment: toc-counter; }
.mb-legal__toc-list a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  line-height: 1.4;
  transition: background .15s, color .15s;
}
.mb-legal__toc-list a::before {
  content: counter(toc-counter);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--taupe);
  min-width: 16px;
  flex-shrink: 0;
}
.mb-legal__toc-list a:hover {
  background: var(--linen);
  color: var(--sage-dark);
  text-decoration: none;
}
.mb-legal__toc-list a.is-active {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 600;
}

/* Aktív szekció JS-sel */
@media (max-width: 860px) {
  .mb-legal__layout { grid-template-columns: 1fr; }
  .mb-legal__sidebar { position: static; }
  .mb-legal__toc { display: none; } /* mobilon elrejtjük */
}

/* =============================================================
   RÓLUNK OLDAL
   ============================================================= */

.mb-rolunk-wrapper {
  background: var(--cream);
  padding-bottom: 80px;
}

/* Hero */
.mb-rolunk__hero {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--linen) 60%, var(--cream) 100%);
  border-bottom: 1px solid var(--sand);
  padding: 64px 0 56px;
  overflow: hidden;
}
.mb-rolunk__hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mb-rolunk__hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--heading);
  margin: 8px 0 20px;
  line-height: 1.15;
}
.mb-rolunk__hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.mb-rolunk__hero-lead a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mb-rolunk__hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mb-rolunk__hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44,35,24,.12);
  aspect-ratio: 1 / 1;
  max-width: 460px;
  justify-self: center;
}
.mb-rolunk__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Történet */
.mb-rolunk__story {
  padding: 72px 0 64px;
}
.mb-rolunk__story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.mb-rolunk__story-block {
  position: relative;
  padding-top: 20px;
  border-top: 2px solid var(--sand);
}
.mb-rolunk__story-block p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 12px;
}
.mb-rolunk__story-num {
  position: absolute;
  top: -18px;
  left: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  user-select: none;
}

/* Értékek */
.mb-rolunk__values {
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 56px 0;
}
.mb-rolunk__values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mb-rolunk__value-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--linen);
}
.mb-rolunk__value-icon {
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mb-rolunk__value-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
}
.mb-rolunk__value-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Termékkategóriák */
.mb-rolunk__cats {
  padding: 64px 0 0;
}
.mb-rolunk__cats-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 36px;
}
.mb-rolunk__cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mb-rolunk__cat-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.mb-rolunk__cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,35,24,.1);
  border-color: var(--taupe);
  text-decoration: none;
}
.mb-rolunk__cat-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--linen);
}
.mb-rolunk__cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.mb-rolunk__cat-card:hover .mb-rolunk__cat-img-wrap img {
  transform: scale(1.04);
}
.mb-rolunk__cat-img-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
}
.mb-rolunk__cat-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 8px;
}
.mb-rolunk__cat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
}
.mb-rolunk__cat-arrow {
  color: var(--terra);
  flex-shrink: 0;
}

/* Reszponzív */
@media (max-width: 1024px) {
  .mb-rolunk__values-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-rolunk__cats-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .mb-rolunk__hero-inner  { grid-template-columns: 1fr; gap: 36px; }
  .mb-rolunk__hero-image  { max-width: 100%; order: -1; aspect-ratio: 16/9; }
  .mb-rolunk__story-grid  { grid-template-columns: 1fr; gap: 32px; }
  .mb-rolunk__hero        { padding: 40px 0 36px; }
}
@media (max-width: 540px) {
  .mb-rolunk__values-grid { grid-template-columns: 1fr; }
  .mb-rolunk__cats-grid   { grid-template-columns: 1fr; }
}

/* =============================================================
   END RÓLUNK OLDAL
   ============================================================= */

/* =============================================================
   KAPCSOLATI OLDAL
   ============================================================= */

.mb-contact-wrapper {
  background: var(--cream);
  padding-bottom: 80px;
}

/* Hero */
.mb-contact__hero {
  background: linear-gradient(135deg, var(--linen) 0%, var(--warm-white) 100%);
  border-bottom: 1px solid var(--sand);
  padding: 56px 0 48px;
  text-align: center;
}
.mb-contact__hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--heading);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.mb-contact__hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Kártyák rács */
.mb-contact__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.mb-contact__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.mb-contact__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.mb-contact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 35, 24, 0.10);
  border-color: var(--taupe);
  text-decoration: none;
}
.mb-contact__card:hover::before { opacity: 1; }

/* Szín akcentek kártyánként */
.mb-contact__card--phone  .mb-contact__card-icon { color: var(--sage); background: var(--sage-light); }
.mb-contact__card--phone::before  { background: var(--sage); }
.mb-contact__card--email  .mb-contact__card-icon { color: var(--terra); background: var(--terra-light); }
.mb-contact__card--email::before  { background: var(--terra); }
.mb-contact__card--facebook .mb-contact__card-icon { color: #1877f2; background: #e8f0fd; }
.mb-contact__card--facebook::before { background: #1877f2; }
.mb-contact__card--instagram .mb-contact__card-icon { color: #c13584; background: #fceef6; }
.mb-contact__card--instagram::before { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.mb-contact__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.mb-contact__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mb-contact__card-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}
.mb-contact__card-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Üzemeltetői adatok */
.mb-contact__operator {
  margin-top: 56px;
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 640px;
}
.mb-contact__operator-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--linen);
}
.mb-contact__operator-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.mb-contact__operator-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.mb-contact__operator-row dt {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 200px;
  flex-shrink: 0;
}
.mb-contact__operator-row dd {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}
.mb-contact__operator-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Reszponzív */
@media (max-width: 900px) {
  .mb-contact__cards { grid-template-columns: repeat(2, 1fr); }
  .mb-contact__operator { padding: 24px; }
  .mb-contact__operator-row dt { min-width: 160px; }
}
@media (max-width: 540px) {
  .mb-contact__cards { grid-template-columns: 1fr; }
  .mb-contact__hero { padding: 36px 0 32px; }
  .mb-contact__operator-row { flex-direction: column; gap: 2px; }
  .mb-contact__operator-row dt { min-width: unset; }
}

/* =============================================================
   END KAPCSOLATI OLDAL
   ============================================================= */

@media (max-width: 480px) {
  .mb-hero__cta-group { flex-direction: column; align-items: stretch; }
  .mb-hero__cta-group .btn-primary, .mb-hero__cta-group .btn-secondary { text-align: center; justify-content: center; }
  .mb-cat-nav__grid { grid-template-columns: 1fr; }
  .mb-trust-section__grid { grid-template-columns: 1fr; }
  .mb-product-grid { grid-template-columns: 1fr; }
  .mb-sticky-cta { bottom: 0; }
}

/* ---- GYAKORI KÉRDÉSEK (FAQ) ---- */
.mb-faq {
  padding: 88px 0;
  background: var(--cream);
}
.mb-faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.mb-faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mb-faq__item {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.mb-faq__item[open] {
  border-color: var(--taupe);
  box-shadow: var(--shadow-sm);
}
.mb-faq__q {
  cursor: pointer;
  list-style: none;
  padding: 20px 52px 20px 22px;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--heading);
}
.mb-faq__q::-webkit-details-marker { display: none; }
.mb-faq__q::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  border-right: 2px solid var(--stone);
  border-bottom: 2px solid var(--stone);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.mb-faq__item[open] .mb-faq__q::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}
.mb-faq__q:hover { color: var(--terra); }
.mb-faq__q:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: -2px;
}
.mb-faq__a {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
}
.mb-faq__a p { margin: 0; }

@media (max-width: 782px) {
  .mb-faq { padding: 56px 0; }
  .mb-faq__q { padding: 17px 46px 17px 18px; font-size: .97rem; }
  .mb-faq__a { padding: 0 18px 17px; }
}
