/* Cart Popup Styles */
#cart-popup-template {
  display: none;
}

#cart-popup-active {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: calc(100% - 60px);
  height: auto;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-out;
  visibility: visible;
}
#cart-popup-active .top-popup-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 6px;
}
#cart-popup-active .icon-content {
  display: flex;
}
#cart-popup-active .icon-content svg {
  width: 20px;
  height: 20px;
  fill: #4CAF50;
}
#cart-popup-active .popup-text-content {
  font-size: 14px;
  color: #333;
}

.close-popup-icon {
  position: absolute;
  top: -3px;
  right: -3px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.close-popup-icon:hover {
  opacity: 1;
}

.product-cart-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.entry-product-info-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
}

.left-content {
  flex: 0 0 120px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.left-content:before {
  content: "";
  background: linear-gradient(180deg, rgba(253, 185, 143, 0.25) 0%, rgba(253, 185, 143, 0.2) 63.61%, rgba(253, 185, 143, 0) 100%);
  position: absolute;
  top: 30%;
  height: 70%;
  width: 80%;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top-right-radius: 120px;
  border-top-left-radius: 120px;
}
.left-content img {
  width: 90px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.right-content {
  flex: 1;
  min-width: 0;
}

.product-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-price {
  font-size: 14px;
  color: #666;
}
.product-price .woocommerce-Price-currencySymbol {
  margin-right: 3px;
}

.cart-total {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.cart-total .total-amount .woocommerce-Price-currencySymbol {
  margin-right: 3px;
}

.popup-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.popup-buttons a {
  border-radius: 40px;
  flex: 1;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: normal;
  transition: all 0.2s ease;
  opacity: 0;
  text-transform: uppercase;
  font-size: 13px;
}

.continue-shipping-btn {
  cursor: pointer;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 40px;
  border: 1px solid #000;
  color: #000000;
  flex: 0 0 100%;
  width: 100%;
  text-transform: uppercase;
  font-size: 13px;
}

.view-cart-btn {
  background: #666;
}
.view-cart-btn:hover {
  background: #555;
}

.checkout-btn {
  background: #000;
}
.checkout-btn:hover {
  background: #222;
}

@media (max-width: 480px) {
  #cart-popup-active {
    right: 15px;
    left: 15px;
    width: auto;
    max-width: none;
  }
  .entry-product-info-wrap {
    gap: 15px;
  }
  .left-content {
    flex: 0 0 60px;
  }
  .left-content img {
    width: 60px;
    height: 60px;
  }
  .popup-buttons {
    flex-direction: column;
  }
  .popup-buttons a {
    width: 100%;
  }
}

/*# sourceMappingURL=cart-popup.css.map */
