/* Make wrapper a flex container */
header,p,h6,h5,h4,h3,h2,h1 {
    font-family: 'Poppins' !important;
}
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 20px; /* space between cards */
}

/* Equal height cards */
.pricing-card {
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    gap: 13px 13px;
    row-gap: 13px;
    column-gap: 13px;
    padding-top: 45px;
    padding-bottom: 70px;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
    background-color: #FBF9F9;
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.pricing-card span.elementor-icon-list-text {
    font-family: "Urbanist", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
}

/* Description with fixed height & scroll */
.pricing-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 5px 0;
    flex-grow: 1;              /* take up free space */
    overflow-y: auto;          /* enable scroll if content is too long */
    max-height: 450px;         /* fixed height for description area */
    padding-right: 5px;        /* spacing for scrollbar */
}
.pricing-card h3 {
    color: #121212;
    font-size: 18px;
    font-weight: 400;
}
.price {
}
.pricing-wrapper.grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pricing-wrapper.grid ul li {
    padding: 12px 0 0;
    text-align: left;
    color: #707070;
}
.pricing-card a.pricing-btn.add-to-cart-btn {
    background: #251f73;
    color: #fff;
    text-align: center;
    font-family: "Urbanist", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding: 20px 40px;
    background-color: #FFA88C;
    border-radius: 25px 25px 25px 25px;
    display: inline-block;
    width: 75%;
}

.pricing-card ins {
    text-decoration: none;
}
.pricing-card ins span.woocommerce-Price-amount.amount , .pricing-card .woocommerce-Price-amount.amount {
    color: #121212;
    font-size: 60px;
    font-weight: 400;
    line-height: 1em;
    font-family: 'Poppins' !important;
}
.pricing-card del {
    text-decoration: line-through;
    text-decoration-color: red;
    text-decoration-style: revert;
}
.pricing-card del  span.woocommerce-Price-amount.amount {
    color: #FF0000 !important;
    font-size: 14px;
    font-family: 'Poppins' !important;
}

/* Scrollbar styling (optional, Webkit browsers) */
.pricing-desc::-webkit-scrollbar {
    width: 6px;
}
.pricing-desc::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.pricing-desc::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pricing-wrapper {
        grid-template-columns: 1fr; /* single column */
    }
    .pricing-card a.pricing-btn.add-to-cart-btn {
        width: 90%;
    }
}

.my-recpt-page h4 {
    padding-bottom: 27px;
}
.my-recpt-page h4.asp-order-details-heading {
    margin-top: 30px;
}

/*Contact form Styling*/
/* Form container */
/* Popup form container */
/* Reset CF7 default styling */
/* Grid wrapper */
/* Main form grid (2 columns) */
div#popmake-8748 .cf7-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Each field container */
div#popmake-8748 .cf7-form-grid .cf-col {
    display: block; /* default */
}

/* Make specific rows full width */
div#popmake-8748 .cf7-form-grid .cf-full {
    grid-column: span 2;
}

/* 🟢 If you want to split a .cf-col into two columns */
div#popmake-8748 .cf7-form-grid .cf-col.split-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Inputs, selects, textareas */
div#popmake-8748 .cf7-form-grid .cf-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

div#popmake-8748 .cf7-form-grid .cf-input:focus {
    border-color: #0073e6;
    box-shadow: 0 0 0 2px rgba(0,115,230,0.2);
    outline: none;
}

/* Labels */
div#popmake-8748 .cf7-form-grid label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

/* Textareas */
div#popmake-8748 .cf7-form-grid textarea.cf-input {
    height: 100px;
    resize: vertical;
}

/* Submit */
div#popmake-8748 .cf7-form-grid input[type="submit"] {
    background: #0073e6;
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    width: 100%;
}

div#popmake-8748 .cf7-form-grid input[type="submit"]:hover {
    background: #005bb5;
}

/* Responsive: single column on small screens */
@media (max-width: 768px) {
    div#popmake-8748 .cf7-form-grid {
        grid-template-columns: 1fr;
    }
    div#popmake-8748 .cf7-form-grid .cf-full {
        grid-column: span 1;
    }
}

/*Default Custom forms */
.default-form-for-theme .col-lg-12 input {
    width: 100%;
    height: 50px;
    background-color: #02010100;
    color: #121212;
    border-radius: 0px 0px 0px 0px;
    margin: 0px 0px 25px 0px;
    font-family: "Urbanist", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23.5px;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #C2C2C2;
}

.default-form-for-theme .col-lg-12 select {
    font-family: "Urbanist", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23.5px;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #C2C2C2;
    height: 50px;
    background-color: #02010100;
    color: #121212;
    border-radius: 0px 0px 0px 0px;
    margin: 0px 0px 25px 0px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.default-form-for-theme .col-lg-12 textarea{
    height: 40px;
    background-color: #02010100;
    font-family: "Urbanist", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23.5px;
    color: #121212;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #C2C2C2;
    border-radius: 0px 0px 0px 0px;
    margin: 15px 0px 15px 0px;
    width: 100%;
}

.default-form-for-theme .col-lg-12 input.wpcf7-form-control.wpcf7-submit.has-spinner{
    font-family: "Urbanist", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23.5px;
    height: 65px;
    padding: 0px 40px 0px 40px;
    margin: 0px 0px 0px 0px;
    border-radius: 0px 30px 0px 30px;
    gap: 5px;
    color: #FFFFFF;
    fill: #FFFFFF;
    background-color: #121212;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #121212;
}