﻿@import url('/css/category.css');
.fav-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
}

.fav-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.cart-summary {
    margin-top: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.cart-summary-note {
    font-size: 12px;
    color: #aaa;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}
.fav-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0;
}

.fav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s;
}

    .fav-tab:hover {
        color: #1a1a1a;
    }

.fav-tab-active {
    color: #00b0a3;
    border-bottom-color: #00b0a3;
}

.fav-tab-count {
    background: #f0f0f0;
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.fav-tab-active .fav-tab-count {
    background: #e0f5f3;
    color: #00b0a3;
}

.fav-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    color: #ccc;
    gap: 12px;
    font-size: 16px;
}
.compare-go-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

    .compare-go-btn:hover {
        background: #1a1a1a;
        color: #fff;
    }

.dark-theme .compare-go-btn {
    border-color: #e0e0e0 !important;
    color: #e0e0e0 !important;
    background: transparent !important;
}

    .dark-theme .compare-go-btn:hover {
        background: #e0e0e0 !important;
        color: #1a1a1a !important;
    }
