/** Shopify CDN: Minification failed

Line 21:10 Expected identifier but found whitespace
Line 21:19 Unexpected "{"
Line 21:29 Expected ":"
Line 23:8 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
Line 23:29 Expected ":"
Line 26:9 Expected identifier but found whitespace
Line 26:19 Unexpected "{"
Line 26:29 Expected ":"

**/
/* ============================================================
   Soulsane Beauty — minimalist theme
   "Beauty Is Soul Deep"
   ============================================================ */

:root {
  /* Palette — warm, quiet, skin-toned neutrals */
  --paper:        {{ settings.color_background | default: '#FAF6F0' }};
  --paper-2:      #F3ECE2;
  --ink:          {{ settings.color_text | default: '#2B2520' }};
  --ink-soft:     #6E655C;
  --line:         #E4DBCF;
  --clay:         {{ settings.color_accent | default: '#B79A86' }};
  --clay-deep:    #9A7E6B;
  --rose:         #D9C3B6;
  --white:        #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --wrap: 1280px;
  --gut: clamp(1.25rem, 4vw, 4rem);
  --radius: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

/* ---- micro type ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay-deep);
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 2.4em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--block { display: flex; width: 100%; }

.link-underline {
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 3px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   Header
   ============================================================ */
.announcement {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-block: 1.4rem;
}
.header-nav { display: flex; gap: 2rem; }
.header-nav a {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); transition: color .3s var(--ease);
}
.header-nav a:hover { color: var(--ink); }
.header-logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}
.header-actions { display: flex; gap: 1.25rem; justify-content: flex-end; align-items: center; }
.header-actions button, .header-actions a {
  background: none; border: 0; cursor: pointer; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; letter-spacing: 0.12em;
}
.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.cart-count {
  font-size: 0.68rem; background: var(--clay); color: var(--white);
  min-width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
}
.menu-toggle { display: none; }

/* ============================================================
   Hero / image banner
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(460px, 78vh, 760px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--paper-2);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,37,32,.12), rgba(43,37,32,.34));
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; padding: var(--gut); color: var(--paper); }
.hero--has-image .hero__inner { color: var(--paper); }
.hero:not(.hero--has-image) .hero__inner { color: var(--ink); }
.hero__eyebrow { margin-bottom: 1.4rem; color: inherit; opacity: .85; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 300;
  line-height: 1.02;
}
.hero h1 em { font-style: italic; }
.hero__text { margin: 1.5rem auto 2.2rem; max-width: 46ch; font-size: 1.02rem; opacity: .92; }

/* fade-in */
[data-reveal] { opacity: 0; transform: translateY(24px); }
.revealed [data-reveal], [data-reveal].revealed {
  opacity: 1; transform: none;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal][data-delay="1"] { transition-delay: .12s; }
[data-reveal][data-delay="2"] { transition-delay: .24s; }
[data-reveal][data-delay="3"] { transition-delay: .36s; }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 300; }
.section-head h2 em { font-style: italic; color: var(--clay-deep); }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }

/* ============================================================
   Product grid + cards
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.6rem);
}
.card { display: block; }
.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--paper-2);
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), opacity .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__media .ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--clay); opacity: .5;
}
.card__badge {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--paper); color: var(--ink);
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .4em .8em; border-radius: var(--radius);
}
.card__title { font-family: var(--font-body); font-size: .92rem; font-weight: 400; letter-spacing: .02em; color: var(--ink); }
.card__price { margin-top: .25rem; font-size: .88rem; color: var(--ink-soft); }
.card__price .sale { color: var(--clay-deep); }
.card__price s { opacity: .55; margin-right: .4em; }

/* ============================================================
   Collection list (shop by category / brand)
   ============================================================ */
.collection-list {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: clamp(.8rem, 2vw, 1.4rem);
}
.collection-tile {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--radius); background: var(--paper-2);
  display: grid; place-items: end center; text-align: center;
}
.collection-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.collection-tile::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(43,37,32,.5)); }
.collection-tile:hover img { transform: scale(1.06); }
.collection-tile span {
  position: relative; z-index: 2; color: var(--paper);
  font-family: var(--font-display); font-size: 1.15rem; padding-bottom: 1.4rem;
}

/* ============================================================
   Rich text / editorial
   ============================================================ */
