/* ==========================================
   CALCULATOR V2 - Compact, Modern Design
   ========================================== */

/* Container */
.calc-container {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

.calc-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a6fa5 0%, #5a9f68 50%, #d4a44c 100%);
}

/* ==========================================
   HEADER - Card Info
   ========================================== */
.calc-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.calc-card-image {
    width: 100px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.calc-header:hover .calc-card-image {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.calc-header-info {
    flex: 1;
    min-width: 0;
}

.calc-bank {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.15rem;
}

.calc-card-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 0.35rem 0;
    line-height: 1.2;
}

.calc-description {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 0.35rem 0;
    line-height: 1.4;
}

.calc-best-for {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin: 0.25rem 0 0.5rem 0;
    line-height: 1.5;
    background: linear-gradient(135deg, rgba(90, 159, 104, 0.08) 0%, rgba(74, 111, 165, 0.08) 100%);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.calc-best-for strong {
    color: var(--primary-color);
}

.calc-link {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-smooth);
}

.calc-link:hover {
    color: var(--primary-dark);
    gap: 0.4rem;
}

.calc-link iconify-icon {
    font-size: 0.85rem;
}

/* ==========================================
   SUMMARY BANNER
   ========================================== */
.calc-summary {
    background: linear-gradient(135deg, #1a5080 0%, #2d7db8 40%, #4fa8dc 100%);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 15px rgba(79, 168, 220, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

/* Toggle container */
.calc-summary-toggle {
    flex-shrink: 0;
}

/* Base toggle styles (required for toggle to work) */
.display-mode-toggle {
    display: flex;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef4 100%);
    border-radius: 8px;
    padding: 3px;
    border: 1px solid var(--border-color);
}

.mode-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mode-btn:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.5);
}

.mode-btn.active {
    background: var(--card-bg);
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mode-btn.active[data-mode="miles"] {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

/* Override for toggle inside summary banner */
.calc-summary-toggle .display-mode-toggle {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.calc-summary-toggle .mode-btn {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
}

.calc-summary-toggle .mode-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.calc-summary-toggle .mode-btn.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
}

.calc-summary-toggle .mode-btn.active[data-mode="miles"] {
    background: rgba(255, 255, 255, 0.95);
    color: #1e40af;
}

/* Summary content area */
.calc-summary-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.calc-summary-main {
    display: flex;
    flex-direction: column;
}

.calc-summary-main .calc-summary-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.calc-summary-main .calc-summary-value {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.calc-summary-rate {
    display: flex;
    flex-direction: column;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.calc-summary-rate .calc-summary-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.calc-summary-rate .calc-summary-value {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Summary states */
.calc-summary-value.minimum-not-met {
    color: #fca5a5;
    text-decoration: line-through;
}

.calc-summary-value.is-capped {
    color: #fde68a;
}

/* ==========================================
   WARNINGS
   ========================================== */
.calc-warnings {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.calc-warnings-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.35rem;
}

.calc-warnings-header iconify-icon {
    font-size: 1rem;
}

.calc-warnings ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #78350f;
}

.calc-warnings li {
    margin-bottom: 0.15rem;
}

.calc-warnings li:last-child {
    margin-bottom: 0;
}

/* ==========================================
   CATEGORY ROWS
   ========================================== */
.calc-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-row {
    position: relative; /* For absolute positioned badge */
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    transition: var(--transition-smooth);
}

.calc-row:hover {
    border-color: var(--primary-light);
    box-shadow: 0 2px 8px rgba(74, 111, 165, 0.08);
}

.calc-row.is-bonus-selected {
    border-color: var(--success-color);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.calc-row.is-capped {
    border-color: var(--warning-color);
}

/* Main Row - Horizontal Layout */
.calc-row-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Icon */
.calc-row-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calc-row-icon iconify-icon {
    font-size: 28px;
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.15));
}

/* Category Info */
.calc-row-info {
    display: flex;
    flex-direction: column;
    min-width: 140px;
    flex: 1;
}

.calc-row-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary-color);
    line-height: 1.2;
}

.calc-row-help {
    font-size: 0.65rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Input */
.calc-row-input {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 4px !important;
    padding: 0.5rem 0.65rem;
    min-width: 130px;
    transition: var(--transition-smooth);
    overflow: visible;
}

.calc-row-input:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.1);
}

.calc-input-currency {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 0.4rem;
    flex-shrink: 0;
}

