/** Shopify CDN: Minification failed

Line 514:0 Unexpected "}"

**/
/* Enhanced Cart Drawer Styles */

/* Empty Cart Header */
.cart-drawer__empty-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  margin-bottom: 1.5rem;
}

.cart-drawer__empty-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-drawer__bag-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer__bag-icon img {
  width: 24px;
  height: 24px;
}

.cart-drawer__empty-title .cart__empty-text {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

/* Recommended Products Section */
.cart-drawer__recommended-products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cart-drawer__recommended-product {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #4545452E;
  border-radius: 15px;
  background: white;
}

.cart-drawer__product-content {
  display: flex;
  gap: 1rem;
  flex: 1;
}

.cart-drawer__product-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.cart-drawer__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-drawer__product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-drawer__product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cart-drawer__product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-drawer__product-rating .rating {
  display: flex;
  align-items: center;
}

.cart-drawer__product-rating .rating-star {
  --rating: 5;
  --rating-max: 5;
  --rating-decimal: 0;
  color: #ffd700;
  font-size: 14px;
}

.cart-drawer__product-rating .rating-count {
  font-size: 12px;
  color: #1D1D1E;
  margin: 0;
  line-height: 1;
}

.cart-drawer__product-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #1D1D1E;
}

.cart-drawer__product-title a {
  color: inherit;
  text-decoration: none;
  width: 70%;
}


.cart-drawer__product-price {
  font-weight: 600;
  font-size: 0.9rem;
  color: #3D3D3D;
}

.cart-drawer__product-price .price {
  color: #3D3D3D;
}

.cart-drawer__product-price .price--sale {
  color: #FF752D;
  font-weight: bold;
}

.cart-drawer__product-price .price--compare {
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.6);
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.cart-drawer__product-options {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.cart-drawer__product-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-drawer__product-option label {
  font-size: 12px;
  color: #1D1D1E;
  font-weight: 400;

}

.cart-drawer__option-select {
  flex: 1;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-radius: 4px;
  font-size: 12px;
  background: transparent;
}

.cart-drawer__product-actions {
  margin-top: 0.5rem;
}

.cart-drawer__add-to-cart {
  background: white;
  color: #FF752D;
  border: 2px solid #FF752D;
  padding: 11px 1rem;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.cart-drawer__add-to-cart:hover {
  background: #FF752D;
  color: white;
}

/* Cart with items specific styles */
.cart-drawer__quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
}

.cart-drawer__quantity-wrapper .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #1D1D1E4D;
  border-radius: 6px;
  overflow: hidden;
  max-width: 25%;
}

.cart-drawer__quantity-wrapper .quantity__button {
  background: white;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 20px;
  height: 28px;
}

.cart-drawer__quantity-wrapper .quantity__button:hover {
  background: #f5f5f5;
}

.cart-drawer__quantity-wrapper .quantity__input {
 border: none;
    text-align: center;
    height: 32px;
    font-size: 12px;
    background: #fff;
    padding: 2px;
    width: 12px;
}

.cart-drawer__quantity-wrapper .cart-remove-button {
  background: none;
  border: none;
  color: #FF752D;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  font-family: 'Work Sans';
}

.cart-drawer__quantity-wrapper .cart-remove-button:hover {
  color: #e55a2b;
}

.cart-drawer__option-value {
  font-size: 13px;
  color: #1D1D1E;
}

/* Reviews Section */
.cart-drawer__reviews-container {
  margin-bottom: 2rem;
}

.cart-drawer__reviews-section {
  border-radius: 8px;
  padding: 1rem;
}

.cart-drawer__reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-drawer__reviews-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.cart-drawer__reviews-navigation {
  display: flex;
  gap: 0.5rem;
}

.cart-drawer__reviews-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.cart-drawer__reviews-nav:hover {
  background: #FF752D;
  color: white;
  border-color: #FF752D;
}

.cart-drawer__reviews-nav--next {
  background: #FF752D;
  color: white;
  border-color: #FF752D;
}

.cart-drawer__reviews-slider {
  overflow: hidden;
}

.cart-drawer__reviews-track {
  display: flex;
  transition: transform 0.3s ease;
}

.cart-drawer__review-card {
  min-width: 100%;
  background: #EEF8FD;
  border-radius: 16px;
  padding: 18px 10px;
}

.cart-drawer__review-content {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-drawer__review-image {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.cart-drawer__review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.cart-drawer__review-text {
  flex: 1;
}

.cart-drawer__review-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #3D3D3D;
}

.cart-drawer__review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__review-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-drawer__review-verified {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer__review-verified img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.cart-drawer__review-name {
  font-size: 12px;
  font-weight: 600;
  color: #1D1D1E;
}

.cart-drawer__review-stars .rating-star {
  --rating: 5;
  --rating-max: 5;
  --rating-decimal: 0;
  color: #FFD200;
  font-size: 12px;
}

/* Trust Badges Section */
.cart-drawer__trust-container {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

.cart-drawer__trust-badges {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
}

.cart-drawer__trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  flex: 1;
}

.cart-drawer__trust-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 50%;
  color: white;
}

.cart-drawer__trust-icon svg {
  width: 20px;
  height: 20px;
}

.cart-drawer__trust-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(var(--color-foreground), 0.8);
  line-height: 1.2;
}

