/** Shopify CDN: Minification failed

Line 825:20 Expected "}" to go with "{"

**/
/* =====================
   MYSERUM THEME — GLOBAL
   ===================== */

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

:root {
  --color-bg: #f9f5f0;
  --color-bg-alt: #f2ebe1;
  --color-bg-dark: #1a1a1a;
  --color-gold: #c8a97e;
  --color-gold-light: #f0e8d8;
  --color-text: #1a1a1a;
  --color-text-muted: #7a7065;
  --color-border: rgba(26,26,26,0.12);
  --color-white: #fff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-width: 1280px;
  --gutter: 40px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

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

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

.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text);
}

.section-heading em { font-style: italic; }

/* =====================
   ANNOUNCEMENT BAR
   ===================== */
.announcement-bar {
  background: var(--color-bg-dark);
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 9px 16px;
}

/* =====================
   HEADER / NAV
   ===================== */
.site-header {
  background: var(--color-bg);
  border-bottom: 0.5px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.site-logo span { font-style: italic; color: var(--color-gold); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--color-text); }

.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-icons a {
  color: var(--color-text-muted);
  font-size: 13px;
  transition: color 0.2s;
}

.header-icons a:hover { color: var(--color-text); }

.cart-count {
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 9px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
  vertical-align: top;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-block;
  background: var(--color-bg-dark);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover { background: #333; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 24px;
  border: 0.5px solid var(--color-border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--color-text); color: var(--color-text); }

/* =====================
   HERO
   ===================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.hero-text {
  padding: 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.12;
}

.hero-heading em { font-style: italic; }

.hero-subtext {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 360px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-image {
  position: relative;
  background: linear-gradient(135deg, #f5ede0 0%, #ede0d0 100%);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
}

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
}

.trust-item {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 0.5px solid var(--color-border);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.trust-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
}

.trust-sub {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* =====================
   PRESS BAR
   ===================== */
.press-bar {
  border-bottom: 0.5px solid var(--color-border);
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.press-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  margin-right: 40px;
  padding-right: 40px;
  border-right: 0.5px solid var(--color-border);
}

.press-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1;
  justify-content: space-around;
}

.press-name {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.55;
}

/* =====================
   FEATURED PRODUCT
   ===================== */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-image-wrap {
  background: linear-gradient(135deg, #f5ede0, #ede0d0);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info { padding-top: 8px; }

.product-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 4px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.stars { color: var(--color-gold); letter-spacing: 2px; font-size: 13px; }
.rating-count { font-size: 12px; color: var(--color-text-muted); }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 20px;
}

.price-current { font-size: 24px; font-weight: 500; }
.price-original { font-size: 15px; color: var(--color-text-muted); text-decoration: line-through; }
.price-badge {
  font-size: 10px;
  background: var(--color-gold-light);
  color: var(--color-gold);
  padding: 4px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.benefit-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-list li {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.benefit-list li::before {
  content: '✓';
  color: var(--color-gold);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.add-to-cart {
  width: 100%;
  background: var(--color-bg-dark);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 17px;
  border: none;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s;
}

.add-to-cart:hover { background: #333; }

.guarantee-note {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.guarantee-note::before { content: '🛡'; font-size: 13px; }

/* =====================
   STATS
   ===================== */
.stats-section {
  background: var(--color-bg-alt);
  padding: 64px var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
}

.stat-item {
  padding: 32px 24px;
  border-right: 0.5px solid var(--color-border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* =====================
   INGREDIENTS
   ===================== */
.ingredients-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.ingredients-text {
  padding: 80px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ingredients-intro { margin-bottom: 40px; }

.ingredient-row {
  border-top: 0.5px solid var(--color-border);
  padding: 24px 0;
}

.ingredient-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}

.ingredient-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.ingredients-image {
  background: linear-gradient(150deg, #f0e8d8, #e8dbc8);
  min-height: 400px;
  overflow: hidden;
}

.ingredients-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================
   REVIEWS
   ===================== */
.reviews-section {
  padding: 80px var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.reviews-header { margin-bottom: 48px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-bg-alt);
  padding: 28px;
}

.review-stars {
  color: var(--color-gold);
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 14px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 18px;
}

.review-author {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.verified { color: var(--color-gold); }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px var(--gutter) 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.footer-logo span { font-style: italic; color: var(--color-gold); }

.footer-tagline {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-email {
  font-size: 12px;
  color: var(--color-gold);
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

.payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pay-badge {
  font-size: 10px;
  border: 0.5px solid rgba(255,255,255,0.18);
  padding: 4px 10px;
  color: rgba(255,255,255,0.35);
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  :root { --gutter: 24px; }

  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 340px; display: none; }
  .hero-text { padding: 56px var(--gutter); max-width: 100%; }

  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 0.5px solid var(--color-border); }
  .trust-item:nth-child(4) { border-top: 0.5px solid var(--color-border); border-right: none; }

  .featured-product { grid-template-columns: 1fr; gap: 32px; }
  .stats-section { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 0.5px solid var(--color-border); }
  .stat-item:last-child { border-bottom: none; }
  .ingredients-section { grid-template-columns: 1fr; }
  .ingredients-image { min-height: 280px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .press-bar { flex-direction: column; gap: 20px; align-items: flex-start; }
  .press-label { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 0.5px solid var(--color-border); padding-bottom: 16px; width: 100%; }
  .press-logos { flex-wrap: wrap; gap: 20px; }
  .nav-links { display: none; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 0.5px solid var(--color-border); }
  .footer-grid { grid-template-columns: 1fr; }
}
/* Hero fix */
.hero {
  min-height: unset !important;
  max-height: unset !important;
  height: auto !important;
}
.hero-image {
  max-height: unset !important;
  height: auto !important;
}
.hero-image img {
  height: auto !important;
  max-height: unset !important;
  object-fit: cover !important;
  object-position: center center !important;
/* Product page refinements */
/* Product page refinements */
.product__media-wrapper,
.product__media,
.media-wrapper {
  background: var(--color-bg) !important;
}

/* Remove blue hyperlink color from product description */
.product__description a,
.product-description a,
[class*="description"] a {
  color: inherit !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Remove SIZE variant selector if only one option */
.product-form__input--dropdown {
  display: none !important;
}

/* Clean up product title */
.product__title,
h1.product__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 36px !important;
  line-height: 1.2 !important;
  color: #1a1a1a !important;
}/* =====================
   PRODUCT PAGE FIXES
   ===================== */

/* Fix product image background to match page */
.product-image-wrap {
  background: #fdfaf5 !important;
  border: none !important;
}

.product-image-wrap img {
  object-fit: contain !important;
  padding: 24px !important;
  background: #fdfaf5 !important;
}

/* Fix product title font */
.product-name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 38px !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  color: #1a1a1a !important;
}

/* Remove blue hyperlinks from description */
.product-desc a {
  color: #1a1a1a !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Hide SIZE dropdown when only one variant */
.product-form__input,
select[name="id"] {
  display: none !important;
}

/* Style the add to cart button */
.add-to-cart {
  background: #1a1a1a !important;
  color: #f9f5f0 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border: none !important;
  padding: 17px !important;
  width: 100% !important;
  cursor: pointer !important;
}

/* Fix guarantee note */
.guarantee-note {
  font-size: 13px !important;
  color: #7a7065 !important;
  text-align: center