/* ══════════════════════════════════════════════════════════
   La Mimi - Front-end Stylesheet
   Converts React/Tailwind project to vanilla CSS
   ══════════════════════════════════════════════════════════ */

/* ── CSS Variables (from index.css :root) ─────────────── */
:root {
  --background:    #F4EEE0;
  --foreground:    #2D2A26;
  --primary:       #FE2A2C;
  --primary-fg:    #FFFFFF;
  --cream:         #F4EEE0;
  --cream-light:   #FFF8F0;
  --cream-card:    #FAF5EB;
  --text-dark:     #2D2A26;
  --text-medium:   #5C5652;
  --warm-gold:     #C8A96E;
  --border:        #D4C9B0;
  --muted:         #DED5C4;
  --muted-fg:      #5C5652;
  --radius:        0.875rem;
  --shadow-soft:   0 0 2px rgba(0,0,0,.12), 0 2px 4px rgba(0,0,0,.12);
  --shadow-card:   0 0 2px rgba(0,0,0,.12), 0 2px 4px rgba(0,0,0,.24);
  --font-display:  'Playfair Display', serif;
  --font-body:     'Roboto', sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.mimi-page {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* WP admin bar offset */
body.mimi-page.admin-bar .mimi-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.mimi-page.admin-bar .mimi-header { top: 46px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Kill Hello Elementor's default link underlines in ALL Mimi sections */
body.mimi-page .mimi-header a,
body.mimi-page .mimi-hero a,
body.mimi-page .mimi-categories a,
body.mimi-page .mimi-story a,
body.mimi-page .mimi-restaurants a,
body.mimi-page .mimi-reviews a,
body.mimi-page .mimi-magazin a,
body.mimi-page .mimi-footer a,
body.mimi-page .mimi-bolt-info a,
body.mimi-page .mimi-shop-banner a,
body.mimi-page .mimi-cookie a {
  text-decoration: none !important;
}
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ── Hello Elementor overrides - SCOPED to non-blog content only ── */
/* Blog archive + single post = COMPLETELY HANDS OFF (handled by blog snippet) */
.mimi-theme-content-wrap .lamimi-blog-main {
  max-width: none !important;
  padding: 0 !important;
  font-family: inherit !important;
  color: inherit !important;
  font-weight: inherit !important;
}

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; border: 2px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: #e02325; }
* { scrollbar-width: thin; scrollbar-color: var(--primary) var(--cream); }

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout ───────────────────────────────────────────── */
.mimi-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mimi-section { padding: 3.5rem 0; }
.mimi-section-sm { padding: 3rem 0; }

.mimi-grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.mimi-grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }

@media (min-width: 640px) { .mimi-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .mimi-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .mimi-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.items-center { align-items: center; }
.text-center { text-align: center; }

/* ── Reusable Components ──────────────────────────────── */
.label-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}

.divider-red {
  width: 60px; height: 2px;
  background: var(--primary);
  margin: 1.25rem auto;
}

.divider-red-left {
  width: 60px; height: 2px;
  background: var(--primary);
  margin: 1.25rem 0;
}

.heading-xl {
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.heading-lg {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.heading-xl em, .heading-lg em, .heading-md em {
  font-style: italic;
  color: var(--primary);
}

.text-muted {
  color: var(--muted-fg);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
}

.text-body {
  color: var(--muted-fg);
  font-weight: 300;
  line-height: 1.7;
}

.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-xl  { max-width: 36rem; margin-left: auto; margin-right: auto; }

.bg-cream      { background: var(--cream); }
.bg-cream-light { background: var(--cream-light); }
.bg-cream-card  { background: var(--cream-card); }
.bg-black      { background: #000; }

/* ── Buttons ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0 1.5rem; height: 3rem; border-radius: 9999px;
  background: var(--primary); color: #fff !important;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s, transform 0.2s;
  border: none !important;
  text-decoration: none !important;
}
.btn-primary:hover { background: #e02325; color: #fff !important; box-shadow: 0 4px 20px rgba(255,255,255,0.35); transform: translateY(-1px); }
.btn-primary svg { color: #fff !important; stroke: #fff !important; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0 1.5rem; height: 3rem; border-radius: 9999px;
  border: 2px solid var(--primary); color: var(--primary);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
  background: transparent;
  transition: all 0.3s;
  text-decoration: none !important;
}
.btn-outline:hover { background: var(--primary); color: var(--primary-fg); text-decoration: none !important; }

/* ── Aggressive reset for header buttons (override Hello Elementor) ── */
.mimi-header button,
.mimi-header a:not(.btn-primary):not(.mimi-mobile-cta):not(.mimi-logo) {
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}
/* Restore backgrounds on CTA buttons after reset */
.mimi-header .btn-primary,
.mimi-header .mimi-mobile-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
}

/* ── SVG Icons ────────────────────────────────────────── */
.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-lg { width: 1.25rem; height: 1.25rem; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.mimi-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease;
}

.mimi-header.is-transparent { background: transparent; }
.mimi-header.is-scrolled {
  background: rgba(255,248,240,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

/* Top thin bar */
.mimi-topbar {
  height: 2.25rem;
  background: var(--primary); color: var(--primary-fg);
  display: none; /* hidden on mobile */
  transition: all 0.5s;
  overflow: hidden;
}
.mimi-topbar.is-hidden { height: 0; opacity: 0; }

@media (min-width: 768px) { .mimi-topbar { display: block; } }

.mimi-topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
  color: #fff;
}
.mimi-topbar-inner a { display: flex; align-items: center; gap: 0.5rem; transition: opacity 0.2s; color: #fff; }
.mimi-topbar-inner a:hover { opacity: 0.8; color: #fff; }
.mimi-topbar-inner svg { width: 0.875rem; height: 0.875rem; color: #fff; stroke: #fff; }

/* Main nav row */
.mimi-nav-row {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem; gap: 1rem;
}

.mimi-logo { display: flex; align-items: center; }
.mimi-logo img { height: 3.5rem; width: auto; }

/* Desktop nav */
.mimi-nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .mimi-nav-links { display: flex; } }

.mimi-nav-link {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; font-weight: 500;
  transition: color 0.3s; color: var(--foreground);
  border: none !important;
  outline: none !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0.5rem 0;
  cursor: pointer;
  font-family: var(--font-body);
}
.mimi-header.is-transparent .mimi-nav-link { color: rgba(255,255,255,0.9); }
.mimi-header.is-transparent .mimi-nav-link:hover { color: #fff; }
.mimi-nav-link:hover { color: var(--primary); }

/* Header actions */
.mimi-nav-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .mimi-nav-actions { display: flex; } }

/* Mobile toggle */
.mimi-mobile-toggle {
  display: block; padding: 0.5rem; color: var(--foreground);
  transition: color 0.3s;
}
.mimi-header.is-transparent .mimi-mobile-toggle { color: #fff; }
@media (min-width: 1024px) { .mimi-mobile-toggle { display: none; } }

/* Mobile-only Bolt CTA (always visible in nav row on mobile) */
.mimi-mobile-bolt {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  background: #FE2A2C !important;
  color: #fff !important;
  font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(254,42,44,0.3);
  white-space: nowrap;
  margin-left: auto;
}
.mimi-mobile-bolt svg { color: #fff !important; stroke: #fff !important; width: 12px; height: 12px; flex-shrink: 0; }
.mimi-mobile-bolt span { color: #fff !important; }
.mimi-header.is-transparent .mimi-mobile-bolt {
  background: #FE2A2C !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
@media (min-width: 768px) { .mimi-mobile-bolt { display: none !important; } }

.mimi-mobile-toggle svg { width: 1.5rem; height: 1.5rem; }

/* Mobile menu */
.mimi-mobile-menu {
  background: var(--cream-light);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mimi-mobile-menu.is-open { max-height: 85vh; opacity: 1; pointer-events: auto; overflow-y: auto; }
@media (min-width: 1024px) { .mimi-mobile-menu { display: none !important; } }

.mimi-mobile-menu-inner {
  max-width: 1280px; margin: 0 auto; padding: 1.5rem;
}
.mimi-mobile-link {
  display: block; width: 100%; text-align: left;
  padding: 0.75rem 0;
  font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
  color: var(--foreground); border: none !important; border-bottom: 1px solid var(--border) !important;
  background: none !important; outline: none !important; box-shadow: none !important;
  cursor: pointer; font-family: var(--font-body);
  transition: color 0.3s;
}
.mimi-mobile-link:hover { color: var(--primary); }
@media (max-width: 900px) and (orientation: landscape) {
  .mimi-mobile-link { font-size: 0.8rem; padding: 0.5rem 0; }
}

.mimi-mobile-cta {
  display: flex !important; align-items: center; justify-content: center; gap: 0.5rem;
  margin: 1.5rem 1rem 1rem; padding: 1rem 1.5rem;
  border-radius: 9999px;
  background: #FE2A2C !important; background-color: #FE2A2C !important;
  color: #fff !important;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
  border: none !important; text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  opacity: 1 !important;
}
.mimi-mobile-cta svg { color: #fff !important; stroke: #fff !important; fill: none !important; }
.mimi-mobile-cta span { color: #fff !important; }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.mimi-hero {
  position: relative;
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #000;
}

.mimi-hero-bg {
  position: absolute; inset: 0;
  will-change: transform;
}

.mimi-hero-bg img {
  width: 100%; height: 120%;
  object-fit: cover;
  animation: slow-zoom 20s ease-in-out infinite alternate;
}

.mimi-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}

.mimi-hero-content {
  position: relative; z-index: 10;
  text-align: center;
  max-width: 1280px; margin: 0 auto; padding: 7rem 1.5rem 2rem;
}

.mimi-hero-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.mimi-hero-title .italic { font-style: italic; color: var(--primary); }

.mimi-hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 42rem; margin: 0 auto;
  font-weight: 300; line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.mimi-hero-desc strong { font-weight: 500; color: #fff; }

@keyframes slow-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* ══════════════════════════════════════════════════════════
   CATEGORIES
   ══════════════════════════════════════════════════════════ */
.mimi-categories { padding: 3.5rem 0; background: var(--cream-light); overflow: hidden; }

.mimi-cat-card {
  background: var(--cream-card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s;
}
.mimi-cat-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-card);
}

.mimi-cat-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.mimi-cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.mimi-cat-card:hover .mimi-cat-img img { transform: scale(1.1); }

.mimi-cat-body { padding: 2rem; text-align: center; }
.mimi-cat-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}
.mimi-cat-divider {
  width: 2.5rem; height: 2px;
  background: var(--primary);
  margin: 0 auto 1rem;
}
.mimi-cat-body p {
  color: var(--muted-fg); font-weight: 300; line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   STORY
   ══════════════════════════════════════════════════════════ */
.mimi-story { padding: 3.5rem 0; background: var(--cream); overflow: hidden; }

.mimi-story-photo {
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.mimi-story-photo img { width: 100%; height: auto; object-fit: cover; }

.mimi-story-text .space-y > * + * { margin-top: 1.25rem; }
.mimi-story-text p { color: var(--muted-fg); font-size: 1.125rem; font-weight: 300; line-height: 1.7; }
.mimi-story-text strong { color: var(--foreground); font-weight: 500; }

.mimi-signature { height: 3.5rem; margin-top: 2rem; }

/* Portrait grid */
.mimi-portraits {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .mimi-portraits { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.mimi-portrait {
  overflow: hidden; border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}
.mimi-portrait img {
  width: 100%; height: 420px; object-fit: cover;
  transition: transform 0.7s;
}
.mimi-portrait:hover img { transform: scale(1.05); }

/* ══════════════════════════════════════════════════════════
   RESTAURANTS
   ══════════════════════════════════════════════════════════ */
.mimi-restaurants { padding: 2rem 0 3.5rem; background: var(--cream); overflow: hidden; }

.mimi-logos-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 2rem 3rem;
}
.mimi-logos-row img {
  height: 2.5rem; width: auto; object-fit: contain;
  opacity: 0.6; filter: grayscale(1);
  transition: all 0.5s;
}
@media (min-width: 768px) { .mimi-logos-row img { height: 3.5rem; } }
@media (min-width: 1024px) { .mimi-logos-row img { height: 4rem; } .mimi-logos-row { gap: 2.5rem 4rem; } }
.mimi-logos-row img:hover { opacity: 1; filter: grayscale(0); }

/* ══════════════════════════════════════════════════════════
   REVIEWS (shortcode containers)
   ══════════════════════════════════════════════════════════ */
.mimi-reviews { padding: 3.5rem 0; background: var(--cream-light); overflow: hidden; }

.mimi-shortcode-wrap {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 3rem;
}
.mimi-shortcode-wrap:last-child { margin-bottom: 0; }

/* Prevent plugin widgets from breaking layout */
.mimi-shortcode-wrap > * {
  max-width: 100% !important;
  overflow: hidden;
}
.mimi-shortcode-wrap img {
  max-width: 100%;
  height: auto;
}

/* Google Reviews Widget (grw) overrides for containment */
.mimi-shortcode-wrap .wp-gr {
  max-width: 100% !important;
  overflow: hidden !important;
}
.mimi-shortcode-wrap .grw-row {
  flex-wrap: wrap !important;
}
.mimi-shortcode-wrap .grw-review {
  min-width: 0 !important;
}

/* Trustindex (Facebook) overrides for containment */
.mimi-shortcode-wrap .ti-widget {
  max-width: 100% !important;
  overflow: hidden !important;
}
.mimi-shortcode-wrap .ti-widget-container {
  max-width: 100% !important;
}
.mimi-shortcode-wrap .ti-review-item {
  max-width: 100% !important;
  word-break: break-word;
}

/* Responsive: stack on mobile */
@media (max-width: 767px) {
  .mimi-shortcode-wrap .grw-row {
    flex-direction: column !important;
  }
  .mimi-shortcode-wrap .grw-review,
  .mimi-shortcode-wrap .ti-review-item {
    width: 100% !important;
    flex: 1 0 100% !important;
  }
}

/* ══════════════════════════════════════════════════════════
   MAGAZIN / CONTACT
   ══════════════════════════════════════════════════════════ */
.mimi-magazin { padding: 3.5rem 0; background: var(--cream-light); overflow: hidden; }

.mimi-magazin-video {
  border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow-card);
  line-height: 0; /* kills gap below video */
}
.mimi-magazin-video video {
  width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 4/5;
  display: block; /* no inline gap */
  margin: 0; padding: 0;
}

.mimi-contact-list { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.mimi-contact-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.mimi-contact-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: rgba(254,42,44,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mimi-contact-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.mimi-contact-list h3 {
  font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 0.25rem;
}
.mimi-contact-list p,
.mimi-contact-list a { color: var(--muted-fg); font-weight: 300; text-decoration: none !important; }
.mimi-contact-list a:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════════════
   SHOP BANNER (full-width closing image)
   ══════════════════════════════════════════════════════════ */
.mimi-shop-banner {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mimi-shop-banner-img {
  position: absolute;
  inset: 0;
}
.mimi-shop-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.mimi-shop-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.7) 100%
  );
}

.mimi-shop-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 700px;
}

.mimi-shop-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0.75rem 0 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.mimi-shop-banner-title em {
  font-style: italic;
  color: var(--warm-gold);
}

.mimi-shop-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mimi-shop-banner-actions .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff !important;
}

@media (max-width: 640px) {
  .mimi-shop-banner {
    min-height: 40vh;
  }
  .mimi-shop-banner-content {
    padding: 3.5rem 1.5rem;
  }
  .mimi-shop-banner-actions {
    flex-direction: column;
    align-items: center;
  }
  .mimi-shop-banner-actions .btn-primary,
  .mimi-shop-banner-actions .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════
   BOLT PAGE
   ══════════════════════════════════════════════════════════ */
.mimi-bolt-step1 { padding: 3rem 0 3.5rem; }

.mimi-bolt-buttons {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: center;
}
@media (min-width: 640px) { .mimi-bolt-buttons { flex-direction: row; } }

.mimi-bolt-step2 { padding: 3rem 0 3.5rem; background: var(--cream-card); }

.mimi-phones {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 0.75rem;
}
@media (min-width: 768px) { .mimi-phones { gap: 1.25rem; } }

.mimi-phone-img {
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--cream-light);
  overflow: hidden;
}
.mimi-phone-img img {
  width: 6rem; height: auto;
}
@media (min-width: 640px) { .mimi-phone-img img { width: 8rem; } }
@media (min-width: 768px) { .mimi-phone-img img { width: 10rem; } }
@media (min-width: 1024px) { .mimi-phone-img img { width: 12rem; } }

.mimi-phone-img.is-middle { z-index: 10; margin-bottom: -1.5rem; }
@media (min-width: 768px) { .mimi-phone-img.is-middle { margin-bottom: -2.5rem; } }
.mimi-phone-img:not(.is-middle) { opacity: 0.9; }

.mimi-bolt-step3 { padding: 3rem 0; }
.mimi-bolt-info {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: center; justify-content: center;
  margin-top: 2rem;
  font-size: 0.875rem; font-weight: 300; color: var(--muted-fg);
}
@media (min-width: 640px) { .mimi-bolt-info { flex-direction: row; } }
.mimi-bolt-info a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.3s;
  text-decoration: none !important;
}
.mimi-bolt-info a:hover { color: var(--primary); }
.mimi-bolt-info svg { width: 1rem; height: 1rem; color: var(--primary); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.mimi-footer {
  background: var(--cream-card);
  border-top: 1px solid var(--border);
}

.mimi-footer-main {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 768px) { .mimi-footer-main { grid-template-columns: repeat(3, 1fr); } }

.mimi-footer-logo { height: 4rem; width: auto; margin-bottom: 1.5rem; }
.mimi-footer-tagline { color: var(--muted-fg); font-weight: 300; font-size: 0.875rem; line-height: 1.7; max-width: 20rem; }

.mimi-footer-nav h3 { margin-bottom: 1.25rem; }
.mimi-footer-nav ul { list-style: none; padding: 0; }
.mimi-footer-nav li { margin-bottom: 0.75rem; }
.mimi-footer-nav a {
  color: var(--foreground); opacity: 0.8;
  font-weight: 300; font-size: 0.875rem;
  transition: color 0.3s;
  text-decoration: none !important;
}
.mimi-footer-nav a:hover { color: var(--primary); opacity: 1; }

.mimi-socials { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.mimi-social-link {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  background: transparent;
  padding: 0;
}
.mimi-social-link:hover { background: var(--primary); color: var(--primary-fg); }
.mimi-social-link svg { width: 1rem; height: 1rem; fill: currentColor; }

.mimi-footer-contact { list-style: none; padding: 0; }
.mimi-footer-contact li {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem; font-weight: 300; color: var(--muted-fg);
}
.mimi-footer-contact a { color: var(--muted-fg); text-decoration: none !important; }
.mimi-footer-contact a:hover { color: var(--primary); text-decoration: none !important; }
.mimi-footer-contact svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }

/* Bottom bar */
.mimi-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .mimi-footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* Reset all footer links against theme overrides */
.mimi-footer a {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.mimi-footer .mimi-social-link {
  border: 1.5px solid var(--primary) !important;
}

.mimi-footer-legal {
  display: flex; flex-direction: column; gap: 0.5rem;
  align-items: center;
}
@media (min-width: 640px) { .mimi-footer-legal { flex-direction: row; gap: 1.5rem; } }
.mimi-footer-legal span,
.mimi-footer-legal a { color: var(--muted-fg); font-weight: 300; font-size: 0.875rem; text-decoration: none !important; }
.mimi-footer-legal a:hover { color: var(--primary); }

.mimi-anpc { display: flex; align-items: center; gap: 0.75rem; }
.mimi-anpc a {
  background: #fff; border-radius: 0.375rem; padding: 0.375rem;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.3s;
}
.mimi-anpc a:hover { opacity: 0.9; }
.mimi-anpc img { height: 2.5rem; width: auto; }

/* ══════════════════════════════════════════════════════════
   COOKIE NOTICE
   ══════════════════════════════════════════════════════════ */
.mimi-cookie {
  position: fixed; bottom: 0; left: 0; right: 0; width: 100%;
  background: var(--cream);
  color: #000;
  padding: 0.75rem 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s, transform 0.4s;
}
.mimi-cookie.is-visible { opacity: 1; transform: translateY(0); }

.mimi-cookie-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
  padding-right: 1.5rem;
}
@media (min-width: 640px) {
  .mimi-cookie-inner { flex-direction: row; align-items: center; gap: 1rem; }
}

.mimi-cookie-text { flex: 1; font-size: 14px; line-height: 1.5; }

.mimi-cookie-buttons {
  display: flex; flex-direction: column; gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 480px) { .mimi-cookie-buttons { flex-direction: row; } }

.mimi-cookie-btn {
  padding: 0.5rem 1rem;
  background: #c7c7c7; color: #000;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.2s;
  text-align: center;
  display: inline-flex; align-items: center; justify-content: center;
}
.mimi-cookie-btn:hover { background: #b8b8b8; }

.mimi-cookie-close {
  position: absolute; top: 0.5rem; right: 0.5rem;
  padding: 0.25rem; color: rgba(0,0,0,0.7);
  transition: color 0.2s;
}
.mimi-cookie-close:hover { color: #000; }
.mimi-cookie-close svg { width: 1rem; height: 1rem; }

/* ══════════════════════════════════════════════════════════
   ANIMATION CLASSES (applied by JS IntersectionObserver)
   ══════════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
[data-animate].is-visible { opacity: 1; transform: none !important; }

/* Faster, subtler animations on mobile */
@media (max-width: 767px) {
  [data-animate] {
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }
  [data-animate="fade-in-up"]   { transform: translateY(12px); }
  [data-animate="fade-in-left"] { transform: translateX(-12px); }
  [data-animate="fade-in-right"]{ transform: translateX(12px); }
  [data-animate="fade-in"]      { transform: translateY(10px); }
  [data-animate="scale-in"]     { transform: scale(0.98); }
  [data-delay="100"] { transition-delay: 0s; }
  [data-delay="150"] { transition-delay: 0.05s; }
  [data-delay="200"] { transition-delay: 0.08s; }
  [data-delay="300"] { transition-delay: 0.1s; }
}

[data-animate="fade-in"]      { transform: translateY(20px); }
[data-animate="fade-in-up"]   { transform: translateY(40px); }
[data-animate="fade-in-left"] { transform: translateX(-40px); }
[data-animate="fade-in-right"]{ transform: translateX(40px); }
[data-animate="fade-in-down"] { transform: translateY(-30px); }
[data-animate="scale-in"]     { transform: scale(0.95); }

/* Staggered delays via data-delay attribute */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="240"] { transition-delay: 0.24s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ── Order helpers ────────────────────────────────────── */
@media (min-width: 1024px) {
  .lg-order-1 { order: 1; }
  .lg-order-2 { order: 2; }
}

/* ── Misc ─────────────────────────────────────────────── */
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-8  { margin-top: 2rem; }
.gap-4 { gap: 1rem; }

/* ══════════════════════════════════════════════════════════
   NON-MIMI PAGES (terms, blog, archives, etc.)
   Full WordPress content styling - no Elementor needed
   ══════════════════════════════════════════════════════════ */
.mimi-theme-content-wrap {
  padding-top: 7.25rem;
  min-height: 60vh;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--foreground);
}

/* ── Page title hero (injected by plugin) ─────────────── */
.mimi-page-hero {
  padding: 4rem 0 2.5rem;
  text-align: center;
  background: var(--cream);
}
.mimi-page-hero::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin: 1.5rem auto 0;
}
.mimi-page-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 400 !important;
  color: var(--text-dark) !important;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 !important;
}

/* ── Main content area (standard WP pages only, NOT blog) ── */
.mimi-theme-content-wrap .site-main:not(.lamimi-blog-main),
.mimi-theme-content-wrap main:not(.lamimi-blog-main),
.mimi-theme-content-wrap .site-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.mimi-theme-content-wrap .entry-content,
.mimi-theme-content-wrap .page-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--muted-fg);
  font-weight: 300;
}

/* ── Typography inside content ────────────────────────── */
.mimi-theme-content-wrap .entry-content h1,
.mimi-theme-content-wrap .entry-content h2,
.mimi-theme-content-wrap .entry-content h3,
.mimi-theme-content-wrap .entry-content h4,
.mimi-theme-content-wrap .entry-content h5,
.mimi-theme-content-wrap .entry-content h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}
.mimi-theme-content-wrap .entry-content h1 { font-size: 2.25rem; }
.mimi-theme-content-wrap .entry-content h2 { font-size: 1.75rem; }
.mimi-theme-content-wrap .entry-content h3 { font-size: 1.5rem; }
.mimi-theme-content-wrap .entry-content h4 { font-size: 1.25rem; }
.mimi-theme-content-wrap .entry-content h5 { font-size: 1.125rem; }
.mimi-theme-content-wrap .entry-content h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }

.mimi-theme-content-wrap .entry-content p {
  margin: 0 0 1.5rem;
}

.mimi-theme-content-wrap .entry-content strong,
.mimi-theme-content-wrap .entry-content b {
  font-weight: 500;
  color: var(--foreground);
}

.mimi-theme-content-wrap .entry-content em,
.mimi-theme-content-wrap .entry-content i {
  font-style: italic;
}

/* ── Links ────────────────────────────────────────────── */
.mimi-theme-content-wrap .entry-content a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.mimi-theme-content-wrap .entry-content a:hover {
  border-bottom-color: var(--primary);
}

/* ── Lists ────────────────────────────────────────────── */
.mimi-theme-content-wrap .entry-content ul,
.mimi-theme-content-wrap .entry-content ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.mimi-theme-content-wrap .entry-content ul { list-style-type: none; }

.mimi-theme-content-wrap .entry-content ul > li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.625rem;
}
.mimi-theme-content-wrap .entry-content ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.mimi-theme-content-wrap .entry-content ol {
  list-style-type: decimal;
}
.mimi-theme-content-wrap .entry-content ol > li {
  margin-bottom: 0.625rem;
  padding-left: 0.25rem;
}
.mimi-theme-content-wrap .entry-content ol > li::marker {
  color: var(--primary);
  font-weight: 500;
}

/* ── Blockquote ───────────────────────────────────────── */
.mimi-theme-content-wrap .entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--primary);
  background: var(--cream-card);
  border-radius: 0 0.75rem 0.75rem 0;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--foreground);
}
.mimi-theme-content-wrap .entry-content blockquote p:last-child { margin-bottom: 0; }
.mimi-theme-content-wrap .entry-content blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.05em;
}

/* ── Tables ───────────────────────────────────────────── */
.mimi-theme-content-wrap .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9375rem;
}
.mimi-theme-content-wrap .entry-content th {
  background: var(--cream-card);
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--foreground);
  text-align: left;
  padding: 0.875rem 1rem;
  border-bottom: 2px solid var(--primary);
}
.mimi-theme-content-wrap .entry-content td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted-fg);
  vertical-align: top;
}
.mimi-theme-content-wrap .entry-content tr:last-child td {
  border-bottom: none;
}
.mimi-theme-content-wrap .entry-content tr:hover td {
  background: var(--cream-light);
}

