body.page .site-content-contain > .site-content {
    padding: 0;
    max-width: 100%;
}

body.page #page .site-content article.page {
    padding: 0;
}

body.page .site-content article.page .wp-glob-checkout-page-main {
    padding: 5.34em 6.67em;
}

@media (min-width: 922px){
    body.page .site-content,
    body.page .fox-lms-container {
        max-width: 1400px;
        /*padding: 0;*/
    }

    body.page .site-content article.page .wp-glob-checkout-page-main {
        margin: 0;
        padding: 5.34em 6.67em;
    }
}

@media (max-width: 921px) {
    body.page .site-content article.page .wp-glob-checkout-page-main {
        padding: 1.5em 2.14em;
    }

    body.page #primary {
        margin: 2em 0;
    }
}

/* ============================================================
   WP Glob Checkout Page — Styles
   Prefix: wp-glob-checkout-page-
   No CSS variables (vanilla values only), no display:grid
   ============================================================ */

/* ----- Layout ----- */
body.page #page .wp-glob-checkout-page-main {
    min-height: 100vh;
    background-color: #f0eeff;
    /*padding: 48px 16px;*/
    box-sizing: border-box;
}

body.page #page .wp-glob-checkout-page-container {
    max-width: 1152px;
    margin: 0 auto;
    width: 100%;
}

body.page #page .wp-glob-checkout-page-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

/* Form column takes remaining space; sidebar is fixed width */
body.page #page .wp-glob-checkout-page-form-col {
    flex: 1 1 0%;
    min-width: 0;
}

body.page #page .wp-glob-checkout-page-sidebar {
    flex: 0 0 360px;
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
}

/* ----- Form Card ----- */
body.page #page .wp-glob-checkout-page-form-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(104, 48, 232, 0.10);
    box-sizing: border-box;
}

body.page #page .wp-glob-checkout-page-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1060;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

body.page #page .wp-glob-checkout-page-subtitle {
    font-size: 13px;
    color: #9a92b0;
    margin: 0 0 32px 0;
}

/* ----- Fields ----- */
body.page #page .wp-glob-checkout-page-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.page #page .wp-glob-checkout-page-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.page #page .wp-glob-checkout-page-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(26, 16, 96, 0.75);
}

body.page #page .wp-glob-checkout-page-required {
    color: #6830e8;
}

body.page #page .wp-glob-checkout-page-input {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e2ddf5;
    background-color: #ffffff;
    padding: 0 16px;
    font-size: 14px;
    color: #1a1060;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

body.page #page .wp-glob-checkout-page-input::placeholder {
    color: rgba(154, 146, 176, 0.7);
}

body.page #page .wp-glob-checkout-page-input:focus {
    border-color: #6830e8;
    box-shadow: 0 0 0 4px rgba(104, 48, 232, 0.12);
}

/* ----- Payment Buttons ----- */
body.page #page .wp-glob-checkout-page-payment-btns {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.page #page .wp-glob-checkout-page-btn-paypal {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    background-color: #ffc439;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #253b80;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: background-color 0.2s;
}

body.page #page .wp-glob-checkout-page-btn-paypal:hover {
    background-color: #f0b72f;
}

body.page #page .wp-glob-checkout-page-pp-pay {
    color: #253b80;
    font-weight: 700;
    font-style: italic;
}

body.page #page .wp-glob-checkout-page-pp-pal {
    color: #179bd7;
    font-weight: 700;
    font-style: italic;
}

body.page #page .wp-glob-checkout-page-btn-card {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    background-color: #2c2e2f;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

body.page #page .wp-glob-checkout-page-btn-card:hover {
    background-color: #1f2021;
}

body.page #page .wp-glob-checkout-page-card-icon {
    flex-shrink: 0;
    display: block;
}

body.page #page .wp-glob-checkout-page-powered {
    text-align: center;
    font-size: 11px;
    color: #9a92b0;
    margin: 4px 0 0 0;
}

/* ----- Order Summary Card ----- */
body.page #page .wp-glob-checkout-page-summary-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(104, 48, 232, 0.10);
    box-sizing: border-box;
}

body.page #page .wp-glob-checkout-page-summary-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1060;
    margin: 0 0 16px 0;
}

body.page #page .wp-glob-checkout-page-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.page #page .wp-glob-checkout-page-summary-label {
    font-size: 13px;
    color: rgba(26, 16, 96, 0.6);
}

body.page #page .wp-glob-checkout-page-summary-service {
    font-size: 13px;
    font-weight: 500;
    color: #6830e8;
}

body.page #page .wp-glob-checkout-page-summary-divider {
    border: none;
    border-top: 1px solid #e2ddf5;
    margin: 12px 0;
}

body.page #page .wp-glob-checkout-page-summary-price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1060;
}

/* ----- Contact Button ----- */
body.page #page .wp-glob-checkout-page-contact-btn {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e2ddf5;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #1a1060;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

body.page #page .wp-glob-checkout-page-contact-btn:hover {
    background-color: rgba(104, 48, 232, 0.06);
}

body.page #page .wp-glob-checkout-page-contact-icon {
    color: #6830e8;
    flex-shrink: 0;
}

/* ----- Reviews ----- */
body.page #page .wp-glob-checkout-page-reviews {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

body.page #page .wp-glob-checkout-page-review-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(104, 48, 232, 0.08);
    box-sizing: border-box;
}

body.page #page .wp-glob-checkout-page-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

body.page #page .wp-glob-checkout-page-stars svg {
    display: block;
    flex-shrink: 0;
}

body.page #page .wp-glob-checkout-page-review-text {
    font-size: 13px;
    color: rgba(26, 16, 96, 0.75);
    line-height: 1.6;
    margin: 0 0 14px 0;
}

body.page #page .wp-glob-checkout-page-reviewer {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.page #page .wp-glob-checkout-page-avatar {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-color: #ede9fb;
    color: #6830e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

body.page #page .wp-glob-checkout-page-reviewer-name {
    font-size: 13px;
    font-weight: 500;
    color: #1a1060;
}

body.page #page .wp-glob-checkout-page-trustpilot-link {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #6830e8;
    text-decoration: none;
    padding-top: 4px;
}

body.page #page .wp-glob-checkout-page-trustpilot-link:hover {
    text-decoration: underline;
}

/* ============================================================
   Responsive
   ============================================================ */

/* Tablet: stack sidebar below form */
@media (max-width: 1024px) {
    body.page #page .wp-glob-checkout-page-layout {
        flex-direction: column;
    }

    body.page #page .wp-glob-checkout-page-sidebar {
        flex: none;
        width: 100%;
    }

    body.page #page .wp-glob-checkout-page-form-col {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 640px) {
    body.page #page .wp-glob-checkout-page-main {
        padding: 50px 12px;
    }

    body.page #page .wp-glob-checkout-page-form-card {
        padding: 24px 20px;
    }

    body.page #page .wp-glob-checkout-page-title {
        font-size: 28px;
    }

    body.page #page .wp-glob-checkout-page-layout {
        gap: 20px;
    }

    body.page #page .wp-glob-checkout-page-sidebar {
        gap: 12px;
    }
}


body.page #page .wpb-empty-input-error-message {
    color: red;
    font-size: 14px;
    font-style: italic;
}

body.page #page #wpg-product-pay-paypal-button-container {
    width: 100%;
    min-height: 170px;
}











