/* css/products.css */

.page-title {
    text-align: center;
    padding: 60px 0 40px;
}

.page-title h2 {
    font-size: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    color: #1a1a1a;
}

/* Сітка товарів */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    padding: 0 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Картка товару */
.product-card {
    background: #fff;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.product-img-box {
    position: relative;
    background: #fcfcfc;
    overflow: hidden; /* Щоб картинка і кнопка не вилазили за межі */
    margin-bottom: 20px;
    aspect-ratio: 1 / 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* КАРТИНКА - початковий стан */
.product-img-box img {
    width: 80%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Плавний зум */
}

/* 🎯 ЗУМ КАРТИНКИ ПРИ НАВЕДЕННІ НА КАРТКУ */
.product-card:hover .product-img-box img {
    transform: scale(1.1);
}

/* ОБЛАСТЬ НАВЕДЕННЯ (Оверлей) */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02); /* Ледь помітне затемнення */
    display: flex;
    align-items: flex-end; /* Кнопка внизу */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* КНОПКА НА ВСЮ ШИРИНУ ВНИЗУ */
.btn-view {
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    color: #fff;
    border: none;
    padding: 18px 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    
    /* Анімація виїзду */
    transform: translateY(100%); 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ПРИ НАВЕДЕННІ - Кнопка виїжджає */
.product-card:hover .btn-view {
    transform: translateY(0);
}

/* ІНФОРМАЦІЯ ПРО ТОВАР */
.product-info h3 {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 400;
    color: #1a1a1a;
}

.product-category {
    font-size: 11px;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-weight: 600;
    color: #333;
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 колонки на планшетах */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на смартфонах */
        padding: 0 15px 50px;
    }
    
    .page-title h2 {
        font-size: 24px;
        padding: 30px 0 10px;
    }

    /* На телефонах кнопка має бути видима одразу, бо немає ховера */
    .product-overlay {
        opacity: 1;
        background: transparent;
    }

    .btn-view {
        transform: translateY(0); /* Кнопка не ховається */
        padding: 12px 0;
        font-size: 10px;
        background: rgba(26, 26, 26, 0.9);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr; /* 1 товар на весь екран для малих мобілок */
    }
}