/* WooCommerce Cart Styles */
.woocommerce-cart {
  padding: 100px 0;
}

.woocommerce-cart .page-title {
  display: none;
}

/* Cart Table */
.woocommerce table.shop_table {
  border: none;
  margin: 0 0 40px;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 5px;
}

.woocommerce table.shop_table th {
  font-weight: 600;
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  background: #f8f9fa;
  border-bottom: 2px solid #e9ecef;
}

.woocommerce table.shop_table td {
  padding: 20px;
  vertical-align: middle;
  border-bottom: 1px solid #e9ecef;
}

/* Product Image */
.woocommerce table.shop_table td img {
  width: 80px;
  height: auto;
  margin-right: 15px;
  border-radius: 5px;
}

/* Product Name */
.woocommerce table.shop_table td a {
  color: #232323;
  text-decoration: none;
  font-weight: 500;
}

.woocommerce table.shop_table td a:hover {
  color: #2c5282;
}

/* Quantity Input */
.woocommerce .quantity .qty {
  width: 80px;
  padding: 8px 12px;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  background: #fff;
}

/* Remove Button */
.woocommerce table.shop_table td a.remove {
  color: #dc3545;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  padding: 5px;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dc3545;
}

.woocommerce table.shop_table td a.remove:hover {
  color: #fff;
  background: #dc3545;
}

/* Cart Actions */
.woocommerce .cart .button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #2c5282;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.woocommerce .cart .button:hover {
  background: #2a4365;
  transform: translateY(-2px);
}

/* Coupon Form */
.woocommerce .coupon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce .coupon label {
  margin: 0;
  font-weight: 500;
}

.woocommerce .coupon .input-text {
  padding: 8px 12px;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  width: 200px;
}

/* Cart Totals */
.woocommerce .cart-collaterals {
  width: 100%;
}

.woocommerce .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}

.woocommerce .cart-collaterals .cart_totals table {
  margin-bottom: 30px;
}

.woocommerce .cart-collaterals .cart_totals th {
  padding: 10px 0;
  font-weight: 500;
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0;
}

.woocommerce .cart-collaterals .cart_totals td {
  padding: 10px 0;
  text-align: right;
}

.woocommerce .cart-collaterals .cart_totals .order-total {
  font-size: 18px;
  font-weight: 600;
  border-top: 2px solid #e9ecef;
}

.woocommerce .cart-collaterals .cart_totals .order-total th,
.woocommerce .cart-collaterals .cart_totals .order-total td {
  padding-top: 20px;
}

/* Checkout Button */
.woocommerce .cart-collaterals .checkout-button {
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #2c5282;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: block;
}

.woocommerce .cart-collaterals .checkout-button:hover {
  background: #2a4365;
  transform: translateY(-2px);
}

/* Empty Cart */
.woocommerce-cart .cart-empty {
  text-align: center;
  padding: 60px 0;
}

.woocommerce-cart .cart-empty .return-to-shop {
  margin-top: 30px;
}

.woocommerce-cart .cart-empty .return-to-shop .button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #2c5282;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce-cart .cart-empty .return-to-shop .button:hover {
  background: #2a4365;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .woocommerce table.shop_table {
    display: block;
    overflow-x: auto;
  }

  .woocommerce .cart-collaterals .cart_totals {
    padding: 20px;
  }

  .woocommerce .coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce .coupon .input-text {
    width: 100%;
  }
}
