/** Shopify CDN: Minification failed

Line 995:0 Unexpected "}"

**/
/* MiniMe Theme — Theme CSS */

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 7px var(--gutter);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announcement-bar a { color: var(--coral-light); text-decoration: underline; }
.announcement-bar strong { color: var(--coral-light); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { max-width: 1440px; padding: 0 2.5rem; }
.header-logo { flex-shrink: 0; margin-right: auto; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 120px; gap: 1.5rem;
}
.header-logo img { height: 120px; width: auto; }
.header-logo .logo-text {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--navy); letter-spacing: -0.02em;
}
.header-nav { display: flex; align-items: center; gap: 0.25rem; }
.header-nav a {
  padding: 0.5rem 0.875rem; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 600; color: var(--gray-700);
  transition: all var(--transition);
}
.header-nav a:hover { color: var(--navy); background: var(--gray-100); }
.header-nav a.active { color: var(--coral); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--navy);
  transition: background var(--transition); position: relative;
}
.header-icon:hover { background: var(--gray-100); }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--coral); color: white;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }
.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

.mobile-menu-toggle {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--navy);
}
@media (min-width: 900px) { .mobile-menu-toggle { display: none; } }
@media (max-width: 899px) { .header-nav { display: none; } }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: white; padding: 1.5rem;
  flex-direction: column; gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); margin-bottom: 1rem;
}
.mobile-menu a {
  display: block; padding: 1rem; font-size: 1.2rem;
  font-weight: 500; border-bottom: 1px solid var(--gray-200);
  color: var(--navy);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  min-height: min(90vh, 780px);
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,89,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,89,60,0.15); border: 1px solid rgba(232,89,60,0.3);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--coral-light);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic; color: var(--coral-light);
}
.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65; margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.hero-trust-item span.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
}
.hero-visual {
  position: relative; display: flex; justify-content: center;
}
.hero-image-wrap {
  width: 100%; max-width: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-stat-card {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--white); border-radius: var(--radius-md);
  padding: 0.875rem 1.1rem; box-shadow: var(--shadow-lg);
  min-width: 160px;
}
.hero-stat-num { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.hero-stat-label { font-size: 0.78rem; color: var(--gray-500); }

/* Live order counter */
.live-counter {
  position: absolute; top: 1rem; right: -0.5rem;
  background: var(--navy-dark); border-radius: var(--radius-md);
  padding: 0.75rem 1rem; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 8px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; animation: pulse 2s infinite; }
.live-text { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.9); }

/* ── OCCASION SELECTOR ── */
.occasion-section { background: var(--cream); }
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2rem;
}
@media (min-width: 640px) { .occasion-grid { grid-template-columns: repeat(6, 1fr); } }
.occasion-tile {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; padding: 1.25rem 0.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--cream-dark);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer; text-decoration: none;
}
.occasion-tile:hover {
  border-color: var(--coral); transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.occasion-emoji { font-size: 2rem; line-height: 1; }
.occasion-label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--navy); text-align: center;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--white); }
.steps-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; margin-top: 3rem;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  position: relative;
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  border: 1px solid var(--cream-dark);
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: white;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--navy); }
.step-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }
.step-image {
  height: 160px; border-radius: var(--radius-md);
  overflow: hidden; margin-top: 1.25rem;
  background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
}
.step-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── PRODUCT SHOWCASE ── */
.products-section { background: var(--white); }
.products-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: 2.5rem;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative; background: var(--white);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card.featured { border-color: var(--coral); }
.product-badge-popular {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--coral); color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.04em;
}
.product-image-wrap {
  aspect-ratio: 1; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.05); }
