/* Витрина каталога WooCommerce. Карточка переиспользует .equipment-card. */

.post-type-archive-product .inner-hero,
.tax-product_cat .inner-hero {
    overflow: hidden;
}

.shop-section {
    position: relative;
    z-index: 2;
    background: #000;
    padding-top: 4rem;
}

.shop-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.shop-filter__link {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}

.shop-filter__link:hover {
    border-color: #fff;
}

.shop-filter__link.is-active {
    background-color: #3144b9;
    border-color: #3144b9;
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.shop-grid > * {
    min-width: 0;
}

@media (min-width: 640px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.4rem;
    }
}

@media (min-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Карточка товара */
.shop-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.shop-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.shop-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.shop-card__media:hover .shop-card__img {
    transform: scale(1.04);
}

.shop-card__body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2.4rem;
    flex: 1;
}

.shop-card__title {
    font-size: 2.2rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.shop-card__title a {
    color: #fff;
}

.shop-card__text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}

.shop-card__price {
    font-size: 1.9rem;
    font-weight: 500;
    color: #fff;
}

.shop-card__price del {
    margin-right: 0.8rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.shop-card__price ins {
    text-decoration: none;
}

.shop-card__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.6rem;
}

.shop-card__actions .button {
    width: 100%;
    justify-content: center;
}

.shop-section__empty {
    padding: 4rem 0;
    font-size: 1.6rem;
}

.woocommerce-pagination {
    margin-top: 4rem;
}

.woocommerce-pagination ul {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4rem;
    height: 4rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #fff;
    font-size: 1.4rem;
}

.woocommerce-pagination .current {
    background-color: #3144b9;
    border-color: #3144b9;
}
