

.main-cart-container {
    padding: 4px;
    
}


@media only screen and (min-width: 992px) {
.cart-product-image-wrapper {
    max-width: 180px;
    max-height: 200px;
}
.main-cart-container {
    padding: 0 72px;
    
}
.cart-product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
   
}
}

.cart-product-image-wrapper {
    border: 1px solid rgba(128, 128, 128, 0.5);
    border-radius: 1rem;
    padding: 10px;
    max-width: 140px;
    max-height: 180px;
}

.cart-product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    aspect-ratio: auto;
}

.product-remove-button {
    top: 5px;
    right: 5px
}

/* Basic styling for the select element */
.styled-select select {
    width: 80px; /* Set the width of the select */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none; /* For older versions of Chrome/Safari */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 12l-5-5 1.5-1.5L10 9.7l3.5-3.5L17 7z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
  }

  .coupons-container {
    border: 1px solid rgba(128, 128, 128, 0.5);
    border-radius: 1rem;
  }

  .cart-total-container {
    border: 1px solid rgba(128, 128, 128, 0.5);
    border-radius: 1rem;
  }

  .original-price {
    text-decoration: line-through;
    color: gray;
  }

  .address-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 30px;
  }

  @media (max-width: 768px) {
    .address-buttons {
        grid-template-columns: 1fr;
    }
  }
  .custom-modal {
    max-width: 800px;
  }

  .form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  /* Label styling */
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  /* Input and select field styling */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    width: calc(100% - 12px);
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
  }

  /* Submit button styling */
  input[type="submit"] {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }

  input[type="submit"]:hover {
    background-color: #45a049;
  }

  .badge {
    top: 12px;
    right: 12px;
  }