/* ── EcomNinja Hosting — Amber Palette ───────────────────────────── */

/* ── Rating bar ──────────────────────────────────────────────────── */
.hosting-rating-bar {
    height: 8px;
    border-radius: 4px;
    background: #FEF3C7; /* amber-100 */
    overflow: hidden;
}
.hosting-rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #F59E0B, #FBBF24); /* amber */
    border-radius: 4px;
    transition: width .6s ease;
}

/* ── Speed badge ──────────────────────────────────────────────────── */
.hosting-speed-badge {
    background: #FEF3C7;
    color: #78350F;
    padding: .2rem .6rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ── Features table ───────────────────────────────────────────────── */
.hosting-features-table td {
    padding: .5rem .75rem;
    font-size: .875rem;
    border-bottom: 1px solid #FEF3C7;
}
.hosting-features-table tr:nth-child(even) td { background: #FFFBEB; }
.hosting-features-table tr:nth-child(odd) td  { background: #fff; }
.hosting-features-table .feat-yes { color: #059669; font-weight: 600; }
.hosting-features-table .feat-no  { color: #DC2626; }

/* ── Plans table ─────────────────────────────────────────────────── */
.hosting-plans-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.hosting-plans-table th {
    background: #FEF3C7;
    color: #78350F;
    padding: .75rem 1rem;
    font-size: .875rem;
    text-align: left;
}
.hosting-plans-table td {
    padding: .75rem 1rem;
    border-bottom: 1px solid #FEF3C7;
    font-size: .875rem;
}
.hosting-plans-table tr.plan-highlighted td {
    background: #FFFBEB;
    font-weight: 600;
}

/* ── FAQ accordion ───────────────────────────────────────────────── */
.hosting-faq-item summary {
    cursor: pointer;
    padding: 1rem 0;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hosting-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #D97706; /* amber-600 */
}
.hosting-faq-item[open] summary::after { content: '−'; }
.hosting-faq-item p {
    padding: 0 0 1rem;
    color: #4B5563;
    line-height: 1.7;
    font-size: .875rem;
}

/* ── Review form ────────────────────────────────────────────────── */
.hosting-review-form fieldset {
    border: 1px solid #FDE68A; /* amber-200 */
    border-radius: .75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.hosting-review-form legend {
    padding: 0 .5rem;
    font-weight: 700;
    color: #D97706; /* amber-600 */
}