.calc-row-input input.calc-input,
.calc-row-input input.calc-input[type="text"],
input.calc-input,
input.calc-input[type="text"] {
    border: none !important;
    background: transparent !important;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0 !important;
    width: 90px;
    min-width: 0;
    box-shadow: none !important;
    outline: none !important;
    line-height: 1;
    border-radius: 0 !important;
}

.calc-row-input input.calc-input:focus,
input.calc-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Hidden slider - for programmatic sync only */
.calc-slider {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Optional visible slider on row expansion */
.calc-row.expanded .calc-slider-visible {
    display: block;
}

.calc-slider-visible {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--border-color) 0%, #d0dae4 100%);
    outline: none;
}

.calc-slider-visible::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(74, 111, 165, 0.4);
}

.calc-slider-visible::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(74, 111, 165, 0.4);
}

/* Result Area */
.calc-row-result {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 140px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.calc-rate {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0;
    border-radius: 5px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    width: 50px;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.calc-rate.rate-high {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border-color: #86efac;
}

.calc-rate.rate-medium {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    color: #f57f17;
    border-color: #ffcc02;
}

.calc-rate.rate-low {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: var(--text-light);
    border-color: #bdbdbd;
}

.calc-rate.rate-capped {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-color: #fcd34d;
}

/* 5X Bonus Badge - positioned as overlay like top-pick */
.calc-bonus-badge {
    position: absolute;
    top: -8px;
    right: 50px; /* Offset from info toggle button */
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--success-color) 0%, #4a8a55 100%);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.calc-earn {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--success-color);
    white-space: nowrap;
    min-width: 70px;
    text-align: right;
}

/* Info Toggle Button */
.calc-row-toggle {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.6;
}

.calc-row-toggle:hover {
    color: var(--primary-color);
    background: rgba(74, 111, 165, 0.08);
    opacity: 1;
}

/* ==========================================
   CAP BAR
   ========================================== */
.calc-row-cap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    padding-top: 0.4rem;
    border-top: 1px dashed var(--border-color);
}

.calc-cap-bar {
    flex: 1;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.calc-cap-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
}

.calc-cap-fill.capped {
    background: var(--warning-color);
}

.calc-cap-text {
    font-size: 0.6rem;
    color: var(--text-light);
    white-space: nowrap;
}

.calc-cap-warning {
    font-size: 0.55rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--warning-color);
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    text-transform: uppercase;
}

/* ==========================================
   SPILLOVER
   ========================================== */
.calc-row-spillover {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    padding: 0.35rem 0.5rem;
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border-radius: 5px;
    border: 1px solid #fde047;
    font-size: 0.7rem;
    color: #854d0e;
}

.calc-row-spillover iconify-icon {
    font-size: 0.85rem;
    color: var(--warning-color);
}

/* ==========================================
   DETAILS PANEL
   ========================================== */
