.payment-method {
    transition: all 0.2s ease;
}
.payment-method:hover {
    background-color: #f9fafb;
}
.payment-method.selected {
    border-color: black;
    background-color: #f9fafb;
}
.input-field:focus {
    box-shadow: 0 0 0 1px black;
}
.cart-item {
    transition: all 0.2s ease;
}
.cart-item:hover {
    background-color: #f9fafb;
}
.quantity-btn {
    transition: all 0.2s ease;
}
.quantity-btn:hover {
    background-color: #f3f4f6;
}
.remove-btn:hover {
    color: #ef4444;
}
.coupon-input {
    transition: all 0.3s ease;
}
.coupon-input:focus {
    box-shadow: 0 0 0 1px black;
}
.coupon-btn {
    transition: all 0.3s ease;
}
.coupon-btn:hover {
    background-color: #111;
}
.checkout-btn {
    transition: all 0.3s ease;
}
.checkout-btn:hover {
    background-color: #111;
    transform: translateY(-2px);
}
.back-btn:hover {
    background-color: #f3f4f6;
}

/* WooCommerce specific adjustments */
.woocommerce .quantity .qty {
    border: none;
    text-align: center;
    background: transparent;
}

.woocommerce .cart_totals table.shop_table {
    border: none;
}

.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td {
    border: none;
    padding: 0.5rem 0;
}