/* ===== WOOCOMMERCE CUSTOMIZATIONS ===== */

/* Shop Page */
.lumiere-shop-main {
    padding: 4rem 0;
}

.woocommerce-notices-wrapper {
    margin-bottom: 2rem;
}

/* Product Filters */
.woocommerce-widget-layered-nav {
    margin-bottom: 2rem;
}

.woocommerce-widget-layered-nav-list {
    list-style: none;
}

.woocommerce-widget-layered-nav-list li {
    margin-bottom: 0.8rem;
}

.woocommerce-widget-layered-nav-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-widget-layered-nav-list a:hover {
    color: #d4af37;
}

/* Product Grid */
.woocommerce ul.products {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.woocommerce ul.products li.product {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product a {
    text-decoration: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #1a1a1a;
    margin: 1rem 0 0.5rem;
}

.woocommerce ul.products li.product .price {
    color: #d4af37;
    font-weight: 600;
}

/* Product Detail Page */
.woocommerce div.product {
    margin-bottom: 4rem;
}

.woocommerce div.product .woocommerce-product-gallery {
    margin-bottom: 2rem;
}

.woocommerce div.product .product_title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 1rem 0;
}

.woocommerce div.product .price {
    font-size: 1.5rem;
    color: #d4af37;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 1.05rem;
    color: #666;
    margin: 1.5rem 0;
}

.woocommerce div.product table.woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce div.product table.woocommerce-product-attributes th,
.woocommerce div.product table.woocommerce-product-attributes td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.woocommerce div.product table.woocommerce-product-attributes th {
    background: #f9f7f4;
    font-weight: 600;
}

/* Add to Cart Button */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
    background: #d4af37;
    color: #1a1a1a;
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Quantity Selector */
.woocommerce .quantity {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.woocommerce .quantity input.qty {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.woocommerce .quantity button {
    background: #f9f7f4;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

/* Cart Page */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.woocommerce table.shop_table th {
    background: #f9f7f4;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce table.shop_table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce table.shop_table img {
    max-width: 100px;
    height: auto;
}

/* Checkout */
.woocommerce-checkout-review-order {
    background: #f9f7f4;
    padding: 2rem;
    margin-bottom: 2rem;
}

.woocommerce form .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    font-family: inherit;
}

/* Star Rating */
.woocommerce .star-rating {
    color: #d4af37;
}

.woocommerce .star-rating span {
    color: #d4af37;
}

/* Related Products */
.woocommerce .related.products,
.woocommerce .upsells.products {
    margin-top: 3rem;
}

.woocommerce .related.products h2,
.woocommerce .upsells.products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .woocommerce table.shop_table {
        font-size: 0.9rem;
    }

    .woocommerce table.shop_table img {
        max-width: 60px;
    }
}