.product-info { padding: 1.25rem; }
.product-name { font-weight: 600; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.product-desc { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 0.75rem; line-height: 1.5; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.product-price-from { font-size: 0.75rem; font-weight: 400; color: var(--gray-400); }
.product-price-savings { font-size: 0.78rem; color: var(--success); font-weight: 600; margin-left: 4px; }
.product-cta { display: block; text-align: center; margin-top: 1rem; }

/* ── SOCIAL PROOF ── */
.reviews-section { background: var(--navy); }
.reviews-section .section-eyebrow { color: var(--coral-light); }
.reviews-section h2 { color: var(--white); }
.reviews-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-stars { font-size: 0.9rem; margin-bottom: 0.75rem; color: #F5A623; }
.review-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--coral); color: white;
  font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-size: 0.85rem; font-weight: 600; color: white; }
.review-occasion { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.review-image-wrap {
  aspect-ratio: 16/9; border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 1rem;
  background: rgba(255,255,255,0.04);
}
.review-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Aggregate reviews bar */
.reviews-aggregate {
  display: flex; align-items: center; gap: 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 1.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.reviews-big-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.reviews-breakdown { flex: 1; min-width: 200px; }
.review-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.review-bar-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); width: 28px; }
.review-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.review-bar-fill { height: 4px; border-radius: 2px; background: #F5A623; }
.review-bar-count { font-size: 0.75rem; color: rgba(255,255,255,0.4); width: 24px; text-align: right; }

/* ── TRUST SECTION ── */
.trust-section { background: var(--cream); }
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem 1rem; text-align: center;
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow-sm); }
.trust-icon {
  font-size: 1.75rem; margin-bottom: 0.75rem; display: block;
}
.trust-card-title { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.trust-card-desc { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; }

/* ── EMAIL CAPTURE ── */
.email-section {
  background: var(--navy);
  background-image: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(232,89,60,0.15) 0%, transparent 70%);
}
.email-section h2 { color: var(--white); }
.email-section p { color: rgba(255,255,255,0.65); }
.email-form { display: flex; gap: 0.75rem; max-width: 480px; flex-wrap: wrap; }
.email-input {
  flex: 1; min-width: 200px;
  padding: 0.875rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white; font-size: 0.95rem;
  outline: none; transition: border-color var(--transition);
}
.email-input::placeholder { color: rgba(255,255,255,0.4); }
.email-input:focus { border-color: var(--coral); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; line-height: 1.6; max-width: 260px; }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: white; }
.footer-heading { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: gap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all var(--transition);
}
.footer-social:hover { border-color: var(--coral); color: var(--coral); }