/* ── Images in content ────────────────────────────────── */
.mimi-theme-content-wrap .entry-content img {
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  margin: 1.5rem 0;
}
.mimi-theme-content-wrap .entry-content figure {
  margin: 2rem 0;
}
.mimi-theme-content-wrap .entry-content figcaption {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── Code ─────────────────────────────────────────────── */
.mimi-theme-content-wrap .entry-content code {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 0.875em;
  background: var(--cream-card);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: var(--primary);
}
.mimi-theme-content-wrap .entry-content pre {
  background: var(--text-dark);
  color: var(--cream-light);
  padding: 1.5rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 2rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.mimi-theme-content-wrap .entry-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* ── Horizontal rule ──────────────────────────────────── */
.mimi-theme-content-wrap .entry-content hr {
  border: none;
  height: 2px;
  background: var(--primary);
  width: 60px;
  margin: 3rem auto;
}

/* ── WordPress specific elements ──────────────────────── */
.mimi-theme-content-wrap .wp-block-separator {
  border: none;
  height: 2px;
  background: var(--primary);
  width: 60px;
  margin: 3rem auto;
}

.mimi-theme-content-wrap .aligncenter { text-align: center; }
.mimi-theme-content-wrap .alignleft { float: left; margin: 0.5rem 1.5rem 1rem 0; }
.mimi-theme-content-wrap .alignright { float: right; margin: 0.5rem 0 1rem 1.5rem; }

/* ── Blog archive / post listing ──────────────────────── */
.mimi-theme-content-wrap article.post,
.mimi-theme-content-wrap article.page {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.mimi-theme-content-wrap article.post:last-child,
.mimi-theme-content-wrap article.page:last-child {
  border-bottom: none;
}

/* ── Featured image ───────────────────────────────────── */
.mimi-theme-content-wrap .post-thumbnail {
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.mimi-theme-content-wrap .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

/* ── Pagination ───────────────────────────────────────── */
.mimi-theme-content-wrap .pagination,
.mimi-theme-content-wrap .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem 0;
  font-size: 0.875rem;
}
.mimi-theme-content-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--border);
  color: var(--foreground);
  font-weight: 400;
  transition: all 0.3s;
}
.mimi-theme-content-wrap .page-numbers:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.mimi-theme-content-wrap .page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-fg);
  font-weight: 500;
}

