#order-note-toggle {
  opacity: 0;
  height: 0;
  width: 0;
}
.icon-btn {
  position: relative;
}
.mini-cart .product-bundle-price {
  font-weight: 500;
}
.mini-cart .drawer__header {
  display: block;
  max-height: unset;
  height: auto;
  padding: 20px 20px 0;
  border-bottom: none;
}
.mini-cart .mini-cart__drawer-footer {
  padding: 20px;
}
.mini-cart .drawer__header-top {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: var(--font-h3);
  line-height: 36px;
}
.mini-cart__actions {
  margin-bottom: 20px;
}
.shipping-bar {
  margin: 0;
  padding: 0;
  margin-top: 10px;
}
.mini-cart .drawer__content {
  padding: 0 20px 20px;
}
.mini-cart .line-item__content-wrapper {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #BCBCBC;
}
.mini-cart .line-item__image-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
}
.mini-cart .line-item__content-wrapper {
  flex-direction: column;
}
.mini-cart .line-item-info {
  display: flex
}
.mini-cart .product-item-meta__title {
  margin: 0;
  font-size: var(--font-heading);
  line-height: var(--font-line-heading);
}
.mini-cart .product-item-meta__property-list {
  margin: 0;
  margin-top: 10px;
  font-size: var(--font-text);
  line-height: 14px;
  color: #BCBCBC;
}
.quantity-selector--small {
  --quantity-selector-height: 36px;
}
.mini-cart .line-item__price-list-container {
  text-align: left;
  padding-left: 0;
  margin: 0;
  margin-top: 20px;
}
.mini-cart .line-item__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.mini-cart .line-item__remove-button {
  font-weight: 600;
  font-size: var(--font-text);
  line-height: 28px;
  color: #5C5B5B;
}
.mini-cart  .price-list .price,
.mini-cart  .price-list .price.price--highlight { /* 当前价格*/
  font-weight: 700;
  font-size: var(--font-text);
  line-height: 21px;
  color: #A26A53;
}
.mini-cart  .price-list:not(.price-list--stack)> .price:not(:last-child) { /* 价格间距*/
  margin-right: 10px;
}
.mini-cart  .price-list .price.price--compare { /* 比较价格 */
  font-weight: 400;
  color: #BCBCBC;
}
.mini-cart .line-item:last-child .line-item__content-wrapper {
  padding-bottom: 0;
  border-bottom: 0;
}
.mini-cart .mini-cart__recommendations {
  width: 300px;
}
.mini-cart__recommendations-inner {
  padding: 20px;
  background: #F7F7F7;
}
.mini-cart__recommendations-list {
  text-align: left;
}
.mini-cart__recommendations-heading {
  font-size: var(--font-heading);
  line-height: var(--font-line-heading);
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: capitalize;
}
.mini-cart .select svg {
  margin-left: 0;
}
.mini-cart__recommendations-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mini-cart .price-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-cart .price-total > span {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
}
.mini-cart .price-total > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-cart .footer-price .price {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #A26A53;
}
.mini-cart .footer-price .original-price {
  font-weight: 400;
  font-size: 18px;
  text-decoration: line-through;
  line-height: 27px;
  color: #BCBCBC;
}

@media screen and (max-width: 999px) {
  .mini-cart .mini-cart__recommendations {
    width: 100%;
  }
  .mini-cart .drawer__header {
    padding: 20px 15px 0;
  }
  .mini-cart .product-item-meta__property-list {
    margin: 6px 0 0;
  }
  .mini-cart .price-total>span {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
  }
  .mini-cart .footer-price .price {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
  }
  .mini-cart .footer-price .original-price {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
  .mini-cart__actions {
    flex-direction: row;
  }
  .mini-cart .mini-cart__drawer-footer {
    padding: 20px 15px;
  }
  .mini-cart__recommendations-inner {
    margin-top: 20px;
    padding: 0;
    background: #fff;
  }
  .mini-cart .line-item:last-child .line-item__content-wrapper {
    padding-bottom: 20px;
    border-bottom: 1px solid #BCBCBC;
  }
}