/* Eco-Stack Shop Page Styling */

.woocommerce-products-header {
    background: linear-gradient(135deg, #f5f5f0 0%, #e8f5e9 100%);
    border-bottom: 4px solid #1b5e20;
    padding: 40px 20px !important;
    margin-bottom: 40px;
}

.woocommerce-products-header h1 {
    color: #1b5e20;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.wc-block-product-template__product {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.wc-block-product-template__product:hover {
    border-color: #1b5e20;
    box-shadow: 0 8px 20px rgba(27,94,32,0.12);
    transform: translateY(-4px);
}

.wc-block-product-image {
    width: 100%;
    height: 280px;
    background: #f5f5f0;
    overflow: hidden;
}

.wc-block-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-block-product-title {
    color: #1b5e20;
    font-weight: 600;
    font-size: 16px;
    padding: 14px;
}

.wc-block-components-product-price {
    color: #2e7d32;
    font-weight: 700;
    padding: 0 14px 8px 14px;
}

.wc-block-components-button {
    background-color: #1b5e20 !important;
    color: white !important;
    margin: 0 14px 14px 14px !important;
    border: none !important;
    border-radius: 6px;
}

.wc-block-components-button:hover {
    background-color: #2e7d32 !important;
    transform: translateY(-2px);
}