/* ── PRODUCT PAGE ── */
.product-page { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.product-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: start;
}
@media (min-width: 768px) { .product-layout { grid-template-columns: 55fr 45fr; } }
.product-gallery-wrap {
  position: sticky; top: 84px;
  display: flex; flex-direction: row; gap: 0.75rem; align-items: flex-start;
}
.product-thumbnails {
  display: flex; flex-direction: column; gap: 0.5rem;
  flex-shrink: 0; order: -1;
}
.product-thumb {
  width: 72px; height: 72px; border-radius: 10px;
  overflow: hidden; border: 2px solid var(--gray-200);
  cursor: pointer; transition: border-color var(--transition);
  flex-shrink: 0; background: #f5f5f5;
}
.product-thumb.active { border-color: var(--coral); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-main-image {
  flex: 1; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 1; background: var(--cream);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }

.product-details h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.5rem; color: var(--navy); }
.product-rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 1.25rem;
}
.product-rating .stars { font-size: 1rem; }
.product-rating-count { font-size: 0.875rem; color: var(--gray-500); }
.product-rating-count a { color: var(--coral); text-decoration: underline; }
.product-price-display {
  display: flex; align-items: baseline; gap: 0.75rem;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.product-price-main { font-size: 1.75rem; font-weight: 700; color: var(--navy); }
.product-price-compare { font-size: 1.1rem; color: var(--gray-400); text-decoration: line-through; }
.product-price-save { font-size: 0.875rem; color: var(--success); font-weight: 600; }

.product-trust-row {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.product-trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 500; color: var(--gray-600);
  background: var(--gray-100); padding: 6px 12px;
  border-radius: 100px;
}

.product-desc-short { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }

.product-form-actions {
  display: flex; flex-direction: column; gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.product-form-actions .btn { width: 100%; }
.btn-build {
  background: var(--coral); color: white;
  font-size: 1.05rem; padding: 1.1rem;
  border-radius: var(--radius-lg);
}
.btn-build:hover { background: var(--coral-dark); }

/* Product upsells */
.product-upsells {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 1.25rem; margin-bottom: 1.5rem;
  border: 1px solid var(--cream-dark);
}
.upsell-title { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.875rem; letter-spacing: 0.02em; }
.upsell-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.upsell-item:last-child { border-bottom: none; }
.upsell-item input[type="checkbox"] { accent-color: var(--coral); width: 16px; height: 16px; }
.upsell-item-label { flex: 1; font-size: 0.875rem; color: var(--navy); }
.upsell-item-price { font-size: 0.85rem; font-weight: 600; color: var(--coral); }

/* FAQ accordion */
.product-faq { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; text-align: left; padding: 1rem 0;
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  background: none; cursor: pointer;
}
.faq-question .faq-icon { font-size: 1.2rem; transition: transform var(--transition); color: var(--coral); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1rem; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ── STICKY ATC ── */
.sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: white; border-top: 1px solid var(--gray-200);
  padding: 1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(100%); transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-name { font-weight: 600; font-size: 0.9rem; }
.sticky-atc-price { font-size: 1rem; font-weight: 700; color: var(--coral); }

/* ── CART ── */
.cart-page { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.cart-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .cart-layout { grid-template-columns: 1fr 380px; } }
.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
  display: flex; gap: 1rem; padding: 1.25rem;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white);
}
.cart-item-image {
  width: 90px; height: 90px; flex-shrink: 0;
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--cream);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.cart-item-customization { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
  background: white;
}
.qty-btn:hover { border-color: var(--navy); background: var(--gray-100); }
.qty-num { font-size: 0.9rem; font-weight: 600; width: 30px; text-align: center; }
.cart-item-price { font-weight: 700; font-size: 1rem; text-align: right; }

.cart-summary {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--cream-dark);
  position: sticky; top: 84px; height: fit-content;
}
.cart-summary-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.9rem; }
.cart-summary-total { font-size: 1.15rem; font-weight: 700; border-top: 1px solid var(--cream-dark); padding-top: 0.875rem; margin-top: 0.875rem; }
.cart-trust { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--cream-dark); }
.cart-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.5rem; }

/* ── COLLECTION ── */
.collection-page { padding: clamp(2rem, 4vw, 3rem) 0; }
.collection-header { margin-bottom: 2.5rem; }
.collection-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .collection-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── RESPONSIVE UTILITIES ── */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
  .hero-stat-card { display: none; }
  .live-counter { display: none; }
  .occasion-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) {
  .hide-desktop { display: none !important; }
}

