/* Lot Details Page styles */

.lot-details {
    padding: 40px 0;
}

.lot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.lot-title h1 {
    margin-bottom: 5px;
}

.lot-title .artist {
    font-size: 18px;
    font-style: italic;
    color: #666;
}

.lot-actions {
    display: flex;
    gap: 10px;
}

.lot-actions button {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lot-actions button:hover {
    background-color: #f5f5f5;
}

.lot-actions .favorite.active {
    color: #e74c3c;
}

.share-dropdown {
    position: relative;
}

.share-options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 150px;
    padding: 10px 0;
    display: none;
    z-index: 100;
}

.share-options.show {
    display: block;
}

.share-options a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    color: #333;
}

.share-options a:hover {
    background-color: #f5f5f5;
}

.lot-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.lot-gallery {
    width: 60%;
}

.main-image {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.main-image img {
    width: 100%;
    display: block;
}

.zoom-in {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.zoom-in:hover {
    background-color: rgba(0,0,0,0.9);
}

.thumbnails {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #4a90a0;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lot-info {
    width: 40%;
}

.auction-status {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.auction-status .status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.auction-status .label {
    color: #666;
}

.auction-status .value {
    font-weight: 600;
}

.time-remaining .label {
    margin-bottom: 10px;
    display: block;
}

.countdown {
    display: flex;
    gap: 15px;
}

.time-unit {
    text-align: center;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
    width: 70px;
}

.time-unit .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #4a90a0;
}

.time-unit .unit {
    font-size: 12px;
    color: #666;
}

.bidding-info {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.bidding-info > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bidding-info .label {
    color: #666;
}

.bidding-info .value {
    font-weight: 600;
}

.bidding-info .current-bid .value {
    color: #4a90a0;
    font-size: 18px;
    font-weight: 700;
}

.bid-actions {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.bid-input {
    margin-bottom: 15px;
}

.bid-input label {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

.bid-input input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.place-bid {
    width: 100%;
    padding: 12px 0;
    background-color: #4a90a0;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.place-bid:hover {
    background-color: #347585;
}

.min-bid {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.lot-details-tabs {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 15px 0;
    background-color: transparent;
    color: #666;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.tab-btn.active {
    color: #4a90a0;
    border-bottom-color: #4a90a0;
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.detail-row {
    display: flex;
    margin-bottom: 10px;
}

.detail-label {
    width: 120px;
    color: #666;
}

.detail-value {
    flex: 1;
    font-weight: 500;
}

.provenance-list {
    margin-left: 20px;
    color: #333;
}

.provenance-list li {
    margin-bottom: 8px;
}

.lot-description {
    margin-bottom: 40px;
}

.lot-description h2 {
    margin-bottom: 20px;
}

.lot-description p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.artist-section {
    margin-bottom: 40px;
}

.artist-section h2 {
    margin-bottom: 20px;
}

.artist-profile {
    display: flex;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.artist-profile .artist-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.artist-profile .artist-bio {
    flex: 1;
    padding: 0;
    box-shadow: none;
    margin-bottom: 0;
    background-color: transparent;
}

.artist-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.similar-lots h2 {
    margin-bottom: 20px;
}

.lot-slider {
    display: flex;
    gap: 30px;
}

.lot-slide {
    width: calc(33.333% - 20px);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lot-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Image Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
}

/* Related Artists */
.related-artists {
    padding: 60px 0;
    background-color: #f2f2f2;
}

.related-artists h2 {
    text-align: center;
    margin-bottom: 40px;
}

.artist-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.artist-slide {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
} 