/** Shopify CDN: Minification failed

Line 22:16 Expected identifier but found whitespace
Line 22:18 Unexpected "{"
Line 22:28 Expected ":"
Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
Line 23:27 Expected ":"
Line 24:16 Expected identifier but found whitespace
Line 24:18 Unexpected "{"
Line 24:28 Expected ":"
Line 25:21 Expected identifier but found whitespace
... and 34 more hidden warnings

**/
/* =========================================================
   MumsBuy Theme — Base Stylesheet
   "Little things. Big love."
   ========================================================= */

:root{
  --color-cream: {{ settings.color_cream }};
  --color-sage: {{ settings.color_sage }};
  --color-peach: {{ settings.color_peach }};
  --color-terracotta: {{ settings.color_terracotta }};
  --color-charcoal: {{ settings.color_charcoal }};
  --color-white: {{ settings.color_white }};
  --radius: {{ settings.corner_radius }}px;
  --page-width: {{ settings.page_width }}px;
  --font-heading: {{ settings.font_heading.family }}, sans-serif;
  --font-heading-weight: {{ settings.font_heading.weight }};
  --font-body: {{ settings.font_body.family }}, sans-serif;
  --font-body-weight: {{ settings.font_body.weight }};
  --font-accent: {{ settings.font_accent.family }}, serif;
}

*{ box-sizing: border-box; }

html, body{
  background: var(--color-cream);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-weight: var(--font-body-weight);
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

h1, h2, h3, h4, .heading-font{
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  margin: 0 0 0.5em;
  color: var(--color-charcoal);
}

.accent-font{
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-terracotta);
}

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

