/* Hosting page: reuse VPS plan card styling */
.vps-plan-card{
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 34px;
    background: #ffffff;
    overflow: hidden;
}
.hosting-page .vps-plan-card__badge--primary{
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 1.05rem;
}
.vps-plan-card__body{
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.vps-plan-card__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 90px;
}
.vps-plan-card__title{
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #111827;
    font-size: clamp(1.5rem, 2vw, 2rem);
}
.vps-plan-card__badges{
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 48%;
}
.vps-plan-card__badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(13,110,253,.12);
    color: rgba(13,110,253,.95);
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    font-size: .98rem;
}
.vps-plan-card__badge--primary{
    background: rgba(13,110,253,.95);
    color: #ffffff;
}
.vps-plan-card__subtitle{
    margin-top: 10px;
    color: rgba(17,24,39,.62);
    font-size: 1.05rem;
    line-height: 1.5;
}
.vps-plan-card__divider{
    height: 1px;
    background: rgba(15, 23, 42, .10);
    margin: 18px 0;
}
.vps-plan-card__features{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.vps-plan-card__features li{
    color: rgba(17,24,39,.86);
    font-size: 1.05rem;
}

/* Mobile: collapsible features */
.hosting-feature--extra{ display: none; }
.hosting-page.hosting-features-expanded .hosting-feature--extra{ display: list-item; }

.hosting-features-toggle-wrap{
    border-top: 1px solid rgba(15, 23, 42, .10);
    padding-top: 12px;
}
.hosting-features-toggle{
    cursor: pointer;
    user-select: none;
    color: rgba(13,110,253,.95);
    font-weight: 800;
    letter-spacing: -0.01em;
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.hosting-features-toggle__label--open{ display: none; }
.hosting-page.hosting-features-expanded .hosting-features-toggle__label--closed{ display: none; }
.hosting-page.hosting-features-expanded .hosting-features-toggle__label--open{ display: inline; }
.hosting-features-toggle::after{
    content: "▾";
    color: rgba(17,24,39,.55);
    font-weight: 700;
}
.hosting-page.hosting-features-expanded .hosting-features-toggle::after{ content: "▴"; }
.vps-plan-card__bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.vps-plan-card__btn{
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 800;
    letter-spacing: -0.01em;
    min-width: 150px;
}
.vps-plan-card__price{
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex: 1 1 auto;
    white-space: nowrap;
    min-width: 200px;
}
.vps-plan-card__from{
    color: rgba(17,24,39,.62);
    font-size: 1.05rem;
}
.vps-plan-card__price-val{
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    color: #111827;
}
.vps-plan-card__per{
    color: rgba(17,24,39,.70);
    font-size: 1.15rem;
}

@media (max-width: 991.98px){
    .vps-plan-card__badges{ max-width: 52%; }
}
@media (max-width: 575.98px){
    .vps-plan-card__body{ padding: 22px; }
    .vps-plan-card__badges{ max-width: 100%; justify-content: flex-start; }
    .vps-plan-card__bottom{ flex-direction: column; align-items: stretch; }
    .vps-plan-card__btn{ width: 100%; min-width: 0; }
    .vps-plan-card__price{ justify-content: flex-start; }
}

/* Hosting order page: keep summary rows split even if VPS CSS is not loaded */
.hosting-order-page .summary-breakdown{
    display: grid;
    gap: 6px;
}
.hosting-order-page .summary-breakdown__row{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}
.hosting-order-page .summary-breakdown__row .label{
    color: rgba(17, 24, 39, .60);
}
.hosting-order-page .summary-breakdown__row .value{
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}
