/* История просмотров "Вы смотрели" */

.viewed-lots-section {
    padding: 40px 40px 20px;
    max-width: 1920px;
    margin: 0 auto;
}

.viewed-lots-container {
    position: relative;
}

.viewed-lots-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.viewed-lots-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Кастомный скроллбар */
.viewed-lots-scroll::-webkit-scrollbar {
    height: 8px;
}

.viewed-lots-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.viewed-lots-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.viewed-lots-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.viewed-lot-card {
    flex: 0 0 240px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.viewed-lot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--border-light);
}

.viewed-lot-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--bg-primary);
}

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

.viewed-lot-card:hover .viewed-lot-image img {
    transform: scale(1.1);
}

.viewed-lot-content {
    padding: 12px;
}

.viewed-lot-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}

.viewed-lot-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.viewed-lot-region {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .viewed-lots-section {
        padding: 24px 16px 16px;
    }
    
    .viewed-lots-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .viewed-lot-card {
        flex: 0 0 200px;
    }
    
    .viewed-lot-image {
        height: 120px;
    }
}
