/* General form styling */
.checkout {
    margin-bottom: 30px;
}

/* Progress Bar */
.checkout-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 10px 0;
    position: relative;
    font-family: Arial, sans-serif;
}

.checkout-progress-bar .step {
    text-align: center;
    flex: 1;
    position: relative;
    cursor: pointer;
}

.checkout-progress-bar .step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: -1;
    transform: translateY(-50%);
}

.checkout-progress-bar .step:not(:first-child)::after {
    content: '➔';
    font-size: 24px;
    color: #ddd;
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

.checkout-progress-bar .step:first-child::before {
    width: 50%;
    left: 50%;
}

.checkout-progress-bar .step:last-child::before {
    width: 50%;
    left: 0;
}

.checkout-progress-bar .step span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #EE312F;
    border-radius: 50%;
    margin: 0 auto;
    font-weight: bold;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.checkout-progress-bar .step.active span,
.checkout-progress-bar .step.completed span {
    background-color: #003478;
    color: #fff;
}

.checkout-progress-bar .step.completed+.step::after {
    color: #003478;
}

.checkout-progress-bar .step p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.checkout-progress-bar .step.active p,
.checkout-progress-bar .step.completed p {
    color: #003478;
}

/* Styling for Next and Back Buttons */
button.checkout-button {
    background-color: #0E4B84;
    color: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

button.checkout-button:hover {
    background-color: #0056b3;
}

button.checkout-button.back-button {
    background-color: #6c757d;
}

button.checkout-button.back-button:hover {
    background-color: #5a6268;
}

/* Styling for the button container */
.button-container {
    text-align: right;
    margin-top: 20px;
}

.button-container .back-button {
    float: left;
}

.next-button {
    background: #0E4B84 !important;
    color: white !important;
}

.back-button {
    background: #EE312F !important;
    color: white !important;
}

/* Hide Steps Initially */
.three-step-checkout-step {
    display: none;
    background: #fff;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#three-step-checkout-step-one {
    display: block;
    /* Show the first step by default */
}

/* Additional UI Enhancements */
.woocommerce-checkout-review-order,
.woocommerce-checkout-payment {
    margin-top: 20px;
}

.plan-option,
.product-addon {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.plan-option:hover,
.product-addon:hover {
    border-color: #007bff;
}

.plan-option h3,
.product-addon h3 {
    margin-bottom: 10px;
}

.plan-option button,
.product-addon button {
    margin-top: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.plan-option button:hover,
.product-addon button:hover {
    background-color: #218838;
}

/* Red border for validation errors */
input.required-error {
    border: 2px solid red;
}

.woocommerce-input-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-addon {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    transition: border-color 0.3s ease;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
}

.product-addon:hover {
    border-color: #007bff;
}

.product-addon .product-image img {
    height: 80px;
    margin: 0;
    width: 80px;
}

.product-addon h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-addon p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.product-addon .add-to-cart-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    margin: 0;
}

.product-addon .add-to-cart-button:hover {
    background-color: #218838;
}

.add-on-products,
.product-plans {
    display: flex;
    flex-wrap: wrap;
}

.product-plans {
    justify-content: space-between;
    padding: 20px 0;
}

.whwmc-product-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    max-height: 380px;
    padding-top: 3em;
    padding-right: 2em;
    padding-bottom: 3em;
    padding-left: 2em;
    text-align: center;
    box-shadow: 0em 1em 1em 0em rgba(74, 74, 74, 0.15);
    flex-basis: calc(33.33% - clamp(0px, 1em, 9999px));
}

.whwmc-product-wrapper .whwmc-product-details {
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    font-size: 1em
}

.whwmc-product-wrapper .whwmc-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.whwmc-product-wrapper .whwmc-product-heading {
    letter-spacing: 0.05em;
    margin-right: calc(0.05em* -1);
    color: rgb(7, 36, 63);
    font-weight: 900;
    line-height: 1.4;
    font-family: "Fira Sans", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.whwmc-product-wrapper .whwmc-product-image {
    margin-top: 0em;
    margin-right: 0.5em;
    margin-bottom: 0.75em;
    margin-left: 0em;
    max-width: 100px;
}

.whwmc-product-wrapper .whwmc-product-short-desc {
    text-align: center;
    font-family: "Merriweather Sans", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0em;
    text-transform: none;
    color: rgb(74, 74, 74);
    margin-top: 0.75em !important;
    max-width: 600px;
}

.whwmc-product-price-and-add-to-cart {
    display: inline-flex;
    flex-flow: column nowrap;
    justify-content: stretch;
    position: relative;
    min-width: 1px;
    text-decoration: none;
    cursor: pointer;
    margin-right: 0%;
    border: 1px solid #EE7130;
    background-color: transparent;
    margin-top: 1.25em;
    margin-bottom: 0em;
    margin-left: 0em;
    font-size: 1em;
}

.whwmc-product-cart.custom-add-to-cart.button:hover,
.whwmc-product-cart.button:hover {
    background-color: rgb(238, 49, 47);
    color: #fff;
}

.whwmc-product-cart.custom-add-to-cart.button,
.whwmc-product-cart.button {
    all: unset;
    overflow: hidden;
    background: transparent;
    position: relative;
    height: 100%;
    border-radius: inherit;
    transform: translate(0);
    padding-top: 1.25em;
    padding-right: 2em;
    padding-bottom: 1.25em;
    padding-left: 2em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #EE7130;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: "Fira Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-right: calc(0.1em* -1);
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-property: border-color, background-color, box-shadow, opacity, filter, transform;
    transition-duration: .3s;
}

.product-description {
    margin-top: 1rem;
}

.product-description ul {
    list-style: none;
    padding-left: 0;
}

.product-description ul li::before {
    font-family: "Font Awesome 6 pro";
    content: "\f2f7";
    margin-right: 10px;
    color: #003478;
}

.product-description ul li {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    font-size: 1rem;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: 0 50%;
    line-height: 24px;
}

.comparision-table table {
    font-size: 1em;
    color: rgb(74, 74, 74) !important;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1.313em;
    border-spacing: 0;
    background-color: transparent
}

.comparision-table table th,
.comparision-table table td {
    padding: .5em .625em;
    line-height: 1.3;
    text-align: left;
    vertical-align: middle;
}

.comparision-wrapper .comparision-table thead {
    border-left: 1px solid rgb(74, 74, 74);
    border-right: 1px solid rgb(74, 74, 74);
    border-top: 1px solid rgb(74, 74, 74);
    background: #0E4B84;
}

.comparision-wrapper .comparision-table thead th {
    color: #FFF;
    font-weight: 700 !important;
    border: none !important;
}

.comparision-wrapper .comparision-table thead tr:last-child th {
    font-size: 0.85em;
    border-top: none;
    padding-top: 0;
    color: #FFF !important;
    font-weight: 400 !important;
}

.comparision-table table tr.feature-row td {
    height: 65px;
    font-weight: 700;
}

.comparision-table table tr:not(.feature-row) td {
    background: #f9f9f9;
}

.comparision-table table td {
    height: 65px;
    font-weight: 400;
    border: 1px solid rgba(74, 74, 74, 0.25);
    word-break: break-all;
}

.comparision-table table td:first-child {
    width: 40%;
}

.comparision-table table td:not(:first-child) {
    width: 20%;
    border-left: 1px solid rgba(74, 74, 74, 0.25);
}

.comparision-wrapper .comparision-table table td:not(:first-child) {
    width: 60%;
    border-left: 1px solid rgba(74, 74, 74, 0.25);
}

.comparision-table table th {
    color: #0E4B84;
    font-weight: 700 !important;
    border: 1px solid rgba(74, 74, 74, 0.25);
}

.comparision-table table td:not(:first-child) {
    text-align: center !important;
}

.comparision-table table td i.fa-shield-check {
    color: rgb(238, 49, 47);
    font-size: 28px;
    font-weight: 400;
}

.comparision-table table td i {
    font-size: 21px;
    font-weight: 300;
}

.three-step-checkout-step-heading {
    font-size: calc(17px + 6 * ((100vw - 320px) / 680));
    margin: 10px 0;
    font-weight: 800;
    text-transform: uppercase;
    color: rgb(7, 36, 63);
}

.three-step-checkout-step-para {
    font-family: "Merriweather Sans", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0em;
    text-transform: none;
    color: rgb(74, 74, 74)
}

.whwmc-product-price {
    margin: 0;
    font-size: 2rem;
}

.whwmc-product-month {
    margin: 0;
    font-size: 1rem;
}

/* .whwmc-product-cart.custom-add-to-cart.button,
.whwmc-product-cart.button {
    background: #EE312F;
    color: #fff;
} */

.whwmc-plan-discloser-wrapper {
    margin-bottom: 2.5rem;
}

.whwmc-plan-discloser-para {
    margin: 5px auto;
    width: 60%
}

.whwmc-comparision-heading {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgb(7, 36, 63);
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-family: "Fira Sans", sans-serif;
    margin-top: 0em;
    margin-right: 0em;
    margin-bottom: 0.5em;
    margin-left: 0em;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    font-size: 1em;
}

.whwmc-comparision-subheading {
    margin-top: 0em;
    margin-right: 0em;
    margin-bottom: 2em;
    margin-left: 0em;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    font-family: "Merriweather Sans", sans-serif;
    font-size: 0.8em;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0em;
    text-transform: none;
    color: rgb(7, 36, 63);
}

.whwmc-comparision-product-name {
    padding: 0 !important;
    margin: 0;
    font-size: 25px;
    margin-bottom: 5px;
}

.whwmc-dashicons {
    font-size: 30px;
    height: 30px;
    width: 30px;
    color: #003478;
}

.whwmc-product-addon-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.whwmc-product-addon-image {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.addon-checkbox {
    height: 20px;
    width: 20px;
}

.whwmc-product-addon-price-name {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.whwmc-product-addon-name {
    padding: 0 !important;
}

.whwmc-product-addon-price {
    margin: 0;
}

.whwmc-step-four-additional-fields {
    width: 60%;
    float: left;
}

.whwmc-step-four-review-order {
    width: 40%;
    float: right;
}

/* The switch container */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

/* Hide the default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(238, 49, 47);
    /* Default color (red for 'no') */
    transition: .4s;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Add labels inside the slider */
.slider-label {
    position: absolute;
    color: white;
    transition: .4s;
}

/* The circle inside the slider */
.slider:before {
    position: absolute;
    content: "No";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    color: black;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Checked state */
input:checked+.slider {
    background-color: #003478;
    /* Blue color for 'yes' */
}

/* Move the circle to the right when checked */
input:checked+.slider:before {
    transform: translateX(30px);
    content: "Yes";
}

/* Show Yes when checked */
input:checked+.slider .slider-label {
    content: "Yes";
    left: 10px;
    transform: translateX(0);
}

/* Show No when unchecked */
input:not(:checked)+.slider .slider-label {
    content: "No";
    left: 10px;
    transform: translateX(0);
}


.question-wrapper {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .whwmc-product-wrapper {
        width: 49%;
        margin: 5px 0px;
        font-size: 12px;
    }

    .woocommerce-additional-fields,
    .woocommerce-checkout-review-order {
        width: 100% !important;
    }

    .product-description ul li,
    .whwmc-plan-discloser-para,
    .comparision-table,
    .whwmc-plan-discloser-wrapper {
        font-size: 12px;
    }

    .whwmc-product-wrapper .whwmc-product-heading,
    .whwmc-product-price {
        font-size: 1.5rem;
    }

    .whwmc-comparision-product-name {
        font-size: 1rem;
    }

    .whwmc-dashicons {
        font-size: 20px;
        height: 20px;
        width: 20px;
    }

    .comparision-table img {
        width: 15px;
        height: 15px;
    }

    .checkout.woocommerce-checkout .woocommerce-checkout-review-order {
        padding: 0 !important;
    }
}


@media screen and (max-width: 768px) {

    /* .comparision-table {
        display: none !important;
    } */

    .checkout {
        padding: 10px;
    }

    .three-step-checkout-step {
        font-size: 12px;
    }

    .three-step-checkout-step h2,
    .three-step-checkout-step-heading,
    .whwmc-comparision-heading {
        font-size: 1.5rem;
    }

    .three-step-checkout-step-para {
        font-size: 12px;
    }

    .whwmc-plan-discloser-para {
        width: 100%;
    }

    .three-step-checkout-step h3 {
        font-size: 0.95rem;
    }

    .checkout-progress-bar {
        overflow-x: auto;
        white-space: nowrap;
        gap: 40px;
        font-size: 12px;
    }

    .checkout-progress-bar .step {
        width: 25%;
    }

    .checkout-progress-bar .step span {
        width: 25px;
        height: 25px;
        line-height: unset;
    }

    .checkout-progress-bar .step p {
        font-size: 12px;
        width: 100%;
        height: auto;
        word-break: normal;
        word-wrap: break-word !important;
        white-space: normal !important;
    }

    .checkout-progress-bar .step:not(:first-child)::after {
        font-size: 15px;
        top: 50%;
    }

    .product-plans {
        gap: 15px;
    }

    .whwmc-product-wrapper {
        width: 100%;
        flex-basis: 100%;
    }

    .comparision-table {
        overflow: auto;
    }

    .product-addon {
        padding: 10px;
        min-height: 60px;
        font-size: 12px;
    }

    .product-addon .product-image img {
        height: 50px;
        width: 50px;
        min-width: 50px;
    }

    .whwmc-product-addon-name {
        font-size: 1rem;
    }

    .product-addon p {
        font-size: 17px;
        margin-bottom: 0;
    }

    .addon-checkbox {
        height: 15px;
        width: 15px;
    }

    .summary-title {
        font-size: 0.95rem !important;
    }

    .custom-order-summary>* {
        font-size: 0.75rem !important;
    }

    .wc_payment_methods .wc_payment_method label {
        font-size: 0.75rem !important;
    }

    .wc_payment_methods .wc_payment_method input[type="radio"] {
        height: 10px !important;
        width: 10px !important;
    }

    .home-warranty-container {
        flex-direction: column-reverse !important;
    }
}

@media screen and (max-width: 360px) {
    .home-warranty-container {
        flex-direction: column-reverse !important;
    }

    .wc_payment_methods .wc_payment_method label {
        font-size: 0.75rem !important;
    }

    .summary-title {
        font-size: 0.95rem !important;
    }

    .custom-order-summary>* {
        font-size: 0.75rem !important;
    }

    .whwmc-product-price-and-add-to-cart {
        justify-content: stretch;
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 10px;
    }
}

.plan-price {
    text-align: right;
}

tr.cart-subtotal:not(.recurring-total),
tr.order-total:not(.recurring-total) {
    display: none !important;

}

.home-warranty-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
}

.hw-left-section {
    flex: 1;
    padding: 30px;
    text-align: center;
}

.hw-left-section img {
    width: 80%;
    margin-bottom: 20px;
}

.hw-left-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.hw-left-section p {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.faq-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    text-align: left;
}

.faq-header {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 500;
    color: #007bff;
    cursor: pointer;
    margin-bottom: 5px;
    gap: 10px;
}

.faq-question i {
    font-size: 12px;
}

.faq-answer {
    display: none;
    font-size: 14px;
    color: #333;
    padding-left: 20px;
    margin-top: 5px;
}

.faq-more {
    margin-top: 15px;
    font-size: 14px;
}

.faq-more a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.faq-more a:hover {
    text-decoration: underline;
}

.hw-right-section {
    flex: 1;
    padding: 30px;
    background-color: #f0f4fc;
    text-align: left;
    border-radius: 15px;
}

.hw-right-section h2 {
    font-size: 24px;
    color: #e53935;
    margin-bottom: 10px;
}

.hw-right-section p {
    font-size: 14px;
    margin-bottom: 20px;
}

.hw-form-group {
    margin-bottom: 15px;
}

.hw-form-group p#billing_address_1_field label,
.hw-form-group p#billing_postcode_field label,
.hw-form-group p#billing_email_field label {
    display: none;
}

.hw-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.hw-shop-button {
    display: inline-block;
    width: 100%;
    background-color: #d32f2f;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
}

.hw-disclaimer {
    font-size: 11px;
    margin-top: 15px;
    color: #555;
    line-height: 1.4;
}

.hw-disclaimer a {
    color: #007bff;
    text-decoration: none;
}

.hw-disclaimer a:hover {
    text-decoration: underline;
}

.hw-contact-info {
    font-size: 13px;
    margin-top: 15px;
    color: #555;
}

.hw-contact-info p {
    margin-bottom: 5px;
}

.hw-contact-info a {
    color: #007bff;
    text-decoration: none;
}

.hw-contact-info a:hover {
    text-decoration: underline;
}

#three-step-checkout-step-four {
    padding: 0 !important;
    border: none !important;
}

#three-step-checkout-step-four>h2 {
    color: rgba(29, 19, 99);
    text-transform: none;
    text-align: left;
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.woocommerce-checkout form #three-step-checkout-step-four .form-row label {
    font-size: .875rem;
    margin: 0 !important;
    font-weight: 600;
}

.woocommerce-checkout form #three-step-checkout-step-four .form-row .woocommerce-input-wrapper input,
.woocommerce-checkout form #three-step-checkout-step-four .form-row .woocommerce-input-wrapper select {
    height: auto;
    padding: 0.5rem 1rem;
    /* border: 1px solid rgba(224, 224, 224); */
    /* border-radius: .25rem; */

}

.woocommerce-billing-fields>span {
    margin: 0px !important;
    font-size: 1.25rem;
    color: #000 !important;
    padding: 0px !important;
    font-weight: 600;
}

.hwo-contact-info-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1rem;
    background: rgba(240, 247, 252);
    color: rgba(29, 19, 99);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 1rem;
}

