/* box-product.css — адаптовано під popular-boxes.php */

.products {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.products .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin: 10px 0;
}

.product-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}