.shopping-cart {
  position: relative;
}

.shopping-cart-list {
  /* padding:10px; 
	border:1px solid #cccccc; 
	border-radius: 10px; */
}

.store-wise-list {
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 0 20px rgba(86, 86, 86, 5%);
}

.store-wise-list:hover {
  box-shadow: 0 0 30px rgba(86, 86, 86, 25%);
}

.cart-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 10px 10px 10px;
  /* margin-bottom: 10px; */
}

/* .cart-item {
	border: 1px solid #ddd;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
  } */

.container-store-title {
  display: flex;
  gap: 10px;
  /* Adds space between items */
}

.store-thumb {
  text-transform: capitalize;
  width: 30px;
  /* Circle width */
  height: 30px;
  /* Circle height */
  background-color: var(--blue-color);
  /* Background color */
  color: white;
  /* Text color */
  font-size: 13px;
  /* Font size */
  font-weight: bold;
  /* Bold text */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* Makes the div a circle */
  text-transform: uppercase;
  /* Ensures text is uppercase */
  font-family: Arial, sans-serif;
  /* Font style */
}

.store-title {
  padding: 4px 0;
}

.product-photo {
  width: 100px;
  height: 100px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.item-price {
  text-align: right;
}

.item-price p {
  margin: 0 0 1px;
}

.item-price p strong {
  padding-left: 3px;
}

.item-shipping p {
  margin: 0 0 1px;
}

.quantity-input {
  display: inline;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 5px;
}

.remove-link {
  color: red;
  font-size: 0.9rem;
}

.shipping-info {
  color: green;
  font-size: 1.5rem;
  text-align: right;
  margin: 0 0 1px;
}

.more-options {
  color: red;
  font-size: 1.3rem;
  text-align: right;
  margin: 0 0 1px;
}

.sub-total-div {
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(86, 86, 86, 5%);
}

.sub-total-div:hover {
  box-shadow: 0 0 30px rgba(86, 86, 86, 25%);
}

@media (max-width: 500px) {
  .truncate {
    white-space: nowrap;
    /* Prevent wrapping */
    overflow: hidden;
    /* Hide overflow text */
    text-overflow: ellipsis;
    /* Add ellipsis (...) at the end */
    max-width: 60ch;
    /* Limit to 50 characters */
    display: block;
    /* Ensure block-level display for width control */
  }
}