.rich { text-align: center; max-width: 760px; margin-inline: auto; }
.rich .eyebrow { display:block; margin-bottom: 1.2rem; }
.rich h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 300; line-height: 1.12; }
.rich h2 em { font-style: italic; color: var(--clay-deep); }
.rich p { margin-top: 1.4rem; color: var(--ink-soft); font-size: 1.05rem; }
.rich .btn { margin-top: 2rem; }

/* ============================================================
   Multicolumn (assurances: free shipping etc.)
   ============================================================ */
.feature-row {
  display: grid; grid-template-columns: repeat(var(--cols,3), 1fr);
  gap: clamp(1.5rem, 4vw, 3rem); text-align: center;
}
.feature { padding: 1rem; }
.feature .icon { width: 32px; height: 32px; margin: 0 auto 1rem; stroke: var(--clay-deep); }
.feature h3 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; }
.feature p { margin-top: .5rem; color: var(--ink-soft); font-size: .9rem; }

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter { background: var(--paper-2); text-align: center; }
.newsletter form { display: flex; max-width: 460px; margin: 1.8rem auto 0; gap: .6rem; flex-wrap: wrap; }
.newsletter input[type=email] {
  flex: 1 1 220px; padding: .95em 1.2em; border: 1px solid var(--line);
  background: var(--paper); font-family: var(--font-body); font-size: .92rem; border-radius: var(--radius);
}
.newsletter input:focus { outline: none; border-color: var(--clay); }

/* ============================================================
   Product page
   ============================================================ */
.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.product__gallery { display: grid; gap: 1rem; }
.product__media { aspect-ratio: 3/4; background: var(--paper-2); border-radius: var(--radius); overflow: hidden; }
.product__media img { width:100%; height:100%; object-fit: cover; }
.product__thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.product__thumbs img { width: 76px; height: 96px; object-fit: cover; cursor: pointer; border-radius: var(--radius); border: 1px solid var(--line); }
.product__info { position: sticky; top: 110px; }
.product__info h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: .6rem; }
.product__price { font-size: 1.3rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.product__price .sale { color: var(--clay-deep); }
.product__price s { opacity: .5; margin-right: .5em; }
.product__desc { color: var(--ink-soft); margin: 1.6rem 0; }
.product__desc p { margin: 0 0 1rem; }
.variant-group { margin-bottom: 1.4rem; }
.variant-group label { display:block; font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color: var(--ink-soft); margin-bottom:.6rem; }
.variant-group select {
  width: 100%; padding: .9em 1em; border: 1px solid var(--line); background: var(--paper);
  font-family: var(--font-body); border-radius: var(--radius); font-size: .95rem;
}
.qty { display:flex; align-items:center; border:1px solid var(--line); width: max-content; border-radius: var(--radius); margin-bottom: 1.2rem; }
.qty button { background:none; border:0; padding:.7em 1em; cursor:pointer; font-size:1rem; color: var(--ink); }
.qty input { width: 48px; text-align:center; border:0; background:none; font-family: var(--font-body); font-size: .95rem; }
.product__share { margin-top: 2rem; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color: var(--ink-soft); }
.product__meta { margin-top: 1.4rem; border-top:1px solid var(--line); padding-top:1.4rem; font-size:.85rem; color: var(--ink-soft); }

/* ============================================================
   Collection page banner + toolbar
   ============================================================ */
.coll-banner { text-align:center; padding-block: clamp(2.5rem,6vw,4.5rem); border-bottom:1px solid var(--line); }
.coll-banner h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 300; }
.coll-banner p { margin-top: .8rem; color: var(--ink-soft); max-width: 50ch; margin-inline:auto; }
.coll-toolbar { display:flex; justify-content: space-between; align-items:center; padding-block: 1.5rem; border-bottom:1px solid var(--line); margin-bottom: 2.5rem; }
.coll-toolbar .count { font-size: .8rem; letter-spacing:.12em; text-transform:uppercase; color: var(--ink-soft); }
.coll-toolbar select { border:1px solid var(--line); background: var(--paper); padding:.6em 1em; font-family: var(--font-body); border-radius: var(--radius); font-size:.85rem; }

/* ============================================================
   Cart
   ============================================================ */