/* ── PRICE SNIPPET ── */
.price-wrap { display: flex; align-items: baseline; gap: 0.625rem; flex-wrap: wrap; }
.price-sale   { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.price-compare{ font-size: 0.9rem; color: var(--gray-400); text-decoration: line-through; }
.price-regular{ font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.price-sold-out { font-size: 0.9rem; color: var(--gray-400); }

/* ── BREADCRUMB ── */
.breadcrumb { margin-bottom: 1.5rem; }

/* ── RICH TEXT CONTENT ── */
.rich-text-content h2,
.rich-text-content h3 { font-family: var(--font-display); color: var(--navy); margin: 1.75rem 0 0.75rem; line-height: 1.2; }
.rich-text-content h2 { font-size: 1.5rem; }
.rich-text-content h3 { font-size: 1.2rem; }
.rich-text-content p  { margin-bottom: 1rem; }
.rich-text-content a  { color: var(--coral); text-decoration: underline; }
.rich-text-content ul,
.rich-text-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.rich-text-content li { margin-bottom: 0.4rem; line-height: 1.65; }
.rich-text-content strong { color: var(--navy); font-weight: 600; }
.rich-text-content blockquote {
  border-left: 3px solid var(--coral); padding-left: 1.25rem;
  margin: 1.5rem 0; color: var(--gray-500); font-style: italic;
}
.rich-text-content img { border-radius: var(--radius-md); margin: 1.5rem 0; }
.rich-text-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.rich-text-content th { background: var(--navy); color: white; padding: 0.75rem 1rem; text-align: left; }
.rich-text-content td { padding: 0.625rem 1rem; border-bottom: 1px solid var(--gray-200); }
.rich-text-content tr:nth-child(even) td { background: var(--gray-100); }

/* ── GIFT FINDER / QUIZ ── */
.quiz-wrap { max-width: 640px; margin: 0 auto; }
.quiz-step  { display: none; }
.quiz-step.active { display: block; }
.quiz-question { font-family: var(--font-display); font-size: clamp(1.4rem,3vw,2rem); font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.quiz-hint { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 2rem; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; margin-bottom: 2rem; }
.quiz-option {
  border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 1.25rem; text-align: center; cursor: pointer;
  transition: all var(--transition); background: var(--white);
  font-family: var(--font-body); width: 100%;
}
.quiz-option:hover   { border-color: var(--coral); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quiz-option.selected{ border-color: var(--coral); background: rgba(232,89,60,0.05); }
.quiz-option-emoji   { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.quiz-option-label   { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.quiz-option-sub     { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }
.quiz-progress { height: 4px; background: var(--gray-200); border-radius: 2px; margin-bottom: 2.5rem; }
.quiz-progress-fill { height: 4px; background: var(--coral); border-radius: 2px; transition: width 0.4s ease; }
.quiz-nav { display: flex; gap: 0.75rem; align-items: center; }
.quiz-step-label { font-size: 0.8rem; color: var(--gray-400); }
.quiz-result { text-align: center; }
.quiz-result-card {
  background: var(--cream); border-radius: var(--radius-xl);
  padding: 2.5rem; border: 1px solid var(--cream-dark);
  max-width: 480px; margin: 0 auto 2rem;
}

/* ── ABOUT STATS ── */
.about-stat-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--gray-200);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; margin: 3rem 0;
}
@media (min-width: 640px) { .about-stat-grid { grid-template-columns: repeat(4,1fr); } }
.about-stat { background: var(--white); padding: 2rem 1.5rem; text-align: center; }
.about-stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--navy); line-height: 1; }
.about-stat-label { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.375rem; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 0.625rem; flex-wrap: wrap; margin-bottom: 2rem; align-items: center; }
.filter-btn {
  padding: 0.5rem 1.1rem; border-radius: 100px;
  border: 1px solid var(--gray-300); font-size: 0.85rem;
  font-weight: 500; color: var(--gray-600); cursor: pointer;
  background: white; transition: all var(--transition); font-family: var(--font-body);
}
.filter-btn:hover  { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: white; border-color: var(--navy); }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--navy); color: white;
  padding: 0.875rem 1.5rem; border-radius: var(--radius-lg);
  font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow-lg);
  z-index: 999; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition); z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover   { transform: translateY(-2px); }

