/** Shopify CDN: Minification failed

Line 13:23 Expected ":"

**/
/* ============================================================
   BLOSSOM STUDIO — Shopify Theme CSS
   ============================================================ */

:root {
  --pink-50: #fff0f6;
  --pink-100: #ffd6e8;
  --pink-200: #ffadd3;a
  --pink-300: #ff85c2;
  --pink-400: #f05da0;
  --pink-500: #d63d82;
  --pink-600: #b5206a;
  --peach: #ffd4bc;
  --peach-dark: #f4a07a;
  --lilac: #e8d4f5;
  --lilac-mid: #c9a0e0;
  --mint: #d4f5e9;
  --mint-mid: #7ecfae;
  --yellow: #fff3c4;
  --yellow-mid: #f5d76e;
  --cream: #fffaf5;
  --text-dark: #3a1a2e;
  --text-mid: #7a4060;
  --text-light: #b07090;
  --border: rgba(215,100,155,0.18);
  --shadow-soft: 0 8px 32px rgba(214,61,130,0.10);
  --shadow-card: 0 4px 18px rgba(214,61,130,0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--pink-500);
  color: white;
  text-align: center;
  padding: 9px 1rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.announcement-bar a { color: white; text-decoration: underline; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,240,246,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--border);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.6rem;
  color: var(--pink-500);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.site-logo span { color: var(--pink-300); }
.site-nav { display: flex; gap: 2rem; list-style: none; }
.site-nav a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--text-mid); text-decoration: none; text-transform: uppercase;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--pink-500); }
.header-icons { display: flex; gap: 0.75rem; align-items: center; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: background 0.2s, transform 0.15s;
  text-decoration: none; color: var(--text-dark); position: relative;
}
.icon-btn:hover { background: var(--pink-100); transform: scale(1.07); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--pink-400); color: white;
  font-size: 0.6rem; font-weight: 500; width: 17px; height: 17px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
}
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-dark); }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--pink-400) 0%, var(--pink-500) 100%);
  color: white; border: none; padding: 14px 32px;
  border-radius: var(--radius-pill); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(214,61,130,0.32);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(214,61,130,0.42); color: white; }
.btn-outline {
  background: white; color: var(--pink-500);
  border: 1.5px solid var(--pink-300); padding: 13px 28px;
  border-radius: var(--radius-pill); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--pink-50); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; justify-content: center; }

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--pink-400); color: white;
  padding: 10px 0; overflow: hidden;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span::before { content: '✦  '; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; position: relative; overflow: hidden;
}
.hero-left {
  padding: 8vw 5vw 6vw 7vw;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-100); color: var(--pink-600);
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.07em;
  padding: 6px 14px; border-radius: var(--radius-pill);
  text-transform: uppercase; margin-bottom: 1.5rem;
  border: 1px solid var(--pink-200); width: fit-content;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-400); animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.1; color: var(--text-dark); margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--pink-500); font-style: italic; }
.hero-desc {
  font-size: 1.05rem; line-height: 1.75; color: var(--text-mid);
  max-width: 420px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--pink-100) 0%, var(--lilac) 50%, var(--peach) 100%);
}
.hero-blob {
  position: absolute; border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
}
.hero-blob-1 { width: 320px; height: 320px; background: rgba(255,133,194,0.25); top: 10%; right: 5%; animation: float1 8s ease-in-out infinite; }
.hero-blob-2 { width: 240px; height: 240px; background: rgba(232,212,245,0.4); bottom: 15%; left: 8%; animation: float2 10s ease-in-out infinite; border-radius: 40% 60% 30% 70% / 60% 40% 80% 20%; }
.hero-blob-3 { width: 160px; height: 160px; background: rgba(255,212,188,0.5); top: 55%; right: 20%; animation: float1 12s ease-in-out infinite 2s; }
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-20px) rotate(5deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(18px) rotate(-6deg)} }
.hero-cards {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 14px;
  padding: 6vw 5vw 6vw 4vw; justify-content: center; height: 100%;
}
.hero-card {
  background: rgba(255,255,255,0.88); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md); padding: 16px 18px;
  border: 1.5px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 14px;
  transition: transform 0.25s;
}
.hero-card:hover { transform: translateX(-6px); }
.hero-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.bg-pink-light { background: var(--pink-100); }
.bg-lilac { background: var(--lilac); }
.bg-peach { background: var(--peach); }
.bg-mint { background: var(--mint); }
.hero-card-text strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--text-dark); }
.hero-card-text span { font-size: 0.76rem; color: var(--text-light); }
.hero-card-price { margin-left: auto; font-weight: 600; color: var(--pink-500); font-size: 0.9rem; }

