/*
Theme Name:   Merakee
Theme URI:    https://merakee.id
Author:       Merakee + scythx
Author URI:   https://merakee.id
Description:  Child theme of Twenty Twenty-Five for Merakee Florist & Gift. Design tokens sourced from claude.ai/design (project 019e0350-8a44-7f08-bc50-ffb29b9669b5). Front-page implements the "Flowers, beautifully gifted." landing from that project.
Version:      0.4.1
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 8.2
Template:     twentytwentyfive
Text Domain:  merakee
License:      MIT
Tags:         block-theme, full-site-editing, woocommerce
*/

/* ──────────────────────────────────────────────────────────────────────
   Tier 2 ergonomic aliases → --wp--preset--* + --wp--custom--*.
   Any pattern/part CSS below references these short names, so the file
   is scannable without repeating the WordPress preset prefix.
   ────────────────────────────────────────────────────────────────────── */

:root {
  --blue:       var(--wp--preset--color--blue);
  --blue-deep:  var(--wp--preset--color--blue-deep);
  --blue-50:    var(--wp--preset--color--blue-50);
  --blue-100:   var(--wp--preset--color--blue-100);
  --blue-200:   var(--wp--preset--color--blue-200);
  --blue-400:   var(--wp--preset--color--blue-400);
  --pink:       var(--wp--preset--color--pink);
  --pink-deep:  var(--wp--preset--color--pink-deep);
  --pink-50:    var(--wp--preset--color--pink-50);
  --pink-100:   var(--wp--preset--color--pink-100);
  --pink-200:   var(--wp--preset--color--pink-200);
  --ink:        var(--wp--preset--color--ink);
  --ink-soft:   var(--wp--preset--color--ink-soft);
  --ink-mute:   var(--wp--preset--color--ink-mute);
  --surface:    var(--wp--preset--color--surface);
  --surface-2:  var(--wp--preset--color--surface-2);
  --cream-deep: var(--wp--preset--color--cream-deep);
  --paper:      var(--wp--preset--color--paper);
  --wa:         var(--wp--preset--color--wa-green);
  --wa-deep:    var(--wp--preset--color--wa-green-deep);

  --sans:   var(--wp--preset--font-family--sans);
  --serif:  var(--wp--preset--font-family--display);
  --ornament: var(--wp--preset--font-family--ornament);

  --line:        var(--wp--custom--line);
  --line-strong: var(--wp--custom--line-strong);
  --fvs-display: var(--wp--custom--fvs-display);
  --fvs-heading: var(--wp--custom--fvs-heading);

  --safe-top:    var(--wp--custom--safe-top);
  --safe-bottom: var(--wp--custom--safe-bottom);

  --shadow-lg:    var(--wp--custom--shadow--lg);
  --shadow-brand: var(--wp--custom--shadow--brand);
  --shadow-wa:    var(--wp--custom--shadow--wa);

  --radius-lg:   var(--wp--custom--radius--lg);
  --radius-xl:   var(--wp--custom--radius--xl);
  --radius-2xl:  var(--wp--custom--radius--two-xl);
  --radius-3xl:  var(--wp--custom--radius--three-xl);
  --radius-pill: var(--wp--custom--radius--pill);
  --radius-hero: var(--wp--custom--radius--hero-stamp);
  --radius-sub:  var(--wp--custom--radius--sub-stamp);
}

/* ──────────────────────────────────────────────────────────────────────
   Container + reusable utilities
   ────────────────────────────────────────────────────────────────────── */

.merakee-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .merakee-container { padding: 0 32px; }
}

.merakee-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.merakee-display {
  font-family: var(--serif);
  font-weight: 350;
  font-style: italic;
  font-variation-settings: var(--fvs-display);
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.merakee-display em {
  font-style: italic;
  background: linear-gradient(95deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.merakee-heading {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 12px 0 0;
}
.merakee-heading em {
  font-style: italic;
  color: var(--blue);
}

.merakee-body-lg {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 56ch;
  margin: 0;
}

.merakee-link {
  color: var(--blue);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Pill button — one class, several variants */
.merakee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.merakee-pill.primary   { background: var(--blue); color: #fff; }
.merakee-pill.primary:hover { background: var(--blue-deep); }
.merakee-pill.primary.wa-link,
.merakee-nav__cta.wa-link { background: var(--wa) !important; }
.merakee-pill.primary.wa-link:hover,
.merakee-nav__cta.wa-link:hover { background: var(--wa-deep) !important; }
.merakee-pill.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.merakee-pill.ghost:hover { background: rgba(21, 20, 26, 0.04); }
.merakee-pill.invert { background: #fff; color: var(--blue); }
.merakee-pill.outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.merakee-pill .arrow { transition: transform 0.25s ease; }
.merakee-pill:hover .arrow { transform: translateX(3px); }

/* ──────────────────────────────────────────────────────────────────────
   Cutoff banner (top strip)
   ────────────────────────────────────────────────────────────────────── */

.merakee-cutoff {
  background: #FFF6E3;
  border-bottom: 1px solid rgba(217, 168, 46, 0.35);
  color: #6B4F12;
  font-size: 12.5px;
  line-height: 1.4;
}
.merakee-cutoff.hidden { display: none; }
.merakee-cutoff__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.merakee-cutoff .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: #D9A82E;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(217, 168, 46, 0.18);
}
.merakee-cutoff strong { color: #4A3408; font-weight: 600; }
.merakee-cutoff .close {
  margin-left: auto; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #6B4F12; opacity: 0.7;
  background: transparent; border: none; cursor: pointer;
  font-size: 16px; line-height: 1;
}
.merakee-cutoff .close:hover { opacity: 1; background: rgba(217, 168, 46, 0.18); }
@media (min-width: 1024px) {
  .merakee-cutoff__inner { padding: 10px 32px; font-size: 13px; }
}

/* ──────────────────────────────────────────────────────────────────────
   Nav
   ────────────────────────────────────────────────────────────────────── */

.merakee-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.merakee-nav.scrolled { border-color: var(--line); }
.merakee-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  max-width: 1320px; margin: 0 auto;
  gap: 16px;
}
@media (min-width: 1024px) {
  .merakee-nav__inner { padding: 18px 32px; }
}
.merakee-brand {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.merakee-brand .full-logo {
  height: 32px; width: auto; display: block;
}
@media (min-width: 1024px) {
  .merakee-brand .full-logo { height: 44px; }
}
.merakee-nav__links {
  display: none;
  gap: 28px; align-items: center;
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
}
.merakee-nav__links a { text-decoration: none; color: inherit; }
.merakee-nav__links a:hover,
.merakee-nav__links a.active { color: var(--blue); }
@media (min-width: 1024px) {
  .merakee-nav__links { display: flex; }
}
.merakee-nav__actions {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.merakee-nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px;
  background: var(--blue); color: #fff;
  font-weight: 500; font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}
.merakee-nav__cta:hover { background: var(--blue-deep); }
.merakee-nav__cta .label { display: none; }
@media (min-width: 720px) {
  .merakee-nav__cta .label { display: inline; }
  .merakee-nav__cta { padding: 12px 18px; font-size: 14px; }
}
.merakee-menu-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .merakee-menu-btn { display: none; }
}

/* Mobile menu overlay */
.merakee-mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(15, 20, 26, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.merakee-mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }
.merakee-mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 71;
  background: #fff;
  border-radius: 0 0 22px 22px;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 14px 20px calc(20px + var(--safe-bottom, 0px));
  box-shadow: 0 12px 40px -12px rgba(15, 20, 26, 0.18);
  max-height: 90dvh; overflow-y: auto;
}
.merakee-mobile-menu.open { transform: translateY(0); }
.merakee-mobile-menu .mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.merakee-mobile-menu .mm-title { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.merakee-mobile-menu .mm-close {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
}
.merakee-mobile-menu .mm-list { display: flex; flex-direction: column; }
.merakee-mobile-menu .mm-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.merakee-mobile-menu .mm-list a:last-child { border-bottom: none; }
.merakee-mobile-menu .mm-list a svg { color: var(--ink-mute); }
.merakee-mobile-menu .mm-cta {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px;
  background: var(--wa); color: #fff;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .merakee-mobile-menu, .merakee-mobile-menu-backdrop { display: none !important; }
}

/* ──────────────────────────────────────────────────────────────────────
   Hero
   ────────────────────────────────────────────────────────────────────── */

.merakee-hero {
  padding: 40px 0 64px;
  position: relative;
}
@media (min-width: 720px) {
  .merakee-hero { padding: 64px 0 96px; }
}
.merakee-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 980px) {
  .merakee-hero__grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.merakee-hero__copy h1 {
  font-size: clamp(40px, 8vw, 96px);
  margin: 24px 0 28px;
  line-height: 1.02;
}
.merakee-hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.merakee-hero__meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.merakee-hero__meta .divider {
  width: 1px; height: 28px; background: var(--line);
}
.merakee-hero__meta strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  font-family: var(--serif);
}
.merakee-hero__art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-hero);
  overflow: hidden;
  background: var(--blue-100);
}
.merakee-hero__mirror { position: absolute; inset: 0; }
.merakee-hero__mirror img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 6s ease;
}
.merakee-hero__mirror img.active {
  opacity: 1;
  transform: scale(1);
}
.merakee-hero__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 32px rgba(15, 53, 144, 0.15);
  max-width: calc(100% - 48px);
}
.merakee-hero__badge .badge-mark {
  width: 36px; height: 44px;
  background: var(--blue); border-radius: 8px;
  display: grid; place-items: center;
  flex: none;
}
.merakee-hero__badge .badge-mark img { width: 26px; filter: brightness(0) invert(1); }
.merakee-hero__badge .badge-text { font-size: 11px; line-height: 1.3; }
.merakee-hero__badge .tagline {
  display: block;
  font-family: var(--ornament);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.05;
  background: linear-gradient(95deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px;
}
.merakee-hero__badge .since { color: var(--ink-mute); font-size: 11px; letter-spacing: 0.04em; }
.merakee-hero__petal {
  position: absolute;
  top: 80px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--pink-100), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  opacity: 0.7;
}

