/* ── Shopee Fees Calculator ───────────────────────────────────────────── */
:root {
    --shopee-orange: #EE4D2D;
    --shopee-orange-light: #fff4f1;
    --ownstore-green: #16a34a;
    --ownstore-green-light: #f0fdf4;
}

/* Hero */
.shopee-calc-hero h1 {
    font-size: 2rem;
    font-weight: 700;
}
.shopee-calc-hero .lead {
    color: #6c757d;
}

/* Calculator cards */
.calc-card {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.results-card {
    background: #fafbfc;
}

/* Fee progress bar */
.shopee-progress {
    border-radius: 8px;
    overflow: hidden;
    background: #e9ecef;
}
.shopee-progress .progress-bar {
    transition: width 0.3s ease;
}
.fee-commission  { background-color: var(--shopee-orange); }
.fee-cashback    { background-color: #FFA500; }
.fee-transaction { background-color: #FF8C69; }
.fee-netpayout   { background-color: var(--ownstore-green); }

/* Price summary */
.price-summary {
    background: #f0f4f8;
    border-radius: 8px;
    padding: 12px;
}

/* Legend */
.fee-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.78rem;
}
.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #555;
}
.legend-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

/* Fee table */
.fee-table td {
    vertical-align: middle;
}
.fee-table .badge {
    font-weight: 500;
    font-size: 0.72rem;
}
.fee-table tfoot tr:first-child td {
    border-top: 2px solid #dc3545;
}
.fee-table tfoot tr:last-child td {
    border-top: 2px solid var(--ownstore-green);
}

/* ── Comparison section ──────────────────────────────────────────────── */
.shopee-comparison-section {
    background: #f8f9fa;
}

.comparison-card {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: visible;
}
.shopee-card {
    border-left: 4px solid var(--shopee-orange);
}
.ownstore-card {
    border-left: 4px solid var(--ownstore-green);
}
.recommended-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--ownstore-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 20px;
}

.display-fee {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}
.display-fee-lg {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Savings highlight */
.savings-box {
    display: inline-block;
    background: var(--ownstore-green-light);
    border: 2px solid var(--ownstore-green);
    border-radius: 12px;
    padding: 20px 40px;
}
.savings-amount {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.savings-yearly {
    font-size: 1rem;
    margin-top: 4px;
}

/* ── CTA section ─────────────────────────────────────────────────────── */
.shopee-cta-section {
    background: linear-gradient(135deg, #7d1979 0%, #a855f7 100%);
    color: #fff;
}
.shopee-cta-section h2 {
    color: #fff;
}
.shopee-cta-section .lead {
    color: rgba(255,255,255,.85);
}
.shopee-cta-section .text-muted {
    color: rgba(255,255,255,.7) !important;
}
.shopee-cta-section .btn-success {
    background: #fff;
    color: #7d1979;
    border: none;
    font-weight: 600;
}
.shopee-cta-section .btn-success:hover {
    background: #f0f0f0;
    color: #7d1979;
}

/* ── FAQ section ─────────────────────────────────────────────────────── */
.shopee-faq-section .accordion-item {
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #e5e7eb;
}
.shopee-faq-section .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
}
.shopee-faq-section .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #333;
    box-shadow: none;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .shopee-calc-hero h1 {
        font-size: 1.5rem;
    }
    .display-fee {
        font-size: 1.4rem;
    }
    .display-fee-lg {
        font-size: 1.75rem;
    }
    .savings-amount {
        font-size: 1.75rem;
    }
    .savings-box {
        padding: 16px 24px;
    }
}
