/** Shopify CDN: Minification failed

Line 305:18 Expected identifier but found whitespace
Line 305:19 Unexpected bad string token
Line 305:21 Unterminated string token
Line 371:0 Expected "}" to go with "{"

**/

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

    :root {
      --stone:   #E8E0D5;
      --linen:   #F5F0E8;
      --sage:    #8FA888;
      --clay:    #C4A882;
      --fog:     #B8BDB5;
      --moss:    #3D4D3A;
      --deep:    #2A342A;
      --warm-mid:#A8957A;
      --off:     #6B6B62;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--linen);
      color: var(--deep);
      font-size: 15px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 48px;
      background: rgba(245,240,232,0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(196,168,130,0.18);
      transition: padding .3s;
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--moss);
      text-decoration: none;
    }
    .nav-logo span { font-style: italic; color: var(--clay); }

    .nav-links {
      display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--off);
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--moss); }

    .nav-actions { display: flex; gap: 20px; align-items: center; }
    .nav-icon {
      background: none; border: none; cursor: pointer;
      color: var(--off); transition: color .2s;
    }
    .nav-icon:hover { color: var(--moss); }
    .nav-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

    .cart-badge {
      position: relative;
    }
    .cart-badge::after {
      content: '3';
      position: absolute; top: -6px; right: -8px;
      background: var(--clay); color: white;
      font-size: 0.6rem; width: 16px; height: 16px;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-family: 'DM Sans', sans-serif;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 80px;
      overflow: hidden;
    }

    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 80px 64px 80px 80px;
      position: relative;
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: 28px;
    }

    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--moss);
      margin-bottom: 32px;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--clay);
    }

    .hero-sub {
      font-size: 0.95rem;
      color: var(--off);
      max-width: 380px;
      line-height: 1.75;
      margin-bottom: 48px;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--moss);
      color: var(--linen);
      border: none;
      padding: 16px 36px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: background .25s, transform .2s;
      width: fit-content;
    }
    .btn-primary:hover { background: var(--deep); transform: translateY(-1px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent;
      color: var(--moss);
      border: 1px solid var(--sage);
      padding: 14px 32px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: background .25s, color .25s;
    }
    .btn-ghost:hover { background: var(--sage); color: white; }

    .hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

    .hero-right {
      position: relative;
      overflow: hidden;
      background: var(--stone);
    }
    .hero-image-wrap {
      width: 100%; height: 100%;
      position: relative; overflow: hidden;
    }
    .hero-image-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      filter: saturate(0.75);
      transform: scale(1.04);
      animation: heroZoom 14s ease-in-out infinite alternate;
    }
    @keyframes heroZoom {
      from { transform: scale(1.04); }
      to   { transform: scale(1.12); }
    }

    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(61,77,58,0.08) 0%, rgba(196,168,130,0.12) 100%);
    }

    /* Botanical SVG accent */
    .botanical-accent {
      position: absolute;
      bottom: -20px; left: -20px;
      width: 220px; opacity: 0.18;
      animation: sway 8s ease-in-out infinite alternate;
      transform-origin: bottom center;
    }
    @keyframes sway {
      from { transform: rotate(-2deg); }
      to   { transform: rotate(2.5deg); }
    }

    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--fog);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, transparent, var(--fog));
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
    }

    /* ── MARQUEE STRIP ── */
    .marquee-strip {
      background: var(--moss);
      color: var(--stone);
      padding: 14px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .marquee-inner {
      display: inline-flex; gap: 0;
      animation: marquee 28s linear infinite;
    }
    .marquee-inner span {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 0 40px;
    }
    .marquee-inner .dot { color: var(--clay); }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SECTIONS ── */
    section { padding: 100px 80px; }

    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3vw, 3.2rem);
      font-weight: 300;
      color: var(--moss);
      line-height: 1.15;
    }
    .section-title em { font-style: italic; color: var(--clay); }

    /* ── CATEGORIES ── */
    .categories { background: var(--stone); }

    .categories-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 56px;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .cat-card {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      cursor: pointer;
      background: var(--fog);
    }

    .cat-card img {
      width: 100%; height: 100%; object-fit: cover;
      filter: saturate(0.7);
      transition: transform .6s ease, filter .4s;
    }
    .cat-card:hover img { transform: scale(1.06); filter: saturate(0.9); }

    .cat-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(42,52,42,0.72) 0%, transparent 55%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 28px 24px;
    }

    .cat-name {
      font-family: 'C

/* ── SHOPIFY SPECIFIC ADDITIONS ── */
.page-header-simple { padding: 140px 80px 60px; background: var(--stone); }
.page-body { padding: 60px 80px; max-width: 860px; }
.page-body p { font-size: 0.92rem; color: var(--off); line-height: 1.85; margin-bottom: 16px; }
.page-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--moss); margin: 32px 0 16px; font-weight: 300; }
.no-products { color: var(--off); font-size: 0.9rem; padding: 40px; }
.btn-checkout { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--moss); color: var(--linen); border: none; padding: 18px 32px; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background .2s; text-decoration: none; margin-bottom: 12px; }
.btn-checkout:hover { background: var(--deep); }
.btn-checkout svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 48px 80px 80px; align-items: start; }
.cart-header { display: grid; grid-template-columns: 3fr 1fr 1fr 1fr 40px; gap: 16px; padding: 0 0 14px; border-bottom: 1px solid rgba(184,189,181,0.4); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fog); }
.cart-item { display: grid; grid-template-columns: 3fr 1fr 1fr 1fr 40px; gap: 16px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(184,189,181,0.25); }
.cart-item-info { display: flex; gap: 16px; align-items: center; }
.cart-item-img { width: 80px; height: 80px; object-fit: cover; filter: saturate(0.7); }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--deep); }
.cart-item-variant, .cart-item-origin { font-size: 0.72rem; color: var(--fog); }
.cart-item-price, .cart-item-total { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--moss); }
.cart-remove { background: none; border: none; cursor: pointer; color: var(--fog); }
.cart-remove svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.order-summary { background: white; border: 1px solid rgba(184,189,181,0.3); position: sticky; top: 80px; }
.summary-header { padding: 24px 28px; border-bottom: 1px solid rgba(184,189,181,0.25); }
.summary-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--moss); }
.summary-body { padding: 24px 28px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--off); margin-bottom: 14px; }
.summary-divider { border: none; border-top: 1px solid rgba(184,189,181,0.3); margin: 18px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.summary-total-label { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--moss); }
.summary-total-val { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--moss); font-weight: 300; }
.summary-tax { font-size: 0.72rem; color: var(--fog); margin-bottom: 24px; }
.payment-icons { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.payment-icon { background: var(--stone); border: 1px solid rgba(184,189,181,0.4); padding: 4px 10px; font-size: 0.65rem; letter-spacing: 0.08em; color: var(--off); }
.summary-trust { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid rgba(184,189,181,0.25); }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--off); }
.trust-item svg { width: 15px; height: 15px; stroke: var(--sage); fill: none; stroke-width: 1.5; }
.cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(184,189,181,0.3); }
.btn-continue { display: inline-flex; align-items: center; gap: 8px; background: none; border: 1px solid var(--fog); padding: 12px 24px; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--off); cursor: pointer; text-decoration: none; transition: all .2s; }
.btn-continue:hover { border-color: var(--moss); color: var(--moss); }
.btn-continue svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-clear { background: none; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: var(--fog); cursor: pointer; text-decoration: underline; }
.cart-empty { text-align: center; padding: 80px 40px; }
.cart-empty svg { width: 56px; height: 56px; stroke: var(--fog); fill: none; stroke-width: 1.2; margin-bottom: 20px; }
.cart-empty h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--moss); margin-bottom: 10px; }
.cart-empty p { font-size: 0.88rem; color: var(--off); margin-bottom: 28px; }
.btn-shop { display: inline-flex; align-items: center; gap: 8px; background: var(--moss); color: var(--linen); border: none; padding: 15px 32px; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; text-decoration: none; }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; }
.sidebar { background: var(--stone); padding: 40px 32px; border-right: 1px solid rgba(184,189,181,0.35); }
.sidebar-section { margin-bottom: 36px; }
.sidebar-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(184,189,181,0.35); }
.filter-list { list-style: none; }
.filter-list a { display: block; padding: 9px 12px; font-size: 0.83rem; color: var(--off); text-decoration: none; transition: all .15s; }
.filter-list a:hover { background: rgba(143,168,136,0.1); color: var(--moss); }
.sort-select { width: 100%; border: 1px solid var(--fog); background: white; padding: 9px 12px; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: var(--off); outline: none; cursor: pointer; }
.shop-main { padding: 40px 48px; background: var(--linen); }
@media(max-width:1024px){
  .cart-layout { grid-template-columns: 1fr; padding: 40px; }
  .cart-header { display: none; }
  .cart-item { grid-template-columns: 1fr auto; }
  .shop-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .page-header-simple, .page-body { padding-left: 40px; padding-right: 40px; }
}
@media(max-width:640px){
  .cart-layout, .page-header-simple, .page-body { padding-left: 24px; padding-right: 24px; }
}
