/*
Theme Name: Owl
Author: Owl Code
Description: Your description goes here
Version: 1.0
Template: hello-biz

This is the child theme for Hello Biz theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
/* Card container */
.woocommerce-cart form.cart {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Tabla del carrito */
.woocommerce-cart .shop_table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-cart .shop_table th,
.woocommerce-cart .shop_table td {
  padding: 16px;
  border-bottom: 0px solid #eee;
  border:none !important;
}

/* Botones estilo moderno */
.woocommerce-cart button.button {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  text-transform: uppercase;
}
.woocommerce-cart button.button:hover {
  background: #555;
}

/* Resumen de totales */
.cart_totals {
  margin-top: 24px;
  padding: 24px;
  background: #f9f9f9;
  border-radius: 8px;
}

/* Responsive */
@media (max-width:768px) {
  .shop_table a.remove {
    display: inline-block;
    margin: 8px 0;
  }
}

.woocommerce table.shop_table {
  border:none;
}
.woocommerce_cart_item_thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}
.woocommerce-cart table.cart img {
    width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}
.product-subtotal {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  color: #333;
  font-size: 20px;
}
.product-name {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 16px;
  text-decoration: none !important;
}

.product-name a {
  color: #333;
  text-decoration: none !important;
}
.quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.custom-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: #f3f3f3;
  font-size: 18px;
  font-weight: bold;
  color: #cc3366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.qty-btn:hover {
  background-color: #e5e5e5;
}

input.qty {
  width: 50px;
  height: 36px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 4px;
}
