.nm-product-box {
    width: 100%;
}

.nm-product-box__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 0 26px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.nm-product-box__tab {
    min-height: 42px;
    padding: 0 24px;
    border: 1px solid #c9c9c9;
    border-radius: 7px;
    background: #fff;
    color: #3a3a3a;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.nm-product-box__tab:hover,
.nm-product-box__tab:focus {
    border-color: #000;
    color: #000;
}

.nm-product-box__tab.is-active {
    border-color: #000;
    background: #000;
    color: #fff;
}

.nm-product-box__panel[hidden] {
    display: none;
}

.nm-product-box__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 30px;
}

.nm-product-box__item {
    min-width: 0;
}

.nm-product-box__image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    margin: 0 0 10px;
    overflow: hidden;
    background: #f7f8f9;
}

.nm-product-box__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nm-product-box__item-title {
    margin: 0 0 2px;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
}

.nm-product-box__quantity {
    color: #777;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
}

@media screen and (max-width: 1024px) {
    .nm-product-box__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }
}

@media screen and (max-width: 767px) {
    .nm-product-box__tabs {
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .nm-product-box__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 14px;
    }

    .nm-product-box__tab {
        min-height: 38px;
        padding: 0 18px;
        font-size: 13px;
    }

    .nm-product-box__item-title {
        font-size: 13px;
    }
}
