/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme — MediRelaxa brand foundation
 * Author: MediRelaxa
 * Template: blocksy
 * Text Domain: blocksy
 * Version: 2.0.0
 */

/* ============================================================
   MEDIRELAXA BRAND FOUNDATION v2.0
   Bron: ~/Documents/Claude code/medirelaxa-brand-kit/
   Doel: brand-kleuren, typografie en UI-tokens op de hele site
   Niet aanraken zonder brand-kit check.
   ============================================================ */

/* ---------- BRAND TOKENS ---------- */
:root {
  /* Primair */
  --mr-chocolate:       #2A1F15;
  --mr-chocolate-soft:  #3A2E22;
  --mr-cream:           #F4EFE5;
  --mr-cream-warm:      #E8E2D2;
  --mr-gold:            #A88A5C;
  --mr-gold-soft:       #C2A879;

  /* Neutralen */
  --mr-stone:           #6E6258;
  --mr-border:          #DCD5C5;
  --mr-paper:           #FBF8F0;
  --mr-white:           #FFFFFF;

  /* Status */
  --mr-success:         #6B8E5A;
  --mr-warn:            #C28E3D;
  --mr-alert:           #B25555;
  --mr-info:            #4A6B8A;

  /* Typografie */
  --mr-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --mr-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing rhythm (8-pt grid) */
  --mr-space-xs:  8px;
  --mr-space-sm: 16px;
  --mr-space-md: 24px;
  --mr-space-lg: 48px;
  --mr-space-xl: 80px;
  --mr-space-xxl: 120px;

  /* Radii */
  --mr-radius-sm: 2px;
  --mr-radius:    4px;
  --mr-radius-lg: 8px;

  /* Letter-spacing tokens */
  --mr-ls-tight:  -0.015em;
  --mr-ls-normal: 0;
  --mr-ls-wide:   0.16em;
  --mr-ls-xwide:  0.24em;
  --mr-ls-xxwide: 0.32em;
  --mr-ls-uber:   0.32em;
}

/* ---------- BLOCKSY VARIABLE OVERRIDES ---------- */
:root,
body {
  --paletteColor1:   var(--mr-chocolate);     /* primary */
  --paletteColor2:   var(--mr-gold);          /* secondary / accent */
  --paletteColor3:   var(--mr-stone);         /* text muted */
  --paletteColor4:   var(--mr-chocolate);     /* headings */
  --paletteColor5:   var(--mr-border);        /* borders */
  --paletteColor6:   var(--mr-cream);         /* background-2 */
  --paletteColor7:   var(--mr-paper);         /* background-1 */
  --paletteColor8:   var(--mr-white);         /* surface */

  --theme-palette-color-1: var(--mr-chocolate);
  --theme-palette-color-2: var(--mr-gold);
  --theme-palette-color-3: var(--mr-stone);
  --theme-palette-color-4: var(--mr-chocolate);
  --theme-palette-color-5: var(--mr-border);
  --theme-palette-color-6: var(--mr-cream);
  --theme-palette-color-7: var(--mr-paper);
  --theme-palette-color-8: var(--mr-white);

  --theme-text-color:           var(--mr-chocolate);
  --theme-link-initial-color:   var(--mr-chocolate);
  --theme-link-hover-color:     var(--mr-gold);

  --theme-heading-1-color: var(--mr-chocolate);
  --theme-heading-2-color: var(--mr-chocolate);
  --theme-heading-3-color: var(--mr-chocolate);
  --theme-heading-4-color: var(--mr-chocolate);
  --theme-heading-5-color: var(--mr-chocolate);
  --theme-heading-6-color: var(--mr-chocolate);

  --theme-font-family:          var(--mr-font-body);
  --theme-headings-font-family: var(--mr-font-display);
}

/* ---------- BASE TYPOGRAPHY ---------- */
body {
  font-family: var(--mr-font-body);
  color: var(--mr-chocolate);
  background: var(--mr-cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .entry-title, .ct-product-single .product_title {
  font-family: var(--mr-font-display);
  font-weight: 500;
  color: var(--mr-chocolate);
  letter-spacing: var(--mr-ls-tight);
  line-height: 1.1;
}

h1, .entry-title { font-size: clamp(34px, 5.4vw, 62px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }

h4, h5, h6 {
  font-family: var(--mr-font-body);
  font-weight: 600;
  color: var(--mr-chocolate);
  line-height: 1.3;
}
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; text-transform: uppercase; letter-spacing: var(--mr-ls-xwide); }

p { color: var(--mr-chocolate); }
.muted, small, .ct-meta-element { color: var(--mr-stone); }

a {
  color: var(--mr-chocolate);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--mr-gold); }

em, i { color: var(--mr-gold); font-style: italic; }
h1 em, h2 em, .entry-title em { color: var(--mr-gold); font-style: italic; }

/* Eyebrow / label utility */
.mr-eyebrow {
  font-family: var(--mr-font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--mr-ls-uber);
  color: var(--mr-gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.mr-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--mr-gold);
}

/* ---------- BUTTONS (visual only, hooks intact) ---------- */
.wp-block-button__link,
.button,
button.alt,
input[type="submit"],
.ct-button,
.ct-header-cta,
.elementor-button,
a.button {
  background: var(--mr-chocolate);
  color: var(--mr-cream);
  border: 1px solid var(--mr-chocolate);
  border-radius: var(--mr-radius);
  padding: 14px 28px;
  font-family: var(--mr-font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--mr-ls-wide);
  line-height: 1.4;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.wp-block-button__link:hover,
.button:hover,
input[type="submit"]:hover,
.ct-button:hover,
a.button:hover {
  background: var(--mr-chocolate-soft);
  color: var(--mr-cream);
  opacity: 0.95;
}

/* Outline variant */
.wp-block-button.is-style-outline .wp-block-button__link,
.button.alt-outline,
.ct-button-secondary {
  background: transparent;
  color: var(--mr-chocolate);
  border: 1px solid var(--mr-chocolate);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--mr-chocolate);
  color: var(--mr-cream);
}

/* Critical: WooCommerce add-to-cart visual update — DO NOT touch JS hooks */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce .single_add_to_cart_button,
.woocommerce-page button.button,
.woocommerce #respond input#submit,
.woocommerce-cart .checkout-button,
.woocommerce-checkout #place_order {
  background: var(--mr-chocolate);
  color: var(--mr-cream) !important;
  border: 1px solid var(--mr-chocolate);
  border-radius: var(--mr-radius);
  padding: 14px 28px;
  font-family: var(--mr-font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--mr-ls-wide);
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce-checkout #place_order:hover {
  background: var(--mr-chocolate-soft);
  color: var(--mr-cream) !important;
}

/* Sale flash badge */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
  background: var(--mr-gold);
  color: var(--mr-cream);
  font-family: var(--mr-font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--mr-ls-xwide);
  border-radius: var(--mr-radius-sm);
  padding: 6px 12px;
  min-height: auto;
  min-width: auto;
  line-height: 1;
}

/* Prices */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--mr-font-display);
  font-weight: 500;
  color: var(--mr-chocolate);
  font-size: 22px;
}
.woocommerce ul.products li.product .price small,
.woocommerce div.product p.price small {
  font-family: var(--mr-font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--mr-stone);
  display: block;
}

/* Product card cleanup (visual only) */
.woocommerce ul.products li.product {
  background: var(--mr-white);
  border-radius: var(--mr-radius);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--mr-font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--mr-chocolate);
  padding: 0 24px;
}

/* ---------- FORMS (Fluent Forms — visual only, do not touch logic) ---------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select,
.fluentform input,
.fluentform textarea,
.fluentform select {
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  padding: 14px 18px;
  font-family: var(--mr-font-body);
  font-size: 14px;
  color: var(--mr-chocolate);
  transition: border-color 0.2s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--mr-chocolate);
}
label, .fluentform label {
  font-family: var(--mr-font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--mr-chocolate);
}

/* ---------- HEADER / TOPBAR / NAV (Blocksy classes) ---------- */
.ct-header {
  background: rgba(244, 239, 229, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mr-border);
}
.ct-header [data-row="top"] {
  background: var(--mr-chocolate);
  color: var(--mr-cream);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--mr-ls-xwide);
}
.ct-header [data-row="top"] a { color: var(--mr-gold); }

/* Menu items */
.ct-header .menu-item > a,
.ct-header [data-id^="menu"] a {
  font-family: var(--mr-font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--mr-ls-wide);
  color: var(--mr-chocolate);
}
.ct-header .menu-item > a:hover {
  color: var(--mr-chocolate);
  border-bottom: 1px solid var(--mr-chocolate);
}

/* ---------- FOOTER ---------- */
.ct-footer {
  background: var(--mr-chocolate);
  color: var(--mr-cream);
}
.ct-footer a {
  color: var(--mr-cream);
  opacity: 0.85;
}
.ct-footer a:hover {
  color: var(--mr-gold);
  opacity: 1;
}
.ct-footer h2, .ct-footer h3, .ct-footer h4, .ct-footer h5, .ct-footer h6 {
  color: var(--mr-gold);
  font-family: var(--mr-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--mr-ls-xwide);
}

/* ---------- LINKS IN CONTENT ---------- */
.entry-content a:not(.button):not(.wp-block-button__link) {
  color: var(--mr-chocolate);
  border-bottom: 1px solid var(--mr-gold);
  padding-bottom: 1px;
}
.entry-content a:not(.button):not(.wp-block-button__link):hover {
  color: var(--mr-gold);
}

/* ---------- BLOCKQUOTE ---------- */
blockquote, .wp-block-quote {
  font-family: var(--mr-font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.4;
  color: var(--mr-chocolate);
  border-left: 3px solid var(--mr-gold);
  padding-left: var(--mr-space-md);
  margin: var(--mr-space-lg) 0;
}

/* ---------- TABLES ---------- */
table {
  border-collapse: collapse;
  font-family: var(--mr-font-body);
}
th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--mr-ls-wide);
  font-size: 12px;
  color: var(--mr-stone);
  border-bottom: 1px solid var(--mr-border);
  padding: 14px 16px;
}
td {
  border-bottom: 1px solid var(--mr-border);
  padding: 14px 16px;
}

/* ---------- WOOCOMMERCE NOTICE / MESSAGES ---------- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--mr-paper);
  border-top: 3px solid var(--mr-gold);
  color: var(--mr-chocolate);
  font-family: var(--mr-font-body);
  font-size: 14px;
  border-radius: 0;
}
.woocommerce-message::before { color: var(--mr-gold); }

/* ---------- COOKIE BANNER LANGUAGE (typo fix in current site) ---------- */
/* "Daling" → no fix in CSS — needs WP-admin Settings update; flag for later */

/* ---------- HELPERS ---------- */
.mr-bg-chocolate { background: var(--mr-chocolate); color: var(--mr-cream); }
.mr-bg-cream     { background: var(--mr-cream);     color: var(--mr-chocolate); }
.mr-bg-paper     { background: var(--mr-paper);     color: var(--mr-chocolate); }
.mr-bg-gold      { background: var(--mr-gold);      color: var(--mr-cream); }

.mr-text-chocolate { color: var(--mr-chocolate); }
.mr-text-cream     { color: var(--mr-cream); }
.mr-text-gold      { color: var(--mr-gold); }
.mr-text-stone     { color: var(--mr-stone); }

.mr-display { font-family: var(--mr-font-display); font-weight: 500; }
.mr-italic-gold { font-family: var(--mr-font-display); font-style: italic; color: var(--mr-gold); }

/* Section base padding for full-width blocks */
.mr-section {
  padding: var(--mr-space-xxl) var(--mr-space-lg);
}

/* ============================================================
   GLOBAL BUTTON TEXT FIX
   Forceer cream tekst op alle chocolate-gevulde knoppen,
   ongeacht of het wp-block-button, gspb, fluentform of WC is.
   ============================================================ */
.wp-block-button__link,
.wp-block-button .wp-element-button,
a.gspb-btn,
.gspb-btn-wrapper > a,
.elementor-button,
.ct-button,
button.fluent_btn_submit,
.fluentform .ff-btn-submit {
  background: var(--mr-chocolate) !important;
  color: var(--mr-cream) !important;
  border: 1px solid var(--mr-chocolate) !important;
  border-radius: var(--mr-radius) !important;
  font-family: var(--mr-font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: var(--mr-ls-wide) !important;
  padding: 16px 30px !important;
  text-decoration: none !important;
  transition: opacity 0.2s, background 0.2s !important;
}
.wp-block-button__link:hover,
.wp-block-button .wp-element-button:hover,
a.gspb-btn:hover,
.elementor-button:hover,
.ct-button:hover,
button.fluent_btn_submit:hover {
  background: var(--mr-chocolate-soft) !important;
  color: var(--mr-cream) !important;
  opacity: 1 !important;
}

/* Outline / secondary button variant — match both parent.is-style and self.is-style */
.is-style-outline .wp-block-button__link,
.is-style-outline .wp-element-button,
.wp-block-button.is-style-outline a,
a.wp-block-button__link.is-style-outline,
a.is-style-outline {
  background: transparent !important;
  color: var(--mr-chocolate) !important;
  border: 1px solid var(--mr-chocolate) !important;
}
.is-style-outline .wp-block-button__link:hover,
a.wp-block-button__link.is-style-outline:hover,
a.is-style-outline:hover {
  background: var(--mr-chocolate) !important;
  color: var(--mr-cream) !important;
}

/* ============================================================
   FULL-WIDTH BREAKOUT FOR HOMEPAGE SECTIONS
   Blocksy wraps page content in `.entry-content.is-layout-constrained`
   which enforces a max-width. Our hero/logobar/usps/etc. moeten
   edge-to-edge. We forceren full-bleed met negative margins.
   ============================================================ */
.entry-content > .mr-hero,
.entry-content > .mr-logobar,
.entry-content > .mr-usps,
.entry-content > .mr-products,
.entry-content > .mr-showroom,
.entry-content > .mr-quote,
.entry-content > .mr-opleiding,
.entry-content > .mr-newsletter,
.entry-content > .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Wanneer parent al full-width is, geen extra breakout */
.ct-container-full > .entry-content > .mr-hero,
.ct-container-full > .entry-content > .mr-logobar,
.ct-container-full > .entry-content > .mr-usps,
.ct-container-full > .entry-content > .mr-products,
.ct-container-full > .entry-content > .mr-showroom,
.ct-container-full > .entry-content > .mr-quote,
.ct-container-full > .entry-content > .mr-opleiding,
.ct-container-full > .entry-content > .mr-newsletter {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* ============================================================
   HOMEPAGE SECTIONS — brand draft homepage.html mapping
   Targets: .mr-hero / .mr-logobar / .mr-usps / .mr-products /
            .mr-showroom / .mr-quote / .mr-opleiding / .mr-newsletter
   ============================================================ */

/* ----- HERO ----- */
.mr-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  min-height: 78vh;
  padding: 80px 48px;
  gap: 60px;
  background: var(--mr-cream);
}
.mr-hero__content { max-width: 540px; }
.mr-hero__eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.mr-hero__eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--mr-gold); display: inline-block;
}
.mr-hero h1, .mr-hero__title {
  font-family: var(--mr-font-display);
  font-weight: 500;
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: var(--mr-ls-tight);
  margin-bottom: 28px;
  color: var(--mr-chocolate);
}
.mr-hero h1 em, .mr-hero__title em {
  color: var(--mr-gold);
  font-style: italic;
}
.mr-hero__lead {
  font-size: 18px;
  color: var(--mr-stone);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 480px;
}
.mr-hero__ctas {
  display: flex; gap: 14px; margin-bottom: 32px; flex-wrap: wrap;
}
.mr-hero__trust {
  display: flex; gap: 32px; font-size: 12px; color: var(--mr-stone); flex-wrap: wrap;
}
.mr-hero__trust span::before {
  content: '\2713  '; color: var(--mr-gold); font-weight: 700;
}
.mr-hero__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--mr-radius);
  overflow: hidden;
  background: linear-gradient(135deg, #E8DDC9, #8A7456);
}
.mr-hero__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.mr-hero__badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--mr-cream); padding: 14px 18px;
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-stone); border-radius: var(--mr-radius-sm);
}
.mr-hero__badge strong {
  display: block; color: var(--mr-chocolate);
  font-family: var(--mr-font-display); font-weight: 500; font-style: italic;
  text-transform: none; letter-spacing: 0; font-size: 16px;
  margin-top: 4px;
}

/* ----- LOGO BAR ----- */
.mr-logobar {
  background: var(--mr-white);
  padding: 32px 48px;
  border-top: 1px solid var(--mr-border);
  border-bottom: 1px solid var(--mr-border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.mr-logobar__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-stone); white-space: nowrap;
}
.mr-logobar__marks {
  display: flex; gap: 48px; flex-wrap: wrap;
  font-family: var(--mr-font-display); font-style: italic;
  color: var(--mr-stone); font-size: 18px; opacity: 0.75;
  flex: 1; justify-content: space-around;
}

/* ----- SECTION HEAD (shared) ----- */
.mr-section-head {
  text-align: center; max-width: 720px; margin: 0 auto 64px;
}
.mr-section-head .mr-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); margin-bottom: 14px; display: block;
}
.mr-section-head .mr-eyebrow::before { display: none; }
.mr-section-head h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 48px; line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 16px; color: var(--mr-chocolate);
}
.mr-section-head p {
  font-size: 17px; color: var(--mr-stone);
}

/* ----- USPs ----- */
.mr-usps {
  background: var(--mr-white);
  border-top: 1px solid var(--mr-border);
  border-bottom: 1px solid var(--mr-border);
  padding: 80px 48px;
}
.mr-usp-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.mr-usp { padding-top: 24px; border-top: 1px solid var(--mr-chocolate); }
.mr-usp__num {
  font-family: var(--mr-font-display); font-style: italic;
  color: var(--mr-gold); font-size: 14px; margin-bottom: 14px;
}
.mr-usp h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 24px; margin-bottom: 12px; line-height: 1.25;
  color: var(--mr-chocolate);
}
.mr-usp p {
  font-size: 15px; color: var(--mr-stone); line-height: 1.7;
}

/* ----- PRODUCTS ----- */
.mr-products { background: var(--mr-cream); padding: 100px 48px; }
.mr-product-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.mr-product {
  background: var(--mr-white); border-radius: var(--mr-radius);
  overflow: hidden; transition: transform 0.3s; text-decoration: none;
  color: inherit; display: block;
}
.mr-product:hover { transform: translateY(-4px); }
.mr-product__img {
  aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, #E8DDC9, #B5A082); position: relative;
}
.mr-product__img img { width: 100%; height: 100%; object-fit: cover; }
.mr-product__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 6px 12px; font-size: 9px;
  text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide); font-weight: 500;
}
.mr-product__tag.is-gold { background: var(--mr-gold); }
.mr-product__body { padding: 24px 26px 28px; }
.mr-product__cat {
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); margin-bottom: 6px;
}
.mr-product h4 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; line-height: 1.2; margin-bottom: 8px;
  color: var(--mr-chocolate);
}
.mr-product__meta {
  font-size: 13px; color: var(--mr-stone); margin-bottom: 16px;
}
.mr-product__price-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 16px; border-top: 1px solid var(--mr-border);
}
.mr-product__price {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; color: var(--mr-chocolate);
}
.mr-product__price small {
  font-size: 11px; color: var(--mr-stone); display: block;
  font-family: var(--mr-font-body); font-weight: 400;
}
.mr-product__arrow { color: var(--mr-chocolate); font-size: 20px; }
.mr-all-products { text-align: center; margin-top: 56px; }
.mr-all-products a {
  color: var(--mr-chocolate); text-decoration: none;
  font-size: 13px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  border-bottom: 1px solid var(--mr-chocolate); padding-bottom: 4px;
}

/* ----- SHOWROOM ----- */
.mr-showroom {
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 0 !important; overflow: hidden;
}
.mr-showroom-grid {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.mr-showroom__img {
  background: linear-gradient(135deg, #5A4A3A, #2A1F15);
  position: relative; overflow: hidden;
}
.mr-showroom__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.mr-showroom__content {
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
}
.mr-showroom .mr-eyebrow {
  color: var(--mr-gold); margin-bottom: 20px;
}
.mr-showroom h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 44px; line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -0.01em; color: var(--mr-cream);
}
.mr-showroom p {
  font-size: 16px; line-height: 1.7; opacity: 0.85;
  margin-bottom: 32px; max-width: 460px; color: var(--mr-cream);
}
.mr-showroom .mr-btn,
.mr-showroom a.btn {
  background: var(--mr-cream); color: var(--mr-chocolate); align-self: flex-start;
  padding: 16px 30px; text-decoration: none; border-radius: var(--mr-radius);
  font-size: 13px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide); font-weight: 500;
  display: inline-block;
}
.mr-showroom__info {
  display: flex; gap: 40px; margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(244,239,229,0.18);
  font-size: 13px; opacity: 0.9; flex-wrap: wrap;
}
.mr-showroom__info strong {
  display: block; font-family: var(--mr-font-display); font-weight: 500;
  font-size: 18px; color: var(--mr-gold); font-style: italic;
}

