.article-commerce-frame {
    width: 100%;
    max-width: 960px;
    margin: 28px auto;
    color: #202020;
    font-family: inherit;
    line-height: 1.4;
}

.article-commerce-frame,
.article-commerce-frame * {
    box-sizing: border-box;
}

.article-commerce-frame[hidden] {
    display: none;
}

.article-commerce-frame__label {
    margin: 0 0 14px;
    color: #7f7f7f;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.article-commerce-frame__label--bottom {
    margin: 14px 0 0;
}

.article-commerce-frame__frame {
    background: #fff;
}

.article-commerce-frame__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.article-commerce-frame__card {
    display: flex;
    min-width: 0;
    padding: 12px;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.article-commerce-frame__image {
    display: block;
    margin-bottom: 10px;
    color: inherit;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.article-commerce-frame__image-wrap {
    display: flex;
    height: 150px;
    padding: 8px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
}

.article-commerce-frame__image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.article-commerce-frame__body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.article-commerce-frame__card--skeleton {
    pointer-events: none;
}

.article-commerce-frame__skeleton {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    background: linear-gradient(
        100deg,
        #f1f1f1 20%,
        #fafafa 38%,
        #f1f1f1 56%
    );
    background-size: 220% 100%;
    animation: article-commerce-skeleton 1.35s ease-in-out infinite;
}

.article-commerce-frame__skeleton--image {
    width: 76%;
    height: 82%;
}

.article-commerce-frame__skeleton--name {
    width: 88%;
    height: 59px;
    margin: 0 auto 10px;
}

.article-commerce-frame__skeleton--price {
    width: 42%;
    height: 23px;
    margin: auto auto 10px;
}

.article-commerce-frame__skeleton--button {
    width: 100%;
    height: 39px;
    margin-top: auto;
}

@keyframes article-commerce-skeleton {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.article-commerce-frame__brand {
    display: none;
}

.article-commerce-frame__name {
    display: -webkit-box;
    min-height: 3.96em;
    margin: 0 0 10px;
    overflow: hidden;
    color: #202020;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.32;
    text-align: center;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.article-commerce-frame__price {
    margin: auto 0 10px;
    color: #232323;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.article-commerce-frame__button {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 11px 8px;
    border-radius: 4px;
    background: #111827;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

.article-commerce-frame__button:hover,
.article-commerce-frame__button:focus-visible {
    color: #fff;
    opacity: 0.88;
}

@media (max-width: 767px) {
    .article-commerce-frame__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .article-commerce-frame__image-wrap {
        height: 135px;
    }

    .article-commerce-frame__name {
        font-size: 14px;
    }

    .article-commerce-frame__price {
        font-size: 18px;
    }

    .article-commerce-frame__skeleton--name {
        height: 55px;
    }
}

@media (max-width: 420px) {
    .article-commerce-frame__track {
        gap: 10px;
    }

    .article-commerce-frame__card {
        padding: 10px;
    }

    .article-commerce-frame__image-wrap {
        height: 118px;
        padding: 6px;
    }

    .article-commerce-frame__name {
        font-size: 13px;
    }

    .article-commerce-frame__price {
        font-size: 16px;
    }

    .article-commerce-frame__button {
        padding: 10px 6px;
        font-size: 12px;
    }

    .article-commerce-frame__skeleton--name {
        height: 51px;
    }

    .article-commerce-frame__skeleton--button {
        height: 35px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .article-commerce-frame__skeleton {
        animation: none;
    }
}
