/** Shopify CDN: Minification failed

Line 345:0 Unexpected "@media"
Line 382:0 Expected "}" to go with "{"

**/
/* MiniMe Theme — Base CSS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #2D3142;
  --navy-light: #3D4260;
  --navy-dark: #1E2230;
  --coral: #E8593C;
  --coral-light: #F07A62;
  --coral-dark: #C4402A;
  --cream: #FDF8F3;
  --cream-dark: #F2EAE0;
  --white: #FFFFFF;
  --gray-100: #F8F7F5;
  --gray-200: #EDEBE7;
  --gray-300: #D6D3CC;
  --gray-400: #A8A49C;
  --gray-500: #6B6862;
  --gray-700: #3D3B37;
  --success: #2D9E6B;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(45,49,66,0.08);
  --shadow-md: 0 4px 16px rgba(45,49,66,0.12);
  --shadow-lg: 0 12px 40px rgba(45,49,66,0.16);
  --transition: 0.2s ease;
  --max-width: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.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;
}

/* Utility */
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; }

/* Typography scale */
.h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
.h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.015em; }
.h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; line-height: 1.2; }
.h4 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }
.label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  transition: all var(--transition); white-space: nowrap;
  border: 2px solid transparent; text-decoration: none;
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--gray-300); }
.btn-secondary:hover { border-color: var(--navy); background: var(--cream); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-coral { background: rgba(232,89,60,0.1); color: var(--coral-dark); }
.badge-navy { background: rgba(45,49,66,0.08); color: var(--navy); }
.badge-success { background: rgba(45,158,107,0.1); color: var(--success); }

/* Cards */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 1.5rem;
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-cream { background: var(--cream); border-color: var(--cream-dark); }

/* Section spacing */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 3rem) 0; }
.section-lg { padding: clamp(4rem, 8vw, 7rem) 0; }

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 500; color: var(--gray-500);
}
.trust-item svg { color: var(--coral); flex-shrink: 0; }

/* Stars */
.stars { color: #F5A623; letter-spacing: 2px; }

/* Section labels */
.section-eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 1rem;
}

/* Dividers */
.divider { border: none; border-top: 1px solid var(--gray-200); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }


/* ═══════════════════════════════════════
   MINIME MOBILE FIXES — paste at bottom
   ═══════════════════════════════════════ */

@media (max-width: 767px) {

  /* HEADER — stop logo + nav overlapping */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 58px;
  }
  .header-logo { margin-right: auto !important; flex-shrink: 0 !important; }
  .header-nav { display: none !important; }          /* hide desktop nav */
  .header-cta { display: none !important; }          /* hide desktop CTA btn */
  .mobile-menu-toggle { display: flex !important; }  /* always show hamburger */

  /* HERO — stack vertically, don't squish */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .hero-visual { display: none; }   /* hide on mobile — too cramped */
  .hero h1 { font-size: 2.4rem; }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* OCCASION GRID — 3 cols on mobile, scrollable */
  .occasion-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.625rem;
  }
  .occasion-emoji { font-size: 1.5rem; }
  .occasion-label { font-size: 0.7rem; }

  /* PRODUCTS — 2 col grid, no overflow */
  .products-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem;
  }
  .product-card { font-size: 0.85rem; }

  /* HOW IT WORKS — already stacks, just spacing */
  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* FOOTER — 2 col, no overflow */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem;
  }
  .footer-brand { grid-column: span 2; }
  .footer-logo { font-size: 1.3rem; }

  /* MOBILE MENU — full screen slide-in */
  .mobile-menu {
    padding: 1.5rem 1.25rem;
    gap: 0;
  }
  .mobile-menu a {
    font-size: 1.05rem;
    padding: 1rem 0;
  }
  .mobile-menu .btn {
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
    height: 52px;
  }
}

@media (max-width: 767px) {
  .hero { overflow: hidden; }
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-visual { display: none !important; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtext { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── MOBILE HERO FIX ── */
@media (max-width: 767px) {

  /* Make the whole page not overflow horizontally */
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* Stack hero vertically instead of side-by-side */
  .image-with-text__grid,
  .image-with-text .grid,
  .hero .grid,
  .hero__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
  }

  /* Image comes first, full width */
  .image-with-text__media,
  .hero__media {
    width: 100% !important;
    max-width: 100% !important;
    order: 0;
  }

  /* Text below, full width, properly padded */
  .image-with-text__content,
  .hero__content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 1.25rem 2rem !important;
    order: 1;
  }

  /* Fix heading size */
  .image-with-text__content h1,
  .image-with-text__content h2 {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
  }

  /* Fix menu overflow — nav items spilling off right */
  .header__nav { display: none !important; }
  .header__inline-menu { display: none !important; }
}

/* ── MINIME MOBILE FIX ── */
@media (max-width: 767px) {

  /* Prevent ANY horizontal overflow */
  html, body { overflow-x: hidden; }
  * { max-width: 100%; }

  /* Hide desktop nav links + CTA button in header */
  .header__nav,
  .header__inline-menu,
  .header-cta,
  .header .btn { display: none !important; }

  /* Ensure hamburger is visible */
  .header__icon--menu { display: flex !important; }

  /* Fix header not capping its width */
  .header,
  .header__inner,
  .header-wrapper { max-width: 100vw; overflow: hidden; }

  /* Fix split-grid image not being full width */
  .split-gr


  /* ── MOBILE HEADER FIX ── */
@media (max-width: 767px) {

  /* Hide desktop nav links and CTA button */
  .header-nav { display: none !important; }
  .header-cta { display: none !important; }

  /* Header layout: logo left, icons right */
  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 1rem !important;
    height: 58px !important;
    overflow: hidden !important;
  }

  /* Logo — constrain size so it doesn't push things */
  .header-logo img {
    max-height: 48px !important;
    width: auto !important;
  }

  /* Keep cart + hamburger visible, side by side */
  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
  }

  /* Always show hamburger */
  .mobile-menu-toggle { display: flex !important; }

  /* Fix full page overflow */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
}

