/* ============================================================
   EXOHOST ORDER FORM
   PRODUCT SELECTION EXPERIENCE
   ============================================================ */


#order-exohost-cart {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    color: #062c25;
}


#order-exohost-cart *,
#order-exohost-cart *::before,
#order-exohost-cart *::after {
    box-sizing: border-box;
}


.exo-order-page {
    width: 100%;
}


.exo-order-container {
    width: 100%;
}


/* ============================================================
   HEADER
   ============================================================ */

.exo-order-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 32px;

    margin-bottom: 28px;
}


.exo-order-header-content {
    min-width: 0;
}


.exo-eyebrow,
.exo-category-label,
.exo-plan-label,
.exo-price-label,
.exo-plan-features-label {
    display: block;

    margin-bottom: 7px;

    color: #c28120;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.3;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.exo-order-title {
    margin: 0;

    color: #042f27;

    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;

    line-height: 1.15;
}


.exo-order-subtitle {
    max-width: 720px;

    margin: 9px 0 0;

    color: #667085;

    font-size: 13px;

    line-height: 1.65;
}


.exo-order-header-action {
    flex-shrink: 0;
}


.exo-secondary-button {
    min-height: 44px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 1px solid #d7e0e7;
    border-radius: 8px;

    background: #ffffff;

    color: #004d26 !important;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}


.exo-secondary-button:hover {
    border-color: #b8c9c2;

    background: #f8fbfa;

    transform: translateY(-1px);
}


/* ============================================================
   ALERTS
   ============================================================ */

.exo-order-alert {
    width: 100%;

    margin-bottom: 24px;

    padding: 16px 18px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    border: 1px solid #dbe4ea;
    border-radius: 10px;

    font-size: 12px;

    line-height: 1.6;
}


.exo-order-alert-danger {
    border-color: #fecaca;

    background: #fff7f7;

    color: #991b1b;
}


.exo-order-alert-info {
    background: #f8fafc;

    color: #475467;
}


.exo-order-alert-icon {
    flex-shrink: 0;
}


/* ============================================================
   CATEGORY SUMMARY
   ============================================================ */

.exo-category-summary {
    width: 100%;

    margin-bottom: 26px;

    padding: 20px 22px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;

    border: 1px solid #d9e2e8;
    border-radius: 10px;

    background: #ffffff;
}


.exo-category-summary-left {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 16px;
}


.exo-category-icon,
.exo-plan-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    background: #edf8f3;

    color: #006b42;

    font-size: 17px;
}


.exo-category-copy h2 {
    margin: 0;

    color: #043b30;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.3;
}


.exo-category-copy p {
    margin: 4px 0 0;

    color: #667085;

    font-size: 11px;

    line-height: 1.55;
}


.exo-category-count {
    flex-shrink: 0;

    padding: 6px 11px;

    border-radius: 999px;

    background: #f3f5f7;

    color: #667085;

    font-size: 10px;
    font-weight: 600;
}


/* ============================================================
   PRODUCT GRID
   ============================================================ */

.exo-plan-section {
    width: 100%;
}


.exo-plan-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(min(100%, 300px), 1fr)
        );

    gap: 20px;

    align-items: stretch;
}


.exo-plan-grid-single {
    grid-template-columns:
        minmax(0, 560px);
}


/* ============================================================
   PRODUCT CARD
   ============================================================ */

