/* --- СТРУКТУРА --- */
.catalog-page { padding: 40px 0 80px; }
.catalog-minimal-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.catalog-minimal-header h1 { font-size: 2.2rem; font-weight: 800; color: #fff; }

.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }

/* КАТЕГОРІЇ */
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 12px; }
.cat-link { display: block; color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: 0.3s; }
.cat-link:hover, .cat-link.is-active { color: #f97316; padding-left: 5px; }

/* СІТКА */
.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    row-gap: 45px;
}

/* КАРТКА (БЕЗ РОЗТЯГУВАННЯ) */
.product-card {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover { border-color: #f97316; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }

/* ШВИДКІ ДІЇ (HOVER) */
.product-card__quick-actions {
    position: absolute; top: 15px; right: 15px;
    display: flex; flex-direction: column; gap: 10px;
    opacity: 0; transform: translateX(10px); transition: 0.3s ease; z-index: 10;
}
.product-card:hover .product-card__quick-actions { opacity: 1; transform: translateX(0); }

.btn-quick-act {
    width: 38px; height: 38px;
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.btn-quick-act.is-active { color: #f97316; border-color: #f97316; background: rgba(249, 115, 22, 0.1); }

/* ЗОБРАЖЕННЯ */
.product-image-wrap {
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 1/1; background: #fff; border-radius: 15px;
    margin-bottom: 15px; overflow: hidden;
}
.product-image-wrap img { max-width: 90%; max-height: 90%; object-fit: contain; }

/* ТЕКСТ ТА ЦІНА */
.product-title {
    font-size: 1rem; font-weight: 600; line-height: 1.4; color: #fff;
    text-decoration: none; margin-bottom: 15px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; min-height: 2.8em;
}
.product-info { flex-grow: 1; display: flex; flex-direction: column; }
.product-price-row { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.current-price { font-size: 1.5rem; font-weight: 800; color: #f97316; }

/* КНОПКА КОШИКА */
.btn-cart-modern {
    width: 44px; height: 44px; background: #f97316; color: white;
    border: none; border-radius: 12px; cursor: pointer; transition: 0.3s;
}
.btn-cart-modern.is-active { background: #10b981; }

/* ПАГІНАЦІЯ */
.catalog-pagination { display: flex; justify-content: center; margin-top: 60px; }
.btn-load-more {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 40px; background: transparent;
    border: 1px solid #f97316; border-radius: 15px;
    color: #f97316; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.btn-load-more:hover { background: rgba(249, 115, 22, 0.05); box-shadow: 0 0 20px rgba(249, 115, 22, 0.2); }

/* TOASTS (СПОВІЩЕННЯ) */
.toast-container { position: fixed; bottom: 30px; right: 30px; z-index: 10000; display: flex; flex-direction: column; gap: 10px; }
.toast {
    background: #1a1a1a; border: 1px solid #f97316;
    padding: 15px 25px; border-radius: 12px; color: #fff;
    transform: translateX(150%); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.show { transform: translateX(0); }

/* --- АДАПТАЦІЯ (MOBILE & TABLET) --- */

@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 1fr; /* Сайдбар зверху або ховається */
    }

    .catalog-sidebar {
        display: none; /* Ти вже маєш логіку відкриття через мобільну кнопку */
    }

    .catalog-sidebar.is-open {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        background: #000;
        padding: 30px;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .catalog-minimal-header h1 {
        font-size: 1.8rem;
    }

    .catalog-products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 товари в ряд */
        gap: 15px;
        row-gap: 30px;
    }

    .product-card {
        padding: 12px;
        border-radius: 15px;
    }

    .product-title {
        font-size: 0.9rem;
        min-height: 2.6em;
    }

    .current-price {
        font-size: 1.2rem;
    }

    .btn-cart-modern {
        width: 38px;
        height: 38px;
    }

    /* На мобільних показуємо швидкі дії завжди, бо немає hover */
    .product-card__quick-actions {
        opacity: 1;
        transform: none;
        top: 8px;
        right: 8px;
        gap: 6px;
    }

    .btn-quick-act {
        width: 32px;
        height: 32px;
    }

    .btn-load-more {
        width: 100%;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .catalog-products-grid {
        gap: 10px;
        row-gap: 20px;
    }

    .product-card {
        padding: 10px;
    }

    .current-price {
        font-size: 1.1rem;
    }
}
