/* Cart Styles */

.cart-sideCart-wrapper {
  /* Styles for the main wrapper */
  position: fixed; /* Or absolute, depending on your layout */
  top: 100px;
  margin-bottom: 100px;
  right: 0;
  width: 450px; /* Adjust as needed */
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Ensure it's on top of other elements */
  padding: 20px;
  overflow-y: auto;
  display: none; /* Hidden by default, show with JavaScript */
}

.cart-sideCart-wrapper.active {
  display: block; /* Use this class to show/hide the cart */
}

.cart-offcanvas-wrapper {
}

.cart-d-none {
  display: none;
}

.cart-sidemenu-content {
  margin: 10px;
}

.cart-closeButton {
  background-color: #008080;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 20px;
}

.cart-closeButton:hover {
  background-color: #0a7070;
}

.cart-border-theme {
  border: 1px solid #007bff;
}

.cart-bg-theme-hover {
  background-color: #0056b3;
}

.cart-sideMenuCls {
  margin-bottom: 20px;
}

.cart-widget {
  margin-bottom: 20px;
}

.cart-widget_title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333; /* Or your preferred heading color */
}

.cart-widget_shopping_cart_content {
  /* Styles for the content area of the cart */
}

.cart-cart_list {
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.cart-cart_list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.cart-cart_list img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 10px;
  border: 1px solid #ddd;
}

.cart-cart_list a {
  text-decoration: none;
  color: #333;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  text-align: right;
}

.cart-amount {
  /* Style the amount display */
}

.cart-buttons {
  display: flex;
  justify-content: space-between;
}

.cart-vs-btn {
  background-color: #008080;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 20px;
}

.cart-vs-btn:hover {
  background-color: #0a7070;
}

.cart-style4 {
  text-decoration: none;
}