/* ── SHIPPING PROGRESS BAR ── */
.shipping-progress-wrap {
  background: var(--cream); border-radius: var(--radius-md);
  padding: 0.875rem 1rem; margin-bottom: 1.25rem; border: 1px solid var(--cream-dark);
}
.shipping-progress-label { font-size: 0.82rem; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.shipping-progress-bar   { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.shipping-progress-fill  { height: 6px; background: var(--success); border-radius: 3px; transition: width 0.6s ease; }

/* ── COLLECTION TOOLBAR ── */
.collection-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem;
}
.sort-select {
  padding: 0.5rem 1rem; border: 1px solid var(--gray-300);
  border-radius: var(--radius-md); font-size: 0.875rem;
  color: var(--navy); background: white; cursor: pointer;
  font-family: var(--font-body); outline: none;
}

/* ── PAYMENT ICONS ── */
.payment-icon { height: 24px; width: auto; border-radius: 3px; }

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE — Complete overhaul
   Breakpoints: 480px / 640px / 768px / 900px
   ═══════════════════════════════════════════ */

/* ── Global mobile resets ── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-cta { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 1rem; }

  /* ── Hero ── */
  .hero { min-height: auto; padding: 2.5rem var(--gutter); }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-subtext { font-size: 0.95rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 0.75rem; }
  .hero-trust-item { font-size: 0.78rem; }

  /* ── Occasion grid: 3 cols on mobile ── */
  .occasion-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px; }
  .occasion-tile { padding: 0.875rem 0.5rem; border-radius: 12px; }
  .occasion-emoji { font-size: 1.5rem; }
  .occasion-label { font-size: 0.7rem; }

  /* ── How it works: 1 col ── */
  .steps-grid { grid-template-columns: 1fr; gap: 0.875rem; }
  .step-card { padding: 1.25rem; text-align: left; display: flex; flex-direction: column; }
  .step-number { margin: 0 0 0.75rem 0; }

  /* ── Products: 2 col on mobile ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-info { padding: 0.875rem; }
  .product-name { font-size: 0.875rem; }
  .product-desc { display: none; }
  .product-price { font-size: 0.95rem; }

  /* ── Reviews: 1 col ── */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-aggregate { flex-direction: column; gap: 1rem; }
  .reviews-big-num { font-size: 3rem; }

  /* ── Trust: 2 col ── */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── UGC: 3 col ── */
  .ugc-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 5px; }

  /* ── Email form: stack ── */
  .email-form { flex-direction: column; width: 100%; }
  .email-input { min-width: auto; border-radius: var(--radius-lg); }
  .email-form .btn { border-radius: var(--radius-lg); justify-content: center; }

  /* ── Footer: 2 col ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }

  /* ── Product page ── */
  .product-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-gallery-wrap { position: static; flex-direction: column; }
  .product-thumbnails { flex-direction: row; flex-wrap: wrap; order: 1; }
  .product-main-image { border-radius: var(--radius-lg); }
  .product-thumb { width: 60px; height: 60px; }
  .product-details h1 { font-size: 1.5rem; }
  .product-price-main { font-size: 1.4rem; }
  .product-trust-row { gap: 0.5rem; }
  .product-trust-badge { font-size: 0.72rem; padding: 4px 8px; }
  .product-form-actions .btn { width: 100%; justify-content: center; }

  /* ── Cart ── */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-image { width: 72px; height: 72px; }

  /* ── Collection ── */
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .collection-toolbar { flex-direction: column; align-items: flex-start; }

  /* ── Gift guide banner ── */
  .gg-banner { flex-direction: column; text-align: center; padding: 1.5rem var(--gutter); }
  .gg-banner .btn { width: 100%; justify-content: center; }

  /* ── Image with text split ── */
  .split-grid { grid-template-columns: 1fr !important; }
  .split-image-right { order: 0 !important; }

  /* ── Quiz ── */
  .quiz-options { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .quiz-option { padding: 1rem 0.625rem; }
  .quiz-option-emoji { font-size: 1.5rem; }

  /* ── About stats ── */
  .about-stat-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Sticky ATC ── */
  .sticky-atc { padding: 0.875rem var(--gutter); }

  /* ── Sections padding ── */
  .section { padding: 2.5rem var(--gutter); }
  .section-sm { padding: 1.5rem var(--gutter); }
  .section-lg { padding: 3rem var(--gutter); }
  .container { padding: 0 var(--gutter); }

  /* ── Typography scale down ── */
  .h1 { font-size: 2.2rem; }
  .h2 { font-size: 1.6rem; }
  .h3 { font-size: 1.2rem; }
  .section-eyebrow { font-size: 0.7rem; }
}

