/* Danh sách sản phẩm */

/* Nút so sánh */
.compare-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.compare-btn:hover {
    background: #2980b9;
}

.compare-btn.active {
    background: #27ae60;
}

/* Thanh so sánh */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #eee;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.compare-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.compare-title {
    font-weight: bold;
    color: #333;
}

.compare-list {
    display: flex;
    gap: 10px;
    flex: 1;
    overflow-x: auto;
}

.compare-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    min-width: 150px;
}

.compare-item img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 2px;
}

.compare-item .product-name {
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 2px;
}

.compare-actions {
    display: flex;
    gap: 10px;
}