/** Shopify CDN: Minification failed

Line 69:19 Unexpected "*"

**/
/* ================================================================
   Merchant & Main — Premium Theme Override
   Mimics Impulse/Prestige conversion patterns on Dawn
   ================================================================ */

/* ── Google Fonts Import ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ── Typography Override ──────────────────────────────────────── */
/* Direct font names — Dawn's inline :root vars override CSS custom props */

h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5,
.hx-title, .title, .rte h1, .rte h2, .rte h3,
.card__heading, .collection-hero__title,
.product__title h1, .product__title {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

h1, .h1, .h0 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 400 !important;
}

h2, .h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem) !important;
  font-weight: 500 !important;
}

body, p, .rte, input, textarea, select, button,
.list-menu__item, .announcement-bar__message {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  letter-spacing: 0.01em;
}

/* ── Premium Color Variables ──────────────────────────────────── */
:root {
  --mm-cream: #FAF7F2;
  --mm-warm-white: #FDFCFA;
  --mm-charcoal: #2C2C2C;
  --mm-dark: #1A1A1A;
  --mm-sage: #8B9D83;
  --mm-sage-dark: #6B7D63;
  --mm-gold: #C4A265;
  --mm-gold-light: #D4B275;
  --mm-muted: #6B6B6B;
  --mm-border: #E8E4DF;
  --mm-hover-bg: #F5F1EC;
}

/* ── Global Refinements ───────────────────────────────────────── */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-width {
  max-width: 1280px !important;
}

/* Smoother section transitions */
.section-template--*,
.shopify-section {
  transition: opacity 0.3s ease;
}

/* ── Announcement Bar — Premium ───────────────────────────────── */
.utility-bar {
  background: var(--mm-dark) !important;
  border-bottom: none !important;
}

.announcement-bar__message {
  font-size: 0.78rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--mm-cream) !important;
}

.announcement-bar__link {
  color: var(--mm-cream) !important;
}

/* ── Header — Clean & Elevated ────────────────────────────────── */
.section-header {
  border-bottom: 1px solid var(--mm-border) !important;
  background: white !important;
}

.header {
  padding: 16px 3rem !important;
}

.header__heading-link {
  transition: opacity 0.2s ease;
}

.header__heading-link:hover {
  opacity: 0.7;
}

/* Nav links */
.header__menu-item,
.list-menu__item--link {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--mm-charcoal) !important;
  transition: color 0.2s ease, opacity 0.2s ease !important;
}

.header__menu-item:hover,
.list-menu__item--link:hover {
  color: var(--mm-sage-dark) !important;
  opacity: 1 !important;
}

/* ── Hero Banner — Cinematic ──────────────────────────────────── */
.banner {
  min-height: 85vh !important;
}

@media screen and (max-width: 749px) {
  .banner {
    min-height: 65vh !important;
  }
}

.banner__heading {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.1 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
}

.banner__text {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem) !important;
  font-weight: 400 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2) !important;
  line-height: 1.6 !important;
}

/* ── Buttons — Refined ────────────────────────────────────────── */
.button,
.shopify-challenge__button,
.customer button,
button.button {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  border-radius: 0 !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.button--primary,
.button:not(.button--secondary):not(.button--tertiary) {
  background: var(--mm-charcoal) !important;
  color: white !important;
  border: 2px solid var(--mm-charcoal) !important;
}

.button--primary:hover,
.button:not(.button--secondary):not(.button--tertiary):hover {
  background: transparent !important;
  color: var(--mm-charcoal) !important;
}

.button--secondary {
  background: transparent !important;
  color: white !important;
  border: 2px solid white !important;
}

.banner .button--secondary:hover {
  background: white !important;
  color: var(--mm-charcoal) !important;
}

/* ── Product Cards — Prestige Style ───────────────────────────── */
.card-wrapper {
  position: relative;
  overflow: hidden;
}

.card__media {
  overflow: hidden !important;
  border-radius: 0 !important;
}

.card__media img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease !important;
}

.card-wrapper:hover .card__media img {
  transform: scale(1.05) !important;
}

/* Secondary image on hover */
.card__media .media--hover-effect > img + img {
  transition: opacity 0.5s ease !important;
}

.card__heading {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.4 !important;
  margin-top: 12px !important;
}

.card__heading a {
  text-decoration: none !important;
  color: var(--mm-charcoal) !important;
  transition: color 0.2s ease !important;
}

.card__heading a:hover {
  color: var(--mm-sage-dark) !important;
}

/* Price styling */
.price-item--regular,
.price-item--sale {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--mm-charcoal) !important;
}

.price-item--sale {
  color: #B5453A !important;
}

.price .price-item--regular {
  font-weight: 400 !important;
}

/* Compare-at price */
.price--on-sale .price-item--regular {
  color: var(--mm-muted) !important;
  font-size: 0.85rem !important;
}

/* Card badge */
.badge {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 4px 10px !important;
}

/* ── Trust Strip — Iconic Bar ─────────────────────────────────── */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 18px 20px;
  background: var(--mm-cream);
  border-top: 1px solid var(--mm-border);
  border-bottom: 1px solid var(--mm-border);
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mm-charcoal);
}

