/* Contenedor del resumen del pedido */
.woocommerce-customer-details {
  border-radius: 8px;
  background-color: #fff;
  margin: auto;
}

.woocommerce-MyAccount-content:has(.woocommerce-customer-details) {
  padding: var(--spacing-lg);
}

/* Productos en el resumen */
.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.product-thumbnail img {
  width: 60px;
  height: auto;
  margin-right: 15px;
}

.product-details {
  flex-grow: 1;
}

.product-name {
  font-weight: bold;
  font-size: 16px;
}

.product-quantity {
  font-size: 14px;
  color: #666;
}

.product-prices {
  display: flex;
  gap: 8px;
  align-items: center;
}

.regular-price {
  text-decoration: line-through;
  color: #888;
}

.final-price {
  font-weight: bold;
  color: #000;
}

/* Totales */
.order-totals {
  padding-top: 15px;
}

.order-totals div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 16px;
}

.total {
  font-weight: bold;
}

.total-amount {
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content:has(.woocommerce-customer-details) {
    padding: 0;
  }
}