/* ----- QUOTE / TESTIMONIAL ----- */
.mr-quote {
  padding: 120px 48px; text-align: center; background: var(--mr-cream);
}
.mr-quote blockquote {
  font-family: var(--mr-font-display); font-weight: 400; font-style: italic;
  font-size: 36px; line-height: 1.4; max-width: 880px; margin: 0 auto 32px;
  color: var(--mr-chocolate); border: 0; padding: 0;
}
.mr-quote__attribution {
  font-size: 12px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-stone);
}
.mr-quote__attribution strong {
  display: block; font-family: var(--mr-font-display); font-weight: 500;
  font-style: italic; color: var(--mr-chocolate);
  text-transform: none; letter-spacing: 0; font-size: 18px; margin-bottom: 4px;
}

/* ----- OPLEIDING ----- */
.mr-opleiding { background: var(--mr-white); padding: 100px 48px; }
.mr-opleiding-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.mr-opleiding__img {
  aspect-ratio: 5/4; overflow: hidden;
  background: linear-gradient(135deg, #C8B89C, #6E6258);
  border-radius: var(--mr-radius);
}
.mr-opleiding__img img { width: 100%; height: 100%; object-fit: cover; }
.mr-opleiding h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 44px; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.01em;
  color: var(--mr-chocolate);
}
.mr-opleiding p {
  font-size: 16px; color: var(--mr-stone); line-height: 1.7; margin-bottom: 18px;
}
.mr-opleiding ul {
  list-style: none; margin: 24px 0 32px; padding: 0;
}
.mr-opleiding li {
  padding: 10px 0; border-bottom: 1px solid var(--mr-border);
  font-size: 14px; display: flex; justify-content: space-between;
}
.mr-opleiding li span:first-child { color: var(--mr-stone); }
.mr-opleiding li span:last-child { font-weight: 500; }

/* ----- NEWSLETTER ----- */
.mr-newsletter {
  background: var(--mr-cream); padding: 100px 48px;
  text-align: center; border-top: 1px solid var(--mr-border);
}
.mr-newsletter__inner { max-width: 560px; margin: 0 auto; }
.mr-newsletter h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 36px; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.005em;
  color: var(--mr-chocolate);
}
.mr-newsletter p { color: var(--mr-stone); margin-bottom: 28px; font-size: 15px; }
.mr-newsletter form { display: flex; gap: 8px; flex-wrap: wrap; }
.mr-newsletter input[type="email"] {
  flex: 1; min-width: 240px; padding: 16px 20px;
  border: 1px solid var(--mr-border); background: var(--mr-white);
  border-radius: var(--mr-radius); font-family: inherit; font-size: 14px;
}
.mr-newsletter input[type="email"]:focus {
  outline: none; border-color: var(--mr-chocolate);
}
.mr-newsletter button {
  background: var(--mr-chocolate); color: var(--mr-cream); border: none;
  padding: 0 28px; border-radius: var(--mr-radius);
  font-size: 12px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  font-weight: 500; cursor: pointer; font-family: inherit;
}
.mr-newsletter__legal {
  font-size: 11px; color: var(--mr-stone); margin-top: 16px;
}

/* ----- TOPBAR (above main header) ----- */
.mr-topbar {
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 10px 0; text-align: center;
  font-size: 11px; letter-spacing: var(--mr-ls-xxwide); text-transform: uppercase;
}
.mr-topbar a { color: var(--mr-gold); text-decoration: none; margin-left: 8px; }

/* ---------- HOMEPAGE RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .mr-hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 32px; }
  .mr-hero h1, .mr-hero__title { font-size: 48px; }
  .mr-section-head h2 { font-size: 36px; }
  .mr-usp-grid { grid-template-columns: 1fr; gap: 32px; }
  .mr-product-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-showroom-grid { grid-template-columns: 1fr; }
  .mr-showroom__content { padding: 60px 32px; }
  .mr-opleiding-grid { grid-template-columns: 1fr; gap: 40px; }
  .mr-quote blockquote { font-size: 26px; }
}
@media (max-width: 640px) {
  .mr-hero { padding: 40px 20px; }
  .mr-hero h1, .mr-hero__title { font-size: 36px; }
  .mr-hero__ctas { flex-direction: column; align-items: stretch; }
  .mr-hero__trust { gap: 16px; }
  .mr-product-grid { grid-template-columns: 1fr; }
  .mr-products, .mr-usps, .mr-opleiding, .mr-newsletter, .mr-quote { padding: 60px 20px; }
  .mr-logobar { padding: 24px 20px; gap: 20px; }
  .mr-logobar__marks { gap: 24px; font-size: 15px; }
  .mr-newsletter form { flex-direction: column; }
}

/* ---------- RESPONSIVE TWEAKS (foundation) ---------- */
@media (max-width: 768px) {
  .mr-section { padding: var(--mr-space-xl) var(--mr-space-md); }
  h1, .entry-title { font-size: 38px; }
  h2 { font-size: 28px; }
  blockquote, .wp-block-quote { font-size: 22px; }
}

/* ============================================================
   PDP — single product page
   Bron: ~/Documents/Claude code/medirelaxa-brandbook/examples/product-headspa-pro.html
   Wrappers worden gegenereerd door woocommerce/content-single-product.php
   ============================================================ */

/* Lift product out of constrained container */
.single-product .entry-content > .mr-pdp,
.single-product .product.mr-pdp {
  width: 100vw; max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--mr-cream);
  padding: 0 0 80px;
}

/* Breadcrumb */
.mr-pdp-breadcrumb { padding: 24px 48px 8px; }
.mr-pdp-breadcrumb .mr-breadcrumb,
.mr-pdp-breadcrumb .woocommerce-breadcrumb {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-stone); font-family: var(--mr-font-body);
}
.mr-pdp-breadcrumb a { color: var(--mr-stone); text-decoration: none; }
.mr-pdp-breadcrumb a:hover { color: var(--mr-chocolate); }
.mr-pdp-breadcrumb .sep { margin: 0 10px; color: var(--mr-border); }

/* Two-column grid */
.mr-pdp-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px;
  max-width: 1300px; margin: 0 auto; padding: 16px 48px 0;
}

/* ---- Gallery ---- */
.mr-pdp-gallery .woocommerce-product-gallery {
  width: 100% !important; float: none !important; margin: 0 !important;
}
.mr-pdp-gallery .woocommerce-product-gallery__image,
.mr-pdp-gallery .woocommerce-product-gallery__wrapper {
  border-radius: 4px; overflow: hidden;
}
.mr-pdp-gallery .woocommerce-product-gallery__image img {
  border-radius: 4px; background: var(--mr-cream-warm);
}
.mr-pdp-gallery .flex-control-thumbs {
  display: grid !important; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 12px; padding: 0; list-style: none;
}
.mr-pdp-gallery .flex-control-thumbs li { width: 100% !important; margin: 0 !important; float: none !important; }
.mr-pdp-gallery .flex-control-thumbs img {
  border-radius: 4px; border: 2px solid transparent;
  opacity: 0.7; transition: opacity .2s ease, border-color .2s ease;
  cursor: pointer; width: 100%; height: auto;
}
.mr-pdp-gallery .flex-control-thumbs img:hover,
.mr-pdp-gallery .flex-control-thumbs img.flex-active { opacity: 1; border-color: var(--mr-chocolate); }
.mr-pdp-gallery .onsale,
.mr-pdp-gallery .woocommerce-product-gallery .onsale {
  position: absolute; top: 20px; left: 20px;
  background: var(--mr-gold) !important; color: var(--mr-chocolate) !important;
  padding: 8px 14px; font-size: 10px; text-transform: uppercase;
  letter-spacing: var(--mr-ls-xxwide); font-weight: 600;
  border-radius: 0; border: none; min-height: 0; min-width: 0; line-height: 1;
}

/* ---- Info column ---- */
.mr-pdp-info { display: flex; flex-direction: column; }
.mr-pdp-cat {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); margin-bottom: 12px; font-weight: 500;
}
.mr-pdp-info .product_title,
.mr-pdp-info h1.entry-title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 44px; line-height: 1.05; letter-spacing: -0.01em;
  margin: 0 0 8px; color: var(--mr-chocolate);
}

/* Rating */
.mr-pdp-info .woocommerce-product-rating {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 28px; padding: 0 0 24px; border-bottom: 1px solid var(--mr-border);
}
.mr-pdp-info .star-rating { color: var(--mr-gold); }
.mr-pdp-info .star-rating::before { color: var(--mr-border); }
.mr-pdp-info .star-rating span::before { color: var(--mr-gold); }
.mr-pdp-info .woocommerce-review-link {
  font-size: 12px; color: var(--mr-stone); text-decoration: none;
}
.mr-pdp-info .woocommerce-review-link:hover { color: var(--mr-chocolate); }

/* Price */
.mr-pdp-info .price {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 38px; line-height: 1.1; color: var(--mr-chocolate);
  margin: 0 0 24px; padding: 0 0 24px; border-bottom: 1px solid var(--mr-border);
}
.mr-pdp-info .price ins { background: transparent; text-decoration: none; }
.mr-pdp-info .price del { color: var(--mr-stone); font-size: 22px; margin-right: 12px; }
.mr-pdp-info .price small,
.mr-pdp-info .price .woocommerce-Price-currencySymbol { font-weight: 500; }
.mr-pdp-info .price > small {
  display: block; font-family: var(--mr-font-body); font-size: 13px;
  color: var(--mr-stone); font-weight: 400; margin-top: 6px;
}

/* Excerpt */
.mr-pdp-info .woocommerce-product-details__short-description {
  font-family: var(--mr-font-body); font-size: 15px; line-height: 1.7;
  color: var(--mr-chocolate); margin: 0 0 28px;
}
.mr-pdp-info .woocommerce-product-details__short-description p { margin-bottom: 12px; }

/* Variations */
.mr-pdp-info .variations { width: 100%; margin: 0 0 24px; border: 0; }
.mr-pdp-info .variations th,
.mr-pdp-info .variations td { padding: 6px 0; vertical-align: middle; }
.mr-pdp-info .variations th {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-stone); font-weight: 500; text-align: left; width: 110px;
}
.mr-pdp-info .variations select {
  padding: 10px 14px; border: 1px solid var(--mr-border);
  background: var(--mr-white); border-radius: var(--mr-radius);
  font-family: inherit; font-size: 14px; color: var(--mr-chocolate);
}
.mr-pdp-info .reset_variations {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); text-decoration: none; margin-left: 12px;
}
.mr-pdp-info .single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 16px;
}

/* Cart row */
.mr-pdp-info form.cart {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin: 0 0 28px;
}
.mr-pdp-info form.cart .quantity {
  display: flex; align-items: center;
}
.mr-pdp-info form.cart .quantity input.qty {
  width: 72px; height: 56px; padding: 0 12px;
  border: 1px solid var(--mr-border); background: var(--mr-white);
  font-family: inherit; font-size: 15px; text-align: center;
  border-radius: var(--mr-radius); color: var(--mr-chocolate);
}
.mr-pdp-info form.cart .single_add_to_cart_button {
  flex: 1; min-width: 220px;
  background: var(--mr-chocolate) !important; color: var(--mr-cream) !important;
  padding: 18px 32px; border-radius: var(--mr-radius);
  font-size: 13px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  font-weight: 500; border: 1px solid var(--mr-chocolate);
  font-family: inherit; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.mr-pdp-info form.cart .single_add_to_cart_button:hover {
  background: var(--mr-chocolate-soft) !important; border-color: var(--mr-chocolate-soft);
}
.mr-pdp-info form.cart .single_add_to_cart_button.disabled,
.mr-pdp-info form.cart .single_add_to_cart_button:disabled {
  opacity: 0.5; cursor: not-allowed;
}

/* Stock + meta */
.mr-pdp-info .stock {
  font-size: 12px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-success); margin: 0 0 16px;
}
.mr-pdp-info .stock.out-of-stock { color: var(--mr-alert); }
.mr-pdp-info .product_meta {
  font-size: 12px; color: var(--mr-stone); padding-top: 20px;
  border-top: 1px solid var(--mr-border); margin-top: 20px;
}
.mr-pdp-info .product_meta > span { display: block; margin-bottom: 4px; }
.mr-pdp-info .product_meta a { color: var(--mr-chocolate); text-decoration: none; }
.mr-pdp-info .product_meta a:hover { text-decoration: underline; }

/* Trust badges */
.mr-pdp-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 8px 0 0;
}
.mr-pdp-trust__item {
  background: var(--mr-white); border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius); padding: 18px 16px; text-align: center;
}
.mr-pdp-trust__ico {
  width: 32px; height: 32px; border: 1.5px solid var(--mr-chocolate);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px; font-size: 14px; color: var(--mr-chocolate);
}
.mr-pdp-trust__item strong { display: block; font-size: 12px; margin-bottom: 2px; color: var(--mr-chocolate); }
.mr-pdp-trust__item p { font-size: 11px; color: var(--mr-stone); line-height: 1.4; margin: 0; }

/* ---- Tabs section (description / specs / reviews) ---- */
.mr-pdp .woocommerce-tabs {
  background: var(--mr-white); padding: 80px 48px; margin-top: 80px;
}
.mr-pdp .woocommerce-tabs ul.tabs {
  max-width: 1200px; margin: 0 auto 32px; padding: 0;
  list-style: none; display: flex; gap: 32px; border-bottom: 1px solid var(--mr-border);
}
.mr-pdp .woocommerce-tabs ul.tabs::before,
.mr-pdp .woocommerce-tabs ul.tabs::after { display: none; }
.mr-pdp .woocommerce-tabs ul.tabs li {
  background: none !important; border: none !important;
  margin: 0 !important; padding: 0 !important; border-radius: 0 !important;
}
.mr-pdp .woocommerce-tabs ul.tabs li a {
  display: block; padding: 16px 0;
  font-size: 12px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-stone); text-decoration: none; font-weight: 500;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.mr-pdp .woocommerce-tabs ul.tabs li.active a,
.mr-pdp .woocommerce-tabs ul.tabs li a:hover {
  color: var(--mr-chocolate); border-bottom-color: var(--mr-chocolate);
}
.mr-pdp .woocommerce-tabs .panel {
  max-width: 1200px; margin: 0 auto !important;
  font-family: var(--mr-font-body); font-size: 15px; line-height: 1.7;
  color: var(--mr-chocolate);
}
.mr-pdp .woocommerce-tabs .panel h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 32px; line-height: 1.15; margin-bottom: 24px;
}
.mr-pdp .woocommerce-tabs .panel p { margin-bottom: 14px; }
.mr-pdp .woocommerce-tabs .shop_attributes {
  width: 100%; border-collapse: collapse;
}
.mr-pdp .woocommerce-tabs .shop_attributes tr { border-bottom: 1px solid var(--mr-border); }
.mr-pdp .woocommerce-tabs .shop_attributes th,
.mr-pdp .woocommerce-tabs .shop_attributes td {
  padding: 14px 0; font-size: 14px; vertical-align: top;
  background: transparent !important; border: none;
}
.mr-pdp .woocommerce-tabs .shop_attributes th {
  color: var(--mr-stone); width: 40%; font-weight: 400;
}
.mr-pdp .woocommerce-tabs .shop_attributes td { font-weight: 500; color: var(--mr-chocolate); }

/* Reviews tab */
.mr-pdp #reviews .commentlist { list-style: none; padding: 0; margin: 0 0 32px; }
.mr-pdp #reviews .commentlist li {
  padding: 24px 0; border-bottom: 1px solid var(--mr-border);
}
.mr-pdp #reviews .comment_container { display: flex; gap: 16px; }
.mr-pdp #reviews .avatar {
  width: 48px; height: 48px; border-radius: 50%;
}
.mr-pdp #reviews .meta strong { font-weight: 500; color: var(--mr-chocolate); }
.mr-pdp #reviews .meta .woocommerce-review__published-date {
  display: block; font-size: 12px; color: var(--mr-stone); margin-top: 2px;
}
.mr-pdp #review_form_wrapper {
  background: var(--mr-cream); padding: 32px; border-radius: var(--mr-radius);
}
.mr-pdp #review_form_wrapper h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; margin-bottom: 16px;
}
.mr-pdp #review_form_wrapper textarea,
.mr-pdp #review_form_wrapper input[type="text"],
.mr-pdp #review_form_wrapper input[type="email"] {
  width: 100%; padding: 12px 14px; border: 1px solid var(--mr-border);
  background: var(--mr-white); border-radius: var(--mr-radius);
  font-family: inherit; font-size: 14px; color: var(--mr-chocolate);
  margin-top: 4px;
}

/* ---- Related products ---- */
.mr-pdp .related,
.mr-pdp .upsells {
  padding: 80px 48px; background: var(--mr-cream); margin-top: 0;
}
.mr-pdp .related > h2,
.mr-pdp .upsells > h2 {
  text-align: center; max-width: 600px; margin: 0 auto 48px;
  font-family: var(--mr-font-display); font-weight: 500; font-size: 36px;
  color: var(--mr-chocolate);
}
.mr-pdp .related ul.products,
.mr-pdp .upsells ul.products {
  max-width: 1200px; margin: 0 auto; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  list-style: none;
}
.mr-pdp .related ul.products li.product,
.mr-pdp .upsells ul.products li.product {
  width: 100% !important; margin: 0 !important; float: none !important;
  background: var(--mr-white); border-radius: var(--mr-radius);
  overflow: hidden; padding: 0 !important;
}
.mr-pdp .related ul.products li.product > a,
.mr-pdp .upsells ul.products li.product > a {
  display: block; text-decoration: none; color: inherit;
}
.mr-pdp .related ul.products li.product img,
.mr-pdp .upsells ul.products li.product img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  margin: 0 !important; border-radius: 0;
}
.mr-pdp .related ul.products li.product .woocommerce-loop-product__title,
.mr-pdp .upsells ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 18px; padding: 20px 22px 6px; color: var(--mr-chocolate);
}
.mr-pdp .related ul.products li.product .price,
.mr-pdp .upsells ul.products li.product .price {
  padding: 0 22px 22px; font-family: var(--mr-font-body);
  font-size: 14px; color: var(--mr-stone);
}
.mr-pdp .related ul.products li.product .price .amount,
.mr-pdp .upsells ul.products li.product .price .amount {
  color: var(--mr-chocolate); font-weight: 500;
}
.mr-pdp .related ul.products li.product .button,
.mr-pdp .upsells ul.products li.product .button {
  display: none; /* hide loop add-to-cart on related, encourage click-through */
}

/* ---- PDP responsive ---- */
@media (max-width: 1024px) {
  .mr-pdp-grid { grid-template-columns: 1fr; gap: 40px; padding: 16px 32px 0; }
  .mr-pdp-info .product_title,
  .mr-pdp-info h1.entry-title { font-size: 36px; }
  .mr-pdp-info .price { font-size: 32px; }
  .mr-pdp .woocommerce-tabs,
  .mr-pdp .related,
  .mr-pdp .upsells { padding: 60px 32px; }
  .mr-pdp .related ul.products,
  .mr-pdp .upsells ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .mr-pdp-breadcrumb { padding: 16px 20px 4px; }
  .mr-pdp-grid { padding: 8px 20px 0; gap: 32px; }
  .mr-pdp-info .product_title,
  .mr-pdp-info h1.entry-title { font-size: 30px; }
  .mr-pdp-info .price { font-size: 28px; }
  .mr-pdp-info form.cart { flex-direction: column; align-items: stretch; }
  .mr-pdp-info form.cart .quantity input.qty { width: 100%; }
  .mr-pdp-trust { grid-template-columns: 1fr; }
  .mr-pdp .woocommerce-tabs ul.tabs { gap: 16px; overflow-x: auto; }
  .mr-pdp .woocommerce-tabs,
  .mr-pdp .related,
  .mr-pdp .upsells { padding: 40px 20px; }
  .mr-pdp .related ul.products,
  .mr-pdp .upsells ul.products { grid-template-columns: 1fr; }
}

/* ============================================================
   MEDIRELAXA BRAND TEMPLATES v3.0
   Body class .mr-brand-template — used on homepage + product pages
   Full reset of WP/Blocksy content wrappers, custom site chrome
   ============================================================ */

