.listing-info {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.listing-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-box {
    background-color: #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.badge-negotiable {
    background-color: #17a2b8;
}

.badge-condition {
    background-color: #6c757d;
}

.badge-type {
    background-color: #28a745;
}

.seller-info {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
}

.feature-icon {
    color: #007bff;
    margin-right: 8px;
}

.thumbnail-list {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border: 3px solid #007bff;
}

.similar-listing-card {
    transition: transform 0.3s;
}

.similar-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.similar-img {
    height: 120px;
    object-fit: cover;
}

.rating-stars {
    color: #ffc107;
}

.message-box,
.offer-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}