.calc-row-details {
    margin-top: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 6px 6px 0;
    font-size: 0.75rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================
   ALERTS (Keep existing styles)
   ========================================== */
.alert {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert h4 {
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.alert ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.8rem;
}

.alert-error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* ==========================================
   TRUST BANNER
   ========================================== */
.calc-trust-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border: 1px solid #cce0eb;
    border-radius: 10px;
    flex-wrap: wrap;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 200px;
}

.trust-content > iconify-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.trust-verified {
    font-size: 0.8rem;
    color: var(--text-color);
}

.trust-verified strong {
    color: var(--primary-color);
}

.trust-disclaimer {
    font-size: 0.7rem;
    color: var(--text-light);
}

.trust-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.75rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.trust-link:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.trust-link iconify-icon {
    font-size: 0.85rem;
}

/* ==========================================
   RESPONSIVE - Tablet
   ========================================== */
@media (max-width: 768px) {
    .calc-container {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .calc-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .calc-card-image {
        width: 80px;
    }
    
    .calc-card-name {
        font-size: 1.15rem;
    }
    
    .calc-summary {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.75rem 1rem;
    }
    
    .calc-summary-toggle {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .calc-summary-toggle .display-mode-toggle {
        width: auto !important;
        max-width: fit-content;
        flex: 0 0 auto;
    }
    
    .calc-summary-toggle .mode-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .calc-summary-content {
        width: 100%;
        justify-content: center;
    }
    
    .calc-summary-main {
        align-items: center;
    }
    
    .calc-summary-rate {
        border-left: none;
        padding-left: 0;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        align-items: center;
    }
    
    .calc-row-main {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .calc-row-info {
        flex: 1 1 calc(100% - 50px);
        min-width: 0;
    }
    
    .calc-row-input {
        flex: 1;
        min-width: 100px;
    }
    
    .calc-row-result {
        min-width: auto;
        flex: 0 0 auto;
    }
    
    .calc-row-toggle {
        position: absolute;
        right: 0.5rem;
        top: 0.5rem;
    }
    
    .calc-row {
        position: relative;
    }
    
    .calc-trust-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .trust-content {
        justify-content: center;
    }
    
    .trust-text {
        align-items: center;
    }
    
    .trust-link {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   RESPONSIVE - Mobile
   ========================================== */
@media (max-width: 480px) {
    .calc-header-info {
        text-align: center;
    }
    
    .calc-summary-main .calc-summary-value {
        font-size: 1.25rem;
    }
    
    .calc-summary-secondary {
        gap: 1rem;
    }
    
    .calc-row-main {
        gap: 0.4rem;
    }
    
    .calc-row-icon {
        width: 30px;
        height: 30px;
    }
    
    .calc-row-icon iconify-icon {
        font-size: 24px;
    }
    
    .calc-row-name {
        font-size: 0.8rem;
    }
    
    .calc-row-help {
        font-size: 0.6rem;
    }
    
    .calc-input {
        font-size: 0.85rem;
        width: 70px;
    }
    
    .calc-earn {
        font-size: 0.85rem;
    }
    
    .calc-rate {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calc-row {
    animation: fadeInUp 0.3s ease-out;
    animation-fill-mode: both;
}

.calc-row:nth-child(1) { animation-delay: 0.05s; }
.calc-row:nth-child(2) { animation-delay: 0.1s; }
.calc-row:nth-child(3) { animation-delay: 0.15s; }
.calc-row:nth-child(4) { animation-delay: 0.2s; }
.calc-row:nth-child(5) { animation-delay: 0.25s; }
.calc-row:nth-child(6) { animation-delay: 0.3s; }
.calc-row:nth-child(7) { animation-delay: 0.35s; }
.calc-row:nth-child(8) { animation-delay: 0.4s; }

/* ==========================================
   HOVER & FOCUS STATES
   ========================================== */
.calc-row:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(74, 111, 165, 0.12);
}

.calc-earn {
    transition: var(--transition-smooth);
}

.calc-row:hover .calc-earn,
.calc-row:focus-within .calc-earn {
    transform: scale(1.02);
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .calc-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .calc-summary {
        background: #f0f0f0 !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .calc-row-toggle {
        display: none;
    }
}

/* ==========================================
   CARD DETAILS SECTION (SEO Content)
   ========================================== */
.card-details-section {
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--card-bg);
    overflow: hidden;
}

.card-details-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.05) 0%, rgba(90, 159, 104, 0.05) 100%);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.card-details-toggle:hover {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1) 0%, rgba(90, 159, 104, 0.1) 100%);
}

.card-details-toggle h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.card-details-toggle .toggle-icon {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.card-details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.25rem;
}

.card-details-content.expanded {
    max-height: 2000px; /* Large enough for any content */
    padding: 1rem 1.25rem 1.5rem;
}

.card-overview {
    margin-bottom: 1.25rem;
}

.card-overview p {
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
}

/* Pros and Cons Grid */
.card-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.card-pros,
.card-cons {
    padding: 1rem;
    border-radius: 10px;
}

.card-pros {
    background: rgba(90, 159, 104, 0.08);
    border: 1px solid rgba(90, 159, 104, 0.2);
}

.card-cons {
    background: rgba(212, 164, 76, 0.08);
    border: 1px solid rgba(212, 164, 76, 0.2);
}

.card-pros h3,
.card-cons h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-pros h3 {
    color: #3d7a47;
}

.card-cons h3 {
    color: #b8860b;
}

.card-pros ul,
.card-cons ul {
    margin: 0;
    padding-left: 1.25rem;
}

.card-pros li,
.card-cons li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.card-pros li:last-child,
.card-cons li:last-child {
    margin-bottom: 0;
}

/* Card Meta Info */
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.card-meta-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
}

.card-meta-item strong {
    color: var(--text-primary);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .card-pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-details-toggle h2 {
        font-size: 1rem;
    }
    
    .card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