/* Reset WP layout wrappers — brand templates have their own structure */
body.mr-brand-template { margin: 0; padding: 0; background: var(--mr-cream); }
body.mr-brand-template #main,
body.mr-brand-template .site,
body.mr-brand-template .ct-main-styles,
body.mr-brand-template .ct-container,
body.mr-brand-template .entry-content,
body.mr-brand-template main#main { max-width: none; padding: 0; margin: 0; }
body.mr-brand-template .ct-breadcrumbs,
body.mr-brand-template .ct-page-header,
body.mr-brand-template .ct-floating-bar { display: none !important; }

.mr-main { display: block; }

/* ---------- SITE HEADER ---------- */
.mr-site-header { background: var(--mr-cream); }
.mr-topbar {
  background: var(--mr-chocolate); color: var(--mr-cream);
  text-align: center; padding: 10px 16px; font-size: 11px;
  text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
}
.mr-topbar a { color: var(--mr-gold); text-decoration: none; margin-left: 8px; }
.mr-topbar a:hover { color: var(--mr-gold-soft); }

.mr-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 48px;
  border-bottom: 1px solid var(--mr-border);
  background: var(--mr-cream);
}
.mr-nav__burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.mr-nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--mr-chocolate); margin: 5px 0; transition: transform .2s; }
.mr-nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mr-nav__burger.is-active span:nth-child(2) { opacity: 0; }
.mr-nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mr-nav__logo { display: inline-flex; align-items: center; text-decoration: none; }
.mr-nav__logo-img { max-height: 56px; width: auto; }
.mr-nav__logo-text { font-family: var(--mr-font-display); font-size: 28px; font-weight: 500; color: var(--mr-chocolate); letter-spacing: -0.01em; }
.mr-nav__logo-medi { font-style: normal; }
.mr-nav__logo-relaxa { font-style: italic; color: var(--mr-gold); margin-left: 1px; }

.mr-nav__menu {
  display: flex; gap: 32px; justify-content: center;
  list-style: none; margin: 0; padding: 0;
}
.mr-nav__menu li { margin: 0; }
.mr-nav__menu a {
  color: var(--mr-chocolate); text-decoration: none;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  padding: 8px 0; border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.mr-nav__menu a:hover { border-bottom-color: var(--mr-chocolate); color: var(--mr-chocolate); }

.mr-nav__actions { display: flex; align-items: center; gap: 16px; }
.mr-nav__icon {
  position: relative;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--mr-chocolate); text-decoration: none;
  border-radius: 50%;
  transition: background .2s;
}
.mr-nav__icon:hover { background: var(--mr-cream-warm); color: var(--mr-chocolate); }
.mr-nav__cart-count {
  position: absolute; top: 4px; right: 2px;
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-radius: 999px; min-width: 18px; height: 18px;
  font-size: 10px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
  opacity: 0; transform: scale(0.8); transition: opacity .15s, transform .15s;
}
.mr-nav__cart-count.is-active { opacity: 1; transform: scale(1); }
.mr-nav__cta {
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 12px 22px; border-radius: var(--mr-radius);
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  font-weight: 500; text-decoration: none;
  border: 1px solid var(--mr-chocolate); transition: background .2s;
}
.mr-nav__cta:hover { background: var(--mr-chocolate-soft); color: var(--mr-cream); }

/* ---------- SITE FOOTER ---------- */
.mr-site-footer { background: var(--mr-chocolate); color: var(--mr-cream); margin-top: 0; }
.mr-footer__inner {
  max-width: 1280px; margin: 0 auto; padding: 72px 48px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px;
}
.mr-footer__logo { font-family: var(--mr-font-display); font-size: 30px; font-weight: 500; color: var(--mr-cream); margin-bottom: 16px; }
.mr-footer__tagline { font-size: 14px; line-height: 1.7; color: rgba(244, 239, 229, 0.78); margin-bottom: 20px; }
.mr-footer__addr { font-size: 13px; line-height: 1.7; color: rgba(244, 239, 229, 0.7); }
.mr-footer__col h4 {
  font-family: var(--mr-font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); margin: 0 0 18px;
}
.mr-footer__col ul { list-style: none; padding: 0; margin: 0; }
.mr-footer__col li { margin-bottom: 10px; }
.mr-footer__col a { color: rgba(244, 239, 229, 0.85); text-decoration: none; font-size: 14px; transition: color .2s; }
.mr-footer__col a:hover { color: var(--mr-gold); }
.mr-footer__contact li { font-size: 14px; color: rgba(244, 239, 229, 0.85); }
.mr-footer__bottom {
  border-top: 1px solid rgba(244, 239, 229, 0.12);
  max-width: 1280px; margin: 0 auto;
  padding: 24px 48px; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(244, 239, 229, 0.55); text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}
.mr-footer__legal { display: flex; gap: 24px; }
.mr-footer__legal a { color: rgba(244, 239, 229, 0.55); text-decoration: none; }
.mr-footer__legal a:hover { color: var(--mr-gold); }

/* ---------- BRAND BUTTONS ---------- */
.mr-btn {
  display: inline-block; padding: 16px 28px;
  font-family: var(--mr-font-body); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  border-radius: var(--mr-radius); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s;
  line-height: 1; text-align: center;
}
.mr-btn--primary { background: var(--mr-chocolate); color: var(--mr-cream); border-color: var(--mr-chocolate); }
.mr-btn--primary:hover { background: var(--mr-chocolate-soft); color: var(--mr-cream); }
.mr-btn--ghost { background: transparent; color: var(--mr-chocolate); border-color: var(--mr-chocolate); }
.mr-btn--ghost:hover { background: var(--mr-chocolate); color: var(--mr-cream); }
.mr-btn--cream { background: var(--mr-cream); color: var(--mr-chocolate); border-color: var(--mr-cream); }
.mr-btn--cream:hover { background: var(--mr-white); color: var(--mr-chocolate); }

/* ============================================================
   HERO V2 — overrides old .mr-hero where conflicting
   ============================================================ */
body.mr-brand-template .mr-hero {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px;
  padding: 88px 48px 96px; align-items: center;
  background: var(--mr-cream); width: 100%; max-width: none;
  margin: 0;
}
body.mr-brand-template .mr-hero__copy { max-width: 600px; }
body.mr-brand-template .mr-hero__eyebrow {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
body.mr-brand-template .mr-hero__eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--mr-gold);
}
body.mr-brand-template .mr-hero__title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(40px, 5.4vw, 72px); line-height: 1.02;
  letter-spacing: -0.015em; margin: 0 0 24px; color: var(--mr-chocolate);
}
body.mr-brand-template .mr-hero__title em { color: var(--mr-gold); font-style: italic; }
body.mr-brand-template .mr-hero__lede {
  font-size: 17px; line-height: 1.65; color: var(--mr-chocolate);
  margin: 0 0 32px; max-width: 540px;
}
body.mr-brand-template .mr-hero__ctas { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
body.mr-brand-template .mr-hero__trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: var(--mr-stone);
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}

body.mr-brand-template .mr-hero__visual { position: relative; }
body.mr-brand-template .mr-hero__image {
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  background-color: var(--mr-cream-warm);
  border-radius: 6px; position: relative; overflow: hidden;
}
body.mr-brand-template .mr-hero__badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 18px 22px; border-radius: var(--mr-radius);
  display: flex; flex-direction: column; gap: 2px;
  max-width: 280px;
}
body.mr-brand-template .mr-hero__badge small {
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600;
}
body.mr-brand-template .mr-hero__badge strong {
  font-family: var(--mr-font-display); font-size: 18px; font-weight: 500;
  color: var(--mr-cream); line-height: 1.2;
}
body.mr-brand-template .mr-hero__badge span { font-size: 13px; color: rgba(244, 239, 229, 0.7); }

/* ============================================================
   PDP V2 — fully custom template (.mr-pdp__*)
   ============================================================ */
body.single-product.mr-brand-template .mr-pdp { background: var(--mr-cream); padding: 0 0 80px; }

/* Breadcrumb */
.mr-pdp__breadcrumb { padding: 24px 48px 8px; font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide); color: var(--mr-stone); }
.mr-pdp__breadcrumb a { color: var(--mr-stone); text-decoration: none; }
.mr-pdp__breadcrumb a:hover { color: var(--mr-chocolate); }
.mr-pdp__breadcrumb .sep { margin: 0 10px; color: var(--mr-border); }
.mr-pdp__breadcrumb .current { color: var(--mr-chocolate); }

/* Grid */
.mr-pdp__grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px;
  max-width: 1300px; margin: 0 auto; padding: 16px 48px 0;
}

/* Gallery */
.mr-pdp__gallery { display: flex; flex-direction: column; gap: 12px; }
.mr-pdp__main {
  aspect-ratio: 1/1; background: var(--mr-cream-warm);
  border-radius: 6px; overflow: hidden; position: relative;
}
.mr-pdp__main-img,
.mr-pdp__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mr-pdp__badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--mr-gold); color: var(--mr-chocolate);
  padding: 8px 14px; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  border-radius: 2px; z-index: 2;
}
.mr-pdp__badge--new { background: var(--mr-chocolate); color: var(--mr-cream); }
.mr-pdp__thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.mr-pdp__thumb {
  aspect-ratio: 1/1; padding: 0; background: var(--mr-cream-warm);
  border: 2px solid transparent; border-radius: 4px;
  cursor: pointer; overflow: hidden;
  transition: border-color .15s, opacity .15s;
  opacity: 0.75;
}
.mr-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mr-pdp__thumb:hover,
.mr-pdp__thumb.is-active { border-color: var(--mr-chocolate); opacity: 1; }

/* Info column */
.mr-pdp__info { display: flex; flex-direction: column; }
.mr-pdp__cat {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); margin-bottom: 14px;
}
.mr-pdp__title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(32px, 3.6vw, 46px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 0 0 10px; color: var(--mr-chocolate);
}
.mr-pdp__subtitle {
  font-family: var(--mr-font-display); font-style: italic;
  color: var(--mr-stone); font-size: 18px; margin-bottom: 24px;
}

.mr-pdp__rating {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--mr-border);
}
.mr-pdp__stars { color: var(--mr-gold); letter-spacing: 2px; font-size: 14px; }
.mr-pdp__rating-text { font-size: 12px; color: var(--mr-stone); }
.mr-pdp__rating-text a { color: var(--mr-chocolate); text-decoration: underline; }

.mr-pdp__price-block { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--mr-border); }
.mr-pdp__price {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 38px; line-height: 1.1; color: var(--mr-chocolate);
}
.mr-pdp__price small {
  font-family: var(--mr-font-body); font-size: 13px;
  color: var(--mr-stone); font-weight: 400; margin-left: 6px;
}
.mr-pdp__price ins { background: transparent; text-decoration: none; }
.mr-pdp__price del { color: var(--mr-stone); font-size: 22px; margin-right: 12px; }
.mr-pdp__price-incl { font-size: 13px; color: var(--mr-stone); margin-top: 6px; }
.mr-pdp__lease {
  margin-top: 18px; padding: 16px 20px;
  background: var(--mr-white); border-left: 3px solid var(--mr-gold);
  border-radius: 0 4px 4px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.mr-pdp__lease-text strong {
  display: block; font-family: var(--mr-font-display); font-style: italic;
  font-weight: 500; font-size: 17px; color: var(--mr-chocolate); margin-bottom: 2px;
}
.mr-pdp__lease-text small { color: var(--mr-stone); font-size: 12px; }
.mr-pdp__lease a {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-chocolate); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--mr-chocolate); padding-bottom: 2px;
}

.mr-pdp__quickspecs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px;
  margin: 0 0 28px; padding: 0;
}
.mr-pdp__quickspecs > div { display: flex; flex-direction: column; gap: 2px; }
.mr-pdp__quickspecs dt {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); margin: 0;
}
.mr-pdp__quickspecs dd { margin: 0; font-size: 14px; color: var(--mr-chocolate); font-weight: 500; }

/* Cart form */
.mr-pdp__cart { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; margin: 0 0 28px; }

/* Qty input — override Blocksy's +/- widget so the number is always visible */
body.mr-brand-template .mr-pdp__cart .quantity,
body.mr-brand-template .mr-pdp__cart .ct-quantity-control,
body.mr-brand-template .mr-pdp__cart .quantity.buttons_added {
  position: relative;
  display: inline-flex !important;
  align-items: stretch;
  width: 130px;
  height: 52px;
  border: 1px solid var(--mr-border);
  background: var(--mr-white);
  border-radius: var(--mr-radius);
  overflow: hidden;
}
body.mr-brand-template .mr-pdp__cart .quantity input.qty,
body.mr-brand-template .mr-pdp__cart .ct-quantity-control input.qty,
body.mr-brand-template .mr-pdp__cart input[type="number"].qty {
  width: 50px !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-align: center !important;
  color: var(--mr-chocolate) !important;
  -moz-appearance: textfield;
  opacity: 1 !important;
  box-shadow: none !important;
  order: 2;
  flex: 0 0 auto;
}
body.mr-brand-template .mr-pdp__cart input.qty::-webkit-outer-spin-button,
body.mr-brand-template .mr-pdp__cart input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
body.mr-brand-template .mr-pdp__cart .quantity button,
body.mr-brand-template .mr-pdp__cart .ct-quantity-control button,
body.mr-brand-template .mr-pdp__cart .quantity .minus,
body.mr-brand-template .mr-pdp__cart .quantity .plus {
  width: 40px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: var(--mr-chocolate);
  font-weight: 400;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.mr-brand-template .mr-pdp__cart .quantity button:first-child,
body.mr-brand-template .mr-pdp__cart .quantity .minus { order: 1; border-right: 1px solid var(--mr-border); }
body.mr-brand-template .mr-pdp__cart .quantity button:last-child,
body.mr-brand-template .mr-pdp__cart .quantity .plus  { order: 3; border-left: 1px solid var(--mr-border); }
body.mr-brand-template .mr-pdp__cart .quantity button:hover { background: var(--mr-cream-warm); }
.mr-pdp__cart .mr-btn--primary {
  flex: 1; min-width: 200px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 28px; font-size: 13px;
}
.mr-pdp__cart .mr-btn--ghost {
  height: 52px; padding: 0 24px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.mr-pdp__oos { color: var(--mr-alert); font-size: 14px; }

.mr-pdp__trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 0;
}
.mr-pdp__trust-item {
  background: var(--mr-white); border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius); padding: 18px 16px; text-align: center;
}
.mr-pdp__trust-ico {
  width: 32px; height: 32px; border: 1.5px solid var(--mr-chocolate);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px; font-size: 14px;
}
.mr-pdp__trust-item strong { display: block; font-size: 12px; margin-bottom: 4px; color: var(--mr-chocolate); }
.mr-pdp__trust-item p { font-size: 11px; color: var(--mr-stone); line-height: 1.4; margin: 0; }

/* Story band — two-column rich layout */
.mr-pdp__story {
  background: var(--mr-cream-warm);
  padding: 100px 48px; margin-top: 80px;
  position: relative; overflow: hidden;
}
.mr-pdp__story::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--mr-gold), transparent);
}
.mr-pdp__story-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: start;
}
.mr-pdp__story-copy { color: var(--mr-chocolate); }
.mr-pdp__story-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600; margin-bottom: 16px;
}
.mr-pdp__story h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(30px, 3.2vw, 44px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0 0 32px;
}
.mr-pdp__story h2 em {
  font-style: italic; font-weight: 400; color: var(--mr-gold);
}
.mr-pdp__story-text {
  font-size: 16px; line-height: 1.8; color: var(--mr-chocolate);
}
.mr-pdp__story-text p { margin: 0 0 18px; }
.mr-pdp__story-text h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 26px; line-height: 1.2; margin: 36px 0 16px; color: var(--mr-chocolate);
}
.mr-pdp__story-text h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 20px; line-height: 1.25; margin: 28px 0 12px;
  color: var(--mr-chocolate); position: relative; padding-left: 22px;
}
.mr-pdp__story-text h3::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 12px; height: 1px; background: var(--mr-gold);
}
.mr-pdp__story-text ul {
  margin: 0 0 18px; padding: 0; list-style: none;
}
.mr-pdp__story-text ul li {
  position: relative; padding: 8px 0 8px 28px;
  border-bottom: 1px solid var(--mr-border);
}
.mr-pdp__story-text ul li:last-child { border-bottom: 0; }
.mr-pdp__story-text ul li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 14px; height: 1px; background: var(--mr-gold);
}
.mr-pdp__story-text strong { color: var(--mr-chocolate); font-weight: 600; }
.mr-pdp__story-text a { color: var(--mr-chocolate); border-bottom: 1px solid var(--mr-gold); }
.mr-pdp__story-pullquote {
  margin-top: 36px; padding: 24px 28px;
  font-family: var(--mr-font-display); font-style: italic;
  font-size: 20px; line-height: 1.4; color: var(--mr-chocolate);
  border-left: 3px solid var(--mr-gold); background: var(--mr-white);
  border-radius: 0 4px 4px 0;
}

.mr-pdp__story-visual { position: sticky; top: 100px; }
.mr-pdp__story-img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: var(--mr-radius); margin-bottom: 18px;
  box-shadow: 0 30px 60px rgba(42,31,21,0.12);
}
.mr-pdp__story-stat {
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 24px 28px; border-radius: var(--mr-radius);
  text-align: center;
}
.mr-pdp__story-stat strong {
  display: block; font-family: var(--mr-font-display);
  font-size: 36px; line-height: 1; font-weight: 500;
  color: var(--mr-cream); margin-bottom: 6px;
}
.mr-pdp__story-stat span {
  font-size: 12px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: rgba(244,239,229,0.7);
}

/* Specs section */
.mr-pdp__specs-section { padding: 80px 48px; background: var(--mr-paper); }
.mr-pdp__specs-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.mr-pdp__specs-grid h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 30px; line-height: 1.15; margin: 0 0 24px;
}
.mr-pdp__specs-table { width: 100%; border-collapse: collapse; }
.mr-pdp__specs-table tr { border-bottom: 1px solid var(--mr-border); }
.mr-pdp__specs-table td { padding: 14px 0; font-size: 14px; vertical-align: top; }
.mr-pdp__specs-table td:first-child { color: var(--mr-stone); width: 48%; }
.mr-pdp__specs-table td:last-child { font-weight: 500; color: var(--mr-chocolate); }
.mr-pdp__features { list-style: none; padding: 0; margin: 0; }
.mr-pdp__features li {
  padding: 16px 0; border-bottom: 1px solid var(--mr-border);
  display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: start;
}
.mr-pdp__features .num {
  font-family: var(--mr-font-display); font-style: italic;
  color: var(--mr-gold); font-size: 15px; padding-top: 2px;
}
.mr-pdp__features strong { display: block; font-size: 14px; margin-bottom: 6px; color: var(--mr-chocolate); }
.mr-pdp__features p { font-size: 13px; color: var(--mr-stone); line-height: 1.55; margin: 0; }

/* Bundle */
.mr-pdp__bundle { padding: 80px 48px; background: var(--mr-cream); }
.mr-pdp__bundle-card {
  max-width: 1200px; margin: 0 auto;
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-radius: 6px; padding: 56px 56px;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: center;
}
.mr-pdp__bundle-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600; margin-bottom: 14px;
}
.mr-pdp__bundle-card h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 32px; line-height: 1.15; margin: 0 0 16px; color: var(--mr-cream);
}
.mr-pdp__bundle-card p { font-size: 14px; line-height: 1.7; color: rgba(244, 239, 229, 0.78); margin: 0 0 20px; max-width: 540px; }
.mr-pdp__bundle-list { display: flex; gap: 20px; flex-wrap: wrap; font-size: 12px; color: rgba(244, 239, 229, 0.85); }
.mr-pdp__bundle-list span::before { content: '✓ '; color: var(--mr-gold); }
.mr-pdp__bundle-right { text-align: right; }
.mr-pdp__bundle-price {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 36px; line-height: 1; color: var(--mr-cream); margin-bottom: 4px;
}
.mr-pdp__bundle-lease { font-size: 12px; color: var(--mr-gold); margin-bottom: 22px; }

