.elementor-2524 .elementor-element.elementor-element-9299c2b{--display:flex;}/* Start custom CSS for wc-elements, class: .elementor-element-1c249bd *//* General Reset and Base */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  color: #rgb(#,0,0);
}

/* Main Cart Container */
.cart-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
}

/* Cart Table */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th, .cart-table td {
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}

.cart-table th {
  background-color: #f0f0f0;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.cart-table td {
  font-size: 15px;
  color: #111;
}

/* Product Image */
.cart-item-img {
  width: 75px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Product Title */
.cart-item-title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

/* Link Styling */
a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Quantity Box */
.cart-qty input {
  width: 60px;
  padding: 8px 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.3s;
}

.cart-qty input:focus {
  border-color: #007bff;
  outline: none;
}

/* Price + Total Styling */
.cart-price, .cart-total {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

/* Total Summary Section */
.cart-summary {
  margin-top: 30px;
  text-align: right;
  font-size: 17px;
}

.cart-summary strong {
  font-size: 22px;
  color: #000;
}

/* Checkout Button */
.checkout-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  margin-top: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkout-btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
    display: block;
  }

  .cart-table th {
    display: none;
  }

  .cart-table td {
    position: relative;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid #ddd;
  }

  .cart-table td::before {
    position: absolute;
    top: 12px;
    left: 15px;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
    color: #555;
    content: attr(data-label);
  }

  .cart-summary {
    text-align: center;
  }

  .checkout-btn {
    width: 100%;
    margin-top: 30px;
  }
}/* End custom CSS */