.trust-strip__icon {
  font-size: 1.1rem;
}

@media screen and (max-width: 749px) {
  .trust-strip {
    gap: 20px;
    padding: 14px 16px;
  }
  .trust-strip__item {
    font-size: 0.7rem;
  }
}

/* ── Section Headings — Editorial ─────────────────────────────── */
.section-header__title,
.title--primary,
.collection-list-title,
.featured-collection__title {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  position: relative;
  display: inline-block;
}

/* Subtle underline accent on section titles */
.title-wrapper--no-top-margin h2::after,
.title-wrapper h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--mm-sage);
  margin: 12px auto 0;
}

/* Center section headings */
.title-wrapper {
  text-align: center !important;
  margin-bottom: 40px !important;
}

/* ── Image With Text — Editorial ──────────────────────────────── */
.image-with-text {
  overflow: hidden;
}

.image-with-text__media img {
  transition: transform 0.6s ease !important;
}

.image-with-text:hover .image-with-text__media img {
  transform: scale(1.03);
}

/* ── Rich Text / Brand Story ──────────────────────────────────── */
.rich-text__text p {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: var(--mm-muted) !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── Newsletter Section — Premium ─────────────────────────────── */
.newsletter {
  background: var(--mm-cream) !important;
}

.newsletter__heading {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
}

.newsletter .field__input {
  border: 1px solid var(--mm-border) !important;
  border-radius: 0 !important;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: 0.85rem !important;
  padding: 12px 16px !important;
}

/* ── Product Page — Prestige Layout ───────────────────────────── */
.product__title h1 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.2 !important;
}

.product__text {
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--mm-muted) !important;
}

/* Product price */
.product .price-item--regular {
  font-size: 1.3rem !important;
  font-weight: 500 !important;
}

/* Product description */
.product__description .rte {
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
  color: var(--mm-muted) !important;
}

/* Product trust badges (injected via custom liquid) */
.mm-product-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--mm-border);
  border-bottom: 1px solid var(--mm-border);
  margin: 20px 0;
}

.mm-product-trust__item {
  text-align: center;
  padding: 12px 8px;
}

.mm-product-trust__icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.mm-product-trust__label {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mm-charcoal);
  display: block;
}

@media screen and (max-width: 749px) {
  .mm-product-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

/* ── Sticky Add to Cart (mobile) ──────────────────────────────── */
@media screen and (max-width: 749px) {
  .product-form__submit {
    position: sticky !important;
    bottom: 0 !important;
    z-index: 10 !important;
    margin: 0 -1.5rem !important;
    width: calc(100% + 3rem) !important;
    border-radius: 0 !important;
  }
}

/* ── Collection Page — Grid Polish ────────────────────────────── */
.collection-hero__title {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 400 !important;
}

/* Nicer filter bar */
.facets__wrapper {
  border-bottom: 1px solid var(--mm-border) !important;
  padding-bottom: 16px !important;
}

.facets__label,
.facets__summary {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* ── Footer — Refined ─────────────────────────────────────────── */
.footer {
  background: var(--mm-dark) !important;
  color: var(--mm-cream) !important;
}

.footer h2,
.footer .footer__title {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: white !important;
}

.footer a {
  color: rgba(250, 247, 242, 0.7) !important;
  transition: color 0.2s ease !important;
}

.footer a:hover {
  color: white !important;
}

.footer .newsletter .field__input {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: white !important;
}

.footer .newsletter .field__input::placeholder {
  color: rgba(255,255,255,0.5) !important;
}

.footer .newsletter .newsletter__button {
  background: var(--mm-sage) !important;
  color: white !important;
  border-color: var(--mm-sage) !important;
}

/* Payment icons in footer */
.footer .list-payment {
  opacity: 0.6;
}

/* ── Quick Add Button (collection pages) ──────────────────────── */
.quick-add__submit {
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 10px 16px !important;
  border-radius: 0 !important;
  background: var(--mm-charcoal) !important;
  color: white !important;
  transition: all 0.3s ease !important;
}

.quick-add__submit:hover {
  background: var(--mm-sage-dark) !important;
}

/* ── Scrollbar (subtle) ───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--mm-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--mm-muted);
}

/* ── Selection Color ──────────────────────────────────────────── */
::selection {
  background: var(--mm-sage);
  color: white;
}

/* ── Smooth Page Load ─────────────────────────────────────────── */
@keyframes mmFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.shopify-section:not(.section-header) {
  animation: mmFadeIn 0.5s ease-out both;
}

.shopify-section:nth-child(2) { animation-delay: 0.1s; }
.shopify-section:nth-child(3) { animation-delay: 0.15s; }
.shopify-section:nth-child(4) { animation-delay: 0.2s; }
.shopify-section:nth-child(5) { animation-delay: 0.25s; }

/* ── Cart Drawer Polish ───────────────────────────────────────── */
.cart-drawer__overlay {
  background: rgba(0,0,0,0.5) !important;
}

cart-drawer .drawer {
  border-left: none !important;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1) !important;
}

/* ── Loading Shimmer (for perceived speed) ────────────────────── */
.card__media .placeholder-svg {
  animation: mmShimmer 1.5s ease-in-out infinite;
}

@keyframes mmShimmer {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}
