/*
 * products-grid.css — адаптивна сітка товарів замість горизонтального скролу.
 * Підключається ПІСЛЯ main*.css на сторінках sugar.html, flour.html,
 * fertilizers.html і перекриває стилі .wrapper/.products для всіх брейкпоінтів.
 */

/* Обгортка більше не абсолютна і не ширша за екран */
#sugar-block .wrapper,
#flour-block .wrapper,
#fertilizers-block .wrapper {
    position: static !important;
    width: 100% !important;
    overflow: visible !important;
}

/* Сітка: колонки по 260px (ширина картки), авто-кількість на будь-якому екрані */
#sugar-block .products,
#flour-block .products,
#fertilizers-block .products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    justify-items: center;
    width: 100% !important;
    height: auto !important;
    gap: 80px 40px;
    margin: 60px 0 0 0 !important;
    padding: 0 !important;
}

/* Картка: висоту диктує рядок сітки (найвища картка в ряду),
   решта розтягуються — кнопки лишаються вирівняними по низу */
#sugar-block .products .product-offer,
#flour-block .products .product-offer,
#fertilizers-block .products .product-offer {
    height: auto !important;
    width: 260px;
    align-self: stretch;
}

/* Кнопка "Сертифікати продукції" праворуч від заголовка */
#sugar-block .titles,
#flour-block .titles,
#fertilizers-block .titles {
    position: relative;
}

.certs-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #253C59;
    border-radius: 5px;
    background: transparent;
    color: #253C59;
    font-family: "Gotham Pro Regular", Arial, sans-serif;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.certs-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.certs-btn:hover {
    background: #18273A;
    color: #FFFFFF;
}

/* На вузьких екранах кнопка стає під заголовком */
@media only screen and (max-width: 767px) {
    .certs-btn {
        position: static;
        transform: none;
        margin-top: 20px;
        width: fit-content;
    }
}

/* Індикатор завантаження цін (ховається скриптом prices-loader.js) */
.prices-updating {
    margin: 24px 0 0 0;
    color: #8a94a3;
    font-family: "Gotham Pro Regular", Arial, sans-serif;
    font-size: 16px;
    animation: prices-pulse 1.2s ease-in-out infinite;
}

@keyframes prices-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

/* На вузьких екранах — одна колонка по центру */
@media only screen and (max-width: 478px) {
    #sugar-block .products,
    #flour-block .products,
    #fertilizers-block .products {
        grid-template-columns: 1fr;
        gap: 60px 24px;
    }
}