/* ── SECTION UTILITIES ── */
.section { padding: 5rem 7vw; }
.section-sm { padding: 3rem 7vw; }
.section-label {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pink-400); margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem); line-height: 1.15;
  color: var(--text-dark); margin-bottom: 0.75rem;
}
.section-title em { color: var(--pink-500); font-style: italic; }
.section-sub { font-size: 0.98rem; color: var(--text-mid); font-weight: 300; max-width: 480px; line-height: 1.7; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.bg-pink-soft { background: var(--pink-50); }
.bg-white { background: white; }
.bg-gradient-warm { background: linear-gradient(160deg, var(--lilac) 0%, var(--pink-50) 60%, var(--peach) 100%); }
.bg-gradient-pink { background: linear-gradient(135deg, var(--pink-400) 0%, var(--pink-600) 100%); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto 2.5rem; }

/* ── CATEGORY GRID ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.cat-card {
  background: white; border-radius: var(--radius-md);
  padding: 1.8rem 1rem 1.4rem;
  text-align: center; border: 1.5px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer; text-decoration: none; color: inherit;
  display: block;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.cat-emoji { font-size: 2.2rem; display: block; margin-bottom: 0.7rem; }
.cat-name { font-weight: 500; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.cat-count { font-size: 0.73rem; color: var(--text-light); }
.cat-card.cat-featured {
  background: linear-gradient(145deg, var(--pink-100), var(--lilac));
  border-color: var(--pink-200);
  grid-column: span 2;
  padding: 2.2rem 2rem;
}
.cat-card.cat-featured .cat-emoji { font-size: 2.8rem; }
.cat-card.cat-featured .cat-name { font-size: 1.05rem; color: var(--pink-600); }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: white; border-radius: var(--radius-md);
  overflow: hidden; border: 1.5px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.product-card a { text-decoration: none; color: inherit; }
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; background: var(--pink-50);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  color: white; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.06em; padding: 4px 10px;
  border-radius: var(--radius-pill); text-transform: uppercase;
}
.badge-new { background: var(--mint-mid); color: #0d4a2e; }
.badge-sale { background: var(--peach-dark); }
.badge-best { background: var(--pink-400); }
.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: white; display: flex; align-items: center;
  justify-content: center; font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0; transition: opacity 0.2s; border: none; cursor: pointer;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-info { padding: 1rem 1.1rem 1.2rem; }
.product-name { font-weight: 500; font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--text-dark); }
.product-vendor { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.6rem; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-weight: 600; color: var(--pink-500); font-size: 0.98rem; }
.product-compare-price { text-decoration: line-through; color: var(--text-light); font-size: 0.8rem; margin-left: 6px; }
.add-to-cart-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--pink-50); border: 1.5px solid var(--pink-200);
  color: var(--pink-500); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.add-to-cart-btn:hover { background: var(--pink-400); color: white; transform: scale(1.12); border-color: transparent; }

/* ── ABOUT SECTION ── */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center;
}
.about-visual { position: relative; height: 460px; }
.about-circle {
  position: absolute; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.circle-main { width: 260px; height: 260px; background: white; box-shadow: var(--shadow-card); top: 50%; left: 50%; transform: translate(-50%,-50%); border: 2px solid var(--border); font-size: 5.5rem; }
.circle-sm1 { width: 95px; height: 95px; background: var(--pink-100); top: 5%; left: 10%; font-size: 2.3rem; border: 1.5px solid var(--pink-200); }
.circle-sm2 { width: 78px; height: 78px; background: var(--yellow); bottom: 12%; right: 5%; font-size: 1.9rem; border: 1.5px solid var(--yellow-mid); }
.circle-sm3 { width: 68px; height: 68px; background: var(--mint); bottom: 30%; left: 3%; font-size: 1.7rem; border: 1.5px solid var(--mint-mid); }
.about-text .section-title { margin-bottom: 1rem; }
.about-text p { font-size: 0.96rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 0.9rem; font-weight: 300; }
.about-stats { display: flex; gap: 2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.stat strong { display: block; font-size: 2rem; font-weight: 600; color: var(--pink-500); font-family: 'Playfair Display', serif; }
.stat span { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── REVIEWS ── */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.review-card {
  background: var(--pink-50); border-radius: var(--radius-md);
  padding: 1.5rem 1.3rem; border: 1.5px solid var(--border);
  transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-4px); }
.stars { color: var(--pink-400); font-size: 0.88rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.1rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 600; color: white; flex-shrink: 0;
}
.reviewer-name { font-size: 0.83rem; font-weight: 500; color: var(--text-dark); }
.reviewer-label { font-size: 0.7rem; color: var(--text-light); }

/* ── NEWSLETTER ── */
.newsletter-inner { text-align: center; }
.newsletter-inner .section-label { color: rgba(255,255,255,0.7); }
.newsletter-inner .section-title { color: white; }
.newsletter-inner .section-title em { color: var(--yellow-mid); }
.newsletter-inner .section-sub { color: rgba(255,255,255,0.82); margin: 0 auto 2.2rem; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.newsletter-input {
  flex: 1; min-width: 200px; padding: 13px 20px;
  border-radius: var(--radius-pill); border: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem;
  background: rgba(255,255,255,0.95); color: var(--text-dark); outline: none;
}
.newsletter-input::placeholder { color: var(--text-light); }
.btn-white {
  background: white; color: var(--pink-500); border: none;
  padding: 13px 26px; border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem;
  font-weight: 500; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.newsletter-note { font-size: 0.73rem; color: rgba(255,255,255,0.55); margin-top: 1rem; }

/* ── FOOTER ── */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 4rem 7vw 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Pacifico', cursive; font-size: 1.5rem; color: var(--pink-200); text-decoration: none; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.2rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem; transition: background 0.2s;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none; color: white;
}
.social-btn:hover { background: var(--pink-500); border-color: transparent; }
.footer-col h4 { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: white; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink-200); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; }
.payment-icons { display: flex; gap: 8px; }
.payment-badge { background: rgba(255,255,255,0.12); border-radius: 6px; padding: 4px 10px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); }

/* ── PAGE TEMPLATES ── */
/* Collection page */
.collection-header { padding: 3rem 7vw 2rem; text-align: center; background: var(--pink-50); border-bottom: 1.5px solid var(--border); }
.collection-header h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--text-dark); }
.collection-body { padding: 3rem 7vw; }
.filter-bar { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; align-items: center; }
.filter-btn { background: white; border: 1.5px solid var(--border); color: var(--text-mid); padding: 8px 18px; border-radius: var(--radius-pill); font-size: 0.82rem; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--pink-400); border-color: var(--pink-400); color: white; }

