.variants-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    overflow: hidden;
    max-height: calc((64px + 16px) * 3);
    transition: max-height 0.5s ease;
    margin-bottom: 10px;
    width: 100%;         /* dodane */
    clear: both;  

}
.wariant-img {
    flex: 0 0 calc(20% - 4px);
    box-sizing: border-box;
    padding: 2px;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.wariant-img img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    display: block;
}

.show-more-btn {
    display: block;
    margin: 10px auto;
    border-radius: 4px;
    color: #555;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 2px 10px;
    line-height: 18px;
    transition: all 0.2s linear;
    background-color: transparent;
    border: 2px solid #ddd;
}