/* ──────────────────────────────────────────────────────────────────────
   Marquee
   ────────────────────────────────────────────────────────────────────── */

.merakee-marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--surface);
}
.merakee-marquee {
  display: flex; gap: 64px;
  width: max-content;
  animation: merakee-marquee-scroll 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.merakee-marquee .dot {
  width: 8px; height: 8px; background: var(--blue);
  border-radius: 999px; align-self: center; flex: none;
}
@media (min-width: 720px) {
  .merakee-marquee { font-size: 28px; }
}
@keyframes merakee-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────────────────────────────
   Section utilities
   ────────────────────────────────────────────────────────────────────── */

.merakee-section { padding: 80px 0; }
@media (min-width: 1024px) { .merakee-section { padding: 120px 0; } }

.merakee-section__head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}
.merakee-section__head h2 {
  font-size: clamp(30px, 5vw, 56px);
  margin: 12px 0 0;
}
@media (min-width: 720px) {
  .merakee-section__head {
    grid-template-columns: 1fr auto;
    gap: 32px;
    margin-bottom: 56px;
  }
}

/* ──────────────────────────────────────────────────────────────────────
   Catalog (WC Product Collection styling)
   ────────────────────────────────────────────────────────────────────── */

.merakee-catalog-grid .wc-block-product-template {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .merakee-catalog-grid .wc-block-product-template { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .merakee-catalog-grid .wc-block-product-template { grid-template-columns: repeat(3, 1fr); }
}
.merakee-catalog-grid .wp-block-post {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
}
.merakee-catalog-grid .wp-block-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(15, 53, 144, 0.18);
}
.merakee-catalog-grid .wc-block-components-product-image {
  aspect-ratio: 4/5;
  background: var(--blue-50);
  overflow: hidden;
}
.merakee-catalog-grid .wc-block-components-product-image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.merakee-catalog-grid .merakee-cat-body {
  padding: 18px 20px 22px;
}
.merakee-catalog-grid .wp-block-post-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.merakee-catalog-grid .wp-block-post-title a {
  color: inherit; text-decoration: none;
  transition: color 0.15s;
}
.merakee-catalog-grid .wp-block-post-title a:hover { color: var(--blue); }
.merakee-catalog-grid .wc-block-components-product-price {
  font-family: var(--serif);
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

/* ──────────────────────────────────────────────────────────────────────
   Why Merakee
   ────────────────────────────────────────────────────────────────────── */

.merakee-why {
  padding: 80px 0 60px;
  background: var(--surface);
}
.merakee-why__head {
  text-align: center;
  margin-bottom: 40px;
}
.merakee-why__head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 400;
  margin: 8px 0 12px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.merakee-why__head h2 em {
  font-style: italic;
  color: var(--blue);
}
.merakee-why__head p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 50ch;
  margin: 12px auto 0;
  line-height: 1.55;
}
.merakee-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .merakee-why__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (min-width: 1024px) {
  .merakee-why { padding: 120px 0 80px; }
  .merakee-why__head { margin-bottom: 56px; }
  .merakee-why__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.merakee-why__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.merakee-why__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(15, 53, 144, 0.16);
}
.merakee-why__card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.merakee-why__card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.merakee-why__card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────────
   Mahar & Seserahan teaser
   ────────────────────────────────────────────────────────────────────── */