/* Reviews */
.mr-pdp__reviews { padding: 80px 48px; background: var(--mr-white); }
.mr-pdp__reviews-inner { max-width: 900px; margin: 0 auto; }
.mr-pdp__reviews .mr-section-head { text-align: left; margin: 0 0 32px; }
.mr-pdp__reviews .mr-section-head h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 32px; line-height: 1.15; margin: 0; color: var(--mr-chocolate);
}
.mr-pdp__reviews #reply-title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; margin: 32px 0 16px; color: var(--mr-chocolate);
}
.mr-pdp__reviews #reviews_title,
.mr-pdp__reviews .woocommerce-Reviews-title { display: none; }
.mr-pdp__reviews .commentlist { list-style: none; padding: 0; margin: 0 0 24px; }
.mr-pdp__reviews .commentlist > li { padding: 20px 0; border-bottom: 1px solid var(--mr-border); }
.mr-pdp__reviews .commentlist > li:last-child { border-bottom: 0; }
.mr-pdp__reviews .comment_container { display: flex; gap: 16px; align-items: flex-start; }
.mr-pdp__reviews .avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; }
.mr-pdp__reviews .comment-text { flex: 1; }
.mr-pdp__reviews .meta { font-size: 13px; color: var(--mr-stone); margin-bottom: 6px; }
.mr-pdp__reviews .meta strong { font-weight: 600; color: var(--mr-chocolate); }
.mr-pdp__reviews .star-rating { color: var(--mr-gold); margin-bottom: 4px; font-size: 13px; }
.mr-pdp__reviews .description, .mr-pdp__reviews .description p {
  font-size: 14px; line-height: 1.65; color: var(--mr-chocolate); margin: 6px 0 0;
}
.mr-pdp__reviews .commentlist > li[style*="display: none"] + li { border-top: 0; }
.mr-pdp__reviews-toggle {
  margin: 24px auto 0; display: block;
}

/* Comment form polish */
.mr-pdp__reviews #review_form_wrapper { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--mr-border); }
.mr-pdp__reviews .comment-form label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide); color: var(--mr-stone); margin: 14px 0 6px; }
.mr-pdp__reviews .comment-form input[type="text"],
.mr-pdp__reviews .comment-form input[type="email"],
.mr-pdp__reviews .comment-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--mr-border);
  background: var(--mr-white); border-radius: var(--mr-radius);
  font: 400 14px/1.5 var(--mr-font-body); color: var(--mr-chocolate);
}
.mr-pdp__reviews .comment-form textarea { min-height: 120px; resize: vertical; }
.mr-pdp__reviews .comment-form .submit,
.mr-pdp__reviews .form-submit input[type="submit"] {
  margin-top: 16px; padding: 14px 28px;
  background: var(--mr-chocolate); color: var(--mr-cream);
  border: 1px solid var(--mr-chocolate); border-radius: var(--mr-radius);
  font: 500 12px/1 var(--mr-font-body); text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  cursor: pointer;
}

/* Related */
.mr-pdp__related { padding: 80px 48px; background: var(--mr-cream); }
.mr-pdp__related .mr-section-head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.mr-pdp__related-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.mr-pdp__related-card {
  background: var(--mr-white); border-radius: var(--mr-radius);
  overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mr-pdp__related-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42, 31, 21, 0.08); color: inherit; }
.mr-pdp__related-img { aspect-ratio: 4/3; background: var(--mr-cream-warm); overflow: hidden; }
.mr-pdp__related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mr-pdp__related-body { padding: 20px 22px 24px; }
.mr-pdp__related-cat {
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); margin-bottom: 8px;
}
.mr-pdp__related-card h4 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 18px; margin: 0 0 8px; color: var(--mr-chocolate);
}
.mr-pdp__related-price { font-size: 14px; color: var(--mr-stone); }
.mr-pdp__related-price .amount { color: var(--mr-chocolate); font-weight: 500; }

/* ---------- PDP RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .mr-pdp__grid { grid-template-columns: 1fr; gap: 40px; padding: 16px 32px 0; }
  .mr-pdp__specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .mr-pdp__bundle-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .mr-pdp__bundle-right { text-align: left; }
  .mr-pdp__related-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-pdp__story-inner { grid-template-columns: 1fr; gap: 48px; }
  .mr-pdp__story-visual { position: static; max-width: 480px; }
  .mr-pdp__story, .mr-pdp__specs-section, .mr-pdp__bundle, .mr-pdp__related, .mr-pdp__reviews { padding: 60px 32px; }
  body.mr-brand-template .mr-hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px; }
  .mr-nav { padding: 18px 24px; }
}
@media (max-width: 640px) {
  .mr-pdp__breadcrumb { padding: 16px 20px 4px; }
  .mr-pdp__grid { padding: 8px 20px 0; gap: 32px; }
  .mr-pdp__cart { flex-direction: column; }
  body.mr-brand-template .mr-pdp__cart .quantity { width: 100% !important; }
  body.mr-brand-template .mr-pdp__cart .quantity input.qty { flex: 1 !important; width: auto !important; }
  .mr-pdp__cart .mr-btn { width: 100%; }
  .mr-pdp__story-pullquote { font-size: 17px; padding: 18px 22px; }
  .mr-pdp__story h2 { font-size: 28px; }
  .mr-pdp__trust { grid-template-columns: 1fr; }
  .mr-pdp__quickspecs { grid-template-columns: 1fr; }
  .mr-pdp__related-grid { grid-template-columns: 1fr; }
  .mr-pdp__story, .mr-pdp__specs-section, .mr-pdp__bundle, .mr-pdp__related, .mr-pdp__reviews { padding: 40px 20px; }
  .mr-pdp__thumbs { grid-template-columns: repeat(4, 1fr); }
  body.mr-brand-template .mr-hero { padding: 40px 20px; gap: 32px; }
  body.mr-brand-template .mr-hero__title { font-size: 38px; }
  .mr-footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 32px; }
  .mr-footer__bottom { flex-direction: column; gap: 12px; padding: 20px 24px; text-align: center; }
  .mr-nav { grid-template-columns: auto 1fr auto; gap: 12px; padding: 14px 20px; }
  .mr-nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--mr-cream);
    border-bottom: 1px solid var(--mr-border);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
    z-index: 50;
  }
  .mr-nav__menu.is-open { max-height: 400px; padding: 12px 0; }
  .mr-nav__menu li { padding: 12px 24px; border-bottom: 1px solid var(--mr-border); }
  .mr-nav__menu li:last-child { border-bottom: 0; }
  .mr-nav__burger { display: block; }
  .mr-nav__cta { display: none; }
  .mr-site-header { position: relative; }
}

/* ============================================================
 * v3.1 — generic pages, archives, blog, search, 404
 * ============================================================ */

/* Logo image sizing — combined symbol+wordmark+tagline */
.mr-nav__logo { display: inline-flex; align-items: center; }
.mr-nav__logo-img {
  display: block; height: 64px; width: auto; max-width: 260px;
}
.mr-footer__logo img { display: block; height: 84px; width: auto; max-width: 320px; }
@media (max-width: 1024px) {
  .mr-nav__logo-img { height: 52px; max-width: 220px; }
}
@media (max-width: 640px) {
  .mr-nav__logo-img { height: 44px; max-width: 180px; }
}

/* ---------- Generic page hero ---------- */
.mr-page-hero {
  position: relative; background: var(--mr-paper);
  padding: 70px 48px 80px;
  overflow: hidden;
}
.mr-page-hero.has-image { background: var(--mr-chocolate); }
.mr-page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.42; filter: saturate(0.85);
  z-index: 0;
}
.mr-page-hero.has-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,31,21,0.4), rgba(42,31,21,0.75));
  z-index: 1;
}
.mr-page-hero__inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
}
.mr-page-hero .mr-breadcrumb { margin-bottom: 22px; }
.mr-page-hero.has-image .mr-breadcrumb,
.mr-page-hero.has-image .mr-breadcrumb a,
.mr-page-hero.has-image .mr-breadcrumb .current { color: rgba(244,239,229,0.85); }
.mr-page-hero__title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.015em;
  margin: 0 0 16px; color: var(--mr-chocolate);
}
.mr-page-hero.has-image .mr-page-hero__title { color: var(--mr-cream); }
.mr-page-hero__lede {
  font-size: 17px; line-height: 1.55; color: var(--mr-stone);
  max-width: 680px; margin: 0;
}
.mr-page-hero.has-image .mr-page-hero__lede { color: rgba(244,239,229,0.85); }

/* Page body — content rendered with sensible typography */
.mr-page-body { padding: 60px 48px 90px; }
.mr-page-content {
  max-width: 820px; margin: 0 auto;
  font-size: 17px; line-height: 1.75; color: var(--mr-chocolate);
}
.mr-page-content > * + * { margin-top: 18px; }
.mr-page-content h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 30px; line-height: 1.15; letter-spacing: -0.01em;
  margin: 48px 0 16px; color: var(--mr-chocolate);
}
.mr-page-content h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; line-height: 1.2;
  margin: 36px 0 12px; color: var(--mr-chocolate);
}
.mr-page-content h4 {
  font-size: 16px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--mr-ls-wide); color: var(--mr-stone);
  margin: 28px 0 8px;
}
.mr-page-content a {
  color: var(--mr-chocolate); border-bottom: 1px solid var(--mr-gold);
  text-decoration: none;
}
.mr-page-content a:hover { border-bottom-color: var(--mr-chocolate); }
.mr-page-content ul, .mr-page-content ol { padding-left: 22px; }
.mr-page-content ul li, .mr-page-content ol li { margin-bottom: 8px; }
.mr-page-content blockquote {
  border-left: 3px solid var(--mr-gold);
  padding: 8px 24px; margin: 28px 0;
  font-family: var(--mr-font-display); font-style: italic;
  font-size: 20px; line-height: 1.45; color: var(--mr-chocolate);
}
.mr-page-content img {
  max-width: 100%; height: auto;
  border-radius: var(--mr-radius);
  margin: 24px 0;
}
.mr-page-content figure { margin: 24px 0; }
.mr-page-content figcaption {
  font-size: 13px; color: var(--mr-stone); margin-top: 8px; text-align: center;
}
.mr-page-content hr {
  border: 0; height: 1px; background: var(--mr-border); margin: 40px 0;
}
.mr-page-content code {
  background: var(--mr-paper); padding: 2px 6px; border-radius: 3px;
  font-size: 0.9em;
}

/* WC pages (cart, checkout, account) inside .mr-page-content land OK,
 * but tighten WC table chrome to the brand palette. */
.mr-page-content .woocommerce-cart-form,
.mr-page-content .woocommerce-checkout,
.mr-page-content .woocommerce-MyAccount-content { margin-top: 24px; }
.mr-page-content table.shop_table {
  border: 1px solid var(--mr-border); border-radius: var(--mr-radius);
  border-collapse: separate; overflow: hidden;
}
.mr-page-content table.shop_table th {
  background: var(--mr-cream-warm); color: var(--mr-chocolate);
  font-weight: 600; text-transform: uppercase; font-size: 12px;
  letter-spacing: var(--mr-ls-wide); padding: 14px 16px;
}
.mr-page-content table.shop_table td { padding: 14px 16px; font-size: 14px; }
.mr-page-content .button,
.mr-page-content button[type="submit"]:not(.search-submit) {
  background: var(--mr-chocolate); color: var(--mr-cream);
  border: 1px solid var(--mr-chocolate); border-radius: var(--mr-radius);
  padding: 12px 24px; font: 500 12px/1 var(--mr-font-body);
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  cursor: pointer; text-decoration: none; display: inline-block;
}
.mr-page-content .button:hover { background: var(--mr-cream); color: var(--mr-chocolate); }

/* ---------- Archive (shop + blog) hero ---------- */
.mr-archive-hero {
  background: var(--mr-paper); padding: 70px 48px 50px;
}
.mr-archive-hero__inner { max-width: 1200px; margin: 0 auto; }
.mr-archive-hero .mr-breadcrumb { margin-bottom: 22px; }
.mr-archive-hero__eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600; margin-bottom: 14px;
}
.mr-archive-hero__title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 56px); line-height: 1.04; letter-spacing: -0.015em;
  margin: 0 0 14px; color: var(--mr-chocolate);
}
.mr-archive-hero__lede {
  font-size: 17px; line-height: 1.6; color: var(--mr-stone);
  max-width: 700px; margin: 0;
}

/* Chip nav */
.mr-archive-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px 20px;
}
.mr-chip {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--mr-border); border-radius: 999px;
  font-size: 13px; color: var(--mr-stone); text-decoration: none;
  background: var(--mr-white);
  transition: background .15s, color .15s, border-color .15s;
}
.mr-chip:hover { color: var(--mr-chocolate); border-color: var(--mr-chocolate); }
.mr-chip.is-active {
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-color: var(--mr-chocolate);
}

/* Archive body */
.mr-archive-body { padding: 30px 48px 90px; }
.mr-archive-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.mr-archive-card {
  background: var(--mr-white); border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius); overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.mr-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(42,31,21,0.10);
  border-color: var(--mr-chocolate);
}
.mr-archive-card__media {
  aspect-ratio: 1/1;
  background: var(--mr-cream-warm);
  background-size: cover; background-position: center;
  position: relative;
}
.mr-archive-card__tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--mr-gold); color: var(--mr-chocolate);
  padding: 6px 12px; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  border-radius: 2px;
}
.mr-archive-card__tag.is-sale { background: var(--mr-alert, #b35a3f); color: var(--mr-cream); }
.mr-archive-card__tag.is-new  { background: var(--mr-chocolate); color: var(--mr-cream); }
.mr-archive-card__body {
  padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  gap: 8px; flex: 1;
}
.mr-archive-card__cat {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-gold); font-weight: 600;
}
.mr-archive-card__title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 20px; line-height: 1.2; margin: 0; color: var(--mr-chocolate);
}
.mr-archive-card__sub {
  font-size: 13px; line-height: 1.5; color: var(--mr-stone);
  margin: 0; flex: 1;
}
.mr-archive-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--mr-border);
}
.mr-archive-card__price {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 18px; color: var(--mr-chocolate);
}
.mr-archive-card__price del { color: var(--mr-stone); font-size: 14px; margin-right: 6px; }
.mr-archive-card__price ins { background: transparent; text-decoration: none; }
.mr-archive-card__price small { color: var(--mr-stone); font-size: 11px; font-weight: 400; }
.mr-archive-card__cta {
  font-size: 12px; color: var(--mr-chocolate); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}

/* Empty state */
.mr-archive-empty {
  max-width: 600px; margin: 80px auto; text-align: center;
}
.mr-archive-empty h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 28px; margin: 0 0 12px; color: var(--mr-chocolate);
}
.mr-archive-empty p { font-size: 15px; color: var(--mr-stone); }
.mr-archive-empty a { color: var(--mr-chocolate); border-bottom: 1px solid var(--mr-gold); text-decoration: none; }

/* Pagination */
.mr-archive-pagination {
  max-width: 1300px; margin: 60px auto 0; text-align: center;
}
.mr-archive-pagination .nav-links,
.mr-archive-pagination .page-numbers {
  display: inline-flex; align-items: center; gap: 6px;
}
.mr-archive-pagination .nav-links { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.mr-archive-pagination a.page-numbers,
.mr-archive-pagination span.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--mr-border); border-radius: var(--mr-radius);
  background: var(--mr-white); color: var(--mr-chocolate);
  font-size: 14px; text-decoration: none;
}
.mr-archive-pagination .current {
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-color: var(--mr-chocolate);
}
.mr-archive-pagination a.page-numbers:hover {
  border-color: var(--mr-chocolate);
}

/* ---------- Blog grid ---------- */
.mr-blog-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.mr-blog-card {
  background: var(--mr-white); border-radius: var(--mr-radius);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.mr-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(42,31,21,0.10);
}
.mr-blog-card__media {
  aspect-ratio: 16/10;
  background: var(--mr-cream-warm);
  background-size: cover; background-position: center;
}
.mr-blog-card__media--placeholder {
  background: linear-gradient(135deg, var(--mr-cream-warm), var(--mr-paper));
}
.mr-blog-card__body {
  padding: 24px 24px 22px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.mr-blog-card__meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 12px; color: var(--mr-stone);
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}
.mr-blog-card__cat { color: var(--mr-gold); font-weight: 600; }
.mr-blog-card__title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; line-height: 1.2; margin: 0; color: var(--mr-chocolate);
}
.mr-blog-card__excerpt {
  font-size: 14px; line-height: 1.6; color: var(--mr-stone);
  margin: 0; flex: 1;
}
.mr-blog-card__cta {
  font-size: 12px; color: var(--mr-chocolate); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  margin-top: 4px;
}

/* ---------- Single post ---------- */
.mr-post { background: var(--mr-cream); }
.mr-post__header {
  position: relative; background: var(--mr-paper);
  padding: 70px 48px 60px; overflow: hidden;
}
.mr-post__header.has-image { background: var(--mr-chocolate); min-height: 380px; }
.mr-post__hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.4; z-index: 0;
}
.mr-post__header.has-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,31,21,0.35), rgba(42,31,21,0.8));
  z-index: 1;
}
.mr-post__header-inner {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
}
.mr-post__header.has-image .mr-breadcrumb,
.mr-post__header.has-image .mr-breadcrumb a,
.mr-post__header.has-image .mr-breadcrumb .current { color: rgba(244,239,229,0.85); }
.mr-post__cat {
  display: inline-block; margin-bottom: 14px;
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600;
}
.mr-post__title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.06; letter-spacing: -0.015em;
  margin: 0 0 18px; color: var(--mr-chocolate);
}
.mr-post__header.has-image .mr-post__title { color: var(--mr-cream); }
.mr-post__meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--mr-stone);
}
.mr-post__header.has-image .mr-post__meta { color: rgba(244,239,229,0.75); }
.mr-post__body { padding: 60px 48px; background: var(--mr-cream); }
.mr-post__content {
  max-width: 720px; margin: 0 auto;
  font-size: 17px; line-height: 1.8; color: var(--mr-chocolate);
}
.mr-post__content > * + * { margin-top: 18px; }
.mr-post__content p:first-of-type::first-letter {
  font-family: var(--mr-font-display); font-size: 60px; line-height: 0.9;
  float: left; padding: 6px 12px 0 0; color: var(--mr-chocolate);
}
.mr-post__content h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 28px; line-height: 1.15; margin: 44px 0 14px;
}
.mr-post__content h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; margin: 32px 0 10px;
}
.mr-post__content blockquote {
  border-left: 3px solid var(--mr-gold);
  padding: 8px 24px; margin: 28px 0;
  font-family: var(--mr-font-display); font-style: italic;
  font-size: 22px; line-height: 1.4; color: var(--mr-chocolate);
}
.mr-post__content img { max-width: 100%; height: auto; border-radius: var(--mr-radius); margin: 24px 0; }
.mr-post__content a { color: var(--mr-chocolate); border-bottom: 1px solid var(--mr-gold); text-decoration: none; }
.mr-post__content ul, .mr-post__content ol { padding-left: 22px; }
.mr-post__content ul li, .mr-post__content ol li { margin-bottom: 8px; }
.mr-post__footer {
  max-width: 720px; margin: 0 auto; padding: 0 48px 60px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.mr-post__share { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--mr-stone); }
.mr-post__share a {
  color: var(--mr-chocolate); text-decoration: none;
  border-bottom: 1px solid var(--mr-border); padding-bottom: 2px;
  font-size: 13px;
}
.mr-post__share a:hover { border-color: var(--mr-chocolate); }
.mr-post-related {
  background: var(--mr-paper); padding: 70px 48px 90px;
}
.mr-post-related .mr-section-head { max-width: 1200px; margin: 0 auto 40px; text-align: left; }
.mr-post-related .mr-section-head h2 { font-size: 30px; }

/* ---------- Search ---------- */
.mr-search-form {
  display: flex; gap: 10px; max-width: 540px; margin-top: 20px;
}
.mr-search-form input[type="search"] {
  flex: 1; padding: 14px 16px;
  border: 1px solid var(--mr-border);
  background: var(--mr-white); border-radius: var(--mr-radius);
  font: 400 15px/1.4 var(--mr-font-body); color: var(--mr-chocolate);
}
.mr-search-form input[type="search"]:focus {
  outline: none; border-color: var(--mr-chocolate);
}
.mr-search-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.mr-search-item {
  display: block; padding: 24px 0;
  border-bottom: 1px solid var(--mr-border);
  text-decoration: none; color: inherit;
}
.mr-search-item:last-child { border-bottom: 0; }
.mr-search-item__type {
  display: inline-block; font-size: 11px; text-transform: uppercase;
  letter-spacing: var(--mr-ls-xxwide); color: var(--mr-gold);
  font-weight: 600; margin-bottom: 8px;
}
.mr-search-item h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; margin: 0 0 8px; color: var(--mr-chocolate);
}
.mr-search-item p { font-size: 14px; line-height: 1.6; color: var(--mr-stone); margin: 0 0 10px; }
.mr-search-item__cta { font-size: 12px; color: var(--mr-chocolate); font-weight: 500; text-transform: uppercase; letter-spacing: var(--mr-ls-wide); }