/* Enhanced Cart Footer Styles */
.cart-drawer__footer-enhanced {
  padding: 0 15px;
  background: white;
}

.cart-drawer__order-summary {
  margin-bottom: 1rem;
}

.cart-drawer__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cart-drawer__summary-label {
 font-size: 18px;
    color: black;
}

.cart-drawer__summary-value {
  font-weight: 700;
    font-size: 18px;
    color: #3D3D3D;
}

.cart-drawer__dispatch-info {
  margin-bottom: 1.5rem;
  text-align: center;
}

.cart-drawer__dispatch-text {
  font-size: 15px;
  color: #3D3D3D;
}

.cart-drawer__checkout-section {
  margin-bottom: 1.5rem;
}

.cart-drawer__checkout-button {
    width: 100%;
    background: #FF752D;
    color: #fff;
    border: none;
    padding: 18px 0px;
    border-radius: 44px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s ease;
    font-family: 'Work Sans';
}
}

.cart-drawer__checkout-button:hover {
  background: #e55a2b;
}

.cart-drawer__payment-methods {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  max-width: 90%;
}

.cart-drawer__payment-methods img{
  width: 100%;
}

.cart-drawer__payment-card {
  width: 40px;
  height: 25px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
}

.cart-drawer__payment-card--amex {
  background: #006FCF;
}

.cart-drawer__payment-card--apple {
  background: #000000;
}

.cart-drawer__payment-card--paypal {
  background: #0070BA;
}

.cart-drawer__payment-card--shop {
  background: #5E31D4;
}

.cart-drawer__payment-card--google {
  background: #4285F4;
}

.cart-drawer__payment-card--union {
  background: #E60012;
}

.cart-drawer__payment-card--mastercard {
  background: #EB001B;
}

.cart-drawer__payment-card--visa {
  background: #1A1F71;
}

.cart-drawer__google-badge {
  background: #E3F2FD;
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-drawer__google-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer__google-icon svg {
  width: 24px;
  height: 24px;
}

.cart-drawer__google-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-drawer__google-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1976D2;
}

.cart-drawer__google-subtitle {
  font-size: 0.7rem;
  color: rgba(var(--color-foreground), 0.7);
  line-height: 1.2;
}

/* Rating Star Styles */
.rating-star {
  --rating: 0;
  --rating-max: 5;
  --rating-decimal: 0;
  position: relative;
  display: inline-block;
  font-size: 1em;
  font-family: Times;
  line-height: 1;
}

.rating-star::before {
  content: '★★★★★';
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ffd700 var(--rating-percent), #ccc var(--rating-percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-star::after {
  content: '★★★★★';
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--rating) / var(--rating-max) * 100%);
  color: #ffd700;
  overflow: hidden;
}

/* Green ONLY when free shipping is reached */
.free-ship-banner.free-ship-banner--unlocked  {
  background-color: #34A853 !important;
  color: #fff !important;
}

@media (max-width: 749px) {
  .drawer__contents{
   padding: 20px 15px; 
  }
  .cart-drawer__quantity-wrapper .quantity{
    max-width: 35%;
  }
  .cart-drawer__product-title a{
    width: 80%;
  }
  .cart-drawer__product-title{
    font-size: 13px;
  }
  .cart-drawer__product-price .price{
    font-size: 14px;
  }
  .cart-drawer__option-value{
    font-size: 12px;
  }
  .cart-recos__title{
    font-size: 18px;
  }
  .cart-drawer__checkout-button{
    font-size: 16px;
  }
  .cart-drawer__summary-value{
    font-size: 16px;
  }
  .cart-drawer__dispatch-text{
    font-size: 15px;
    line-height: 1.3;
  }
}
/* default (desktop) visibility */
.only-mobile { display: none !important; }
.only-desktop { display: flex !important; }

/* mobile layout */
@media (max-width: 768px) {
  .reco-card__wrap {
    display: flex;
    flex-direction: column;   /* stack on mobile */
    gap: 12px;
  }
  .reco-card__image { flex: 0 0 auto; }
  .reco-card__img-link img { width: 72px; height: 72px; }

  .only-mobile { display: flex !important; }
  .only-desktop { display: none !important; }

  /* tighten spacing for mobile head inside image */
  .reco-card__image .reco-card__row--top {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* full-width selects + button remain as set previously */
  .reco-card__options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; }
  .reco-card__opt { display: grid; grid-template-columns: auto 1fr; gap: 6px; align-items: center; }
  .reco-card__select { width: 100%; max-width: none !important; }
  .reco-card__add { width: 100%; }
  .reco-card__image{
    display: flex;
    gap: 10px;
  }
  .reco-card__price .price{
    font-size: 14px;
  }
  .reco-card__label{
    font-size: 10px;
    color: #000;
  }
  .cart-drawer__summary-label{
    font-size: 16px;
  }
  .free-ship-banner{
    font-size: 14px;
    padding: 17px 8px;
  }
  .reco-card__title{
    font-size: 13px;
  }
  .cart-drawer__review-text p {
    font-size: 12px;
  }
  .cart-drawer__reviews-title{
    font-size: 18px;
  }
}