.transition-hover {
    transition: all 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.pagination .page-item .page-link {
    border-radius: 50%;
    margin: 0 3px;
    color: #0d6efd;
    border: none;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    color: #fff;
}

.shop-catalog-categories__inner {
    padding: 1rem 1.1rem 1.1rem;
}

.shop-catalog-categories__header {
    margin-bottom: 0.85rem;
}

.shop-catalog-categories__title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6c757d;
}

.shop-catalog-categories__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.95rem;
}

.shop-catalog-categories__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(13, 110, 253, 0.14);
    border-radius: 999px;
    background: #fff;
    color: #212529;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    cursor: pointer;
}

.shop-catalog-categories__link:hover,
.shop-catalog-categories__link:focus-visible {
    border-color: rgba(13, 110, 253, 0.32);
    background: rgba(13, 110, 253, 0.06);
    color: #0d6efd;
    transform: translateY(-1px);
}

.shop-catalog-categories__link.is-active {
    border-color: transparent;
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 12px 26px rgba(13, 110, 253, 0.2);
}

.shop-catalog-accordion__body {
    padding: 1rem 1.1rem 1.1rem;
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 1.1rem;
    background: rgba(248, 251, 255, 0.8);
}

.shop-catalog-subcategories__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.shop-catalog-subcategories__link {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.65rem 0.95rem;
    border-radius: 0.95rem;
    background: #f8fbff;
    color: #1f2937;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.shop-catalog-subcategories__link:hover,
.shop-catalog-subcategories__link:focus-visible {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .shop-catalog-categories__inner {
        padding: 0.95rem;
    }

    .shop-catalog-categories__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scrollbar-width: thin;
    }

    .shop-catalog-categories__link {
        flex: 0 0 auto;
    }

    .shop-catalog-subcategories__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scrollbar-width: thin;
    }

    .shop-catalog-subcategories__link {
        flex: 0 0 auto;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-card__image,
    .product-card__placeholder {
        width: 100%;
        height: 280px;
        min-height: 280px;
        object-fit: cover;
    }

    .product-card h5 {
        font-size: 0.9rem;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
