[id^="wait_comp_"] {
    display: none !important;
}

.catalog-section {
    margin-bottom: 30px;
}

.catalog-sorting {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    z-index: 10;
}

.catalog-sorting__trigger {
    min-width: 230px;
    width: fit-content;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #4E4E4E;
    border: none;
    outline: none !important;
    padding: 5px 10px;
    gap: 5px;
    cursor: pointer;
}

.catalog-sorting:not(.is-open) .catalog-sorting__trigger:hover {
    color: #EC690D;
}

.catalog-sorting__arrow {
    transition: transform 0.3s ease;
}

.catalog-sorting.is-open .catalog-sorting__arrow {
    transform: rotate(-180deg);
}

.catalog-sorting__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #D5D5F0;
    border-radius: 10px;
    list-style: none;
    margin-top: 5px;
    padding: 7px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.catalog-sorting.is-open .catalog-sorting__menu {
    display: block;
}

.catalog-sorting__option {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #4E4E4E;
    padding: 10px 16px;
}

.catalog-sorting__option:hover {
    background: #FEF5ED;
    color: #4E4E4E;
    text-decoration: none;
}

.catalog-sorting__option.is-active {
    color: #D45C0A;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.product-card {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    gap: 20px;
    transition:
            background 0.3s ease,
            box-shadow 0.3s ease,
            transform 0.3s ease;
}

.product-card:hover {
    background: #F3F3F9;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.product-card:has(.product-card__image-link:active, .product-card__name:active) {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-card__image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
}

.product-card__image {
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    margin: 0 auto;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #EC690D;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    border-radius: 100px;
    padding: 5px 10px;
}

.product-card__badge {
    animation: badgePop 0.3s ease;
}

@keyframes badgePop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.product-card__information {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    gap: 15px;
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.03rem;
}

.product-card__article {
    display: block;
    font-size: 12px;
    color: #8d8d8d;
}

.product-card__availability {
    text-wrap: nowrap;
    color: #8C8C8C;
}

.product-card__rating {
    display: flex;
    gap: 5px;
}

.product-card__stars {
    display: flex;
    text-wrap: nowrap;
    color: #EC690D;
    gap: 3px;
}

.product-card__stars svg {
    margin-top: 5px;
}

.product-card__reviews_number {
    text-wrap: nowrap;
    color: #8C8C8C;
}

.product-card__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    overflow-wrap: break-word;
    hyphens: auto;
}

.product-card__name:hover {
    color: #000000;
    text-decoration: none;
}

.product-card__description {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-card__property {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03rem;
    color: #636363;
    padding-left: 8px;
}

.product-card__property::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: #636363;
    border-radius: 50%;
}

.product-card__footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    gap: 15px;
}

.product-card__purchase-area {
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.product-card__price {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 500;
    color: #1D4EBC;
}

.product-card__actions {
    flex-shrink: 0;
}

.product-card__buy-button {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    padding: 5px 10px;
}

.product-card__buy-button::before {
    border-radius: 7px;
}

.product-card__buy-button::after {
    border-radius: 3px;
}

.product-card__request-button {
    border-radius: 5px;
    padding: 5px 10px;
    min-height: 50px;
    font-size: 14px;
    line-height: 1.1;
    white-space: normal;
}

.product-card__counter {
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-card__reduce-products-number, .product-card__increase-products-number {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.product-card__reduce-products-number::before, .product-card__increase-products-number::before {
    border-radius: 7px;
}

.product-card__reduce-products-number::after, .product-card__increase-products-number::after {
    border-radius: 3px;
}

.product-card__products-number {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid #636363;
    border-radius: 5px;
    outline: none;
}

.product-card__section-name {
    font-size: 13px;
    line-height: 1.3;
    color: #1D4EBC;
}

.no-products__warning {
    text-align: center;
    font-size: clamp(20px, 5vw, 30px);
    font-weight: 600;
    color: #000000;
}

@media (max-width: 1200px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalog-sorting {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .product-list {
        grid-template-columns: 1fr;
    }
}