.merakee-mahar { padding: 40px 0; }
@media (min-width: 1024px) { .merakee-mahar { padding: 56px 0; } }
.merakee-mahar__card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  align-items: stretch;
}
@media (min-width: 980px) {
  .merakee-mahar__card { grid-template-columns: 1.1fr 1fr; border-radius: 28px; }
}
.merakee-mahar__photo {
  aspect-ratio: 4/3;
  background: var(--pink-50);
  background-size: cover;
  background-position: center;
  position: relative;
}
.merakee-mahar__photo .badge {
  position: absolute; top: 20px; left: 20px;
  background: #fff; padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pink);
}
.merakee-mahar__body {
  padding: 30px 26px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 980px) {
  .merakee-mahar__body { padding: 48px 44px; }
}
.merakee-mahar__body h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.merakee-mahar__body h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.merakee-mahar__body p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.merakee-mahar__body .actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 18px;
}

/* ──────────────────────────────────────────────────────────────────────
   Custom teaser (deep-blue box)
   ────────────────────────────────────────────────────────────────────── */

.merakee-custom {
  padding: 40px 0 0;
}
.merakee-custom > * {
  background: var(--blue);
  color: #fff;
  border-radius: 32px;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 980px) {
  .merakee-custom > * {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    padding: 56px;
  }
}
.merakee-custom__copy .eyebrow {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600; margin-bottom: 16px;
}
.merakee-custom__copy h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 96;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: #fff;
}
.merakee-custom__copy h2 em {
  font-style: italic;
  color: var(--pink-100);
}
.merakee-custom__copy p {
  font-size: 16px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  max-width: 480px;
  text-wrap: pretty;
}
.merakee-custom__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.merakee-custom__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .merakee-custom__steps { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.merakee-custom__steps .step {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.merakee-custom__steps .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
.merakee-custom__steps .label {
  font-size: 13px; font-weight: 600; color: #fff;
  margin-top: 6px;
}
.merakee-custom__steps .hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────────────────
   Finder
   ────────────────────────────────────────────────────────────────────── */

.merakee-finder-section { padding: 40px 0 24px; }
.merakee-finder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 20px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .merakee-finder { padding: 36px 36px 32px; }
}
.merakee-finder .merakee-eyebrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.merakee-finder h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.merakee-finder h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.merakee-finder .lede {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 22px;
  line-height: 1.5;
}
.merakee-finder .step { margin-bottom: 18px; }
.merakee-finder .step-lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.merakee-finder .chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.merakee-finder .chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 13.5px; font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.merakee-finder .chip:hover { border-color: var(--blue-100); }
.merakee-finder .chip.selected { background: var(--blue); border-color: var(--blue); color: #fff; }
.merakee-finder .finder-go {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px;
  padding: 14px 22px;
  background: var(--wa);
  color: #fff;
  border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  width: 100%; justify-content: center;
}
.merakee-finder .finder-go:hover { background: var(--wa-deep); }
@media (min-width: 768px) {
  .merakee-finder .finder-go { width: auto; }
}
.merakee-finder .finder-summary {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--blue-50);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.merakee-finder .finder-summary.show { display: block; }
.merakee-finder .finder-summary strong { color: var(--ink); }

/* ──────────────────────────────────────────────────────────────────────
   Occasions (blue panel)
   ────────────────────────────────────────────────────────────────────── */

.merakee-occ {
  background: var(--blue);
  color: #fff;
  border-radius: 32px;
  margin: 0 16px;
  padding: 72px 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .merakee-occ { margin: 0 32px; padding: 96px 0; }
}
.merakee-occ .merakee-container { max-width: 1240px; }
.merakee-occ .merakee-eyebrow { color: var(--pink-100); }
.merakee-occ h2 {
  font-size: clamp(32px, 6vw, 72px);
  color: #fff;
  margin: 16px 0 40px;
  max-width: 14ch;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: var(--fvs-display);
}
.merakee-occ h2 em {
  font-style: italic;
  color: var(--pink-100);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.merakee-occ__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .merakee-occ__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
.merakee-occ__card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px 20px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  aspect-ratio: 1/1.15;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}
.merakee-occ__card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0, 74, 173, 0.35) 0%, rgba(15, 20, 26, 0.85) 100%);
  z-index: -1;
  transition: opacity 0.25s;
}
.merakee-occ__card[data-tint="pink"]::before   { background: linear-gradient(160deg, rgba(254, 99, 156, 0.5), rgba(0, 30, 90, 0.75) 100%); }
.merakee-occ__card[data-tint="yellow"]::before { background: linear-gradient(160deg, rgba(242, 197, 48, 0.35), rgba(15, 20, 26, 0.85) 100%); }
.merakee-occ__card[data-tint="blue"]::before   { background: linear-gradient(160deg, rgba(0, 74, 173, 0.35), rgba(15, 20, 26, 0.85) 100%); }
.merakee-occ__card[data-tint="green"]::before  { background: linear-gradient(160deg, rgba(123, 162, 64, 0.35), rgba(15, 20, 26, 0.85) 100%); }
.merakee-occ__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(15, 20, 26, 0.45);
}
.merakee-occ__card .occ-icon {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: grid; place-items: center;
  color: #fff;
}
.merakee-occ__card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.merakee-occ__card .from {
  font-size: 12px;
  opacity: 0.75;
}
.merakee-occ__deco {
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  opacity: 0.08;
  pointer-events: none;
}

/* ──────────────────────────────────────────────────────────────────────
   Testimonials
   ────────────────────────────────────────────────────────────────────── */

