/* Styl pro ikonu lupy na hlavní fotce */
.product-details-slider-top-wrapper {
    position: relative;
}

.gallery-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.gallery-icon:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Nový styl pro sjednocení výšky obrázků v přehledu aukcí */
.auction-item-6 .auction-thumb .auction-thumb-slider img {
    display: block;
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain; /* Zobrazí celý obrázek, nikdy neořízne */
}

.auction-thumb-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}
.custom-nav-btn {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.2s;
}
.custom-nav-btn:hover {
    background: rgba(0,0,0,0.8);
}