/**
 * Additional Cart Enhancements
 */

/* Cart Actions Button Improvements */
.woocommerce-cart .woocommerce table.shop_table .actions {
    background-color: #f9f9f9;
    border-radius: 8px;
}

.woocommerce-cart .woocommerce table.shop_table .actions input[type="text"] {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.woocommerce-cart .woocommerce table.shop_table .actions input[type="text"]:focus {
    border-color: #0693e3;
    outline: none;
}

.woocommerce-cart .woocommerce table.shop_table .actions button,
.woocommerce-cart .woocommerce table.shop_table .actions input[type="submit"] {
    min-width: 150px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-cart .woocommerce table.shop_table .actions button:hover,
.woocommerce-cart .woocommerce table.shop_table .actions input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 147, 227, 0.3);
}

/* Cart Totals Improvements */
.woocommerce-cart .cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.woocommerce-cart .cart_totals table {
    margin-bottom: 1.5rem;
}

.woocommerce-cart .cart_totals .wc-proceed-to-checkout a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Product Meta in Cart */
.woocommerce table.shop_table dl.variation {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

.woocommerce table.shop_table dl.variation dt,
.woocommerce table.shop_table dl.variation dd {
    display: inline;
    margin: 0;
}

.woocommerce table.shop_table dl.variation dt {
    font-weight: 600;
}

.woocommerce table.shop_table dl.variation dd {
    margin-right: 1rem;
}

/* Empty Cart Message */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: 3rem 2rem;
    font-size: 1.2rem;
}

.woocommerce-cart .return-to-shop {
    text-align: center;
    margin-top: 2rem;
}

/* Cross-sells */
.woocommerce-cart .cross-sells h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}