/* ---------- 404 ---------- */
.mr-404 {
  background: var(--mr-paper);
  padding: 100px 48px 120px; text-align: center;
}
.mr-404__inner { max-width: 600px; margin: 0 auto; }
.mr-404__num {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 120px; line-height: 1; color: var(--mr-gold);
  margin-bottom: 14px;
}
.mr-404 h1 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 32px; line-height: 1.15; margin: 0 0 14px; color: var(--mr-chocolate);
}
.mr-404 p { font-size: 16px; color: var(--mr-stone); line-height: 1.6; margin: 0 0 28px; }
.mr-404__ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
}
.mr-404 .mr-search-form { margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .mr-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mr-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .mr-page-hero, .mr-archive-hero, .mr-post__header, .mr-post-related { padding-left: 32px; padding-right: 32px; }
  .mr-archive-chips, .mr-archive-body, .mr-page-body, .mr-post__body, .mr-post__footer, .mr-404 { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 640px) {
  .mr-archive-grid { grid-template-columns: 1fr; }
  .mr-blog-grid { grid-template-columns: 1fr; }
  .mr-page-hero, .mr-archive-hero, .mr-post__header { padding: 48px 20px 36px; }
  .mr-page-body, .mr-archive-body, .mr-post__body { padding-left: 20px; padding-right: 20px; padding-bottom: 60px; }
  .mr-post-related { padding: 48px 20px 60px; }
  .mr-archive-chips { padding: 0 20px 16px; }
  .mr-post__footer { padding: 0 20px 48px; }
  .mr-404 { padding: 60px 20px 80px; }
  .mr-404__num { font-size: 80px; }
  .mr-search-form { flex-direction: column; }
}

/* ============================================================
 * v3.2 — Showroom, Opleiding, Contact rich templates
 * ============================================================ */

/* Ghost-cream button variant for chocolate CTA bands */
.mr-btn--ghost-cream {
  background: transparent; color: var(--mr-cream);
  border: 1px solid rgba(244,239,229,0.5);
}
.mr-btn--ghost-cream:hover { background: var(--mr-cream); color: var(--mr-chocolate); border-color: var(--mr-cream); }

/* Reusable quote band */
.mr-quote {
  background: var(--mr-cream); padding: 80px 48px;
  text-align: center;
}
.mr-quote blockquote {
  max-width: 820px; margin: 0 auto 14px;
  font-family: var(--mr-font-display); font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.4;
  color: var(--mr-chocolate);
}
.mr-quote cite {
  display: block; font-style: normal; font-size: 13px;
  color: var(--mr-stone); text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}

/* Reusable chocolate CTA band */
.mr-cta-band {
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 90px 48px;
}
.mr-cta-band__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.mr-cta-band .mr-section-head__eyebrow { margin-bottom: 14px; }
.mr-cta-band h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0 0 18px; color: var(--mr-cream);
}
.mr-cta-band h2 em { font-style: italic; color: var(--mr-gold); font-weight: 400; }
.mr-cta-band p { font-size: 16px; line-height: 1.65; color: rgba(244,239,229,0.82); margin: 0 auto 28px; max-width: 640px; }
.mr-cta-band__ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ---------- Showroom hero ---------- */
.mr-showroom-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 540px; background: var(--mr-paper);
}
.mr-showroom-hero__copy {
  padding: 70px 48px; display: flex; flex-direction: column; justify-content: center;
}
.mr-showroom-hero__copy .mr-breadcrumb { margin-bottom: 18px; }
.mr-showroom-hero__copy h1 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px); line-height: 1.04; letter-spacing: -0.015em;
  margin: 0 0 18px; color: var(--mr-chocolate);
}
.mr-showroom-hero__lede { font-size: 17px; line-height: 1.6; color: var(--mr-stone); margin: 0 0 28px; }
.mr-showroom-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.mr-showroom-hero__trust {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 12px; color: var(--mr-stone);
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}
.mr-showroom-hero__visual {
  background-size: cover; background-position: center;
  min-height: 540px;
}

/* Showroom: what to expect */
.mr-showroom-expect {
  background: var(--mr-white); padding: 90px 48px;
}
.mr-showroom-expect .mr-section-head {
  max-width: 760px; margin: 0 auto 56px; text-align: center;
}
.mr-showroom-expect__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.mr-showroom-expect__step {
  padding: 28px;
  background: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
  border: 1px solid var(--mr-border);
}
.mr-showroom-expect__num {
  font-family: var(--mr-font-display); font-weight: 500; font-style: italic;
  font-size: 32px; color: var(--mr-gold); margin-bottom: 14px;
}
.mr-showroom-expect__step h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; margin: 0 0 10px; color: var(--mr-chocolate);
}
.mr-showroom-expect__step p { font-size: 14px; line-height: 1.6; color: var(--mr-stone); margin: 0; }

/* Showroom: location info */
.mr-showroom-info {
  background: var(--mr-paper); padding: 90px 48px;
}
.mr-showroom-info__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: stretch;
}
.mr-showroom-info__map {
  border-radius: var(--mr-radius); overflow: hidden;
  min-height: 480px; background: var(--mr-cream-warm);
  box-shadow: 0 30px 60px rgba(42,31,21,0.08);
}
.mr-showroom-info__details { padding: 16px 0; }
.mr-showroom-info__details h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(28px, 3vw, 38px); line-height: 1.1; letter-spacing: -0.01em;
  margin: 0 0 32px; color: var(--mr-chocolate);
}
.mr-showroom-info__row {
  padding: 18px 0; border-bottom: 1px solid var(--mr-border);
}
.mr-showroom-info__row:last-child { border-bottom: 0; }
.mr-showroom-info__row strong {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: var(--mr-ls-xxwide); color: var(--mr-gold); margin-bottom: 6px;
}
.mr-showroom-info__row p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--mr-chocolate); }
.mr-showroom-info__row a { color: var(--mr-chocolate); border-bottom: 1px solid var(--mr-gold); text-decoration: none; }

/* ---------- Opleiding ---------- */
.mr-program {
  background: var(--mr-white); padding: 90px 48px;
}
.mr-program .mr-section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.mr-program__days {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.mr-program__day {
  background: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
  padding: 40px 36px;
  border-left: 3px solid var(--mr-gold);
}
.mr-program__day-num {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600; margin-bottom: 12px;
}
.mr-program__day h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 26px; line-height: 1.15; margin: 0 0 20px; color: var(--mr-chocolate);
}
.mr-program__day ul { list-style: none; padding: 0; margin: 0; }
.mr-program__day ul li {
  padding: 12px 0 12px 22px; border-bottom: 1px solid var(--mr-border);
  font-size: 14px; line-height: 1.55; color: var(--mr-stone);
  position: relative;
}
.mr-program__day ul li:last-child { border-bottom: 0; }
.mr-program__day ul li::before {
  content: ""; position: absolute; left: 0; top: 22px;
  width: 14px; height: 1px; background: var(--mr-gold);
}
.mr-program__day ul li strong { color: var(--mr-chocolate); font-weight: 600; }

.mr-included {
  background: var(--mr-paper); padding: 90px 48px;
}
.mr-included .mr-section-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.mr-included__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.mr-included__item {
  background: var(--mr-white); border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius); padding: 28px;
}
.mr-included__check {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--mr-chocolate); color: var(--mr-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 14px;
}
.mr-included__item h4 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 18px; margin: 0 0 8px; color: var(--mr-chocolate);
}
.mr-included__item p { font-size: 14px; line-height: 1.55; color: var(--mr-stone); margin: 0; }

.mr-who {
  background: var(--mr-white); padding: 90px 48px;
}
.mr-who__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px;
  align-items: center;
}
.mr-who__copy h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0 0 20px; color: var(--mr-chocolate);
}
.mr-who__copy h2 em { font-style: italic; color: var(--mr-gold); font-weight: 400; }
.mr-who__copy > p { font-size: 16px; line-height: 1.65; color: var(--mr-stone); margin: 0 0 28px; }
.mr-who__profile {
  padding: 22px 0; border-top: 1px solid var(--mr-border);
}
.mr-who__profile:last-child { border-bottom: 1px solid var(--mr-border); }
.mr-who__profile strong {
  display: block; font-size: 17px; color: var(--mr-chocolate); margin-bottom: 6px;
  font-family: var(--mr-font-display); font-weight: 500;
}
.mr-who__profile p { font-size: 14px; line-height: 1.6; color: var(--mr-stone); margin: 0; }
.mr-who__visual {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: var(--mr-radius);
  box-shadow: 0 30px 60px rgba(42,31,21,0.12);
}

/* ---------- Contact ---------- */
.mr-contact-channels {
  background: var(--mr-paper); padding: 0 48px 30px;
}
.mr-contact-channels__grid {
  max-width: 1200px; margin: -50px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  position: relative; z-index: 4;
}
.mr-contact-channel {
  background: var(--mr-white); border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  padding: 24px 26px;
  display: flex; align-items: center; gap: 18px;
  text-decoration: none; color: inherit;
  transition: border-color .15s, transform .15s;
}
.mr-contact-channel:hover { border-color: var(--mr-chocolate); transform: translateY(-2px); }
.mr-contact-channel__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1px solid var(--mr-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.mr-contact-channel__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600; margin-bottom: 4px;
}
.mr-contact-channel strong {
  display: block; font-size: 16px; color: var(--mr-chocolate); margin-bottom: 2px;
  font-family: var(--mr-font-display); font-weight: 500;
}
.mr-contact-channel small { font-size: 12px; color: var(--mr-stone); }

.mr-contact-body { background: var(--mr-paper); padding: 60px 48px 100px; }
.mr-contact-body__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: start;
}
.mr-contact-form-wrap h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(28px, 3vw, 38px); line-height: 1.1; letter-spacing: -0.01em;
  margin: 6px 0 12px; color: var(--mr-chocolate);
}
.mr-contact-form-lede { font-size: 15px; color: var(--mr-stone); margin: 0 0 28px; line-height: 1.55; }
.mr-contact-form { display: flex; flex-direction: column; gap: 16px; }
.mr-contact-form__row { display: grid; gap: 16px; }
.mr-contact-form__row.two { grid-template-columns: 1fr 1fr; }
.mr-contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); font-weight: 500;
}
.mr-contact-form input,
.mr-contact-form textarea {
  padding: 14px 16px;
  border: 1px solid var(--mr-border);
  background: var(--mr-white); border-radius: var(--mr-radius);
  font: 400 15px/1.5 var(--mr-font-body); color: var(--mr-chocolate);
  text-transform: none; letter-spacing: 0;
}
.mr-contact-form input:focus,
.mr-contact-form textarea:focus { outline: none; border-color: var(--mr-chocolate); }
.mr-contact-form textarea { resize: vertical; min-height: 140px; }
.mr-contact-form button { margin-top: 8px; align-self: flex-start; }
.mr-contact-form__legal {
  font-size: 12px; color: var(--mr-stone); margin: 8px 0 0; line-height: 1.5;
}
.mr-contact-form__legal a { color: var(--mr-chocolate); border-bottom: 1px solid var(--mr-gold); text-decoration: none; }

.mr-contact-cms { /* if site editor placed CF7/Fluent shortcode */ }
.mr-contact-cms .wpcf7,
.mr-contact-cms .fluentform { margin-top: 0; }
.mr-contact-cms input[type="text"],
.mr-contact-cms input[type="email"],
.mr-contact-cms input[type="tel"],
.mr-contact-cms textarea,
.mr-contact-cms select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--mr-border); background: var(--mr-white);
  border-radius: var(--mr-radius); font: 400 15px/1.5 var(--mr-font-body);
  color: var(--mr-chocolate);
}
.mr-contact-cms input[type="submit"],
.mr-contact-cms button[type="submit"] {
  background: var(--mr-chocolate); color: var(--mr-cream);
  border: 1px solid var(--mr-chocolate); border-radius: var(--mr-radius);
  padding: 14px 28px; font: 500 12px/1 var(--mr-font-body);
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  cursor: pointer;
}

.mr-contact-aside { display: flex; flex-direction: column; gap: 28px; }
.mr-contact-aside__block { padding: 22px 24px; background: var(--mr-white); border: 1px solid var(--mr-border); border-radius: var(--mr-radius); }
.mr-contact-aside__block h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 17px; margin: 0 0 8px; color: var(--mr-chocolate);
}
.mr-contact-aside__block p { font-size: 14px; line-height: 1.55; color: var(--mr-stone); margin: 0; }
.mr-contact-aside__faq { padding: 22px 24px; background: var(--mr-cream-warm); border-radius: var(--mr-radius); }
.mr-contact-aside__faq h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 17px; margin: 0 0 14px; color: var(--mr-chocolate);
}
.mr-contact-aside__faq details {
  padding: 12px 0; border-top: 1px solid var(--mr-border);
}
.mr-contact-aside__faq details:first-of-type { border-top: 0; }
.mr-contact-aside__faq summary {
  cursor: pointer; font-size: 14px; font-weight: 500; color: var(--mr-chocolate);
  list-style: none; position: relative; padding-right: 24px;
}
.mr-contact-aside__faq summary::-webkit-details-marker { display: none; }
.mr-contact-aside__faq summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  font-size: 18px; color: var(--mr-gold); transition: transform .2s;
}
.mr-contact-aside__faq details[open] summary::after { content: "−"; }
.mr-contact-aside__faq details p {
  font-size: 13px; line-height: 1.55; color: var(--mr-stone);
  margin: 8px 0 0;
}

/* ---------- Responsive — page templates ---------- */
@media (max-width: 1024px) {
  .mr-showroom-hero { grid-template-columns: 1fr; min-height: auto; }
  .mr-showroom-hero__visual { min-height: 340px; }
  .mr-showroom-hero__copy { padding: 60px 32px; }
  .mr-showroom-expect__grid { grid-template-columns: repeat(2, 1fr); }
  .mr-showroom-info__grid { grid-template-columns: 1fr; gap: 40px; }
  .mr-showroom-info__map { min-height: 360px; }
  .mr-program__days { grid-template-columns: 1fr; }
  .mr-included__grid { grid-template-columns: repeat(2, 1fr); }
  .mr-who__grid { grid-template-columns: 1fr; gap: 40px; }
  .mr-who__visual { max-width: 480px; aspect-ratio: 4/3; }
  .mr-contact-channels__grid { grid-template-columns: 1fr; }
  .mr-contact-body__grid { grid-template-columns: 1fr; gap: 40px; }
  .mr-program, .mr-included, .mr-who, .mr-showroom-expect, .mr-showroom-info,
  .mr-quote, .mr-cta-band, .mr-contact-body, .mr-contact-channels { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 640px) {
  .mr-showroom-hero__copy { padding: 40px 20px; }
  .mr-showroom-expect__grid { grid-template-columns: 1fr; gap: 14px; }
  .mr-included__grid { grid-template-columns: 1fr; gap: 14px; }
  .mr-contact-form__row.two { grid-template-columns: 1fr; }
  .mr-program, .mr-included, .mr-who, .mr-showroom-expect, .mr-showroom-info,
  .mr-quote, .mr-cta-band, .mr-contact-body, .mr-contact-channels { padding-left: 20px; padding-right: 20px; padding-top: 60px; padding-bottom: 60px; }
}

/* ============================================================
 * v4.0 — Luxury homepage + content-rich PDP
 * ============================================================ */

/* ---------- HERO v4 — full-bleed, CTA above the fold ---------- */
body.mr-brand-template .mr-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 0; margin: 0;
  overflow: hidden;
  background: var(--mr-chocolate);
}
body.mr-brand-template .mr-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  z-index: 0; transform: scale(1.02);
  filter: saturate(0.92);
}
body.mr-brand-template .mr-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(42,31,21,0.78) 0%, rgba(42,31,21,0.55) 45%, rgba(42,31,21,0.05) 100%),
    linear-gradient(180deg, rgba(42,31,21,0) 60%, rgba(42,31,21,0.45) 100%);
}
body.mr-brand-template .mr-hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 56px;
  display: grid; grid-template-columns: 1fr;
}
body.mr-brand-template .mr-hero__copy {
  max-width: 640px;
  color: var(--mr-cream);
}
body.mr-brand-template .mr-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(168,138,92,0.4);
  border-radius: 999px;
  background: rgba(42,31,21,0.3);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
body.mr-brand-template .mr-hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mr-gold);
  box-shadow: 0 0 0 4px rgba(168,138,92,0.2);
  animation: mr-pulse 2.2s infinite;
}
@keyframes mr-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168,138,92,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(168,138,92,0.0); }
}
body.mr-brand-template .mr-hero__title {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(40px, 5.4vw, 78px); line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 24px; color: var(--mr-cream);
}
body.mr-brand-template .mr-hero__title em {
  font-style: italic; color: var(--mr-gold); font-weight: 400;
}
body.mr-brand-template .mr-hero__lede {
  font-size: 18px; line-height: 1.6; color: rgba(244,239,229,0.88);
  max-width: 560px; margin: 0 0 36px;
}
body.mr-brand-template .mr-hero__ctas {
  display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap;
}
body.mr-brand-template .mr-hero__ctas .mr-btn { padding: 18px 32px; font-size: 13px; }
.mr-btn__arrow { display: inline-block; margin-left: 8px; transition: transform .2s; }
.mr-btn:hover .mr-btn__arrow { transform: translateX(4px); }

body.mr-brand-template .mr-hero__trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(244,239,229,0.18);
  max-width: 640px;
}
.mr-hero__trust-item {
  display: flex; flex-direction: column; gap: 2px;
}
.mr-hero__trust-item strong {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; line-height: 1; color: var(--mr-cream);
}
.mr-hero__trust-item span {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: rgba(244,239,229,0.6);
}
.mr-hero__trust-divider {
  width: 1px; height: 36px; background: rgba(244,239,229,0.15);
}
.mr-hero__scrollcue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(244,239,229,0.7);
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  animation: mr-bob 2.4s ease-in-out infinite;
}
@keyframes mr-bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}

/* Hide old hero structure that v3 added */
body.mr-brand-template .mr-hero__visual,
body.mr-brand-template .mr-hero__image,
body.mr-brand-template .mr-hero__badge { display: none !important; }

/* ---------- ANNOUNCEMENT STRIP ---------- */
.mr-announce {
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(244,239,229,0.1);
}
.mr-announce__row {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 28px; flex-wrap: wrap;
}
.mr-announce__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(244,239,229,0.85);
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}
.mr-announce__item span { color: var(--mr-gold); font-weight: 600; }

/* ---------- WHY — 4-card luxury USP grid ---------- */
.mr-why {
  background: var(--mr-paper);
  padding: 110px 48px;
}
.mr-why .mr-section-head {
  max-width: 800px; margin: 0 auto 64px; text-align: center;
}
.mr-why-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.mr-why-card {
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  padding: 36px 30px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mr-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(42,31,21,0.10);
  border-color: var(--mr-chocolate);
}
.mr-why-card__num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--mr-font-display); font-style: italic; font-weight: 500;
  font-size: 28px; color: var(--mr-gold); opacity: 0.55;
}
.mr-why-card__icon {
  width: 56px; height: 56px; margin-bottom: 22px;
  color: var(--mr-chocolate);
}
.mr-why-card__icon svg { width: 100%; height: 100%; }
.mr-why-card h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.01em;
  margin: 0 0 14px; color: var(--mr-chocolate);
}
.mr-why-card p {
  font-size: 14px; line-height: 1.6; color: var(--mr-stone);
  margin: 0 0 22px; flex: 1;
}
.mr-why-card__specs {
  margin: 0; padding-top: 18px;
  border-top: 1px solid var(--mr-border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.mr-why-card__specs > div {
  display: flex; flex-direction: column; gap: 2px;
}
.mr-why-card__specs dt {
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); margin: 0;
}
.mr-why-card__specs dd {
  font-size: 13px; color: var(--mr-chocolate); font-weight: 600; margin: 0;
}

/* ---------- COMPARISON TABLE — acryl vs MediRelaxa ---------- */
.mr-compare {
  background: var(--mr-white);
  padding: 110px 48px;
}
.mr-compare .mr-section-head {
  max-width: 820px; margin: 0 auto 56px; text-align: center;
}
.mr-compare-table {
  max-width: 1100px; margin: 0 auto;
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  overflow: hidden;
  background: var(--mr-paper);
}
.mr-compare-row {
  display: grid; grid-template-columns: 1.1fr 1.4fr 1.4fr;
  border-bottom: 1px solid var(--mr-border);
}
.mr-compare-row:last-child { border-bottom: 0; }
.mr-compare-row--head { background: var(--mr-chocolate); color: var(--mr-cream); }
.mr-compare-row--head .mr-compare-cell {
  padding: 20px 28px;
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 17px; color: var(--mr-cream);
  text-align: center;
}
.mr-compare-row--head .mr-compare-cell--good { color: var(--mr-gold); }
.mr-compare-row--head .mr-compare-cell--bad { color: rgba(244,239,229,0.6); }
.mr-compare-label {
  padding: 22px 28px;
  background: var(--mr-cream-warm);
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); font-weight: 600;
  display: flex; align-items: center;
  border-right: 1px solid var(--mr-border);
}
.mr-compare-cell {
  padding: 22px 28px;
  font-size: 14px; line-height: 1.5;
  display: flex; align-items: center;
  border-right: 1px solid var(--mr-border);
}
.mr-compare-cell:last-child { border-right: 0; }
.mr-compare-cell--bad { color: var(--mr-stone); position: relative; }
.mr-compare-cell--bad::before {
  content: "✕"; color: #c4715a; font-weight: 600;
  margin-right: 10px; flex-shrink: 0;
}
.mr-compare-cell--good { color: var(--mr-chocolate); font-weight: 500; position: relative; background: var(--mr-white); }
.mr-compare-cell--good::before {
  content: "✓"; color: var(--mr-gold); font-weight: 600;
  margin-right: 10px; flex-shrink: 0;
}
.mr-compare-row--head .mr-compare-cell::before { display: none; }

