/* .container {
    margin-top: 24px;
    display: flex;
    justify-content: center;
} */

.main-cart-page .grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: 100%;
  gap: 24px;
}

.main-cart-page .cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background-color: white;
  height: 100%;
}

.main-cart-page .cart-header {
  display: flex;
  justify-content: space-between;
}

.main-cart-page .saved-for-later {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-cart-page .heart-icon {
  width: 24px;
  height: 24px;
  fill: #099389;
}

.main-cart-page .cart-item {
  display: flex;
  gap: 30px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.main-cart-page .item-image {
  width: 30%;
}

.main-cart-page .item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 70%;
}

.main-cart-page .item-header {
  display: flex;
  justify-content: space-between;
}

.main-cart-page .item-title {
  font-size: 14px;
  color: #374151;
  width: 80%;
}

.main-cart-page .trash-icon {
  width: 15px;
  height: 15px;
  fill: #6b7280;
}

.main-cart-page .item-subtitle {
  font-size: 12px;
  color: #6b7280;
}

.main-cart-page .item-info {
  font-size: 12px;
  color: #6b7280;
}

.main-cart-page .item-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-cart-page .line-through {
  text-decoration: line-through;
  font-size: 12px;
  color: #9ca3af;
}

.main-cart-page .discount {
  font-size: 12px;
  color: #099389;
}

.main-cart-page .quantity-selector {
  display: flex;
  align-items: center;
}

.main-cart-page .quantity-selector select {
  padding-left: 32px;
  padding-right: 8px;
  height: 24px;
  font-size: 12px;
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none" width="12" height="12" stroke="#374151" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 8 10 12 14 8"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.main-cart-page .price-summary {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.main-cart-page .discount-applied {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.main-cart-page .discount-applied svg {
  width: 24px;
  height: 24px;
  fill: #099389;
}

.main-cart-page .discount-applied span {
  font-size: 14px;
  color: #374151;
}

.main-cart-page .price-details {
  font-size: 14px;
  color: #374151;
  margin-bottom: 16px;
}
.main-cart-page .price-details span {
  font-size: 20px;
  font-weight: 700;
}

.main-cart-page .price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-cart-page .price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #374151;
}

.main-cart-page .total-price {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 16px;
  color: #111827;
  margin-top: 16px;
}

.main-cart-page .savings {
  font-size: 14px;
  color: #099389;
  margin-top: 8px;
}

.main-cart-page .checkout-button {
  width: 100%;
  padding: 12px;
  background-color: #099389;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.main-cart-page .checkout-button:hover {
  background-color: #d25c1a;
}

.main-cart-page .checkout-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(243, 111, 34, 0.3);
}

.main-cart-page .checkout-button:disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}
.main-cart-page .discount-banner span {
  font-size: 12px;
}
.main-cart-page .discount-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 18px;
  background: linear-gradient(
    90.19deg,
    #d9f0e5 3.48%,
    #deecfc 103.06%
  ) !important;
  padding: 5px 12px;
  border-radius: 5px;
}
.main-cart-page .card-box {
  border: 1px solid #e5e7eb;
  margin-top: 20px;
  padding: 20px 25px;
  background-color: white;
}
.main-cart-page.main-cart-box {
  margin-top: -160px;
  position: relative;
  z-index: 1;
}
.main-cart-page .cart-banner {
  position: relative;
}
@media screen and (max-width: 991px) {
  .main-cart-page .grid {
    grid-template-rows: 100%;
  }
}

@media screen and (max-width: 778px) {
  .main-cart-page .grid {
    display: block;
  }
  .main-cart-page .cart-summary {
    margin-top: 20px;
  }
}

@media screen and (max-width: 575px) {
  .main-cart-page .main-cart-box {
    padding: 0px 15px;
  }
}

@media screen and (max-width: 425px) {
  .main-cart-page .item-image {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: flex-start;
  }
  .main-cart-page .item-image img {
    width: 40%;
  }
  .main-cart-page .cart-item {
    display: block;
  }
  .main-cart-page .item-details {
    width: 100%;
  }
}

@media screen and (max-width: 383px) {
  .main-cart-page .saved-for-later span {
        font-size: 12px;
  }
  .main-cart-page .saved-for-later {
    padding-top: 5px;
  }
  .main-cart-page .cart-header{
    display: block;
    justify-content: flex-end
  }
  .main-cart-page .your-cart span{
    font-size: 22px;
  }
}
