﻿.product-section {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .product-section:hover {
        box-shadow: 0 10px 25px rgba(76,175,80,0.15);
    }

.product-img {
    width: 100%;
    border-radius: 15px;
    transition: all 0.4s ease;
}

    .product-img:hover {
        transform: scale(1.03);
    }

.product-info h3 {
    color: #2e7d32;
    font-weight: 700;
}

.price-tag {
    font-size: 1.8rem;
    color: #28a745;
    font-weight: 600;
}

.delivery-info {
    background: #e8f5e9;
    border-left: 5px solid #28a745;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.quantity-controls button {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-weight: bold;
}

.highlight-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
}

    .highlight-item strong {
        color: #2e7d32;
    }

.section-title {
    color: #1b5e20;
    font-weight: 600;
    border-left: 4px solid #28a745;
    padding-left: 10px;
    margin-bottom: 1rem;
}

.description {
    background: #f9fff9;
    border-radius: 12px;
    padding: 15px 20px;
    border-left: 3px solid #28a745;
}

.alert-custom {
    background: #f1f8e9;
    border: 1px solid #c5e1a5;
    border-radius: 10px;
}