/* ---------- PRODUCTS — homepage grid ---------- */
.mr-products {
  background: var(--mr-paper); padding: 110px 48px 80px;
}
.mr-products .mr-section-head {
  max-width: 800px; margin: 0 auto 56px; text-align: center;
}
.mr-product-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.mr-product {
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mr-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(42,31,21,0.12);
  border-color: var(--mr-chocolate);
}
.mr-product__media {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--mr-cream-warm);
  position: relative;
}
.mr-product__tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 7px 14px;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  border-radius: 2px;
}
.mr-product__tag.is-gold { background: var(--mr-gold); color: var(--mr-chocolate); }
.mr-product__body {
  padding: 28px 28px 26px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.mr-product__body h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; line-height: 1.15; margin: 0; color: var(--mr-chocolate);
}
.mr-product__pitch {
  font-size: 14px; line-height: 1.55; color: var(--mr-stone); margin: 0; flex: 1;
}
.mr-product__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--mr-border);
}
.mr-product__price {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 20px; color: var(--mr-chocolate);
}
.mr-product__price small { color: var(--mr-stone); font-size: 11px; }
.mr-product__cta {
  font-size: 12px; color: var(--mr-chocolate); font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}
.mr-products__more { text-align: center; padding-top: 40px; }

/* ---------- PROCESS — 4-step timeline ---------- */
.mr-process {
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 110px 48px;
}
.mr-process .mr-section-head {
  max-width: 820px; margin: 0 auto 64px; text-align: center;
}
.mr-process .mr-section-head__eyebrow { color: var(--mr-gold); }
.mr-process .mr-section-head h2 { color: var(--mr-cream); }
.mr-process .mr-section-head h2 em { color: var(--mr-gold); }
.mr-process .mr-section-head p { color: rgba(244,239,229,0.78); }
.mr-process-steps {
  max-width: 1100px; margin: 0 auto;
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.mr-process-steps::before {
  content: ""; position: absolute; top: 60px; left: 8%; right: 8%; height: 1px;
  background: rgba(168,138,92,0.4);
  z-index: 0;
}
.mr-process-steps > li {
  position: relative; z-index: 1;
  padding: 0 16px; text-align: center;
}
.mr-process-step__num {
  width: 56px; height: 56px; margin: 0 auto 24px;
  background: var(--mr-cream); color: var(--mr-chocolate);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mr-font-display); font-weight: 500; font-size: 18px;
  position: relative; z-index: 2;
  border: 4px solid var(--mr-chocolate);
}
.mr-process-step__when {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600; margin-bottom: 8px;
}
.mr-process-step__body h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 18px; line-height: 1.2; margin: 0 0 10px; color: var(--mr-cream);
}
.mr-process-step__body p {
  font-size: 13px; line-height: 1.55; color: rgba(244,239,229,0.7); margin: 0;
}

/* ---------- SHOWROOM — split layout ---------- */
.mr-showroom {
  background: var(--mr-paper);
  padding: 110px 48px;
}
.mr-showroom-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.mr-showroom__image {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
  box-shadow: 0 40px 80px rgba(42,31,21,0.15);
}
.mr-showroom__content h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -0.015em;
  margin: 14px 0 20px; color: var(--mr-chocolate);
}
.mr-showroom__content > p {
  font-size: 16px; line-height: 1.65; color: var(--mr-stone); margin: 0 0 24px;
}
.mr-showroom__list {
  list-style: none; padding: 0; margin: 0 0 32px;
  border-top: 1px solid var(--mr-border);
}
.mr-showroom__list li {
  padding: 14px 0; border-bottom: 1px solid var(--mr-border);
  font-size: 14px; color: var(--mr-stone);
}
.mr-showroom__list li strong { color: var(--mr-chocolate); font-weight: 600; margin-right: 8px; }
.mr-showroom__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- GROW — benefit cards ---------- */
.mr-grow {
  background: var(--mr-white);
  padding: 110px 48px;
}
.mr-grow .mr-section-head {
  max-width: 820px; margin: 0 auto 56px; text-align: center;
}
.mr-grow-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.mr-grow-card {
  text-align: center; padding: 36px 26px;
  background: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
}
.mr-grow-card__icon {
  width: 56px; height: 56px; margin: 0 auto 22px;
  background: var(--mr-chocolate); color: var(--mr-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-family: var(--mr-font-display); font-weight: 500;
}
.mr-grow-card h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 18px; line-height: 1.2; margin: 0 0 10px; color: var(--mr-chocolate);
}
.mr-grow-card p { font-size: 13px; line-height: 1.55; color: var(--mr-stone); margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.mr-testimonials {
  background: var(--mr-paper);
  padding: 110px 48px;
}
.mr-testimonials .mr-section-head {
  max-width: 820px; margin: 0 auto 56px; text-align: center;
}
.mr-testimonials__grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.mr-testimonial {
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  padding: 32px 30px;
  margin: 0;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.mr-testimonial::before {
  content: '"';
  position: absolute; top: -20px; left: 24px;
  font-family: var(--mr-font-display); font-style: italic;
  font-size: 100px; line-height: 1; color: var(--mr-gold);
}
.mr-testimonial__stars { color: var(--mr-gold); letter-spacing: 2px; font-size: 14px; }
.mr-testimonial p {
  font-family: var(--mr-font-display); font-style: italic; font-weight: 400;
  font-size: 18px; line-height: 1.45; color: var(--mr-chocolate);
  margin: 0; flex: 1;
}
.mr-testimonial cite {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 18px; border-top: 1px solid var(--mr-border);
  font-style: normal;
}
.mr-testimonial cite strong { font-size: 14px; color: var(--mr-chocolate); font-weight: 600; }
.mr-testimonial cite span { font-size: 12px; color: var(--mr-stone); text-transform: uppercase; letter-spacing: var(--mr-ls-wide); }

/* ---------- OPLEIDING — split ---------- */
.mr-opleiding {
  background: var(--mr-white);
  padding: 110px 48px;
}
.mr-opleiding-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.mr-opleiding__content h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -0.015em;
  margin: 14px 0 20px; color: var(--mr-chocolate);
}
.mr-opleiding__content > p { font-size: 16px; line-height: 1.65; color: var(--mr-stone); margin: 0 0 24px; }
.mr-opleiding__list { list-style: none; padding: 0; margin: 0 0 28px; border-top: 1px solid var(--mr-border); }
.mr-opleiding__list li {
  padding: 14px 0; border-bottom: 1px solid var(--mr-border);
  font-size: 14px; color: var(--mr-stone);
}
.mr-opleiding__list li strong { color: var(--mr-chocolate); font-weight: 600; margin-right: 8px; }
.mr-opleiding__image {
  aspect-ratio: 5/4;
  background-size: cover; background-position: center;
  background-color: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
  box-shadow: 0 40px 80px rgba(42,31,21,0.15);
}

/* ---------- BLOG STRIP on homepage ---------- */
.mr-blog-strip {
  background: var(--mr-paper);
  padding: 110px 48px;
}
.mr-blog-strip .mr-section-head {
  max-width: 820px; margin: 0 auto 56px; text-align: center;
}

/* ---------- FAQ on homepage + PDP ---------- */
.mr-faq, .mr-pdp__faq {
  background: var(--mr-white);
  padding: 110px 48px;
}
.mr-faq__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px;
  align-items: start;
}
.mr-faq__head {
  position: sticky; top: 100px;
}
.mr-faq__head .mr-section-head__eyebrow { margin-bottom: 14px; }
.mr-faq__head h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0 0 14px; color: var(--mr-chocolate);
}
.mr-faq__head p { font-size: 15px; color: var(--mr-stone); margin: 0; }
.mr-faq__head a { color: var(--mr-chocolate); border-bottom: 1px solid var(--mr-gold); }

.mr-faq__items details, .mr-pdp__faq-items details {
  padding: 22px 0;
  border-top: 1px solid var(--mr-border);
}
.mr-faq__items details:last-of-type,
.mr-pdp__faq-items details:last-of-type {
  border-bottom: 1px solid var(--mr-border);
}
.mr-faq__items summary,
.mr-pdp__faq-items summary {
  cursor: pointer; list-style: none;
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 18px; color: var(--mr-chocolate);
  position: relative; padding-right: 36px;
  line-height: 1.3;
}
.mr-faq__items summary::-webkit-details-marker,
.mr-pdp__faq-items summary::-webkit-details-marker { display: none; }
.mr-faq__items summary::after,
.mr-pdp__faq-items summary::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--mr-gold);
  border: 1px solid var(--mr-border); border-radius: 50%;
  transition: transform .2s, background .2s, color .2s;
}
.mr-faq__items details[open] summary::after,
.mr-pdp__faq-items details[open] summary::after {
  content: "−"; background: var(--mr-chocolate); color: var(--mr-cream); border-color: var(--mr-chocolate);
}
.mr-faq__items details p,
.mr-pdp__faq-items details p {
  margin: 14px 0 0;
  font-size: 15px; line-height: 1.65; color: var(--mr-stone);
}

/* PDP FAQ — single-column layout */
.mr-pdp__faq-inner { max-width: 900px; margin: 0 auto; }
.mr-pdp__faq-inner .mr-section-head { text-align: center; margin-bottom: 40px; }

/* ---------- NEWSLETTER ---------- */
.mr-newsletter {
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 100px 48px;
}
.mr-newsletter__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.mr-newsletter .mr-section-head__eyebrow { color: var(--mr-gold); margin-bottom: 14px; }
.mr-newsletter h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0 0 16px; color: var(--mr-cream);
}
.mr-newsletter > .mr-newsletter__inner > .mr-section-head > p,
.mr-newsletter p { font-size: 15px; line-height: 1.6; color: rgba(244,239,229,0.78); margin: 0 0 32px; }
.mr-newsletter__form {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto;
}
.mr-newsletter__form input[type="email"] {
  flex: 1; padding: 16px 20px;
  background: rgba(244,239,229,0.08); border: 1px solid rgba(244,239,229,0.2);
  border-radius: var(--mr-radius);
  font: 400 15px/1.4 var(--mr-font-body); color: var(--mr-cream);
}
.mr-newsletter__form input[type="email"]::placeholder { color: rgba(244,239,229,0.4); }
.mr-newsletter__form input[type="email"]:focus { outline: none; border-color: var(--mr-gold); }
.mr-newsletter__legal { margin-top: 18px !important; font-size: 12px !important; color: rgba(244,239,229,0.55) !important; }
.mr-newsletter__legal a { color: var(--mr-cream); border-bottom: 1px solid rgba(244,239,229,0.4); }

/* ============================================================
 * PDP — luxury, content-rich
 * ============================================================ */

/* Gallery extra */
.mr-pdp__gallery-trust {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-size: 12px; color: var(--mr-stone);
}

/* Info column polish */
.mr-pdp__rating strong { color: var(--mr-chocolate); }
.mr-pdp__price-incl {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 8px;
}
.mr-pdp__divider { color: var(--mr-border); }
.mr-pdp__badge--sale { background: #c4715a; color: var(--mr-cream); }

/* PDP highlights chips */
.mr-pdp__highlights {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin: 0 0 24px;
}
.mr-pdp__highlight {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
}
.mr-pdp__highlight-ico {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--mr-chocolate); color: var(--mr-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.mr-pdp__highlight-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); font-weight: 600;
  margin-right: 4px;
}
.mr-pdp__highlight-value { font-size: 13px; color: var(--mr-chocolate); font-weight: 600; }

/* Quick contact card under cart */
.mr-pdp__quickcontact {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  padding: 18px 20px; margin: 0 0 28px;
  background: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
}
.mr-pdp__quickcontact-text { font-size: 13px; color: var(--mr-stone); line-height: 1.5; }
.mr-pdp__quickcontact-text strong { display: block; color: var(--mr-chocolate); font-weight: 600; margin-bottom: 2px; font-size: 14px; }
.mr-pdp__quickcontact-ctas { display: flex; gap: 14px; }
.mr-pdp__quickcontact-ctas a {
  font-size: 12px; color: var(--mr-chocolate); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid var(--mr-border); padding-bottom: 2px;
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}
.mr-pdp__quickcontact-ctas a:hover { border-color: var(--mr-chocolate); }

/* PDP trust grid — now 4 columns */
.mr-pdp__trust { grid-template-columns: repeat(4, 1fr) !important; }
.mr-pdp__trust-ico {
  width: 40px; height: 40px;
  border: 1px solid var(--mr-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  color: var(--mr-chocolate);
}

/* PDP USP STRIP — between hero and content */
.mr-pdp__uspstrip {
  background: var(--mr-chocolate); color: var(--mr-cream);
  padding: 28px 48px;
  margin-top: 60px;
}
.mr-pdp__uspstrip-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.mr-pdp__uspstrip-item {
  display: flex; align-items: center; gap: 16px;
  padding: 8px 24px;
  border-right: 1px solid rgba(244,239,229,0.18);
}
.mr-pdp__uspstrip-item:last-child { border-right: 0; }
.mr-pdp__uspstrip-num {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 36px; line-height: 1; color: var(--mr-gold);
}
.mr-pdp__uspstrip-text strong {
  display: block; font-size: 14px; color: var(--mr-cream);
}
.mr-pdp__uspstrip-text small {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: rgba(244,239,229,0.6);
}

/* Story lead paragraph */
.mr-pdp__story-lead {
  font-family: var(--mr-font-display); font-style: italic;
  font-size: 22px; line-height: 1.45;
  color: var(--mr-chocolate); margin: 0 0 22px;
}

/* PDP keyfeatures — alternating image+copy blocks */
.mr-pdp__keyfeatures {
  background: var(--mr-white);
  padding: 110px 48px;
}
.mr-pdp__keyfeatures .mr-section-head {
  max-width: 800px; margin: 0 auto 64px; text-align: center;
}
.mr-pdp__keyfeatures-grid {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 80px;
}
.mr-keyfeature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
  position: relative;
}
.mr-keyfeature--reverse { direction: rtl; }
.mr-keyfeature--reverse > * { direction: ltr; }
.mr-keyfeature__num {
  position: absolute; top: -10px; left: -10px;
  font-family: var(--mr-font-display); font-style: italic; font-weight: 500;
  font-size: 80px; line-height: 1; color: var(--mr-paper);
  z-index: 0;
}
.mr-keyfeature--reverse .mr-keyfeature__num { left: auto; right: -10px; }
.mr-keyfeature__img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
  box-shadow: 0 30px 60px rgba(42,31,21,0.12);
  position: relative; z-index: 1;
}
.mr-keyfeature__body { position: relative; z-index: 1; }
.mr-keyfeature__body h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(26px, 2.8vw, 36px); line-height: 1.1; letter-spacing: -0.01em;
  margin: 0 0 16px; color: var(--mr-chocolate);
}
.mr-keyfeature__body p {
  font-size: 16px; line-height: 1.65; color: var(--mr-stone); margin: 0 0 20px;
}
.mr-keyfeature__body strong { color: var(--mr-chocolate); font-weight: 600; }
.mr-keyfeature__bullets {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--mr-border);
}
.mr-keyfeature__bullets li {
  padding: 12px 0 12px 24px;
  font-size: 14px; color: var(--mr-chocolate);
  border-bottom: 1px solid var(--mr-border);
  position: relative;
}
.mr-keyfeature__bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 12px;
  color: var(--mr-gold); font-weight: 600;
}

/* Diagram for water connections */
.mr-keyfeature__diagram {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 24px;
  padding: 20px;
  background: var(--mr-cream-warm); border-radius: var(--mr-radius);
}
.mr-keyfeature__diagram-item {
  text-align: center;
  padding: 12px 8px;
  background: var(--mr-white); border-radius: 4px;
}
.mr-keyfeature__diagram-item strong {
  display: block; font-family: var(--mr-font-display); font-weight: 500;
  font-size: 18px; color: var(--mr-chocolate); margin-bottom: 4px;
}
.mr-keyfeature__diagram-item span {
  font-size: 11px; color: var(--mr-stone); text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}

/* PDP in-the-box section */
.mr-pdp__inthebox {
  background: var(--mr-paper);
  padding: 110px 48px;
}
.mr-pdp__inthebox-inner { max-width: 1100px; margin: 0 auto; }
.mr-pdp__inthebox .mr-section-head { text-align: center; margin-bottom: 56px; max-width: 760px; margin-left: auto; margin-right: auto; }
.mr-pdp__inthebox-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.mr-pdp__inthebox-col {
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  padding: 36px 32px;
}
.mr-pdp__inthebox-col--alt {
  background: var(--mr-cream-warm);
  border-style: dashed;
}
.mr-pdp__inthebox-col h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 20px; margin: 0 0 22px; padding-bottom: 16px;
  border-bottom: 1px solid var(--mr-border);
  color: var(--mr-chocolate);
}
.mr-pdp__inthebox-list { list-style: none; padding: 0; margin: 0; }
.mr-pdp__inthebox-list li {
  padding: 10px 0 10px 28px;
  font-size: 14px; color: var(--mr-chocolate);
  position: relative;
  border-bottom: 1px dashed var(--mr-border);
}
.mr-pdp__inthebox-list li:last-child { border-bottom: 0; }
.mr-pdp__inthebox-list li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  width: 18px; height: 18px;
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.mr-pdp__inthebox-col--alt .mr-pdp__inthebox-list li::before {
  background: transparent; color: var(--mr-gold);
  border: 1px solid var(--mr-gold);
}

/* PDP specs section — with side aside */
.mr-pdp__specs-section {
  background: var(--mr-white);
  padding: 110px 48px;
}
.mr-pdp__specs-section .mr-section-head {
  max-width: 760px; margin: 0 auto 56px; text-align: center;
}
.mr-pdp__specs-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px;
  align-items: start;
}
.mr-pdp__specs-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--mr-border); border-radius: var(--mr-radius);
}
.mr-pdp__specs-table tr { border-bottom: 1px solid var(--mr-border); }
.mr-pdp__specs-table tr:last-child { border-bottom: 0; }
.mr-pdp__specs-table tr:nth-child(even) { background: var(--mr-paper); }
.mr-pdp__specs-table td { padding: 16px 22px; font-size: 14px; vertical-align: top; }
.mr-pdp__specs-table td:first-child {
  color: var(--mr-stone); width: 40%;
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide); font-size: 11px; font-weight: 600;
}
.mr-pdp__specs-table td:last-child { font-weight: 500; color: var(--mr-chocolate); }
.mr-pdp__specs-aside {
  padding: 28px;
  background: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
  border-left: 3px solid var(--mr-gold);
  position: sticky; top: 100px;
}
.mr-pdp__specs-aside h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 20px; margin: 0 0 12px; color: var(--mr-chocolate);
}
.mr-pdp__specs-aside p {
  font-size: 14px; line-height: 1.6; color: var(--mr-stone); margin: 0 0 20px;
}

/* PDP compare table */
.mr-pdp__compare {
  background: var(--mr-paper);
  padding: 110px 48px;
}
.mr-pdp__compare .mr-section-head {
  max-width: 820px; margin: 0 auto 56px; text-align: center;
}

/* PDP personas — 2 cards */
.mr-pdp__personas {
  background: var(--mr-white);
  padding: 110px 48px;
}
.mr-pdp__personas .mr-section-head {
  max-width: 700px; margin: 0 auto 56px; text-align: center;
}
.mr-pdp__personas-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.mr-persona {
  padding: 40px 36px;
  background: var(--mr-paper);
  border-radius: var(--mr-radius);
  border-left: 3px solid var(--mr-gold);
  position: relative;
}
.mr-persona__tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--mr-chocolate); color: var(--mr-cream);
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  border-radius: 2px; margin-bottom: 18px;
}
.mr-persona h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 26px; line-height: 1.15; margin: 0 0 14px; color: var(--mr-chocolate);
}
.mr-persona p {
  font-size: 15px; line-height: 1.6; color: var(--mr-stone); margin: 0 0 20px;
}
.mr-persona__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--mr-border); }
.mr-persona__list li {
  padding: 12px 0 12px 22px;
  font-size: 13px; color: var(--mr-chocolate);
  border-bottom: 1px solid var(--mr-border);
  position: relative;
}
.mr-persona__list li:last-child { border-bottom: 0; }
.mr-persona__list li::before {
  content: "→"; position: absolute; left: 0; top: 12px;
  color: var(--mr-gold); font-weight: 600;
}

