/* .rebuy-cart {
  display: none !important;
  visibility: hidden !important;
} */

cart-drawer {
  product-recommendations {
    display: block !important;
  }
  
  /* cart header */
  .drawer__header {
    padding: 20px 15px;
    justify-content: space-between;
    border-bottom: none;
  }

  .drawer__heading {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
  }

  .drawer__close {
    font-size: 13px;
    text-decoration: underline;
    position: relative;
    right: unset;
    color: rgba(var(--color-button),1);
  }

  .drawer__body-content {
    flex: 1;
  }
  /* product cards */
  .cart-item {
    grid-template-columns: 85px 1fr;
    padding: 0 !important;

    .cart-item__info {
      justify-content: flex-start;
      margin-top: 5px;
      gap: 8px;
    }

    .cart-item__details {
      padding-right: 0;
      font-size: 13px;
    }
    
    .cart-item__details>* {
      max-width: unset;
    }

    .product-options-wrapper {
      margin: 0;
    }

    .cart-item__totals {
      margin-top: 15px;
    }
    .product-options-price {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;

      .price {
        font-size: 13px;
      }
      .cart-item__discounted-prices {
        flex-direction: column-reverse;
        align-items: flex-end;
      }
      .visually-hidden {
        display: none;
      }
    }

    .product-option {
      font-size: 13px;
      color: #646464;
      font-weight: 400;
    }
    
    .cart-item-header-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-item__name {
      font-size: 13px;
      color: #000;
      font-weight: 400;
      line-height: 1;
    }

    cart-remove-button {
      top: unset;
      line-height: 1;
      position: relative;
      .button {
        width: 10px;
        height: auto;
        padding: 0 !important;
      }

      .icon-close-custom {
        height: 10px;
        width: auto;
        stroke-width: 1.5px;
        color: #000;
      }
    }

    .cart-item__total-quantity {
      flex-direction: row;
    }
  }

  .payment-icons__wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    .payment-icon {
      margin: 0;
      line-height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 40px;
      height: auto;
    }
    img {
      /* border: 1px solid black; */
      /* border-radius: 6px; */
      height: 100%;
      width: 100%;
    }
  }
  .payment-icon.payment-icon--greyscale {
    filter: grayscale(100%);
  }

  .cart-item__info .quantity__input {
    border: none;
  }
  .quantity:after,
  .quantity:before {
    border: none;
    box-shadow: none !important;
}
}

.drawer {
  background-color: none;
}
.drawer__wrapper {
  position: relative;
  z-index: 2;
}

