/** Shopify CDN: Minification failed

Line 251:0 Expected "*/" to terminate multi-line comment

**/
 :root {
    --brand-accent: #6F5949;
    --brand-bg2:    #C3BEAC;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* =============================================
     HERO — LOAD ANIMATIONS (first section only)
     ============================================= */

  #MainContent > .shopify-section:first-child .image-with-text__media {
    animation: heroFadeIn 1000ms var(--ease-out) 100ms both;
  }

  #MainContent > .shopify-section:first-child .image-with-text__heading {
    animation: heroFadeUp 900ms var(--ease-out) 250ms both;
    letter-spacing: 0.06em;
  }

  #MainContent > .shopify-section:first-child .image-with-text__text {
    animation: heroFadeUp 900ms var(--ease-out) 420ms both;
  }

  #MainContent > .shopify-section:first-child .button {
    animation: heroFadeUp 900ms var(--ease-out) 570ms both;
  }

  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* =============================================
     SCROLL-TRIGGERED — BASE STATES
     ============================================= */

  .anim-rise {
    opacity: 0;
    transform: translateY(36px);
    transition:
      opacity  650ms var(--ease-out),
      transform 650ms var(--ease-out);
  }

  .anim-fade {
    opacity: 0;
    transition: opacity 700ms var(--ease-out);
  }

  .anim-scale {
    opacity: 0;
    transform: scale(0.97) translateY(22px);
    transition:
      opacity  650ms var(--ease-out),
      transform 650ms var(--ease-out);
  }

  .anim-rise.in-view,
  .anim-fade.in-view,
  .anim-scale.in-view {
    opacity: 1;
    transform: none;
  }

  /* Stagger siblings */
  .anim-stagger > *:nth-child(1) { transition-delay: 0ms; }
  .anim-stagger > *:nth-child(2) { transition-delay: 110ms; }
  .anim-stagger > *:nth-child(3) { transition-delay: 220ms; }
  .anim-stagger > *:nth-child(4) { transition-delay: 330ms; }
  .anim-stagger > *:nth-child(5) { transition-delay: 440ms; }

  /* =============================================
     PRODUCT CARDS — HOVER
     ============================================= */

 /* .card-wrapper {
    transition: transform 300ms var(--ease-out);
  }
  .card-wrapper:hover {
    transform: translateY(-5px);
  }
  .card__media {
    overflow: hidden;
  }
  .card__media img {
    transition: transform 600ms var(--ease-out);
  }
  .card-wrapper:hover .card__media img {
    transform: scale(1.05);
  }

  /* =============================================
     BUTTONS — LIFT ON HOVER
     ============================================= */

  .button {
    transition:
      background-color 200ms var(--ease-out),
      color            200ms var(--ease-out),
      transform        150ms var(--ease-out),
      box-shadow       200ms var(--ease-out);
  }
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(111, 89, 73, 0.22);
  }
  .button:active {
    transform: translateY(0);
    box-shadow: none;
  }

  /* =============================================
     NAV — UNDERLINE ON HOVER
     ============================================= */

  .header__menu-item a {
    position: relative;
  }
  .header__menu-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand-accent);
    transition: width 280ms var(--ease-out);
  }
  .header__menu-item a:hover::after {
    width: 100%;
  }

  /* =============================================
     ACCESSIBILITY
     ============================================= */

  @media (prefers-reduced-motion: reduce) {
    #MainContent > .shopify-section:first-child .image-with-text__media,
    #MainContent > .shopify-section:first-child .image-with-text__heading,
    #MainContent > .shopify-section:first-child .image-with-text__text,
    #MainContent > .shopify-section:first-child .button {
      animation: none !important;
    }
    .anim-rise,
    .anim-fade,
    .anim-scale {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    .button:hover,
    .card-wrapper:hover,
    .card-wrapper:hover .card__media img {
      transform: none;
      box-shadow: none;
    }
  }
   
  /* =============================================
     CART — CHECKOUT PROGRESS INDICATOR
     ============================================= */

  /*.checkout-steps {
    padding: 5rem 2rem 5rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid #C3BEAC;
  }

  .checkout-steps__track {
    display: flex;
    align-items: flex-start;
    max-width: 560px;
    margin: 0 auto;
  }

  .checkout-steps__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    flex-shrink: 0;
  }

  .checkout-steps__dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #C3BEAC;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body-family);
    font-size: 1.2rem;
    color: #C3BEAC;
  }

  .checkout-steps__step.is-active .checkout-steps__dot {
    background: #6F5949;
    border-color: #6F5949;
    color: #FFFFFF;
  }

  .checkout-steps__label {
    font-family: var(--font-body-family);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C3BEAC;
    white-space: nowrap;
  }

  .checkout-steps__step.is-active .checkout-steps__label {
    color: #6F5949;
    font-weight: 500;
  }

  .checkout-steps__line {
    flex: 1;
    height: 1px;
    background: #C3BEAC;
    margin-top: 17px;
    min-width: 24px;
  }

  @media screen and (max-width: 480px) {
    .checkout-steps__label {
      font-size: 0.9rem;
      letter-spacing: 0.06em;
    }
    .checkout-steps__dot {
      width: 28px;
      height: 28px;
      font-size: 1rem;
    }
    .checkout-steps__line {
      margin-top: 13px;
    }
  }
  