.merakee-section--quotes { padding: 60px 0; }
@media (min-width: 1024px) { .merakee-section--quotes { padding: 96px 0; } }
.merakee-quotes-wrap { position: relative; }
.merakee-quotes {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 6px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  scroll-padding-left: 20px;
}
.merakee-quotes::-webkit-scrollbar { display: none; }
.merakee-quote {
  flex: 0 0 78%;
  max-width: 320px;
  min-width: 240px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.merakee-quote[data-tint="pink"] { background: linear-gradient(160deg, var(--pink) 0%, var(--ink) 100%); }
.merakee-quote[data-tint="blue"] { background: linear-gradient(160deg, var(--blue-400) 0%, var(--ink) 100%); }
.merakee-quote[data-tint="green"] { background: linear-gradient(160deg, #7BA240 0%, var(--ink) 100%); }
.merakee-quote:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -20px rgba(15, 53, 144, 0.35); }
.merakee-quote .photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.merakee-quote:hover .photo { transform: scale(1.04); }
.merakee-quote::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 26, 0.85) 0%, rgba(15, 20, 26, 0.4) 45%, rgba(15, 20, 26, 0) 70%);
}
.merakee-quote .body {
  position: relative;
  z-index: 1;
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.merakee-quote .stars { display: flex; gap: 2px; color: #FBC02D; }
.merakee-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.merakee-quote .who {
  display: flex; flex-direction: column;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.merakee-quote .name { font-size: 13px; font-weight: 500; }
.merakee-quote .occ {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}
.merakee-quotes-nav { display: none; }
@media (min-width: 720px) {
  .merakee-quote { flex-basis: 360px; min-width: 320px; max-width: 380px; }
  .merakee-quotes { gap: 20px; }
  .merakee-quote p { font-size: 17px; }
}
@media (min-width: 1024px) {
  .merakee-quotes-wrap { padding: 0 48px; }
  .merakee-quotes { margin: 0; padding: 4px 0 6px; }
  .merakee-quotes-nav {
    display: flex;
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    align-items: center; justify-content: center;
    color: var(--ink);
    cursor: pointer; z-index: 2;
    transition: background 0.15s, box-shadow 0.15s, color 0.15s, border-color 0.15s;
    box-shadow: 0 4px 16px -6px rgba(15, 20, 26, 0.18);
  }
  .merakee-quotes-nav:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
  .merakee-quotes-nav.prev { left: 0; }
  .merakee-quotes-nav.next { right: 0; }
  .merakee-quotes-nav[disabled] { opacity: 0.35; pointer-events: none; }
}

/* ──────────────────────────────────────────────────────────────────────
   Final CTA
   ────────────────────────────────────────────────────────────────────── */

.merakee-cta {
  text-align: center;
  padding: 100px 0;
}
@media (min-width: 1024px) { .merakee-cta { padding: 140px 0 120px; } }
.merakee-cta h2 {
  font-size: clamp(44px, 9vw, 120px);
  margin: 24px auto;
  max-width: 16ch;
}
.merakee-cta .merakee-pill { margin-top: 16px; }

/* ──────────────────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────────────────── */

.merakee-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}
@media (min-width: 1024px) { .merakee-footer { padding: 80px 0 40px; } }
.merakee-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 720px) {
  .merakee-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .merakee-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
}
.merakee-footer__brand .wordmark {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 1024px) { .merakee-footer__brand .wordmark { height: 64px; } }
.merakee-footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.7);
}
.merakee-footer__brand p .ornament {
  font-style: normal;
  font-family: var(--ornament);
  font-size: 20px;
  color: #fff;
  margin-left: 4px;
}
.merakee-footer__social {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.merakee-footer__social .icon-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.merakee-footer__social .icon-btn:hover { background: rgba(255, 255, 255, 0.12); }
.merakee-footer__col h5 {
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.merakee-footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.merakee-footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.merakee-footer__col a:hover { color: #fff; }
.merakee-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.merakee-footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.merakee-footer__bottom a:hover { color: #fff; }

/* ──────────────────────────────────────────────────────────────────────
   Sticky WhatsApp FAB (mu-plugin 01-whatsapp-cta.php)
   ────────────────────────────────────────────────────────────────────── */

.merakee-wa-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + var(--safe-bottom, 0px));
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-wa);
  transition: transform 150ms ease, background 200ms ease;
}
.merakee-wa-fab:hover { transform: translateY(-2px); background: var(--wa-deep); }
.merakee-wa-fab svg { width: 1.75rem; height: 1.75rem; }
@media (min-width: 769px) { .merakee-wa-fab { display: none; } }

/* ──────────────────────────────────────────────────────────────────────
   Link-hub page
   ────────────────────────────────────────────────────────────────────── */

.wp-block-post-content .merakee-link-hub {
  max-width: 28rem;
  margin-inline: auto;
}

/* ──────────────────────────────────────────────────────────────────────
   Global body defaults (only where TT5's shine through)
   ────────────────────────────────────────────────────────────────────── */

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Twenty Twenty-Five's stock header padding fights with our fixed nav; suppress */
.wp-site-blocks > .wp-block-template-part > .wp-block-group.merakee-header,
.wp-site-blocks > header { padding: 0 !important; }

/* ──────────────────────────────────────────────────────────────────────
   Single product page (templates/single-product.html)
   ────────────────────────────────────────────────────────────────────── */

.merakee-breadcrumb {
  padding: 16px 0 8px;
  font-size: 12px;
  color: var(--ink-mute);
}
.merakee-breadcrumb ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: 6px;
}
.merakee-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--ink-mute);
  margin-left: 6px;
  opacity: 0.5;
}
.merakee-breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}
.merakee-breadcrumb a:hover { color: var(--blue); }
.merakee-breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; }

/* Product layout: mobile-first, gallery on top, info below. Desktop = 2 col. */
.merakee-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 8px 0 32px;
}
@media (min-width: 1024px) {
  .merakee-product {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    padding: 24px 0 80px;
    align-items: start;
  }
}

