/* 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: "Kanit", 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: "Kanit", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding: 26px 54px 26px 54px;
    background-color: #7963FF;
    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%;
    }
}