.exo-plan-card {
    position: relative;

    min-width: 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid #d8e2e8;

    border-radius: 12px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


.exo-plan-card:hover {
    border-color: #b9ccc4;

    box-shadow:
        0 12px 30px rgba(16, 24, 40, .05);

    transform: translateY(-2px);
}


/* ============================================================
   FEATURED PLAN
   ============================================================ */

.exo-plan-card--featured {
    border: 2px solid #006b42;

    box-shadow:
        0 14px 34px rgba(0, 77, 38, .08);
}


.exo-plan-card--featured:hover {
    border-color: #004d26;

    box-shadow:
        0 18px 38px rgba(0, 77, 38, .12);
}


.exo-featured-banner {
    min-height: 34px;

    padding: 8px 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    background: #004d26;

    color: #ffffff;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.exo-featured-banner i {
    color: #e2b34f;
}


/* ============================================================
   PLAN HEADER
   ============================================================ */

.exo-plan-header {
    min-height: 105px;

    padding: 22px;

    display: flex;

    align-items: flex-start;

    gap: 14px;

    border-bottom: 1px solid #edf0f2;
}


.exo-plan-heading {
    min-width: 0;

    flex: 1;
}


.exo-plan-heading h2 {
    margin: 0;

    color: #042f27;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.3;
}


.exo-plan-tagline {
    margin: 5px 0 0;

    color: #667085;

    font-size: 11px;

    line-height: 1.5;
}


.exo-stock-indicator {
    display: flex;

    align-items: center;

    gap: 6px;

    flex-shrink: 0;

    color: #667085;

    font-size: 9px;
}


.exo-stock-dot {
    width: 6px;
    height: 6px;

    display: inline-block;

    border-radius: 50%;

    background: #059669;
}


.exo-stock-dot--unavailable {
    background: #dc2626;
}


/* ============================================================
   PLAN BODY
   ============================================================ */

.exo-plan-body {
    min-height: 0;

    display: flex;

    flex: 1;

    flex-direction: column;
}


.exo-plan-information {
    padding: 22px;

    flex: 1;
}


.exo-plan-description {
    margin-bottom: 20px;

    color: #475467;

    font-size: 11px;

    line-height: 1.7;
}


.exo-plan-description p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   FEATURES
   ============================================================ */

.exo-plan-features {
    margin-top: 20px;
}


.exo-plan-features-label {
    margin-bottom: 12px;
}


.exo-plan-features ul {
    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    gap: 10px;

    list-style: none;
}


.exo-plan-features li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #344054;

    font-size: 10.5px;

    line-height: 1.55;
}


.exo-feature-check {
    width: 18px;
    height: 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf8f3;

    color: #007a4d;

    font-size: 8px;
}


.exo-feature-text strong {
    color: #042f27;

    font-weight: 600;
}


/* ============================================================
   PURCHASE AREA
   ============================================================ */

.exo-plan-purchase {
    padding: 20px 22px 22px;

    border-top: 1px solid #edf0f2;

    background: #fbfcfd;
}


.exo-plan-pricing {
    margin-bottom: 18px;
}


.exo-price-label {
    margin-bottom: 8px;

    color: #8a94a6;
}


.exo-price-context {
    display: block;

    margin-bottom: 4px;

    color: #667085;

    font-size: 9px;
}


.exo-price-main {
    color: #032d25;

    font-size: 24px;
    font-weight: 700;

    line-height: 1.2;

    word-break: break-word;
}


.exo-price-cycle,
.exo-setup-fee {
    display: block;

    margin-top: 5px;

    color: #667085;

    font-size: 9.5px;

    line-height: 1.45;
}


/* ============================================================
   PLAN BUTTON
   ============================================================ */

.exo-plan-action {
    width: 100%;
}


