.compare-page {
    padding: 40px 0 80px;
}

.compare-head {
    margin-bottom: 24px;
}

.compare-title {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--color-text);
}

.compare-subtitle {
    color: var(--color-text-muted);
}

.compare-empty {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 32px;
    text-align: center;
}

.compare-empty p {
    margin-bottom: 14px;
    color: #334155;
}

.compare-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.compare-table-wrap {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 16px;
}

.compare-table-scroll {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.compare-table th,
.compare-table td {
    border: 1px solid var(--color-border);
    padding: 10px 12px;
    vertical-align: top;
}

.compare-table th {
    background: var(--color-bg);
    font-weight: 700;
    text-align: left;
}

.compare-table .compare-label {
    width: 220px;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-bg);
}

.compare-product-card {
    text-align: center;
}

.compare-product-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 8px;
}

.compare-product-name {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
}

.compare-product-name a {
    color: inherit;
    text-decoration: none;
}

.compare-product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compare-remove-btn {
    background: #fee2e2;
    color: #b91c1c;
}

.compare-remove-btn:hover {
    background: #fecaca;
}

@media (max-width: 768px) {
    .compare-title {
        font-size: 28px;
    }

    .compare-actions {
        flex-direction: column;
    }
}