/* Gallery */
.merakee-product__gallery {
  position: relative;
}
@media (min-width: 768px) {
  .merakee-product__gallery { position: sticky; top: 96px; }
}
.merakee-product__gallery .main-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--blue-50);
  margin-bottom: 12px;
}
.merakee-product__gallery .main-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.merakee-product__gallery .badge-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
}
.merakee-product__gallery .badge-tag.pink   { background: var(--pink); color: #fff; }
.merakee-product__gallery .badge-tag.yellow { background: #F2C530; color: var(--ink); }
.merakee-product__gallery .badge-tag.blue   { background: var(--blue); color: #fff; }
.merakee-product__gallery .badge-tag.green  { background: #7BA240; color: #fff; }
.merakee-product__gallery .img-counter {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: rgba(15, 20, 26, 0.6);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.merakee-product__gallery .thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 4px 0;
}
.merakee-product__gallery .thumbs::-webkit-scrollbar { display: none; }
.merakee-product__gallery .thumb {
  flex: 0 0 20%;
  min-width: 64px;
  max-width: 88px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 0;
  overflow: hidden;
  background: var(--blue-50);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.15s;
}
.merakee-product__gallery .thumb.active { border-color: var(--blue); }
.merakee-product__gallery .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Info column */
.merakee-product__info { min-width: 0; }
.merakee-product__info .meta-line {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.merakee-product__info h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--ink);
  font-style: italic;
}

.merakee-product__info .price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.merakee-product__info .price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--blue);
}
.merakee-product__info .price .woocommerce-Price-amount { font: inherit; color: inherit; }
.merakee-product__info .from {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.merakee-product__info .availability {
  font-size: 13px;
  color: var(--ink-soft);
  margin-left: auto;
}

/* Size picker */
.size-pick { margin: 20px 0; }
.size-pick .lbl {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.size-pick .lbl .help {
  font-size: 12px;
  color: var(--blue);
  text-decoration: none;
}
.size-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 8px;
}
.size-opt {
  padding: 12px 8px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
}
.size-opt .sz {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.size-opt .pr {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.size-opt.selected {
  border-color: var(--blue);
  background: var(--blue-50);
}
.size-opt.selected .sz { color: var(--blue); }
.size-opt.selected .pr { color: var(--blue); font-weight: 500; }

/* Delivery area picker */
.area-pick { margin: 20px 0; }
.area-pick .lbl {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  gap: 8px;
}
.area-pick .lbl .help {
  font-size: 11px;
  color: var(--ink-mute);
}
.area-input-wrap {
  display: flex; align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink-mute);
  transition: border-color 0.15s;
}
.area-input-wrap:focus-within { border-color: var(--blue); }
.area-input-wrap input {
  flex: 1; min-width: 0;
  border: none; background: transparent; outline: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}
.area-suggest {
  display: flex; flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.area-suggest button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.15s;
}
.area-suggest button:hover {
  border-color: var(--blue-100);
  color: var(--blue);
}
.area-meta {
  display: flex; align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--surface-2);
  border-radius: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.area-meta svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.area-meta strong { color: var(--ink); font-weight: 600; }

/* Description */
.merakee-product__info .description {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 24px 0;
}
.merakee-product__info .description p { margin: 0 0 12px; }
.merakee-product__info .description p:last-child { margin-bottom: 0; }

/* Trust strip */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 24px 0;
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 12px;
  color: var(--ink-mute);
}
.trust-item svg {
  color: var(--blue);
  margin-bottom: 4px;
}
.trust-item strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
}

/* Tabs / accordion */
.merakee-product__tabs {
  margin: 24px 0;
}
.merakee-product__tabs .tab-headers {
  display: none;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .merakee-product__tabs .tab-headers { display: flex; }
  .merakee-product__tabs .acc { display: none; }
}
.merakee-product__tabs .tab-btn {
  padding: 12px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.merakee-product__tabs .tab-btn:hover { color: var(--ink); }
.merakee-product__tabs .tab-btn.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.merakee-product__tabs .desktop-tab-content {
  display: none;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.merakee-product__tabs .desktop-tab-content.active { display: block; }
.merakee-product__tabs .desktop-tab-content h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  margin: 16px 0 8px;
}
.merakee-product__tabs .desktop-tab-content h4:first-child { margin-top: 0; }
.merakee-product__tabs .desktop-tab-content ul {
  padding-left: 20px;
  margin: 8px 0 16px;
}

/* Accordion (mobile) */
.merakee-product__tabs .acc { display: block; }
.merakee-product__tabs .acc-item {
  border-top: 1px solid var(--line);
}
.merakee-product__tabs .acc-item:last-child { border-bottom: 1px solid var(--line); }
.merakee-product__tabs .acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  background: none; border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.merakee-product__tabs .acc-trigger svg {
  transition: transform 0.2s;
  color: var(--ink-mute);
}
.merakee-product__tabs .acc-item.open .acc-trigger svg { transform: rotate(45deg); }
.merakee-product__tabs .acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
.merakee-product__tabs .acc-item.open .acc-body { grid-template-rows: 1fr; }
.merakee-product__tabs .acc-body > div {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.merakee-product__tabs .acc-item.open .acc-body > div {
  padding-bottom: 16px;
}
.merakee-product__tabs .acc-body h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  margin: 12px 0 6px;
}
.merakee-product__tabs .acc-body ul {
  padding-left: 18px;
  margin: 6px 0 12px;
}

/* Desktop-only CTA — hide on mobile since sticky-bar covers it */
.merakee-product__desktop-cta { display: none; }
@media (min-width: 720px) {
  .merakee-product__desktop-cta {
    display: block;
    margin-top: 24px;
  }
}

/* ──────────────────────────────────────────────────────────────────────
   Related products
   ────────────────────────────────────────────────────────────────────── */

.merakee-product-related {
  padding: 40px 0 80px;
}
.related-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px; margin-bottom: 24px;
  flex-wrap: wrap;
}
.related-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

.rel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}
.rel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(15, 53, 144, 0.18);
}
.rel-card .photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--blue-50);
  position: relative;
}
.rel-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.rel-card .tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--surface);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rel-card .tag.yellow { background: #F2C530; color: var(--ink); }
.rel-card .tag.pink   { background: var(--pink); color: #fff; }
.rel-card .tag.blue   { background: var(--blue); color: #fff; }
.rel-card .tag.green  { background: #7BA240; color: #fff; }
.rel-card .meta {
  padding: 18px 20px 22px;
}
.rel-card .meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.rel-card .meta .desc {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.rel-card .meta .price {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--blue);
}

/* ──────────────────────────────────────────────────────────────────────
   Product sticky bottom bar (mobile)
   ────────────────────────────────────────────────────────────────────── */

.merakee-product-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex; align-items: center;
  gap: 12px;
  padding: 12px 20px calc(12px + var(--safe-bottom, 0px));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px -12px rgba(15, 20, 26, 0.14);
}
.merakee-product-bar .price-mini {
  display: flex; flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.merakee-product-bar .price-mini .from {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.merakee-product-bar .price-mini .amount {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--blue);
  line-height: 1;
}
.merakee-product-bar .order {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--wa);
  color: #fff;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s;
}
.merakee-product-bar .order:hover { background: var(--wa-deep); }
@media (min-width: 720px) {
  .merakee-product-bar { display: none; }
}

/* Give single-product pages breathing room at the bottom for the sticky bar */
body.single-product .merakee-single-product { padding-bottom: 100px; }
@media (min-width: 720px) {
  body.single-product .merakee-single-product { padding-bottom: 0; }
}

/* ──────────────────────────────────────────────────────────────────────
   Shop archive (templates/archive-product.html)
   ────────────────────────────────────────────────────────────────────── */

.merakee-shop-page { background: #fff; }

.merakee-shop-head {
  padding: 24px 0 12px;
}
.merakee-shop-head .label {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.merakee-shop-head h1 {
  font-size: clamp(36px, 6vw, 72px);
  margin: 0 0 12px;
  line-height: 1.02;
}
.merakee-shop-head p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}

/* Category strip */
.merakee-cat-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  margin: 20px 0 12px;
  scroll-snap-type: x mandatory;
}
.merakee-cat-scroll::-webkit-scrollbar { display: none; }
.merakee-cat-strip {
  display: flex;
  gap: 8px;
  padding: 4px 2px;
  width: max-content;
}
.merakee-cat-strip .cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.merakee-cat-strip .cat-chip:hover { border-color: var(--blue-100); color: var(--blue); }
.merakee-cat-strip .cat-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.merakee-cat-strip .cat-chip .count {
  font-size: 11px;
  opacity: 0.7;
  font-weight: 400;
}
.merakee-cat-strip .cat-chip.active .count { opacity: 0.9; }

/* Shop layout: mobile-first, sidebar hidden until ≥ 1024 */
.merakee-shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 16px 0 32px;
  /* leave room for mobile fixed bottom bar */
  padding-bottom: 88px;
}
@media (min-width: 1024px) {
  .merakee-shop-layout {
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding-bottom: 32px;
  }
}

.merakee-shop-sidebar { display: none; }
@media (min-width: 1024px) {
  .merakee-shop-sidebar {
    display: block;
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface-2);
  }
}
.merakee-shop-sidebar .filter-group {
  margin-bottom: 24px;
}
.merakee-shop-sidebar .filter-group:last-child { margin-bottom: 0; }
.merakee-shop-sidebar h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.merakee-shop-sidebar .price-range {
  display: flex; gap: 8px;
  align-items: center;
}
.merakee-shop-sidebar .price-range input {
  flex: 1; min-width: 0;
  padding: 8px 10px;
  font: inherit; font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.merakee-shop-sidebar .check-list {
  display: flex; flex-direction: column;
  gap: 2px;
  margin-top: 10px;
}
.merakee-shop-sidebar label {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
}
.merakee-shop-sidebar label:hover { color: var(--ink); }
.merakee-shop-sidebar label .left {
  display: inline-flex; align-items: center;
  gap: 8px;
}
.merakee-shop-sidebar .swatch {
  width: 14px; height: 14px;
  border-radius: 999px;
  display: inline-block;
}

/* Main column */
.merakee-shop-main { min-width: 0; }

/* Toolbar */
.merakee-shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  gap: 16px;
}
.merakee-shop-toolbar .results {
  font-size: 13px;
  color: var(--ink-soft);
}
.merakee-shop-toolbar .results strong { color: var(--ink); font-weight: 600; }
.merakee-shop-toolbar .toolbar-desktop {
  display: none;
}
@media (min-width: 720px) {
  .merakee-shop-toolbar .toolbar-desktop { display: flex; align-items: center; gap: 20px; }
}
.merakee-shop-toolbar .sort-desktop {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.merakee-shop-toolbar select {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit; font-size: 13px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

/* Grid */
.merakee-shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 720px)  { .merakee-shop-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1200px) { .merakee-shop-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.mk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.15s;
  display: flex; flex-direction: column;
}
.mk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(15, 53, 144, 0.18);
  border-color: var(--line-strong);
}
.mk-card .photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--blue-50);
}
.mk-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mk-card:hover .photo img { transform: scale(1.03); }
.mk-card .tags {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; flex-wrap: wrap;
  gap: 4px;
  z-index: 1;
}
.mk-card .tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mk-card .tag.pink   { background: var(--pink); color: #fff; }
.mk-card .tag.yellow { background: #F2C530; color: var(--ink); }
.mk-card .tag.blue   { background: var(--blue); color: #fff; }
.mk-card .tag.green  { background: #7BA240; color: #fff; }
.mk-card .tag.sale   { background: #D32027; color: #fff; }
.mk-card .quick-wa {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: rgba(15, 20, 26, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  text-align: center;
}
.mk-card:hover .quick-wa { transform: translateY(0); }
.mk-card .meta {
  padding: 12px 14px 16px;
  display: flex; flex-direction: column;
  gap: 6px;
}
@media (min-width: 720px) { .mk-card .meta { padding: 16px 18px 20px; gap: 8px; } }
.mk-card .cat-line {
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.mk-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
@media (min-width: 720px) { .mk-card h3 { font-size: 19px; } }
.mk-card .desc {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.4;
  margin: 0;
  display: none;
}
@media (min-width: 720px) { .mk-card .desc { display: block; } }
.mk-card .row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 2px;
}
.mk-card .price {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--blue);
  line-height: 1;
}
@media (min-width: 720px) { .mk-card .price { font-size: 17px; } }
.mk-card .price .woocommerce-Price-amount { font: inherit; color: inherit; }

/* Load more */
.merakee-shop-loadmore {
  margin-top: 40px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 16px;
}
.merakee-shop-loadmore .progress {
  width: 100%; max-width: 320px;
  text-align: center;
}
.merakee-shop-loadmore .bar {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.merakee-shop-loadmore .bar span {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 999px;
}
.merakee-shop-loadmore .text {
  font-size: 12px;
  color: var(--ink-mute);
}
.merakee-shop-loadmore .text strong {
  color: var(--ink);
}

/* Bottom CTA */
.merakee-shop-cta {
  margin: 40px auto;
  padding: 40px 24px;
  background: var(--surface);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .merakee-shop-cta {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 56px 48px;
  }
}
.merakee-shop-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink);
}
.merakee-shop-cta h2 em {
  font-style: italic;
  color: var(--pink);
}
.merakee-shop-cta p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.merakee-shop-cta .actions {
  display: flex; flex-direction: column;
  gap: 10px;
}
@media (min-width: 720px) {
  .merakee-shop-cta .actions { align-self: center; }
}

/* Mobile filter/sort bottom bar */
.merakee-shop-mobile-bar {
  position: fixed;
  left: 20px; right: 20px;
  bottom: calc(20px + var(--safe-bottom, 0px));
  z-index: 50;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(15, 20, 26, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  box-shadow: 0 12px 32px -12px rgba(15, 20, 26, 0.4);
}
.merakee-shop-mobile-bar .fbtn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.15s;
}
.merakee-shop-mobile-bar .fbtn:hover { background: rgba(255, 255, 255, 0.08); }
@media (min-width: 1024px) {
  .merakee-shop-mobile-bar { display: none; }
}

/* Push footer down so mobile bar has clearance */
@media (max-width: 1023px) {
  body.woocommerce .merakee-footer { padding-bottom: 80px; }
}

/* ──────────────────────────────────────────────────────────────────────
   Custom orders page (templates/page-custom.html)
   ────────────────────────────────────────────────────────────────────── */

.merakee-custom-page { background: #fff; }
/* Room for the fixed bottom bar on mobile */
body.page-custom .merakee-custom-page { padding-bottom: 96px; }
@media (min-width: 1024px) {
  body.page-custom .merakee-custom-page { padding-bottom: 0; }
}

/* Hero ---------------------------------------------------------------- */
.merakee-custom-hero {
  padding: 22px 0 36px;
  display: flex; flex-direction: column;
  gap: 24px;
}
.merakee-custom-hero .label {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); font-weight: 600;
  margin-bottom: 14px;
}
.merakee-custom-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 12vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.merakee-custom-hero h1 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.merakee-custom-hero .lede {
  font-size: 15.5px; line-height: 1.55; color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0;
}
.merakee-custom-hero .actions {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}
.merakee-custom-hero .right {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--blue-50);
  margin: 0 calc(var(--container-pad, 20px) * -1);
  border-radius: 0;
}
.merakee-custom-hero .hero-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.merakee-custom-hero .hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.merakee-custom-hero .hero-quote {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  margin: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 14px 16px;
  border-radius: 12px;
}
.merakee-custom-hero .hero-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.merakee-custom-hero .hero-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}
@media (min-width: 720px) {
  .merakee-custom-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 36px 0 56px;
  }
  .merakee-custom-hero .right {
    margin: 0;
    border-radius: 20px;
    max-height: 520px;
  }
  .merakee-custom-hero .hero-photo {
    max-height: 520px;
    aspect-ratio: auto;
    height: 100%;
  }
  .merakee-custom-hero .actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
}
@media (min-width: 1024px) {
  .merakee-custom-hero {
    padding: 56px 0 80px;
    gap: 56px;
  }
  .merakee-custom-hero h1 { font-size: clamp(56px, 6vw, 84px); }
  .merakee-custom-hero .lede { font-size: 17px; max-width: 540px; }
  .merakee-custom-hero .right { max-height: 560px; }
  .merakee-custom-hero .hero-photo { max-height: 560px; }
}

/* Process ------------------------------------------------------------- */
.merakee-custom-process {
  padding: 40px 0;
  background: var(--surface);
  margin-top: 16px;
}
.merakee-custom-process .section-head {
  margin-bottom: 24px;
}
.merakee-custom-process .section-head h2 {
  font-style: italic;
  font-size: clamp(26px, 8vw, 36px);
  line-height: 1.05;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.merakee-custom-process .section-head p {
  color: var(--ink-soft);
  font-size: 14px; line-height: 1.55;
  margin: 0;
}
.merakee-custom-process .process-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.merakee-custom-process .step {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: start;
}
.merakee-custom-process .step .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--blue);
  line-height: 1;
  grid-row: 1 / span 3;
}
.merakee-custom-process .step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.merakee-custom-process .step p {
  font-size: 13px; line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.merakee-custom-process .step .meta {
  margin-top: 10px;
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
  grid-column: 2;
}
.merakee-custom-process .turnaround {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--blue-50);
  display: flex; flex-direction: column;
}
.merakee-custom-process .tt {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 74, 173, 0.1);
}
.merakee-custom-process .tt:last-child { border-bottom: none; }
.merakee-custom-process .tt .small {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
  margin-bottom: 4px;
}
.merakee-custom-process .tt .big {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 4px;
  line-height: 1;
}
.merakee-custom-process .tt p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 720px) {
  .merakee-custom-process {
    margin: 16px 24px 0;
    border-radius: 24px;
    padding: 56px 0;
  }
  .merakee-custom-process .section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 24px;
    margin-bottom: 36px;
  }
  .merakee-custom-process .section-head h2 { max-width: 520px; }
  .merakee-custom-process .section-head p { max-width: 360px; }
  .merakee-custom-process .process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .merakee-custom-process .turnaround {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .merakee-custom-process .tt {
    border-bottom: none;
    border-right: 1px solid rgba(0, 74, 173, 0.1);
  }
  .merakee-custom-process .tt:last-child { border-right: none; }
}
@media (min-width: 1024px) {
  .merakee-custom-process {
    padding: 80px 0;
    margin: 24px 32px 0;
    border-radius: 28px;
  }
  .merakee-custom-process .section-head h2 {
    font-size: clamp(32px, 4vw, 44px);
    max-width: 600px;
  }
  .merakee-custom-process .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Request form ------------------------------------------------------- */
.merakee-custom-request {
  padding: 40px 0 24px;
}
.merakee-custom-request .request-wrap {
  display: flex; flex-direction: column;
  gap: 28px;
}
.merakee-custom-request .request-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 9vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.merakee-custom-request .request-intro h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.merakee-custom-request .request-intro p {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-soft);
  margin: 0 0 12px; text-wrap: pretty;
}
.merakee-custom-request .small-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--blue-50);
  border-radius: 12px;
  font-size: 13px; line-height: 1.55;
  color: var(--ink);
}
.merakee-custom-request .small-note strong { color: var(--blue); }
.merakee-custom-request .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 18px 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.merakee-custom-request .form-card .form-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.merakee-custom-request .form-card .form-head svg { color: var(--wa-green, #25D366); flex-shrink: 0; }
.merakee-custom-request .form-card .form-head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  margin: 0;
}
.merakee-custom-request .form-card .form-sub {
  color: var(--ink-mute);
  font-size: 12.5px;
  margin: 0 0 22px;
  line-height: 1.5;
}
.merakee-custom-request .field { margin-bottom: 18px; }
.merakee-custom-request .field > label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; color: var(--ink); margin-bottom: 8px;
  flex-wrap: wrap; gap: 6px;
}
.merakee-custom-request .field label .opt {
  color: var(--ink-mute); font-weight: 500;
  letter-spacing: 0.04em; text-transform: none; font-size: 11px;
}
.merakee-custom-request .field input,
.merakee-custom-request .field textarea,
.merakee-custom-request .field select {
  width: 100%;
  padding: 14px;
  background: var(--surface);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px; /* prevents iOS zoom */
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.merakee-custom-request .field input:focus,
.merakee-custom-request .field textarea:focus,
.merakee-custom-request .field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.merakee-custom-request .field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.merakee-custom-request .field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%238E8B97' stroke-width='1.6' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}
.merakee-custom-request .field-row {
  display: flex; flex-direction: column;
}
.merakee-custom-request .field-row .field { margin-bottom: 18px; }
.merakee-custom-request .chip-row {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.merakee-custom-request .chip-row .chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--surface);
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s ease;
  user-select: none;
  min-height: 36px;
  display: inline-flex; align-items: center;
}
.merakee-custom-request .chip-row .chip:hover {
  background: var(--blue-100);
}
.merakee-custom-request .chip-row .chip.selected {
  background: var(--blue); color: #fff; border-color: var(--blue);
}
.merakee-custom-request .form-actions {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.merakee-custom-request .form-actions .photo-note {
  font-size: 12px; color: var(--ink-mute); line-height: 1.4;
}
.merakee-custom-request .form-actions .merakee-pill {
  width: 100%;
  height: 52px; padding: 0 22px;
  font-size: 15px;
  white-space: nowrap;
}
@media (min-width: 720px) {
  .merakee-custom-request { padding: 64px 0 32px; }
  .merakee-custom-request .request-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 40px;
  }
  .merakee-custom-request .form-card { padding: 28px 26px; border-radius: 20px; }
  .merakee-custom-request .field-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }
  .merakee-custom-request .form-actions { flex-direction: row; align-items: center; }
  .merakee-custom-request .form-actions .merakee-pill { width: auto; margin-left: auto; }
}