/* ── Tablet: 641px–900px ── */
@media (min-width: 641px) and (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-img-box, .hero-image-wrap { max-width: 320px; }
  .hero-stat-card { display: none; }
  .live-counter { display: none; }
  .occasion-grid { grid-template-columns: repeat(6, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .split-grid { gap: 2rem; }
  .ugc-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ── Tiny phones: < 400px ── */
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .quiz-options { grid-template-columns: 1fr; }
  .occ-grid, .occasion-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Touch interaction improvements ── */
@media (hover: none) {
  .product-card:hover { transform: none; box-shadow: none; }
  .occasion-tile:hover { transform: none; }
  .btn:hover { transform: none; }
  .product-card { -webkit-tap-highlight-color: rgba(232,89,60,0.1); }
  .occasion-tile { -webkit-tap-highlight-color: rgba(232,89,60,0.1); }
}

/* ── Safe area for notched phones ── */
@supports (padding: max(0px)) {
  .site-header { padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); }
  .sticky-atc { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
  .announcement-bar { padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); }
}

/* ── Trademark disclaimer ── */
.trademark-bar {
  background: #f8f7f5;
  border-top: 1px solid var(--gray-200);
  padding: 10px var(--gutter);
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.trademark-bar a {
  color: var(--gray-500);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .trademark-bar { font-size: 0.68rem; padding: 10px var(--gutter) 14px; }
}

/* ── Mobile menu slide-in animation ── */
@media (max-width: 900px) {
  .header-nav { display: none !important; }
  .header-cta { display: none !important; }

  .mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: white;
    z-index: 200;
    padding: 1.5rem;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(45,49,66,0.18);
    overflow-y: auto;
    display: flex;
    visibility: hidden;
  }
  .mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
  }
}
  .mobile-menu.open {
    transform: translateX(0);
    display: flex !important;
  }
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45,49,66,0.5);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.28s ease;
  }
  .mobile-menu-overlay.open {
  display: block !important;
  opacity: 1 !important;
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(45,49,66,0.6) !important;
  z-index: 199 !important;
}
  .mobile-menu .mobile-menu-close {
    align-self: flex-end;
    margin-bottom: 1.5rem;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  .mobile-menu a {
    padding: 0.875rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
    color: var(--navy);
    display: block;
  }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu .btn {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-lg);
  }

  /* ── Mobile: hero layout fix ── */
  @media (max-width: 640px) {
    .hero-eyebrow { font-size: 0.72rem; padding: 4px 10px; }
    .hero-actions .btn-lg { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
  }

  /* ── Mobile: sticky ATC better layout ── */
  @media (max-width: 640px) {
    .sticky-atc { flex-wrap: nowrap; gap: 0.75rem; }
    .sticky-atc .btn { font-size: 0.85rem; padding: 0.7rem 1.1rem; white-space: nowrap; }
    .sticky-atc-name { font-size: 0.82rem; }
    .sticky-atc-price { font-size: 0.9rem; }
  }
}

/* ── Announcement bar mobile ── */
@media (max-width: 640px) {
  .announcement-bar {
    font-size: 0.72rem;
    padding: 8px var(--gutter);
    line-height: 1.5;
  }
}


@media (max-width: 767px) {
  .header-inner { height: 64px !important; }
  .header-logo img { height: 48px !important; width: auto !important; }
  html, body { overflow-x: hidden !important; }
}

.mobile-menu-overlay.open {
  width: 100vw !important;
  height: 100vh !important;
  position: fixed !important;
  inset: 0 !important;
  display: block !important;
  background: rgba(45,49,66,0.7) !important;
  z-index: 199 !important;
}



.mobile-menu .btn {
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  color: white !important;
}