.hwo-contact-info-heading {
    color: rgba(29, 19, 99);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.125rem;
    letter-spacing: -0.015em;
    text-transform: none;
    margin-bottom: 0.5rem;
}

.hwo-contact-info-details {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}

.custom-order-summary {
    max-width: 450px;
    background: rgba(247, 246, 241);
    border-radius: 1rem;
    padding: 1rem;
    font-family: Onest, sans-serif;
    color: rgba(29, 19, 99);
    border-color: rgba(238, 238, 238);
    border-width: 1px;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
}

.summary-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}

.summary-title {
    font-size: 25px;
    font-weight: 700;
    color: rgba(29, 19, 99);
    line-height: 1.125rem;
    letter-spacing: -0.015em;
    text-transform: none;
}

.edit-plan-link {
    font-size: 14px;
    color: rgba(29, 19, 99);
    text-decoration: underline;
}

.hw-seperator {
    display: block;
    margin-bottom: 0rem;
    margin-top: .75rem;
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 0;
    border-top-width: 1px;
}

.plan-details {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: bold;
    margin: .75rem 0 0 0;
}

.promo-section {
    margin: 1rem 0 0 0;
    font-size: 14px;
    color: rgba(29, 19, 99);
}

.promo-section p {
    margin: 0;
}

.promo-toggle {
    cursor: pointer;
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(29, 19, 99);
    font-weight: bold;
    text-decoration: none;
}