.exo-plan-button {
    width: 100%;

    min-height: 44px;

    padding: 0 15px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    border: 1px solid #005b38;
    border-radius: 7px;

    background: #ffffff;

    color: #005b38 !important;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none !important;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.exo-plan-button:hover,
.exo-plan-button--featured {
    border-color: #005b38;

    background: #005b38;

    color: #ffffff !important;
}


.exo-plan-button--featured:hover {
    background: #00462b;

    border-color: #00462b;
}


.exo-plan-button--disabled {
    cursor: not-allowed;

    border-color: #e4e7ec;

    background: #f2f4f7;

    color: #98a2b3 !important;
}


.exo-plan-action-note {
    display: block;

    margin-top: 9px;

    color: #98a2b3;

    font-size: 8.5px;

    text-align: center;
}


/* ============================================================
   GROUP INCLUSIONS
   ============================================================ */

.exo-group-inclusions {
    margin-top: 28px;

    padding: 24px;

    border: 1px solid #d8e2e8;
    border-radius: 11px;

    background: #ffffff;
}


.exo-group-inclusions-header h2 {
    margin: 0;

    color: #042f27;

    font-size: 18px;
    font-weight: 700;
}


.exo-group-inclusions-header p {
    margin: 5px 0 0;

    color: #667085;

    font-size: 10.5px;
}


.exo-group-feature-grid {
    margin-top: 20px;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px, 1fr)
        );

    gap: 12px;
}


.exo-group-feature {
    padding: 12px 14px;

    display: flex;

    align-items: center;

    gap: 9px;

    border: 1px solid #edf0f2;
    border-radius: 7px;

    color: #344054;

    font-size: 10px;
}


/* ============================================================
   SUPPORT
   ============================================================ */

.exo-plan-help {
    margin-top: 24px;

    padding: 18px 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;

    border: 1px solid #d8e2e8;
    border-radius: 10px;

    background: #ffffff;
}


.exo-plan-help-left {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 12px;
}


.exo-help-status {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #0aa66d;

    box-shadow:
        0 0 0 4px rgba(10, 166, 109, .08);
}


.exo-plan-help strong {
    display: block;

    color: #042f27;

    font-size: 10px;
    font-weight: 700;
}


.exo-plan-help p {
    margin: 3px 0 0;

    color: #667085;

    font-size: 9px;

    line-height: 1.5;
}


.exo-help-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    color: #005b38 !important;

    font-size: 9.5px;
    font-weight: 700;

    text-decoration: none !important;
}


/* ============================================================
   EMPTY STATE
   ============================================================ */

.exo-empty-products {
    grid-column: 1 / -1;

    padding: 60px 30px;

    border: 1px solid #d8e2e8;
    border-radius: 12px;

    background: #ffffff;

    text-align: center;
}


.exo-empty-products-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #edf8f3;

    color: #006b42;

    font-size: 18px;
}


.exo-empty-products h2 {
    margin: 0;

    color: #042f27;

    font-size: 18px;
    font-weight: 700;
}


.exo-empty-products p {
    max-width: 520px;

    margin: 7px auto 20px;

    color: #667085;

    font-size: 11px;

    line-height: 1.6;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991.98px) {

    .exo-order-header {
        gap: 20px;
    }


    .exo-plan-grid {
        grid-template-columns:
            repeat(
                auto-fit,
                minmax(min(100%, 280px), 1fr)
            );
    }

}


@media (max-width: 767.98px) {

    .exo-order-header {
        flex-direction: column;
    }


    .exo-order-header-action {
        width: 100%;
    }


    .exo-secondary-button {
        width: 100%;
    }


    .exo-category-summary {
        align-items: flex-start;
    }


    .exo-plan-grid {
        grid-template-columns: 1fr;
    }


    .exo-plan-card--featured {
        order: -1;
    }


    .exo-plan-help {
        align-items: flex-start;

        flex-direction: column;
    }


    .exo-help-link {
        padding-left: 19px;
    }

}


@media (max-width: 575.98px) {

    .exo-order-title {
        font-size: 28px;
    }


    .exo-category-summary {
        padding: 17px;

        flex-direction: column;
    }


    .exo-category-icon,
    .exo-plan-icon {
        width: 42px;
        height: 42px;
    }


    .exo-plan-header {
        padding: 18px;
    }


    .exo-plan-information {
        padding: 18px;
    }


    .exo-plan-purchase {
        padding: 18px;
    }


    .exo-group-inclusions {
        padding: 18px;
    }


    .exo-group-feature-grid {
        grid-template-columns: 1fr;
    }

}