/* ── Post navigation (prev/next) ──────────────────────── */
.mimi-theme-content-wrap .post-navigation {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mimi-theme-content-wrap .post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 640px) {
  .mimi-theme-content-wrap .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
}
.mimi-theme-content-wrap .post-navigation .nav-previous,
.mimi-theme-content-wrap .post-navigation .nav-next {
  font-size: 0.875rem;
}
.mimi-theme-content-wrap .post-navigation .nav-next {
  text-align: right;
}
.mimi-theme-content-wrap .post-navigation a {
  color: var(--foreground);
  transition: color 0.3s;
}
.mimi-theme-content-wrap .post-navigation a:hover {
  color: var(--primary);
}

/* ── Comments ─────────────────────────────────────────── */
.mimi-theme-content-wrap .comments-area {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.mimi-theme-content-wrap .comments-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.mimi-theme-content-wrap .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mimi-theme-content-wrap .comment-body {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--cream-card);
  border-radius: 0.75rem;
}
.mimi-theme-content-wrap .comment-author {
  font-weight: 500;
  color: var(--foreground);
}
.mimi-theme-content-wrap .comment-metadata {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
}
.mimi-theme-content-wrap .comment-content p {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

/* ── Comment form ─────────────────────────────────────── */
.mimi-theme-content-wrap .comment-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}
.mimi-theme-content-wrap .comment-form input[type="text"],
.mimi-theme-content-wrap .comment-form input[type="email"],
.mimi-theme-content-wrap .comment-form input[type="url"],
.mimi-theme-content-wrap .comment-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--foreground);
  transition: border-color 0.3s;
  margin-bottom: 1rem;
}
.mimi-theme-content-wrap .comment-form input:focus,
.mimi-theme-content-wrap .comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.mimi-theme-content-wrap .comment-form .submit,
.mimi-theme-content-wrap .comment-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}
.mimi-theme-content-wrap .comment-form input[type="submit"]:hover {
  background: #e02325;
}

