.cart-drawer__header {
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.05);
  padding: 8px 25px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;

  .cart-drawer__title {
    color: var(--Text-body, #3c3c3d);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 120% */
    display: flex;
    align-items: center;
    gap: 16px;

    @media screen and (max-width: 768px) {
    }
  }

  .drawer__close-btn {
    margin: -10px;
    padding: 10px;
    color: rgb(0 0 0);
    border-radius: 100px;
    background: var(--Background-icon-bg, #f6f5f4);
  }
}

.free-shipping-bar__message {
  color: var(--Text-body-text-dark, #3c3c3d);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */

  @media screen and (max-width: 768px) {
    font-weight: 400;
  }
}

.free-shipping-bar__bar {
  height: 8px;
}

.cart-item__image {
  width: 100px;
  padding-inline-end: 0;
}

.cart-item__title a {
  overflow: hidden;
  color: var(--Text-heading, #000);
  text-overflow: ellipsis;
  font-family: Poppins;
  font-size: 1ėpx;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  align-self: stretch;
  max-width: 90%;

  @media screen and (max-width: 768px) {
    overflow: hidden;
    color: var(--Text-heading, #000);
    text-overflow: ellipsis;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    max-width: 55%;
  }
}
// .cart-item__description {
//   flex: none;
// }
.cart-item__bottom {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  width: 100%;

  @media screen and (max-width: 768px) {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .cart-item__price {
    text-align: left;
    flex-basis: 100%;
  }
}

.cart-item__selling-price {
  color: var(--Text-price-text, #4a6656);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}

.cart-item .quantity {
  border-radius: 100px;
  border: 1px solid var(--Background-borders-default, #edebe9);
  background: #fff;
}

.cart-item__quantity {
  width: initial;
  display: flex;
  gap: 8px;
}
.cart-item__remove {
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 16px;
  border-radius: 100px;
  border: 1px solid var(--Background-borders-default, #edebe9);
  background: #fff;
  &:hover {
    border: 1px solid var(--Background-borders-default, #96515d);
  }
}

.cart-item {
  border-bottom: 1px solid var(--Background-borders-default, #edebe9);
}

.cart-drawer {
  carousel-slider {
    background: #f7f9f6;
  }

  .opposing-items__left {
    color: var(--Text-body-text-dark, #3c3c3d);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
  }

  .slider-nav button {
    border-radius: 100px;
    border: 1px solid var(--Background-borders-default, #edebe9);
    background: #fff;
    padding: 4px;
  }

  #CartDrawerNoteToggle {
    display: none;
  }

  @media screen and (max-width: 768px) {
    .product-block .product-block__title {
      overflow: hidden;
      color: var(--Text-heading, #000);
      //   text-overflow: ellipsis;
      //   white-space: nowrap;
      font-family: Poppins;
      font-size: 12px;
      font-style: normal;
      font-weight: 500;
      line-height: 16px; /* 133.333% */
      text-align: left;
    }
    .product-block__detail {
      padding: 12px;
    }

    .product-block .product-block__price-container {
      flex-direction: column;
      justify-content: flex-start;
      text-align: left;
      align-items: flex-start;
      gap: 8px;
    }
  }
}

.cart-drawer__empty-content {
  display: none;
}

.empty-cart {
  overflow-y: scroll;

  .cart-drawer__empty-content {
    display: block;
  }

  .cart-drawer__content {
    display: block;
    flex: none;
  }

  .cart-drawer__footer {
    padding: 0;
  }

  .cart-item-list {
    margin: 0;
  }

  .reviews-overlay-text {
    .button-row {
      width: 100%;
    }
    .button-row .text-overlay__button-row {
      display: flex;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 1fr);
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      margin: 8px;

      .btn {
        flex: 39%;
        padding: 16px 40px;
      }
    }
  }

  carousel-slider {
    padding-bottom: 50px;
  }

  .majortitle {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    padding-top: 16px;
  }
}

.cart-item-upsells {
  .price-default {
    font-size: calc(3 * var(--font-scale) + var(--base-text-size));
  }
  .product-block__price--sale {
    text-decoration: line-through;
    color: rgb(var(--body-text-color));
    font-weight: 700;
    line-height: 24px;
    font-size: 18px;
  }

  .product-block__price--compare {
    margin-left: 8px;
    color: var(--Colors-Green-green-hard, #4a6656);

    font-weight: 700;
    line-height: 24px;
    font-size: 18px;
  }
}
