/* Viewed Products Styles */
.viewed-products-section {
    margin-bottom: 1.5rem;
    overflow: hidden; /* Ngăn overflow */
}

.viewed-products-section h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-weight: 600;
}

.viewed-products-slider-wrapper {
    position: relative;
    margin-top: 1rem;
    overflow: visible; /* Cho phép navigation buttons hiển thị */
}

.viewed-products-swiper,
.viewed-products-swiper-mobile {
    padding-bottom: 0;
}

.viewed-products-swiper .swiper-slide,
.viewed-products-swiper-mobile .swiper-slide {
    height: auto;
    width: auto; /* Cho phép slide tự động width dựa trên nội dung */
}

.viewed-products-swiper .swiper-button-next,
.viewed-products-swiper .swiper-button-prev {
    color: #dc3545;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.viewed-products-swiper .swiper-button-next:after,
.viewed-products-swiper .swiper-button-prev:after {
    font-size: 18px;
}

.viewed-products-swiper .swiper-button-next:hover,
.viewed-products-swiper .swiper-button-prev:hover {
    background: #dc3545;
    color: white;
}

.viewed-products-swiper .swiper-pagination,
.viewed-products-swiper-mobile .swiper-pagination {
    bottom: 0;
}

.viewed-products-swiper .swiper-pagination-bullet-active,
.viewed-products-swiper-mobile .swiper-pagination-bullet-active {
    background: #dc3545;
}

/* Viewed Product Card - Layout ngang */
.viewed-product-card {
    position: relative;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    min-width: 220px; /* Giảm để hiển thị 2.5 items */
    max-width: 280px;
}

.viewed-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Nút xóa sản phẩm */
.btn-remove-viewed {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    background: #98a2b3;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.btn-remove-viewed:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.btn-remove-viewed i {
    font-size: 15px;
}

/* Layout chính: hình bên trái, thông tin bên phải */
.viewed-product-layout {
    display: flex;
    gap: 12px;
    padding: 10px;
    align-items: center;
}

/* Hình ảnh - chữ nhật ngang (landscape) */
.viewed-product-image {
    flex-shrink: 0;
    width: 100px;
    position: relative;
}

.viewed-product-image a {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* Tỷ lệ 3:2 cho hình chữ nhật ngang */
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.viewed-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thông tin sản phẩm - Đơn giản chỉ tên và giá */
.viewed-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.viewed-product-name {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.viewed-product-name a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.viewed-product-name a:hover {
    color: #dc3545;
}

/* Giá bán */
.viewed-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-current {
    color: #dc3545;
    font-size: 1.1rem;
    font-weight: 700;
}

.price-old {
    color: #999;
    font-size: 0.85rem;
    text-decoration: line-through;
}

/* Responsive */
@media (max-width: 768px) {
    .viewed-products-section h3 {
        font-size: 1rem;
    }
    
    .viewed-products-section .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .viewed-product-card {
        min-width: 200px; /* Tablet hiển thị 2.5 items */
        max-width: 240px;
    }
    
    .viewed-product-layout {
        gap: 10px;
        padding: 8px;
    }
    
    .viewed-product-image {
        width: 90px;
    }
    
    .viewed-product-name {
        font-size: 0.85rem;
    }
    
    .price-current {
        font-size: 1rem;
    }
    
    .btn-remove-viewed {
        width: 24px;
        height: 24px;
        top: 6px;
        right: 6px;
    }
    
    .btn-remove-viewed i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .viewed-product-card {
        min-width: 160px; /* Mobile nhỏ hiển thị 2 items */
        max-width: 200px;
    }
    
    .viewed-product-image {
        width: 70px;
    }
    
    .viewed-product-name {
        font-size: 0.8rem;
    }
    
    .price-current {
        font-size: 0.9rem;
    }
    
    .viewed-product-layout {
        padding: 8px;
        gap: 8px;
    }
}

/* Animation for clear button */
.viewed-products-section .btn-outline-danger {
    transition: all 0.3s ease;
}