/* ── 404 page ─────────────────────────────────────────── */
.mimi-theme-content-wrap .error-404 {
  text-align: center;
  padding: 6rem 1.5rem;
}
.mimi-theme-content-wrap .error-404 h1 {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.mimi-theme-content-wrap .error-404 p {
  font-size: 1.25rem;
  color: var(--muted-fg);
}

/* ── Sidebar widgets (if present) ─────────────────────── */
.mimi-theme-content-wrap .widget-area {
  font-size: 0.9375rem;
}
.mimi-theme-content-wrap .widget {
  margin-bottom: 2rem;
}
.mimi-theme-content-wrap .widget-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

/* ── Search form ──────────────────────────────────────── */
.mimi-theme-content-wrap .search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
}
.mimi-theme-content-wrap .search-form .search-field {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
}
.mimi-theme-content-wrap .search-form .search-field:focus {
  outline: none;
  border-color: var(--primary);
}
.mimi-theme-content-wrap .search-form .search-submit {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
}

/* ── Gallery ──────────────────────────────────────────── */
.mimi-theme-content-wrap .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.mimi-theme-content-wrap .gallery-item {
  margin: 0;
}
.mimi-theme-content-wrap .gallery-item img {
  border-radius: 0.5rem;
  margin: 0;
}

/* ── WooCommerce / form elements (general) ────────────── */
.mimi-theme-content-wrap input[type="text"],
.mimi-theme-content-wrap input[type="email"],
.mimi-theme-content-wrap input[type="tel"],
.mimi-theme-content-wrap input[type="number"],
.mimi-theme-content-wrap input[type="password"],
.mimi-theme-content-wrap select,
.mimi-theme-content-wrap textarea {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--foreground);
}
