/* .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-text {
    margin-bottom: 0.5rem;
} */

/* === Красивые карточки лотов === */
.lot-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.lot-image-wrapper {
    height: 200px;
    overflow: hidden;
}

.lot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lot-card:hover .lot-image {
    transform: scale(1.03);
}

.lot-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lot-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
    line-height: 1.4;
}

.lot-description {
    font-size: 0.95rem;
    color: #4a5568;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lot-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
    margin: 0.5rem 0;
}

.lot-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.status-active { background-color: #c6f6d5; color: #22543d; }
.status-pending { background-color: #fefcbf; color: #65471d; }
.status-ended { background-color: #e2e8f0; color: #4a5568; }

.lot-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #edf2f7;
}