/* FAQ ---------------------------------------------------------------- */
.merakee-custom-faq {
  padding: 32px 0 56px;
}
.merakee-custom-faq h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 8vw, 36px);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.merakee-custom-faq .faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.merakee-custom-faq .faq-item {
  border-bottom: 1px solid var(--line);
}
.merakee-custom-faq .faq-item > summary {
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  line-height: 1.3;
}
.merakee-custom-faq .faq-item > summary::-webkit-details-marker { display: none; }
.merakee-custom-faq .faq-item > summary::after {
  content: "";
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%238E8B97' stroke-width='1.6'><path d='M12 5v14M5 12h14'/></svg>") center / contain no-repeat;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.merakee-custom-faq .faq-item[open] > summary::after {
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23004AAD' stroke-width='1.6'><path d='M12 5v14M5 12h14'/></svg>");
}
.merakee-custom-faq .faq-item .body {
  overflow: hidden;
}
.merakee-custom-faq .faq-item .body p {
  font-size: 13.5px; line-height: 1.6; color: var(--ink-soft);
  margin: 0; padding-bottom: 18px;
  text-wrap: pretty;
}
@media (min-width: 720px) {
  .merakee-custom-faq h2 { font-size: clamp(30px, 5vw, 38px); }
}

/* Sticky bottom bar (mobile) ---------------------------------------- */
.merakee-custom-bottom-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + var(--safe-bottom, 0px));
  display: flex; gap: 8px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.merakee-custom-bottom-bar.is-hidden {
  transform: translateY(calc(100% + 4px));
  opacity: 0;
  pointer-events: none;
}
.merakee-custom-bottom-bar .scroll-form {
  height: 48px; padding: 0 18px;
  border-radius: 999px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
  font-family: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center;
}
.merakee-custom-bottom-bar .start {
  flex: 1;
  height: 48px;
  border-radius: 999px;
  background: var(--blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .merakee-custom-bottom-bar { display: none; }
}

/* ──────────────────────────────────────────────────────────────────────
   Links hub (templates/page-links.html) — linktree-style landing
   ────────────────────────────────────────────────────────────────────── */

body.page-links {
  background:
    radial-gradient(circle at top, #FFF6E3 0%, transparent 55%),
    var(--surface);
}
/* Suppress the site header/footer on this page — linktree-style should be
   chromeless. The template omits the template-parts, but WP's block theme
   may inject the header/footer anyway via base template inheritance. */
body.page-links .wp-site-blocks > header,
body.page-links .wp-site-blocks > footer { display: none; }

.merakee-links-page {
  min-height: 100dvh;
  padding: 0;
}

.merakee-links-column {
  max-width: 480px;
  margin: 0 auto;
  padding: calc(28px + env(safe-area-inset-top, 0px)) 22px calc(40px + var(--safe-bottom, 0px));
  display: flex; flex-direction: column;
  min-height: 100dvh;
}
@media (min-width: 600px) {
  .merakee-links-column { padding: 56px 28px 56px; }
}

/* Header ------------------------------------------------------------- */
.merakee-links-column .mk-links-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  margin-bottom: 28px;
}
.merakee-links-column .avatar {
  width: 132px; height: 132px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 20px 40px -20px rgba(0, 74, 173, 0.35), 0 1px 0 rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.merakee-links-column .avatar img {
  width: 90%; height: 90%;
  object-fit: contain;
  display: block;
}
.merakee-links-column .brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}
@media (min-width: 600px) {
  .merakee-links-column .brand { font-size: 32px; }
}
.merakee-links-column .brand em {
  font-style: italic;
  background: linear-gradient(95deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.merakee-links-column .tagline {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 6px 0 0;
  line-height: 1.45;
  max-width: 320px;
}
.merakee-links-column .meta-row {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.merakee-links-column .meta-row .dot { color: var(--ink-mute); }

/* Status pill -------------------------------------------------------- */
.merakee-links-column .status {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 12.5px;
  color: var(--ink-soft);
  width: 100%;
  line-height: 1.4;
}
.merakee-links-column .status strong { color: var(--ink); font-weight: 600; }
.merakee-links-column .status .dotsig {
  width: 8px; height: 8px; border-radius: 999px;
  background: #21B36B;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(33, 179, 107, 0.18);
  animation: mk-links-pulse 2.4s ease-in-out infinite;
}
@keyframes mk-links-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(33, 179, 107, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(33, 179, 107, 0.05); }
}

/* Primary WA CTA ----------------------------------------------------- */
.merakee-links-column .wa-primary {
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--wa-green, #25D366);
  color: #fff;
  border-radius: 16px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.55);
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.merakee-links-column .wa-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 14px -8px rgba(37, 211, 102, 0.6);
}
.merakee-links-column .wa-primary .ico {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.merakee-links-column .wa-primary .body {
  display: flex; flex-direction: column; gap: 1px;
  flex: 1; min-width: 0;
}
.merakee-links-column .wa-primary .body small {
  font-size: 11px; opacity: 0.85; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.merakee-links-column .wa-primary .arrow { opacity: 0.85; }

/* Featured card ------------------------------------------------------ */
.merakee-links-column .featured {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.12s ease;
}
.merakee-links-column .featured:active { transform: scale(0.99); }
.merakee-links-column .featured .photo {
  aspect-ratio: 16/9;
  background: var(--blue-50);
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) {
  .merakee-links-column .featured .photo { aspect-ratio: 16/8; }
}
.merakee-links-column .featured .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.merakee-links-column .featured .photo .badge {
  position: absolute; top: 12px; left: 12px;
  background: #fff; color: var(--blue);
  padding: 5px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.merakee-links-column .featured .meta {
  padding: 14px 16px 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.merakee-links-column .featured .meta h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 2px;
}
.merakee-links-column .featured .meta p {
  margin: 0;
  font-size: 12px;
  color: var(--ink-mute);
}
.merakee-links-column .featured .meta .arrow {
  color: var(--blue);
  flex-shrink: 0;
}

/* Link stack --------------------------------------------------------- */
.merakee-links-column .section-label {
  margin: 24px 4px 10px;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.merakee-links-column .stack {
  display: flex; flex-direction: column;
  gap: 10px;
}
.merakee-links-column .link-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.1s ease, border-color 0.15s, background 0.15s;
  min-height: 60px;
}
.merakee-links-column .link-row:active { transform: scale(0.99); }
.merakee-links-column .link-row:hover { border-color: var(--blue-100); }
.merakee-links-column .link-row .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.merakee-links-column .link-row .body { flex: 1; min-width: 0; }
.merakee-links-column .link-row .body strong {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.merakee-links-column .link-row .body small {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
  line-height: 1.3;
}
.merakee-links-column .link-row .arrow {
  color: var(--ink-mute);
  flex-shrink: 0;
}
.merakee-links-column .link-row.brand-tint .ico { background: #EEF7FF; }
.merakee-links-column .link-row.map-row { margin-top: 10px; }

/* Info card (hours + address) --------------------------------------- */
.merakee-links-column .info-card {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.merakee-links-column .info-card .col strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.merakee-links-column .info-card .col p {
  margin: 0;
  line-height: 1.45;
}
.merakee-links-column .info-card .col p + p { margin-top: 2px; }

/* Social row --------------------------------------------------------- */
.merakee-links-column .socials {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 22px;
}
.merakee-links-column .social-btn {
  width: 46px; height: 46px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.12s ease, color 0.15s, border-color 0.15s;
}
.merakee-links-column .social-btn:active { transform: scale(0.92); }
.merakee-links-column .social-btn:hover { color: var(--blue); border-color: var(--blue-100); }

/* Footer ------------------------------------------------------------- */
.merakee-links-column .foot {
  margin-top: auto;
  padding-top: 36px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}
.merakee-links-column .foot a {
  color: var(--blue);
  text-decoration: none;
}
.merakee-links-column .foot p { margin: 0; }
