/**
 * Lot Detail Page Styles
 */

/* Lot Header */
.lot-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.lot-title {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lot-meta {
    color: #666;
    font-size: 0.9rem;
}

/* Lot Images */
.lot-image-main {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.main-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    min-height: 300px;
}

.lot-image-thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lot-image-thumbnail.active {
    border-color: var(--bs-primary, #0d6efd);
}

.lot-image-thumbnail:hover {
    opacity: 0.8;
}

/* Lot Description */
.lot-description {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.lot-description h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Lot Sidebar */
.lot-sidebar {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.lot-sidebar h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.lot-details-table {
    margin-bottom: 1.5rem;
}

.lot-details-table td:first-child {
    font-weight: 500;
}

/* Bid Form */
.bid-form {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
}

.bid-form h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.bid-form .form-label {
    font-weight: 500;
}

.bid-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

.bid-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Watchlist Button */
.watchlist-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.2s ease;
}

.watchlist-btn:hover {
    transform: scale(1.1);
}

.watchlist-btn .far {
    color: #6c757d;
}

.watchlist-btn .fas {
    color: #dc3545;
}

/* Countdown Timer */
.countdown-timer {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #dc3545;
    margin-bottom: 1rem;
}

/* Auction Badge */
.auction-badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .lot-sidebar {
        margin-top: 2rem;
    }
}

/* Bid History Table */
.bid-history-table {
    font-size: 0.9rem;
}

.bid-history-table th {
    font-weight: 600;
}

.bid-history-table .current-high-bid {
    font-weight: 700;
    color: #28a745;
}

.bid-history-table .outbid {
    color: #dc3545;
}

/* Similar Lots Section */
.similar-lots {
    margin-top: 3rem;
}

.similar-lots h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.similar-lot-card {
    height: 100%;
    transition: all 0.2s ease;
}

.similar-lot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.similar-lot-img {
    height: 150px;
    object-fit: cover;
}