/* WooCommerce dark theme overrides */
.woocommerce ul.products li.product {
    background: var(--bg-card, #1e1e1e);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    border-color: rgba(200,151,58,0.3);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #f0f0f0;
    font-family: 'Playfair Display', serif;
}
.woocommerce ul.products li.product .price {
    color: #C8973A;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    background: #E8621A !important;
    color: white !important;
    border-radius: 6px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}
.woocommerce a.button:hover, .woocommerce button.button:hover {
    background: #C8973A !important;
}
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info {
    background: var(--bg-card, #1e1e1e);
    color: #f0f0f0;
    border-top-color: #C8973A;
}
.woocommerce .woocommerce-error {
    background: var(--bg-card, #1e1e1e);
    color: #f0f0f0;
    border-top-color: #E8621A;
}
.woocommerce table.shop_table {
    background: var(--bg-card, #1e1e1e);
    color: #f0f0f0;
    border-color: rgba(255,255,255,0.1);
}
.woocommerce table.shop_table td, .woocommerce table.shop_table th {
    border-color: rgba(255,255,255,0.1);
    color: #f0f0f0;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: var(--bg-secondary, #1a1a1a);
    border: 1px solid rgba(255,255,255,0.1);
    color: #f0f0f0;
    border-radius: 6px;
    padding: 10px 12px;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: var(--bg-card, #1e1e1e);
    color: #f0f0f0;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #C8973A;
    color: white;
}
.woocommerce .quantity .qty {
    background: var(--bg-secondary, #1a1a1a);
    color: #f0f0f0;
    border: 1px solid rgba(255,255,255,0.1);
}
.woocommerce div.product .product_title {
    color: #f0f0f0;
    font-family: 'Playfair Display', serif;
}
.woocommerce div.product .price {
    color: #C8973A;
    font-size: 1.4rem;
}
.woocommerce div.product .woocommerce-product-details__short-description {
    color: #a0a0a0;
}
.woocommerce-page body {
    background: #0f0f0f;
}
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
    background: var(--bg-card, #1e1e1e);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