.page-width{
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{ transform: translateY(-1px); opacity: .92; }
.btn--primary{ background: var(--color-terracotta); color: var(--color-white); }
.btn--secondary{ background: var(--color-sage); color: var(--color-white); }
.btn--outline{ background: transparent; border: 2px solid var(--color-charcoal); color: var(--color-charcoal); }

/* ---------- Header ---------- */
.announcement-bar{
  background: var(--color-sage);
  color: var(--color-white);
  text-align: center;
  font-size: 13px;
  padding: 8px 12px;
  letter-spacing: .02em;
}

.site-header{
  background: var(--color-cream);
  border-bottom: 1px solid rgba(46,46,46,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.site-header__logo{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-sage);
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-header__logo .heart{ color: var(--color-terracotta); }
.site-nav{ display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.site-nav a{ font-weight: 600; font-size: 15px; }
.site-nav a:hover{ color: var(--color-terracotta); }
.site-header__icons{ display: flex; align-items: center; gap: 18px; }
.site-header__icons a{ position: relative; display: flex; }
.cart-count{
  position: absolute; top: -6px; right: -8px;
  background: var(--color-terracotta); color: #fff;
  font-size: 10px; border-radius: 50%;
  width: 16px; height: 16px; display: flex; align-items: center; justify-content: center;
}
.header-search{
  display: flex; align-items: center; gap: 6px;
  background: var(--color-white); border-radius: 999px; padding: 8px 16px;
  border: 1px solid rgba(46,46,46,0.12); flex: 1; max-width: 320px;
}
.header-search input{ border: none; outline: none; background: transparent; width: 100%; font-family: var(--font-body); }
.mobile-nav-toggle{ display: none; }

/* ---------- Hero ---------- */
.hero{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 48px 24px;
  max-width: var(--page-width);
  margin: 0 auto;
}
.hero__content h1{ font-size: 48px; line-height: 1.1; }
.hero__content p{ font-size: 17px; max-width: 420px; margin-bottom: 24px; color: rgba(46,46,46,.8); }
.hero__actions{ display: flex; gap: 14px; }
.hero__image img{ border-radius: var(--radius); width: 100%; object-fit: cover; }

/* ---------- Shop by Need ---------- */
.section{ padding: 56px 24px; max-width: var(--page-width); margin: 0 auto; }
.section__header{ margin-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; }
.section__header p{ color: rgba(46,46,46,.65); margin: 4px 0 0; }
.section__viewall{ font-weight: 700; color: var(--color-terracotta); white-space: nowrap; }

.need-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}
.need-grid__item{ display: flex; flex-direction: column; align-items: center; gap: 10px; }
.need-grid__icon{
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--icon-bg, var(--color-peach));
}
.need-grid__icon svg{ width: 30px; height: 30px; }
.need-grid__item span{ font-weight: 600; font-size: 14px; }

/* ---------- Product Grid ---------- */
.product-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card{
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease;
}
.product-card:hover{ box-shadow: 0 10px 24px rgba(46,46,46,.08); }
.product-card__badge{
  position: absolute; top: 12px; left: 12px;
  background: var(--color-terracotta); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; z-index: 2;
}
.product-card__wishlist{
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(255,255,255,.85); border-radius: 50%; padding: 6px; display: flex;
}
.product-card__image{ aspect-ratio: 1/1; overflow: hidden; background: var(--color-cream); }
.product-card__image img{ width: 100%; height: 100%; object-fit: cover; }
.product-card__body{ padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card__title{ font-weight: 700; font-size: 15px; }
.product-card__rating{ font-size: 12px; color: var(--color-terracotta); }
.product-card__price{ display: flex; align-items: baseline; gap: 8px; }
.product-card__price .now{ font-weight: 700; font-size: 16px; }
.product-card__price .was{ text-decoration: line-through; color: rgba(46,46,46,.4); font-size: 13px; }
.product-card__price .off{ color: var(--color-sage); font-size: 12px; font-weight: 700; }
.product-card .btn{ margin-top: auto; width: 100%; }

/* ---------- Problems / Solutions banner ---------- */
.solutions-banner{
  background: var(--color-sage);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.solutions-banner h2{ color: var(--color-white); font-size: 30px; margin-bottom: 6px;}
.solutions-banner .btn--outline{ border-color: #fff; color: #fff; }
.solutions-icons{ display: flex; gap: 32px; flex-wrap: wrap; }
.solutions-icons__item{ text-align: center; font-size: 13px; font-weight: 600; }
.solutions-icons__item .circle{
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
}

/* ---------- Why Us ---------- */
.why-us{ display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; text-align: center; }
.why-us__item svg{ width: 32px; height: 32px; margin-bottom: 10px; color: var(--color-sage); }
.why-us__item span{ display: block; font-weight: 600; font-size: 14px; }

/* ---------- Newsletter ---------- */
.newsletter{
  background: var(--color-sage);
  border-radius: var(--radius);
  padding: 40px;
  text-align: left;
  color: var(--color-white);
}
.newsletter h3{ color: var(--color-white); }
.newsletter form{ display: flex; gap: 10px; max-width: 420px; margin-top: 16px; }
.newsletter input[type="email"]{
  flex: 1; padding: 12px 18px; border-radius: 999px; border: none; font-family: var(--font-body);
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--color-charcoal); color: var(--color-white); padding: 48px 24px 24px; margin-top: 40px; }
.site-footer__grid{ display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; max-width: var(--page-width); margin: 0 auto; }
.site-footer h4{ color: var(--color-white); font-size: 15px; margin-bottom: 14px; }
.site-footer ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer a{ opacity: .8; font-size: 14px; }
.site-footer a:hover{ opacity: 1; }
.site-footer__bottom{
  max-width: var(--page-width); margin: 32px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; justify-content: space-between; align-items: center; font-size: 13px; opacity: .7; flex-wrap: wrap; gap: 12px;
}
.site-footer__social{ display: flex; gap: 14px; }

/* ---------- Product page ---------- */
.product-main{ display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px 24px; max-width: var(--page-width); margin: 0 auto; }
.product-main__gallery img{ border-radius: var(--radius); margin-bottom: 12px; }
.product-main__thumbs{ display: flex; gap: 10px; }
.product-main__thumbs img{ width: 70px; height: 70px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; }
.product-main__thumbs img.active{ border-color: var(--color-terracotta); }
.product-main__info h1{ font-size: 30px; }
.product-main__price{ font-size: 24px; font-weight: 700; margin: 12px 0; display:flex; gap: 12px; align-items: baseline; }
.product-main__price .was{ text-decoration: line-through; opacity: .4; font-size: 16px; }
.qty-selector{ display: flex; align-items: center; border: 1px solid rgba(46,46,46,.2); border-radius: 999px; overflow: hidden; width: fit-content; margin-bottom: 20px; }
.qty-selector button{ background: none; border: none; padding: 10px 16px; cursor: pointer; font-size: 16px; }
.qty-selector input{ width: 40px; border: none; text-align: center; font-family: var(--font-body); }

/* ---------- Collection page ---------- */
.collection-header{ text-align: center; padding: 40px 24px 20px; }
.collection-toolbar{ display: flex; justify-content: space-between; align-items: center; padding: 0 24px 20px; max-width: var(--page-width); margin: 0 auto; }

/* ---------- Cart ---------- */
.cart-line{ display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(46,46,46,.08); align-items: center; }
.cart-line img{ border-radius: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 989px){
  .hero{ grid-template-columns: 1fr; }
  .need-grid{ grid-template-columns: repeat(3,1fr); }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .why-us{ grid-template-columns: repeat(2,1fr); }
  .site-footer__grid{ grid-template-columns: 1fr 1fr; }
  .product-main{ grid-template-columns: 1fr; }
}
@media (max-width: 700px){
  .site-nav{ display: none; }
  .header-search{ display: none; }
  .mobile-nav-toggle{ display: block; }
  .hero__content h1{ font-size: 32px; }
  .solutions-banner{ flex-direction: column; align-items: flex-start; }
}