/* Product page */
.product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; padding: 3rem 7vw; }
.product-page-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--pink-50); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.product-page-img img { width: 100%; height: 100%; object-fit: cover; }
.product-page-info { display: flex; flex-direction: column; gap: 1.2rem; }
.product-page-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-dark); }
.product-page-price { font-size: 1.6rem; font-weight: 600; color: var(--pink-500); }
.product-page-desc { font-size: 0.95rem; line-height: 1.75; color: var(--text-mid); font-weight: 300; }
.product-form { display: flex; flex-direction: column; gap: 1rem; }
.variant-label { font-size: 0.82rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn { padding: 8px 16px; border-radius: var(--radius-pill); border: 1.5px solid var(--border); font-size: 0.83rem; cursor: pointer; background: white; color: var(--text-mid); transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.variant-btn:hover, .variant-btn.selected { border-color: var(--pink-400); background: var(--pink-50); color: var(--pink-500); }
.qty-row { display: flex; align-items: center; gap: 1rem; }
.qty-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-pill); overflow: hidden; }
.qty-btn { width: 38px; height: 38px; background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--text-mid); transition: background 0.2s; }
.qty-btn:hover { background: var(--pink-50); }
.qty-input { width: 48px; text-align: center; border: none; font-size: 0.95rem; font-family: 'DM Sans', sans-serif; outline: none; background: transparent; }