/* Bundle saving badge */
.mr-pdp__bundle-saving {
  display: inline-block; padding: 6px 12px; margin-bottom: 8px;
  background: var(--mr-gold); color: var(--mr-chocolate);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  border-radius: 2px;
}

/* ---------- v4 responsive ---------- */
@media (max-width: 1024px) {
  body.mr-brand-template .mr-hero { min-height: 70vh; }
  body.mr-brand-template .mr-hero__inner { padding: 60px 32px; }
  body.mr-brand-template .mr-hero__title { font-size: clamp(34px, 6vw, 56px); }
  .mr-hero__trust { gap: 16px; }
  .mr-hero__trust-divider { display: none; }

  .mr-announce { padding: 14px 32px; }
  .mr-announce__row { gap: 16px; }
  .mr-announce__item { font-size: 11px; }

  .mr-why-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-product-grid { grid-template-columns: 1fr; }
  .mr-process-steps { grid-template-columns: 1fr 1fr; gap: 40px 16px; }
  .mr-process-steps::before { display: none; }
  .mr-showroom-grid, .mr-opleiding-grid { grid-template-columns: 1fr; gap: 40px; }
  .mr-showroom__image, .mr-opleiding__image { max-width: 600px; margin: 0 auto; aspect-ratio: 4/3; }
  .mr-grow-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .mr-faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .mr-faq__head { position: static; }

  .mr-pdp__uspstrip-inner { grid-template-columns: repeat(2, 1fr); }
  .mr-pdp__uspstrip-item { padding: 14px 18px; }
  .mr-pdp__uspstrip-item:nth-child(2) { border-right: 0; }
  .mr-keyfeature { grid-template-columns: 1fr; gap: 24px; }
  .mr-keyfeature--reverse { direction: ltr; }
  .mr-pdp__inthebox-grid { grid-template-columns: 1fr; }
  .mr-pdp__specs-grid { grid-template-columns: 1fr; gap: 32px; }
  .mr-pdp__specs-aside { position: static; }
  .mr-pdp__personas-grid { grid-template-columns: 1fr; }
  .mr-pdp__trust { grid-template-columns: repeat(2, 1fr) !important; }
  .mr-pdp__highlights { grid-template-columns: 1fr; }

  .mr-why, .mr-compare, .mr-products, .mr-process, .mr-showroom,
  .mr-grow, .mr-testimonials, .mr-opleiding, .mr-blog-strip,
  .mr-faq, .mr-pdp__faq, .mr-newsletter,
  .mr-pdp__keyfeatures, .mr-pdp__inthebox, .mr-pdp__specs-section,
  .mr-pdp__compare, .mr-pdp__personas, .mr-pdp__uspstrip {
    padding-left: 32px; padding-right: 32px;
  }

  .mr-compare-row { grid-template-columns: 1fr 1fr 1fr; }
  .mr-compare-label { font-size: 10px; padding: 16px; }
  .mr-compare-cell { padding: 16px; font-size: 13px; }
}

@media (max-width: 640px) {
  body.mr-brand-template .mr-hero { min-height: 78vh; }
  body.mr-brand-template .mr-hero__inner { padding: 48px 20px; }
  body.mr-brand-template .mr-hero__title { font-size: 38px; }
  body.mr-brand-template .mr-hero__lede { font-size: 16px; }
  body.mr-brand-template .mr-hero__ctas { flex-direction: column; }
  body.mr-brand-template .mr-hero__ctas .mr-btn { width: 100%; justify-content: center; }
  .mr-hero__trust { gap: 16px 24px; }
  .mr-hero__trust-item strong { font-size: 18px; }
  .mr-hero__scrollcue { display: none; }

  .mr-announce__row { justify-content: flex-start; gap: 12px; flex-direction: column; align-items: flex-start; }

  .mr-why-grid, .mr-grow-grid { grid-template-columns: 1fr; }
  .mr-process-steps { grid-template-columns: 1fr; }

  .mr-compare-table { font-size: 12px; }
  .mr-compare-row, .mr-compare-row--head { grid-template-columns: 1fr; }
  .mr-compare-label { background: var(--mr-chocolate); color: var(--mr-cream); border-right: 0; border-bottom: 1px solid rgba(244,239,229,0.15); }
  .mr-compare-cell { border-right: 0; border-bottom: 1px solid var(--mr-border); }
  .mr-compare-row--head { display: none; }

  .mr-pdp__uspstrip-inner { grid-template-columns: 1fr; }
  .mr-pdp__uspstrip-item { border-right: 0 !important; border-bottom: 1px solid rgba(244,239,229,0.15); padding: 14px 0; }
  .mr-pdp__uspstrip-item:last-child { border-bottom: 0; }
  .mr-pdp__trust { grid-template-columns: 1fr 1fr !important; }
  .mr-keyfeature__diagram { grid-template-columns: 1fr; }

  .mr-why, .mr-compare, .mr-products, .mr-process, .mr-showroom,
  .mr-grow, .mr-testimonials, .mr-opleiding, .mr-blog-strip,
  .mr-faq, .mr-pdp__faq, .mr-newsletter,
  .mr-pdp__keyfeatures, .mr-pdp__inthebox, .mr-pdp__specs-section,
  .mr-pdp__compare, .mr-pdp__personas, .mr-pdp__uspstrip,
  .mr-announce {
    padding-left: 20px; padding-right: 20px;
    padding-top: 70px; padding-bottom: 70px;
  }
  .mr-pdp__uspstrip, .mr-announce { padding-top: 24px; padding-bottom: 24px; }
  .mr-newsletter__form { flex-direction: column; }
}

/* ============================================================
 * v4.1 — Press strip, case study, sticky cart, fade-in, luxury polish
 * ============================================================ */

/* Hero photo focus point — show the bank, not the cushion */
body.mr-brand-template .mr-hero__bg {
  background-position: center center;
}

/* Drop cap for story lead — luxury magazine feel */
.mr-pdp__story-lead::first-letter {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 4em; line-height: 0.85;
  float: left; padding: 4px 14px 0 0;
  color: var(--mr-gold);
}

/* Ornamental section separators */
.mr-pdp__keyfeatures, .mr-pdp__inthebox, .mr-pdp__specs-section,
.mr-pdp__compare, .mr-pdp__personas, .mr-pdp__bundle, .mr-pdp__faq,
.mr-pdp__casestudy, .mr-pdp__reviews, .mr-pdp__related,
.mr-why, .mr-compare, .mr-products, .mr-process, .mr-showroom,
.mr-grow, .mr-testimonials, .mr-opleiding, .mr-blog-strip, .mr-faq {
  position: relative;
}

/* Eyebrow polish — small leading dash before label */
.mr-section-head__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
}
.mr-section-head__eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--mr-gold);
  display: inline-block;
}

/* ---------- PRESS STRIP (homepage + PDP variants) ---------- */
.mr-press, .mr-pdp__press {
  background: var(--mr-cream);
  padding: 36px 48px;
  border-top: 1px solid var(--mr-border);
  border-bottom: 1px solid var(--mr-border);
}
.mr-press__inner, .mr-pdp__press-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
}
.mr-press__label, .mr-pdp__press-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-stone); font-weight: 600;
  flex-shrink: 0;
}
.mr-press__marks, .mr-pdp__press-marks {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; flex: 1;
}
.mr-press__mark, .mr-pdp__press-mark {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 17px; color: var(--mr-chocolate);
  letter-spacing: -0.005em;
  opacity: 0.78;
  transition: opacity .2s;
}
.mr-press__mark:hover, .mr-pdp__press-mark:hover { opacity: 1; }
.mr-press__divider, .mr-pdp__press-divider {
  width: 1px; height: 16px; background: var(--mr-border);
}
.mr-pdp__press { padding: 28px 48px; margin-top: 60px; }
.mr-pdp__press + .mr-pdp__uspstrip { margin-top: 0; }

/* ---------- CASE STUDY — full PDP highlight ---------- */
.mr-pdp__casestudy {
  background: var(--mr-paper);
  padding: 110px 48px;
}
.mr-pdp__casestudy-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: stretch;
}
.mr-pdp__casestudy-visual {
  position: relative; min-height: 540px;
  background-size: cover; background-position: center;
  background-color: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
  box-shadow: 0 50px 100px rgba(42,31,21,0.18);
  overflow: hidden;
}
.mr-pdp__casestudy-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42,31,21,0.4) 100%);
}
.mr-pdp__casestudy-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--mr-cream); color: var(--mr-chocolate);
  padding: 18px 24px;
  border-radius: var(--mr-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 2;
}
.mr-pdp__casestudy-badge strong {
  display: block; font-family: var(--mr-font-display); font-weight: 500;
  font-size: 36px; line-height: 1; color: var(--mr-chocolate);
}
.mr-pdp__casestudy-badge span {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); font-weight: 600;
}
.mr-pdp__casestudy-copy { display: flex; flex-direction: column; justify-content: center; }
.mr-pdp__casestudy-copy h2 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px); line-height: 1.06; letter-spacing: -0.015em;
  margin: 14px 0 22px; color: var(--mr-chocolate);
}
.mr-pdp__casestudy-copy h2 em { font-style: italic; color: var(--mr-gold); font-weight: 400; }
.mr-pdp__casestudy-lead {
  font-size: 17px; line-height: 1.55; color: var(--mr-stone); margin: 0 0 28px;
}
.mr-pdp__casestudy-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--mr-border);
  border-bottom: 1px solid var(--mr-border);
}
.mr-pdp__casestudy-metric {
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--mr-border);
}
.mr-pdp__casestudy-metric:last-child { border-right: 0; padding-right: 0; padding-left: 18px; }
.mr-pdp__casestudy-metric:not(:first-child) { padding-left: 18px; }
.mr-pdp__casestudy-metric strong {
  display: block;
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 30px; line-height: 1; color: var(--mr-chocolate);
  margin-bottom: 6px;
}
.mr-pdp__casestudy-metric span {
  font-size: 12px; color: var(--mr-stone); line-height: 1.4;
}
.mr-pdp__casestudy-quote {
  margin: 0; padding: 22px 26px;
  background: var(--mr-white);
  border-left: 3px solid var(--mr-gold);
  border-radius: 0 4px 4px 0;
  font-family: var(--mr-font-display); font-style: italic;
  font-size: 18px; line-height: 1.5; color: var(--mr-chocolate);
}
.mr-pdp__casestudy-quote cite {
  display: block; margin-top: 12px;
  font-family: var(--mr-font-body); font-style: normal;
  font-size: 12px; color: var(--mr-stone);
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}

/* ---------- STICKY PDP add-to-cart bar ---------- */
.mr-pdp-sticky {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-top: 1px solid rgba(244,239,229,0.12);
  box-shadow: 0 -10px 30px rgba(42,31,21,0.25);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(0.4, 0.0, 0.2, 1);
  padding: 14px 48px;
}
.mr-pdp-sticky.is-visible { transform: translateY(0); }
.mr-pdp-sticky__inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.mr-pdp-sticky__product {
  display: flex; align-items: center; gap: 16px;
  min-width: 0;
}
.mr-pdp-sticky__thumb {
  width: 56px; height: 56px; flex-shrink: 0;
  background-size: cover; background-position: center;
  background-color: var(--mr-cream-warm);
  border-radius: 4px;
}
.mr-pdp-sticky__meta {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.mr-pdp-sticky__meta strong {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 16px; color: var(--mr-cream);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 360px;
}
.mr-pdp-sticky__meta span,
.mr-pdp-sticky__meta .woocommerce-Price-amount {
  font-size: 14px; color: var(--mr-gold);
}
.mr-pdp-sticky__meta del { color: rgba(244,239,229,0.5); font-size: 12px; margin-right: 6px; }
.mr-pdp-sticky__ctas { display: flex; gap: 10px; flex-shrink: 0; }
.mr-pdp-sticky__ctas .mr-btn {
  padding: 12px 20px; font-size: 12px;
}

/* ---------- FADE-IN ON SCROLL ---------- */
.mr-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1), transform .9s cubic-bezier(0.16, 1, 0.3, 1);
}
.mr-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .mr-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Subtle texture overlay on dark sections (luxury feel) ---------- */
.mr-process, .mr-newsletter, .mr-cta-band, body.mr-brand-template .mr-hero {
  position: relative;
}
.mr-process::after, .mr-newsletter::after, .mr-cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(168,138,92,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168,138,92,0.04) 0%, transparent 50%);
  z-index: 0;
}
.mr-process > *, .mr-newsletter > *, .mr-cta-band > * { position: relative; z-index: 1; }

/* Hero — golden ornament accent on the side */
body.mr-brand-template .mr-hero::after {
  content: ""; position: absolute; top: 50%; right: 56px;
  transform: translateY(-50%);
  width: 1px; height: 120px;
  background: linear-gradient(180deg, transparent, var(--mr-gold), transparent);
  opacity: 0.6;
  z-index: 3;
}

/* Why-card — subtle gold highlight on hover */
.mr-why-card { overflow: hidden; }
.mr-why-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--mr-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.mr-why-card:hover::before { transform: scaleX(1); }

/* Compare-row hover refinement */
.mr-compare-row:not(.mr-compare-row--head) { transition: background .15s; }
.mr-compare-row:not(.mr-compare-row--head):hover { background: rgba(168,138,92,0.04); }

/* Testimonials decorative quote — golden, larger */
.mr-testimonial::before {
  font-size: 140px;
  opacity: 0.8;
}

/* PDP — make the spacing of the body before sticky bar OK */
body.mr-brand-template:has(.mr-pdp-sticky.is-visible) { padding-bottom: 86px; }

/* PDP highlights chips — refined */
.mr-pdp__highlight {
  transition: border-color .15s, background .15s;
}
.mr-pdp__highlight:hover { border-color: var(--mr-chocolate); background: var(--mr-cream-warm); }

/* Quickcontact card — golden border accent */
.mr-pdp__quickcontact {
  border-left: 3px solid var(--mr-gold);
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-left: 3px solid var(--mr-gold);
}

/* PDP main image — subtle inner shadow framing */
.mr-pdp__main {
  position: relative;
}
.mr-pdp__main::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(42,31,21,0.06);
  border-radius: 6px;
}

/* Process steps — golden glow on numbers */
.mr-process-step__num {
  box-shadow: 0 0 0 1px rgba(168,138,92,0.3), 0 0 30px rgba(168,138,92,0.0);
  transition: box-shadow .3s;
}
.mr-process-steps > li:hover .mr-process-step__num {
  box-shadow: 0 0 0 1px rgba(168,138,92,0.6), 0 0 30px rgba(168,138,92,0.2);
}

/* Responsive — press strip + case study + sticky */
@media (max-width: 1024px) {
  .mr-press, .mr-pdp__press { padding: 28px 32px; }
  .mr-press__inner, .mr-pdp__press-inner { gap: 20px; }
  .mr-press__marks, .mr-pdp__press-marks { gap: 16px; }
  .mr-press__mark, .mr-pdp__press-mark { font-size: 15px; }

  .mr-pdp__casestudy { padding: 80px 32px; }
  .mr-pdp__casestudy-grid { grid-template-columns: 1fr; gap: 40px; }
  .mr-pdp__casestudy-visual { min-height: 360px; }
  .mr-pdp__casestudy-metrics { grid-template-columns: repeat(3, 1fr); }

  .mr-pdp-sticky { padding: 12px 24px; }
  .mr-pdp-sticky__meta strong { font-size: 14px; max-width: 200px; }
  .mr-pdp-sticky__meta { font-size: 12px; }
  .mr-pdp-sticky__ctas .mr-btn { padding: 10px 14px; font-size: 11px; }

  body.mr-brand-template .mr-hero::after { display: none; }
}
@media (max-width: 640px) {
  .mr-press, .mr-pdp__press { padding: 24px 20px; }
  .mr-press__inner, .mr-pdp__press-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mr-press__marks, .mr-pdp__press-marks { gap: 12px; }
  .mr-press__divider, .mr-pdp__press-divider { display: none; }
  .mr-press__mark, .mr-pdp__press-mark { font-size: 14px; opacity: 1; }

  .mr-pdp__casestudy { padding: 60px 20px; }
  .mr-pdp__casestudy-metrics { grid-template-columns: 1fr; }
  .mr-pdp__casestudy-metric {
    border-right: 0; border-bottom: 1px solid var(--mr-border);
    padding: 16px 0 !important;
  }
  .mr-pdp__casestudy-metric:last-child { border-bottom: 0; }

  .mr-pdp-sticky__product .mr-pdp-sticky__thumb { display: none; }
  .mr-pdp-sticky__ctas .mr-btn:first-child { display: none; }
  .mr-pdp-sticky__inner { gap: 14px; }
}

/* ============================================================
 * v4.2 — PDP info column redesign (no badge, accordion, trustline)
 * ============================================================ */

/* PDP main image — white background blends out via mix-blend-mode (luxury catalog look) */
.mr-pdp__main {
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  padding: 0;
}
.mr-pdp__main-img,
.mr-pdp__main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4%;
  display: block;
  mix-blend-mode: multiply;
}
.mr-pdp__thumb {
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
}
.mr-pdp__thumb img { mix-blend-mode: multiply; object-fit: contain; padding: 4%; }

/* Hide badges entirely on PDP — clean catalog feel */
.mr-pdp__badge { display: none !important; }

/* Quick feature bullets — luxury reference style (above price) */
.mr-pdp__quickfeat {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.mr-pdp__quickfeat li {
  position: relative;
  padding: 4px 0 4px 28px;
  font-size: 14.5px; line-height: 1.45;
  color: var(--mr-chocolate);
}
.mr-pdp__quickfeat li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 9px;
  border-left: 1.8px solid var(--mr-gold);
  border-bottom: 1.8px solid var(--mr-gold);
  transform: rotate(-45deg);
}

/* Subtitle polish */
.mr-pdp__subtitle {
  font-size: 15px;
  color: var(--mr-stone);
  font-family: var(--mr-font-body); font-style: normal;
  margin-bottom: 22px;
}

/* Trustline — single elegant strip */
.mr-pdp__trustline {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  margin: 22px 0 18px;
  background: var(--mr-cream-warm);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  font-size: 13px; line-height: 1.5;
  color: var(--mr-stone);
}
.mr-pdp__trustline svg {
  flex-shrink: 0; color: var(--mr-gold);
}
.mr-pdp__trustline strong { color: var(--mr-chocolate); font-weight: 600; }

/* Hide old trust grid + highlight chips entirely */
.mr-pdp__trust,
.mr-pdp__highlights { display: none !important; }

/* Quick contact card — refined with SVG icons */
.mr-pdp__quickcontact { margin: 18px 0 26px; }
.mr-pdp__quickcontact-ctas a {
  display: inline-flex; align-items: center; gap: 8px;
}
.mr-pdp__quickcontact-ctas a svg { color: var(--mr-gold); }

/* ---------- ACCORDION — replaces highlight chips ---------- */
.mr-pdp__accord {
  border-top: 1px solid var(--mr-border);
}
.mr-pdp__accord details {
  border-bottom: 1px solid var(--mr-border);
}
.mr-pdp__accord summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  position: relative;
}
.mr-pdp__accord summary::-webkit-details-marker { display: none; }
.mr-pdp__accord summary::after {
  content: ""; position: absolute; right: 4px; top: 50%;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--mr-chocolate);
  border-bottom: 1.5px solid var(--mr-chocolate);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s;
}
.mr-pdp__accord details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.mr-pdp__accord-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--mr-cream-warm);
  display: flex; align-items: center; justify-content: center;
  color: var(--mr-chocolate);
  transition: background .15s, color .15s;
}
.mr-pdp__accord details[open] .mr-pdp__accord-icon {
  background: var(--mr-chocolate); color: var(--mr-gold);
}
.mr-pdp__accord-text {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
  padding-right: 28px;
}
.mr-pdp__accord-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); font-weight: 600;
}
.mr-pdp__accord-value {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 16px; color: var(--mr-chocolate); line-height: 1.2;
}
.mr-pdp__accord-body {
  padding: 4px 0 22px 56px;
  font-size: 14px; line-height: 1.65; color: var(--mr-stone);
}
.mr-pdp__accord-body p { margin: 0 0 12px; }
.mr-pdp__accord-body p:last-child { margin: 0; }
.mr-pdp__accord-body ul {
  list-style: none; padding: 0; margin: 8px 0 0;
}
.mr-pdp__accord-body ul li {
  padding: 6px 0 6px 18px;
  font-size: 13.5px;
  position: relative;
  color: var(--mr-chocolate);
}
.mr-pdp__accord-body ul li::before {
  content: "—"; position: absolute; left: 0; top: 6px;
  color: var(--mr-gold);
}
.mr-pdp__accord-body strong { color: var(--mr-chocolate); font-weight: 600; }

