.bestseller-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    justify-content: center;
    width: 100%;
}

.bestseller-item {
    background: #fff;
    border-radius: 13px;
    padding: 12px 10px 18px 10px;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 47.5%;   /* Dwie kolumny na mobile */
    min-width: 142px;
    max-width: 320px;
    transition: box-shadow .18s;
}

.bestseller-title {
    text-align: center;
}

.bestseller-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    min-height: 110px;
}
.bestseller-image img {
    display: block;
    margin: 0 auto;
    max-width: 98%;
    max-height: 270px;
    border-radius: 8px;
    object-fit: contain;
}

.bestseller-price {
    font-size: 1.14em;
    font-weight: 600;
    color: var(--global-palette1);
    margin: 13px 0 0 0;
}

@media (max-width: 700px) {
    .bestseller-item { width: 47%; min-width: 115px; font-size: .97em; }
    .bestseller-image { min-height: 81px; }
    .bestseller-title { min-height: 22px; }
    .bestseller-grid { gap: 10px; }
    .bestseller-grid { display: flex; flex-wrap: wrap; justify-content: center; width: 100%;
}
}
@media (max-width: 490px) {
    .bestseller-item { width: 48%; min-width: 95px; font-size: .94em; }
    .bestseller-image { min-height: 54px; }
}