/* Cart page */
.cart-page { padding: 3rem 7vw; max-width: 900px; margin: 0 auto; }
.cart-page h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 2rem; color: var(--text-dark); }
.cart-item { display: flex; gap: 1.5rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; background: var(--pink-50); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.cart-item-name { font-weight: 500; font-size: 0.92rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.cart-item-variant { font-size: 0.78rem; color: var(--text-light); }
.cart-item-price { font-weight: 600; color: var(--pink-500); font-size: 0.95rem; margin-left: auto; }
.cart-total-row { display: flex; justify-content: space-between; padding: 1.5rem 0; font-weight: 600; font-size: 1.1rem; }

/* Page */
.page-content { padding: 4rem 7vw; max-width: 800px; margin: 0 auto; }
.page-content h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--text-dark); margin-bottom: 2rem; }
.page-content p, .page-content li { font-size: 0.96rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1rem; font-weight: 300; }
.page-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text-dark); margin: 2rem 0 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 5vw 3rem; }
  .hero-right { height: 360px; }
  .hero-cards { padding: 3rem 4vw; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { height: 260px; }
  .product-page { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .section { padding: 3rem 5vw; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card.cat-featured { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { text-align: center; }
}

/* ── CONTACT FORM ── */
.form-label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem;
  color: var(--text-dark); background: white; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--pink-300);
  box-shadow: 0 0 0 3px rgba(240, 93, 160, 0.1);
}
.form-input::placeholder { color: var(--text-light); }
.form-textarea { min-height: 140px; resize: vertical; }
select.form-input { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b07090' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }

/* ── PAGE TEMPLATE ── */
.page-content { padding: 4rem 7vw; max-width: 800px; }
.page-content h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--text-dark); margin-bottom: 1.5rem; }
.page-content p, .page-content li { font-size: 0.96rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1rem; font-weight: 300; }
.page-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text-dark); margin: 2rem 0 1rem; }

@media (max-width: 600px) {
  .page-content { padding: 2.5rem 5vw; }
  .page-content div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
/* --- Desktop Nav Fix (Keeps links in a row) --- */
@media (min-width: 769px) {
  .site-header .site-nav {
    display: flex !important;
    flex-direction: row !important; /* Forces horizontal line */
    position: static !important;
    background: none !important;
    padding: 0 !important;
    gap: 2rem;
    list-style: none;
  }
  
  .site-header .site-nav li {
    list-style: none; /* Removes those bullet points seen in the screenshot */
  }
}

/* --- Mobile Nav Fix (Only happens on phones) --- */
@media (max-width: 768px) {
  .site-header .site-nav {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background-color: #fffaf5;
    padding: 2rem;
    z-index: 999;
    border-bottom: 1.5px solid rgba(215,100,155,0.18);
  }

  .site-header .site-nav.active {
    display: flex !important;
  }
}
/* Header Utility Layout */
.header-icons {
  display: flex;
  align-items: center;
  gap: 12px; /* Tightens the group for a sleeker look */
}

/* Branded 'Orders' Text */
.text-link {
  font-family: 'Montserrat', sans-serif !important; 
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #2d1a2e;
  text-decoration: none;
  font-weight: 500;
}

/* Minimalist Profile Icon */
.icon-link svg {
  display: block;
  color: #2d1a2e;
  transition: transform 0.2s ease;
}

.icon-link:hover svg {
  color: #ff8fab;
  transform: scale(1.05); /* Subtle pop on hover */
}

.icon-btn {
  font-size: 20px;
  line-height: 1;
}/* Mobile Header Fix for DSY Studios */
@media (max-width: 768px) {
  /* 1. Prevent the logo from shrinking */
  .site-logo {
    flex-shrink: 0 !important;
    max-width: 150px !important; /* Adjust based on your logo width */
  }

  /* 2. Hide the 'Orders' text link on mobile to save space */
  .utility-text {
    display: none !important;
  }

  /* 3. Space out the icons that are left (Bag + Account + Burger) */
  .header-icons {
    gap: 10px !important;
    flex-shrink: 1;
    justify-content: flex-end;
  }

  /* 4. Ensure the header doesn't wrap to two lines */
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap !important;
  }
}/* Final Mobile Header Layout Fix */
@media (max-width: 768px) {
  /* 1. Force the header to be a horizontal row, not a stack */
  .site-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 2. Give the logo room to exist without being squished */
  .site-logo {
    flex: 1 1 auto !important; /* Allows it to take up space but not push icons off screen */
    text-align: left !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  /* 3. Group the icons on the right and keep them tight */
  .header-icons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 0 0 auto !important; /* Prevents icons from growing too wide */
  }

  /* 4. Ensure the burger menu stays in the group */
  .mobile-menu-btn {
    margin-left: 5px !important;
  }
}