.promo-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.promo-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.promo-button {
    background-color: rgba(29, 19, 99);
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.promo-hint {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.price-summary {
    margin: 10px 0 0 0;
    font-weight: bold;
}

.price-summary .taxes {
    font-weight: 500;
    color: rgba(29, 19, 99);
}

.price-summary .taxes,
.price-summary .total {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}

.quote-message {
    margin: .75rem 0 0 0;
    font-size: 0.95rem;
    line-height: 20px;
}

.buy-now-button {
    width: 100%;
    background-color: #ff3d3d;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.payment-terms {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
}

.payment-terms p {
    margin: 0;
}

.payment-terms a {
    color: rgba(29, 19, 99);
    text-decoration: underline;
}

.container .row .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}


.woocommerce-checkout #payment ul.payment_methods {
    text-align: left;
    padding: 0;
    border-bottom: 1px solid #cfc8d8;
    margin: 0;
    list-style: none outside;
    border: none;
}

.woocommerce-checkout-payment-wrapper {
    background-color: #f4f8ff;
    border-radius: 12px;
    padding: 0;
    max-width: 450px;
    font-family: Arial, sans-serif;
    overflow: hidden;
    border-radius: 1rem !important;
    border: 1px solid #d3d3d3;
}

/* Payment Methods List */
.wc_payment_methods.payment_methods.methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc_payment_methods .wc_payment_method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 !important;
    background-color: #f4f8ff;
    border-bottom: 1px solid #e0e0e0;
    flex-direction: column;
}

.wc_payment_methods .wc_payment_method:last-child {
    border-bottom: none;
}

/* Custom Radio Button Styling */
.wc_payment_methods .wc_payment_method input[type="radio"] {
    appearance: none;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    margin-right: 12px;
    cursor: pointer;
}

.wc_payment_methods .wc_payment_method input[type="radio"]:checked {
    border-color: #0044ff;
}

.wc_payment_methods .wc_payment_method input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0044ff;
    position: absolute;
    top: 3px;
    left: 3px;
}

/* Label Styling */
.wc_payment_methods .wc_payment_method label {
    font-size: 16px;
    font-weight: 500;
    color: #1d1363;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Icon Styling */
.wc_payment_methods .wc_payment_method label:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Payment Button Styling */
.place-order .button {
    background-color: #0044ff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.place-order .button:hover {
    background-color: #0033cc;
}

.payment_method_wrapper {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 1rem 1.5rem;
}

.woocommerce-checkout #payment div.payment_box {
    background-color: #ffffff;
    margin: 0;
}

.woocommerce-checkout #payment div.payment_box::before {
    all: unset;
}