.cart-drawer__overlay {
  background-color: rgba(var(--color-foreground), 0.5);
  backdrop-filter: blur(2px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;
  z-index: -1;
}

@media screen and (min-width: 800px) {
  .cart-drawer__overlay {
    z-index: 1;
  }
}

.drawer.active .cart-drawer__overlay,
.drawer[open] .cart-drawer__overlay {
  opacity: 1;
  pointer-events: auto;
}

.drawer__footer {
  gap: 10px;
}
.drawer__inner-recommendations-mobile {
  border-top: #e1e3e5 solid 0.5px;
  flex-shrink: 0;
}
.cart-drawer--recommendations-mobile {
  padding: 0;
  .product-options-price {
    line-height: 1;
    margin-bottom: 4px;
  }
  .cart-item__discounted-prices {
    display: flex;
    flex-direction: column;
  }
  .product-option--price,
  .cart-item__final-price,
  .cart-item__old-price {
    font-size: 11px !important;
    margin-top: 0 !important;
  }
  .accordion {
    margin: 0;
  }
  .accordion__content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-top: #e1e3e5 solid 0.5px;;
  }
  .accordion__content::-webkit-scrollbar {
    display: none;
  }
  .cart-item__name {
    /* white-space: nowrap; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
  }
}

.drawer__header.drawer__header-recommendations {
  padding: 10px 15px;
  /* border-top: #e1e3e5 solid 0.5px; */
  /* border-bottom: #e1e3e5 solid 0.5px; */
  .drawer__heading {
    font-size: 13px;
    text-transform: none;
  }
  .icon-caret {
    position: relative;
    right: unset;
    top: unset;
  }
}

.cart-drawer--recommendations--products {

  .recommendations-product-title-wrapper {
    display: flex;
    flex-direction: column;
  }
  .cart-drawer--recommendations--product button {
    padding: 6px 0;
  }
  .cart-item__name {
    /* white-space: nowrap; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .cart-drawer--recommendations--product-items {
    max-width: 130px;
    gap: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;

    .cart-recommendation-actions {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .product-options-wrapper {
      margin: 0;
      .product-option {
        font-size: 10px;
        margin: 0;
      }
    }
    .product-option--price,
    .cart-item__final-price,
    .cart-item__old-price {
      font-size: 13px;
      line-height: 1;
      margin-top: 7px;
    }
    
    .cart-recommendation-size-selector {
      line-height: 1;
    }
    .cart-recommendation-size-select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 8px center;
      background-size: 10px;
      padding: 0 5px;
      border: none;
      width: 120px;
      font-size: 12px;
      
      &:focus-visible {
        outline: none !important;
        box-shadow: none !important;
      }
    }
  }
  .cart-drawer--recommendations--products-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .accordion__content {
    margin: 0;
  }
  .cart-drawer--recommendations--product {
    grid-template-columns: 85px 1fr;
    gap: 10px;
    border: none;
    padding: 1.5rem 1.5rem 1.5rem 0;
    /* width: 251px; */
    width: fit-content;
    flex-shrink: 0;

    .cart-item__media {
      padding: 0 !important;
      align-items: flex-start;
      height: 100%;
      max-height: 140px;
    }
    .cart-item__image {
      height: 100%;
      object-fit: cover;
    }
  }
  .cart-drawer--recommendations--product:first-child {
    padding-left: 1.5rem;
  }
  .cart-drawer--recommendations--product button {
    font-size: 13px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    .loading-overlay__spinner {
      width: 11px;
      height: 11px;
      line-height: 1;
    }
  }
}

.cart-drawer__footer {
  .totals {
    display: flex;
    flex-direction: column;
    align-items: unset;
    justify-self: unset;
    gap: 5px;
  }
  
  .totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 13px;
  }

  .totals__row--total {
    margin-top: 10px;
  }
  .totals__total,
  .totals__total-value {
    font-size: 16px;
    font-weight: 500;
  }
}

/* Gift Wrapping Styles */
.drawer__inner-gift-wrapping {
  border-bottom: #e1e3e5 solid 0.5px;
  margin: 0 -15px 15px;
  .accordion {
    margin: 0;
    border: none;
  }
  .accordion__content {
    border-top: #e1e3e5 solid 0.5px;
    margin: 0;
  }
}

.drawer__header.drawer__header-gift-wrapping {
  padding: 0 15px 10px;
  
  .drawer__heading {
    text-transform: none;
  }
  .icon-caret {
    position: relative;
    right: unset;
    top: unset;
  }
}

.cart-drawer--gift-wrapping--options {
  padding: 0;
  margin: 0;
}

.gift-wrapping-options {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 15px;
}

.gift-wrapping-option {
  border: 0.5px solid transparent;
  transition: all 0.2s ease;
  background-color: var(--color-background);
  position: relative;
  padding-right: 10px;
  
  &.is-selected {
    border: 0.5px solid #e1e3e5;
    background-color: rgba(var(--color-button), 0.02);
  }
}

.gift-wrapping-option__input {
  position: absolute;
  opacity: 0;
}

.gift-wrapping-option__content {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 10px;
  align-items: center;
}

.gift-wrapping-option__media {
  height: 100px;  
  img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

.gift-wrapping-option__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gift-wrapping-option__title {
  font-size: 13px;
  color: #000;
  line-height: 1.3;
}

.gift-wrapping-option__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  line-height: 1;
  color: rgba(var(--color-foreground),.75);
  font-weight: 400;
  text-transform: initial;
}

.gift-wrapping-option__button {
  margin-top: 10px;
  padding: 6px 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  
  font-size: 13px;
  font-weight: 300;
  text-decoration: none !important;
  color: #000;
  
  cursor: pointer;
  border: 1px solid #000;
  background-color: transparent;
  
  .loading-overlay__spinner {
    width: 11px;
    height: 11px;
    line-height: 1;
  }
}