/* Tighten mobile spacing for the new info column */
@media (max-width: 640px) {
  .mr-pdp__main-img { padding: 8%; }
  .mr-pdp__accord summary { padding: 16px 0; }
  .mr-pdp__accord-icon { width: 36px; height: 36px; }
  .mr-pdp__accord-body { padding-left: 52px; }
  .mr-pdp__quickfeat li { font-size: 13.5px; }
}


/* ============================================================
 * v4.3 — Narrative steps, ROI calculator, support cards, Instagram strip
 * ============================================================ */

/* ---------- 3-STEP NARRATIVE ---------- */
.mr-pdp__narrative {
  background: var(--mr-white);
  padding: 110px 48px;
}
.mr-pdp__narrative .mr-section-head {
  max-width: 820px; margin: 0 auto 64px; text-align: center;
}
.mr-pdp__narrative-steps {
  max-width: 1300px; margin: 0 auto 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.mr-pdp__narrative-step {
  position: relative;
  padding: 36px 32px 56px;
  background: var(--mr-paper);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mr-pdp__narrative-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(42,31,21,0.10);
  border-color: var(--mr-chocolate);
}
.mr-pdp__narrative-step__head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mr-border);
  margin-bottom: 18px;
}
.mr-pdp__narrative-step__num {
  font-family: var(--mr-font-display); font-weight: 500; font-style: italic;
  font-size: 22px; color: var(--mr-gold);
}
.mr-pdp__narrative-step__when {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); font-weight: 600;
}
.mr-pdp__narrative-step h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0 0 14px; color: var(--mr-chocolate);
}
.mr-pdp__narrative-step p {
  font-size: 14px; line-height: 1.65; color: var(--mr-stone); margin: 0;
}
.mr-pdp__narrative-step__tag {
  position: absolute; bottom: 20px; left: 32px;
  font-size: 10px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600;
  padding: 4px 10px;
  border: 1px solid var(--mr-gold);
  border-radius: 999px;
}
.mr-pdp__narrative-conclusion {
  max-width: 880px; margin: 0 auto;
  padding: 40px 48px;
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-radius: var(--mr-radius);
  position: relative;
  text-align: center;
}
.mr-pdp__narrative-conclusion__head {
  display: inline-block;
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-gold); font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--mr-gold);
  border-radius: 999px;
  margin-bottom: 18px;
}
.mr-pdp__narrative-conclusion p {
  font-family: var(--mr-font-display); font-style: italic; font-weight: 400;
  font-size: 20px; line-height: 1.5; color: var(--mr-cream);
  margin: 0 0 24px;
}
.mr-pdp__narrative-conclusion strong { color: var(--mr-gold); font-style: normal; font-weight: 600; }
.mr-pdp__narrative-conclusion .mr-btn--primary { background: var(--mr-cream); color: var(--mr-chocolate); border-color: var(--mr-cream); }
.mr-pdp__narrative-conclusion .mr-btn--primary:hover { background: var(--mr-gold); border-color: var(--mr-gold); }

/* ---------- ROI CALCULATOR ---------- */
.mr-pdp__roi {
  background: var(--mr-paper);
  padding: 110px 48px;
}
.mr-pdp__roi-inner { max-width: 1200px; margin: 0 auto; }
.mr-pdp__roi .mr-section-head { max-width: 820px; margin: 0 auto 56px; text-align: center; }

.mr-pdp__roi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 56px;
}
.mr-pdp__roi-block {
  padding: 28px 24px;
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  text-align: left;
  position: relative;
}
.mr-pdp__roi-block--highlight {
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-color: var(--mr-chocolate);
}
.mr-pdp__roi-block__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--mr-ls-xxwide);
  color: var(--mr-stone); font-weight: 600;
  margin-bottom: 14px;
}
.mr-pdp__roi-block--highlight .mr-pdp__roi-block__label { color: var(--mr-gold); }
.mr-pdp__roi-block__value {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 44px; line-height: 1; color: var(--mr-chocolate);
  margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 8px;
}
.mr-pdp__roi-block--highlight .mr-pdp__roi-block__value { color: var(--mr-cream); }
.mr-pdp__roi-block__value small {
  font-family: var(--mr-font-body); font-weight: 400;
  font-size: 12px; color: var(--mr-stone);
  text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
}
.mr-pdp__roi-block--highlight .mr-pdp__roi-block__value small { color: rgba(244,239,229,0.7); }
.mr-pdp__roi-block__note {
  font-size: 12.5px; line-height: 1.5; color: var(--mr-stone);
}
.mr-pdp__roi-block--highlight .mr-pdp__roi-block__note { color: rgba(244,239,229,0.7); }

.mr-pdp__roi-bar {
  padding: 36px 40px;
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  margin-bottom: 28px;
}
.mr-pdp__roi-bar__label {
  font-size: 12px; text-transform: uppercase; letter-spacing: var(--mr-ls-wide);
  color: var(--mr-stone); font-weight: 600;
  margin-bottom: 18px;
}
.mr-pdp__roi-bar__track {
  display: flex; height: 64px;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--mr-border);
}
.mr-pdp__roi-bar__cost,
.mr-pdp__roi-bar__gain {
  display: flex; align-items: center; padding: 0 18px;
}
.mr-pdp__roi-bar__cost {
  background: var(--mr-cream-warm);
  color: var(--mr-stone);
}
.mr-pdp__roi-bar__gain {
  background: var(--mr-chocolate);
  color: var(--mr-cream);
  border-left: 1px solid var(--mr-gold);
}
.mr-pdp__roi-bar__cost span,
.mr-pdp__roi-bar__gain span {
  font-size: 12px; line-height: 1.35; font-weight: 500;
}
.mr-pdp__roi-bar__cost span { color: var(--mr-chocolate); }
.mr-pdp__roi-bar__gain span { color: var(--mr-cream); }
.mr-pdp__roi-bar__legend {
  display: flex; gap: 24px;
  margin-top: 16px;
  font-size: 12px; color: var(--mr-stone);
}
.mr-pdp__roi-bar__legend .dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  margin-right: 6px; vertical-align: middle;
}
.dot--cost { background: var(--mr-cream-warm); border: 1px solid var(--mr-border); }
.dot--gain { background: var(--mr-chocolate); }

.mr-pdp__roi-disclaimer {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 18px;
  background: rgba(168,138,92,0.08);
  border-left: 2px solid var(--mr-gold);
  font-size: 12.5px; line-height: 1.55; color: var(--mr-stone);
  border-radius: 0 4px 4px 0;
}
.mr-pdp__roi-disclaimer svg { color: var(--mr-gold); flex-shrink: 0; margin-top: 2px; }

/* ---------- SUPPORT 4-CARD ---------- */
.mr-pdp__support {
  background: var(--mr-white);
  padding: 110px 48px;
}
.mr-pdp__support .mr-section-head {
  max-width: 820px; margin: 0 auto 56px; text-align: center;
}
.mr-pdp__support-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.mr-pdp__support-card {
  display: grid; grid-template-columns: 70px 1fr; gap: 22px;
  padding: 32px 30px;
  background: var(--mr-paper);
  border-radius: var(--mr-radius);
  border-left: 3px solid var(--mr-gold);
}
.mr-pdp__support-card__ico {
  width: 56px; height: 56px;
  background: var(--mr-chocolate); color: var(--mr-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mr-pdp__support-card h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 20px; line-height: 1.2; margin: 0 0 10px; color: var(--mr-chocolate);
}
.mr-pdp__support-card p {
  font-size: 14px; line-height: 1.6; color: var(--mr-stone); margin: 0;
}

/* ---------- INSTAGRAM STRIP ---------- */
.mr-pdp__insta {
  background: var(--mr-paper);
  padding: 110px 48px;
}
.mr-pdp__insta .mr-section-head {
  max-width: 820px; margin: 0 auto 56px; text-align: center;
}
.mr-pdp__insta-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.mr-pdp__insta-tile {
  position: relative;
  aspect-ratio: 1/1;
  background-size: cover; background-position: center;
  background-color: var(--mr-cream-warm);
  border-radius: var(--mr-radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s;
}
.mr-pdp__insta-tile:hover { transform: scale(1.02); }
.mr-pdp__insta-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42,31,21,0.7) 100%);
  opacity: 0.85;
  transition: opacity .2s;
}
.mr-pdp__insta-tile:hover::after { opacity: 1; }
.mr-pdp__insta-tile__overlay {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: 13px; color: var(--mr-cream); font-weight: 500;
  letter-spacing: 0.01em;
}
.mr-pdp__insta-cta {
  text-align: center; margin-top: 36px;
}

/* ---------- v4.3 responsive ---------- */
@media (max-width: 1024px) {
  .mr-pdp__narrative-steps { grid-template-columns: 1fr; }
  .mr-pdp__narrative-conclusion { padding: 32px 28px; }
  .mr-pdp__narrative-conclusion p { font-size: 17px; }
  .mr-pdp__roi-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-pdp__roi-block__value { font-size: 36px; }
  .mr-pdp__support-grid { grid-template-columns: 1fr; }
  .mr-pdp__insta-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-pdp__narrative, .mr-pdp__roi, .mr-pdp__support, .mr-pdp__insta {
    padding-left: 32px; padding-right: 32px;
  }
}
@media (max-width: 640px) {
  .mr-pdp__roi-grid { grid-template-columns: 1fr; gap: 14px; }
  .mr-pdp__roi-bar { padding: 24px 20px; }
  .mr-pdp__roi-bar__track { height: 80px; flex-direction: column; }
  .mr-pdp__roi-bar__cost, .mr-pdp__roi-bar__gain { width: 100% !important; height: 50%; }
  .mr-pdp__roi-bar__gain { border-left: 0; border-top: 1px solid var(--mr-gold); }
  .mr-pdp__support-card { grid-template-columns: 56px 1fr; gap: 16px; padding: 24px 22px; }
  .mr-pdp__insta-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mr-pdp__narrative, .mr-pdp__roi, .mr-pdp__support, .mr-pdp__insta {
    padding: 70px 20px;
  }
}

/* ============================================================
 * v4.4 — Layout fixes, contrast bump, mobile polish
 * ============================================================ */

/* ---------- Story visual: 1/1 square + add 2nd photo ---------- */
.mr-pdp__story-img {
  aspect-ratio: 1/1 !important;
  margin-bottom: 18px;
}
.mr-pdp__story-img--alt {
  aspect-ratio: 4/3 !important;
  margin-top: 18px; margin-bottom: 0;
}

/* ---------- Gallery sticky — fills the gap below product photo when info is long ---------- */
@media (min-width: 1025px) {
  .mr-pdp__grid { align-items: start; }
  .mr-pdp__gallery {
    position: sticky;
    top: 24px;
    align-self: start;
  }
}

/* Info column tighter typography to reduce vertical sprawl */
.mr-pdp__info { padding: 0; }

/* ---------- Support cards — fix grid (3 children bug) by using flex ---------- */
.mr-pdp__support-card {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 30px;
}
.mr-pdp__support-card__ico {
  width: 56px; height: 56px;
  flex-shrink: 0;
}
.mr-pdp__support-card__body { flex: 1; min-width: 0; }
.mr-pdp__support-card__body h3 {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 20px; line-height: 1.2; margin: 0 0 10px; color: var(--mr-chocolate);
}
.mr-pdp__support-card__body p {
  font-size: 14px; line-height: 1.6; color: var(--mr-stone); margin: 0;
}

/* ---------- Reviews — full-width, 2-col grid layout, luxe ---------- */
.mr-pdp__reviews { background: var(--mr-paper); }
.mr-pdp__reviews-inner { max-width: 1300px; }
.mr-pdp__reviews .mr-section-head { max-width: 800px; margin: 0 auto 48px; text-align: center; }

/* Score summary header — full width side-by-side */
.mr-pdp__reviews .woocommerce-noreviews,
.mr-pdp__reviews .commentlist {
  background: var(--mr-white);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  padding: 32px;
  list-style: none;
}

/* The custom 4.89 + stars summary block at top of commentlist */
.mr-pdp__reviews .commentlist > li:first-child {
  display: block !important;
  margin-bottom: 8px;
  padding: 28px 32px;
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-radius: var(--mr-radius);
  border: 0;
}
.mr-pdp__reviews .commentlist > li:first-child * { color: var(--mr-cream); }
.mr-pdp__reviews .commentlist > li:first-child .star-rating,
.mr-pdp__reviews .commentlist > li:first-child b,
.mr-pdp__reviews .commentlist > li:first-child strong { color: var(--mr-gold) !important; }

/* Reviews grid — 2 columns of individual reviews */
.mr-pdp__reviews .commentlist {
  background: transparent !important; padding: 0 !important; border: 0 !important;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 0 !important;
}
.mr-pdp__reviews .commentlist > li {
  grid-column: span 1;
  background: var(--mr-white);
  border: 1px solid var(--mr-border) !important;
  border-radius: var(--mr-radius);
  padding: 22px 24px !important;
  margin: 0 !important;
}
.mr-pdp__reviews .commentlist > li:first-child {
  grid-column: 1 / -1;  /* score block spans both cols */
}
.mr-pdp__reviews .commentlist .comment_container {
  display: flex !important; gap: 14px; align-items: flex-start;
}
.mr-pdp__reviews .avatar {
  width: 40px !important; height: 40px !important; border-radius: 50%;
  flex-shrink: 0;
}
.mr-pdp__reviews .comment-text { flex: 1; min-width: 0; }
.mr-pdp__reviews .meta { font-size: 12px; color: var(--mr-stone); margin-bottom: 4px; }
.mr-pdp__reviews .meta strong { color: var(--mr-chocolate); font-weight: 600; }
.mr-pdp__reviews .star-rating { color: var(--mr-gold); font-size: 12px; }
.mr-pdp__reviews .description p {
  font-size: 13.5px !important; line-height: 1.55 !important; margin: 6px 0 0 !important;
}

/* Comment form refined */
.mr-pdp__reviews #review_form_wrapper {
  max-width: 720px; margin: 40px auto 0;
  padding-top: 32px; border-top: 1px solid var(--mr-border);
  grid-column: 1 / -1;
}

/* ---------- FAQ — polish layout (more visual richness) ---------- */
.mr-pdp__faq { background: var(--mr-white); }
.mr-pdp__faq-inner { max-width: 1100px; }
.mr-pdp__faq-inner .mr-section-head { text-align: center; margin-bottom: 48px; }

/* Detail rows alternate cream/white background for contrast */
.mr-pdp__faq-items details {
  background: var(--mr-paper);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  margin-bottom: 10px;
  padding: 18px 24px;
  border-top: 1px solid var(--mr-border) !important;
}
.mr-pdp__faq-items details:last-of-type {
  border-bottom: 1px solid var(--mr-border) !important;
}
.mr-pdp__faq-items details[open] {
  background: var(--mr-cream-warm);
  border-color: var(--mr-chocolate);
  box-shadow: 0 12px 30px rgba(42,31,21,0.06);
}
.mr-pdp__faq-items summary {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 17px;
  padding-right: 44px;
}
.mr-pdp__faq-items summary::after {
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-color: var(--mr-chocolate);
}
.mr-pdp__faq-items details p {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--mr-border);
  font-size: 14.5px;
}

/* Homepage FAQ same treatment */
.mr-faq__items details {
  background: var(--mr-paper);
  border: 1px solid var(--mr-border);
  border-radius: var(--mr-radius);
  margin-bottom: 10px;
  padding: 18px 24px;
  border-top: 1px solid var(--mr-border) !important;
}
.mr-faq__items details:last-of-type {
  border-bottom: 1px solid var(--mr-border) !important;
}
.mr-faq__items details[open] {
  background: var(--mr-cream-warm);
  border-color: var(--mr-chocolate);
  box-shadow: 0 12px 30px rgba(42,31,21,0.06);
}
.mr-faq__items summary {
  font-family: var(--mr-font-display); font-weight: 500;
  font-size: 17px;
  padding-right: 44px;
}
.mr-faq__items summary::after {
  background: var(--mr-chocolate); color: var(--mr-cream);
  border-color: var(--mr-chocolate);
}
.mr-faq__items details p {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--mr-border);
  font-size: 14.5px;
}

/* ---------- More contrast — alternate section backgrounds ---------- */
/* Bigger visual rhythm between sections via stronger bg variation */
.mr-pdp__keyfeatures { background: var(--mr-cream); }
.mr-pdp__inthebox { background: var(--mr-white); }
.mr-pdp__narrative { background: var(--mr-paper); }
.mr-pdp__specs-section { background: var(--mr-cream); }
.mr-pdp__compare { background: var(--mr-white); }
.mr-pdp__personas { background: var(--mr-paper); }
.mr-pdp__roi { background: var(--mr-white); }
.mr-pdp__support { background: var(--mr-paper); }
.mr-pdp__casestudy { background: var(--mr-white); }
.mr-pdp__insta { background: var(--mr-cream); }

/* Ensure section type/eyebrow contrast pops harder */
.mr-section-head__eyebrow {
  color: var(--mr-chocolate);
  font-weight: 700;
}
.mr-section-head__eyebrow::before {
  background: var(--mr-chocolate);
}

/* ---------- Mobile polish ---------- */
@media (max-width: 1024px) {
  /* Gallery — no longer sticky on tablet */
  .mr-pdp__gallery { position: static !important; }
  .mr-pdp__reviews .commentlist { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Hero title — sometimes overlaps */
  body.mr-brand-template .mr-hero { min-height: 70vh; padding: 0; }
  body.mr-brand-template .mr-hero__title { font-size: 32px !important; line-height: 1.05; }
  body.mr-brand-template .mr-hero__lede { font-size: 15px; }
  body.mr-brand-template .mr-hero__inner { padding: 40px 20px !important; }

  /* PDP grid stack */
  .mr-pdp__grid { grid-template-columns: 1fr !important; padding: 12px 20px 0 !important; gap: 24px; }
  .mr-pdp__main { aspect-ratio: 1/1; }
  .mr-pdp__title { font-size: 28px !important; }
  .mr-pdp__price { font-size: 30px !important; }
  .mr-pdp__lease { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Accordion mobile */
  .mr-pdp__accord summary { gap: 12px; }
  .mr-pdp__accord-icon { width: 36px; height: 36px; }
  .mr-pdp__accord-icon svg { width: 16px; height: 16px; }
  .mr-pdp__accord-value { font-size: 14px; }
  .mr-pdp__accord-body { padding-left: 0; }

  /* Trustline mobile */
  .mr-pdp__trustline { font-size: 12px; padding: 12px 14px; gap: 10px; align-items: flex-start; }
  .mr-pdp__trustline svg { margin-top: 2px; }

  /* Reviews mobile */
  .mr-pdp__reviews .commentlist { grid-template-columns: 1fr; gap: 12px; }
  .mr-pdp__reviews .commentlist > li:first-child { padding: 22px 20px; }

  /* Support card mobile */
  .mr-pdp__support-card { padding: 24px 22px; gap: 16px; }
  .mr-pdp__support-card__ico { width: 48px; height: 48px; }
  .mr-pdp__support-card__ico svg { width: 22px; height: 22px; }
  .mr-pdp__support-card__body h3 { font-size: 17px; }
  .mr-pdp__support-card__body p { font-size: 13.5px; }

  /* Narrative mobile */
  .mr-pdp__narrative-step { padding: 28px 24px 50px; }
  .mr-pdp__narrative-conclusion p { font-size: 16px; }

  /* ROI mobile */
  .mr-pdp__roi-block__value { font-size: 32px; }
  .mr-pdp__roi-bar { padding: 20px 16px; }

  /* Case study mobile */
  .mr-pdp__casestudy-quote { font-size: 16px; padding: 18px 22px; }

  /* Sticky bar — full width compact */
  .mr-pdp-sticky { padding: 10px 14px; }
  .mr-pdp-sticky__inner { gap: 10px; }
  .mr-pdp-sticky__meta strong { font-size: 13px; max-width: 130px; }
  .mr-pdp-sticky__ctas .mr-btn { padding: 10px 12px; font-size: 11px; }

  /* Story image full width on mobile */
  .mr-pdp__story-inner { gap: 32px !important; }
  .mr-pdp__story-visual { max-width: 100%; }

  /* Press strip mobile — center align */
  .mr-press__inner, .mr-pdp__press-inner { align-items: center; }
  .mr-press__marks, .mr-pdp__press-marks { justify-content: center; }
}
