/* WooCommerce Custom Styles */
.woocommerce-cart,
.woocommerce-checkout,
.woocommerce-account {
  margin: auto;
  padding: 40px 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Buttons */
.woocommerce button.button,
.woocommerce a.button {
  background-color: #0073e6;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  transition: 0.3s;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background-color: #005bb5;
}

/* Table Styles */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 5px;
  overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.woocommerce table.shop_table th {
  background-color: #f7f7f7;
}

/* Cart Page */
.woocommerce-cart .cart-collaterals {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
}
.woocommerce-cart .cart_totals table {
  width: 100%;
}

/* My Account Page */
.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left;
  width: 25%;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 5px;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: right;
  width: 70%;
}

/* Checkout Page */
.woocommerce-checkout #customer_details {
  display: flex;
  gap: 20px;
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  width: 48%;
}