.cart-line { display:grid; grid-template-columns: 90px 1fr auto; gap:1.2rem; align-items:center; padding-block:1.4rem; border-bottom:1px solid var(--line); }
.cart-line img { width:90px; height:110px; object-fit:cover; border-radius: var(--radius); background: var(--paper-2); }
.cart-line h3 { font-family: var(--font-body); font-size:1rem; font-weight:400; }
.cart-foot { display:flex; justify-content: space-between; align-items:center; padding-top:2rem; flex-wrap: wrap; gap:1.5rem; }
.cart-total { font-family: var(--font-display); font-size: 1.6rem; }

/* empty states */
.empty { text-align:center; padding-block: clamp(4rem,12vw,8rem); }
.empty h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight:300; margin-bottom:1rem; }
.empty p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ============================================================
   Page / article prose
   ============================================================ */
.prose { max-width: 720px; margin-inline: auto; }
.prose h1 { font-size: clamp(2.2rem,5vw,3.4rem); font-weight:300; text-align:center; margin-bottom: 2.5rem; }
.prose h2 { font-size: 1.8rem; font-weight: 400; margin: 2.5rem 0 1rem; }
.prose p { color: var(--ink-soft); margin: 0 0 1.3rem; }
.prose a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }

.form-field { margin-bottom: 1.2rem; text-align:left; }
.form-field label { display:block; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color: var(--ink-soft); margin-bottom:.5rem; }
.form-field input, .form-field textarea {
  width:100%; padding:.9em 1em; border:1px solid var(--line); background: var(--paper);
  font-family: var(--font-body); border-radius: var(--radius); font-size: .95rem;
}
.form-field input:focus, .form-field textarea:focus { outline:none; border-color: var(--clay); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(3rem,7vw,5rem) 2rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; }
.footer-brand p { color: color-mix(in srgb, var(--paper) 65%, transparent); margin-top: 1rem; max-width: 36ch; }
.footer-col h4 { font-family: var(--font-body); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; margin-bottom:1.2rem; color: var(--rose); }
.footer-col a { display:block; color: color-mix(in srgb, var(--paper) 78%, transparent); margin-bottom:.7rem; font-size:.92rem; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--paper); }
.footer-social { display:flex; gap:1rem; margin-top:1.5rem; }
.footer-social a { color: var(--paper); opacity:.75; transition: opacity .3s; }
.footer-social a:hover { opacity:1; }
.footer-bottom { margin-top: clamp(2.5rem,5vw,4rem); padding-top:1.5rem; border-top:1px solid color-mix(in srgb, var(--paper) 18%, transparent); display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem; font-size:.78rem; color: color-mix(in srgb, var(--paper) 55%, transparent); }

/* ============================================================
   Cart drawer
   ============================================================ */
.drawer-overlay { position: fixed; inset:0; background: rgba(43,37,32,.4); opacity:0; pointer-events:none; transition: opacity .4s var(--ease); z-index: 90; }
.drawer-overlay.open { opacity:1; pointer-events:auto; }
.drawer {
  position: fixed; top:0; right:0; height:100%; width: min(420px, 90vw);
  background: var(--paper); z-index: 100; transform: translateX(100%);
  transition: transform .5s var(--ease); display:flex; flex-direction:column; padding: 2rem;
}
.drawer.open { transform: none; }
.drawer__head { display:flex; justify-content:space-between; align-items:center; margin-bottom:2rem; }
.drawer__head h2 { font-size:1.4rem; font-weight:400; }
.drawer__close { background:none; border:0; cursor:pointer; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 990px) {
  .product { grid-template-columns: 1fr; }
  .product__info { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .product-grid { --cols: 3; }
  .collection-list { --cols: 3; }
}
@media (max-width: 749px) {
  .header-grid { grid-template-columns: auto 1fr auto; }
  .header-nav { display:none; }
  .menu-toggle { display:inline-flex; background:none; border:0; cursor:pointer; }
  .product-grid { --cols: 2; }
  .collection-list { --cols: 2; }
  .feature-row { --cols: 1; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 70px 1fr; }
  .cart-line img { width:70px; height:88px; }
}

/* Mobile menu panel */
.mobile-menu { position: fixed; inset:0; background: var(--paper); z-index: 95; transform: translateX(-100%); transition: transform .5s var(--ease); padding: 2rem; display:flex; flex-direction:column; }
.mobile-menu.open { transform:none; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.6rem; padding-block:.6rem; border-bottom:1px solid var(--line); }
.mobile-menu__close { align-self:flex-end; background:none;border:0;cursor:pointer;margin-bottom:1rem; }
