/** Shopify CDN: Minification failed

Line 217:3 Expected "}" to go with "{"

**/


/* CSS from snippet stylesheet tags */
cart-drawer.drawer {
    visibility: hidden;
    .drawer__inner{
      @media screen and (max-width: 749px) {
        max-width: 100vw;
        .product-option{
          display: none;
        }
      }
    .drawer__header{
      flex-direction: row-reverse;
      padding-block-end: 0;
      .drawer__close{
        position: static;
        width: 22px;
        height: 22px;
        min-width: 0;
        min-height: 0;
        
      }
    }
    .drawer__footer {
      border-top: 0rem solid rgba(var(--color-foreground), 0.2);
      padding: 1.5rem;
      background: #FFF1EC;
      margin-inline: -1.5rem;
      font-size: 16px;
      @media screen and (max-height: 767px) {
      padding-block: 0.8rem;
      line-height: 100%;
    }
      @media screen and (max-width: 749px) {
        padding-block: 0.8rem;
        line-height: 20px;
        font-size: 14px;
      }
      .cart-drawer__footer-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
        @media screen and (max-height: 767px) {
          font-size: 14px;
          line-height: 120%;
        }
        @media screen and (max-width: 749px) {
          font-size: 14px;
        }
      }
      .cart-drawer__footer-block {
        display: grid;
        gap: 10px;
        @media screen and (min-width: 750px) {
          gap: 36px;
          grid-template-columns:1fr auto ;
        }
        @media screen and (max-height: 767px) {
          align-items: center;
        }
        .cart-drawer__footer-action.totals{
          .totals__total-value {
            font-size: 22px;
            @media screen and (max-height: 767px) {
              font-size: 16px;
              line-height: 120%;
            }
          }
          h2.totals__total{
            font-family: 'Manrope';
            font-style: normal;
            font-weight: 700;
            font-size: 22px;
            line-height: 28px;
            color: #100100;
            @media screen and (max-height: 767px) {
              font-size: 16px;
              line-height: 120%;
            }
          }
        }
        .cart-drawer__footer-action{
          display: flex;
          align-items: center;
          justify-content: space-between;
          .cart-drawer__footer-action-item-discount{
            color: #FF6F3C;
          }
        
        }
        .cart__ctas{
  
        }
        .button{
            .svg-wrapper{
              margin-inline-start: 8px;
            }
            &:hover{
              svg{
                filter: inherit;
              }
            }        
          }
        
      }
    }
  }
  
  /* Cart Progress Bar Styles */
  .cart-drawer__progress {
    padding: 1.5rem 1.6rem;
    background-color: rgba(var(--color-background), 1);
    .cart-progress__message {
      margin-bottom: 1rem;
      text-align: left;
    }
    
    .cart-progress__text {
      font-size: 16px;
      font-weight: 500;
      color: rgba(var(--color-foreground), 0.8);
      @media screen and (max-width: 749px) {
        font-size: 12px;
      }
      .text-primary {
        color: #FF6B3C;
      }
    }
  
    .cart-progress__bar {
      position: relative;
      height: 8px;
      background-color: rgba(var(--color-foreground), 0.1);
      border-radius: 4px;
    }
    .cart-progress__fill {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: linear-gradient(90deg, #FF6B3C 0%, #FF8E53 100%);
      width: var(--progress, 0%);
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 4px;
    }
  
    .cart-progress__milestones {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 0 0.25rem;
    }
  
    .cart-progress__milestone {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(-50%, -50%);
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(var(--color-background), 1);
      border: 2px solid rgba(var(--color-foreground), 0.2);
      border-radius: 50%;
      transition: all 0.3s ease;
      z-index: 1;
    }
    
    .cart-progress__milestone[data-threshold] {
      left: var(--milestone-position, 0%);
    }
  
    .cart-progress__milestone--achieved {
      border-color: #FF6B3C;
      background-color: #FF6B3C;
      transform: translate(-50%, -50%) scale(1.1);
    }
  
    .cart-progress__milestone-icon {
      font-size: 0.875rem;
      line-height: 1;
      max-width: 18px;
      max-height: 18px;
      width: auto;
      height: auto;
      svg{
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        display: block;        
      }
    }
  
    .cart-progress__milestone--achieved .cart-progress__milestone-icon {
      filter: brightness(0) invert(1);
    }
  }


  @media screen and (max-width: 749px) {
    .cart-drawer__progress {
      padding: 0rem 1.5rem 1rem 0rem;
    }
  }