.auction-row-card {
    transition: all 0.2s ease-in-out;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: #212529;
}

    .auction-row-card:hover {
        transform: translateY(-2px); /* Lekkie uniesienie */
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        border-color: rgba(255,255,255,0.25);
        z-index: 10;
        background-color: #2c3034; /* Lekkie rozjaśnienie tła */
    }

    /* Kontener zdjęcia - Stała szerokość na desktopie */
    .auction-img-container {
        height: 220px;
        position: relative;
        overflow: hidden;
        background-color: #000;
    }

    .auction-img-container img {
        transition: transform 0.3s ease;
    }

    .auction-row-card:hover .auction-img-container img {
        transform: scale(1.05);
    }

    /* Sekcja Ceny po prawej */
    .price-section {
        min-width: 200px;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Na telefonach cena ląduje po lewej */
    @media (max-width: 768px) {
        .price-section {
            text-align: left;
            margin-top: 1rem;
            min-width: 100%;
            border-top: 1px solid #444;
            padding-top: 10px;
        }
        .auction-img-container {
            height: 250px; /* Wyższe zdjęcie na mobile */
        }
    }

    /* Floating Edit Button */
    .btn-floating-edit {
        position: absolute;
        top: 10px; left: 10px; /* Zmiana na lewą stronę, żeby nie zasłaniało */
        z-index: 20;
        background: rgba(0,0,0,0.7);
        color: white;
        border: 1px solid rgba(255,255,255,0.3);
    }
    .btn-floating-edit:hover { background: white; color: black; }

.text-truncate-3 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.5;
        max-height: 4.5em; 
    }