/* ===== COMPARE PAGE ===== */
.cmp-section { padding: 30px 0 60px; }
.cmp-title { font-family: 'Lora', Georgia, serif; font-size: 1.8rem; color: var(--dark); margin-bottom: 20px; }

.cmp-table-wrap { overflow-x: auto; border: 1px solid #eee; border-radius: 4px; }

.cmp-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.cmp-table th, .cmp-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 0.85rem;
    vertical-align: middle;
}
.cmp-table tbody th { text-align: left; color: #555; font-weight: 600; background: #fafafa; white-space: nowrap; }
.cmp-feature-col { width: 160px; }

.cmp-table thead th { position: relative; padding-top: 30px; min-width: 180px; }
.cmp-table thead img { max-width: 100%; max-height: 120px; object-fit: contain; display: block; margin: 0 auto 8px; }
.cmp-name { display: block; color: var(--dark); font-weight: 700; font-size: 0.85rem; text-decoration: none; margin-top: 4px; }
.cmp-name:hover { color: var(--gold); }

.cmp-remove {
    position: absolute;
    top: 4px; right: 8px;
    border: none;
    background: none;
    font-size: 1.2rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
}
.cmp-remove:hover { color: #c00; }

.cmp-price-old { color: #999; text-decoration: line-through; font-size: 0.78rem; display: block; }
.cmp-price-new { color: var(--dark); font-weight: 700; }

.cmp-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.cmp-note { color: #888; font-size: 0.8rem; margin: 0; }

.btn-outline-gold {
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

/* ===== COMPARE FLOATING BAR ===== */
.cmp-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 2px solid var(--gold);
    box-shadow: 0 -2px 10px rgba(0,0,0,.08);
    padding: 10px 0;
    z-index: 1000;
    display: none;
}
.cmp-bar.is-visible { display: block; }
.cmp-bar__inner { display: flex; align-items: center; gap: 14px; }
.cmp-bar__items { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }
.cmp-bar__item { display: flex; align-items: center; gap: 6px; background: #f7f7f7; border-radius: 3px; padding: 4px 8px; font-size: 0.78rem; }
.cmp-bar__item img { width: 28px; height: 28px; object-fit: contain; }
.cmp-bar__item button { border: none; background: none; color: #999; cursor: pointer; font-size: 0.9rem; line-height: 1; }
.cmp-bar__item button:hover { color: #c00; }
.cmp-bar__count { font-size: 0.78rem; color: #888; white-space: nowrap; }
