.elementor-2666 .elementor-element.elementor-element-89157d2 > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-89157d2 *//* Namely Color Palette */
:root {
    --mint: #25D366;
    --mint-hover: #128C7E; 
    --navy: #1A2E35;
    --bg-light: #FBFAFB;
    --white: #fff;
}

.container{
    ;
}
/* ------- TABLE VIEW ------- */


/* -------- GRID VIEW -------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 0px !important;
   }

.price-card {
    background: var(--white);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-top: 4px solid var(--mint);
    position: relative;
    margin: 10px 10px 0px 0px;
}

.price-card h3 {
    color: var(--navy);
    font-size: 25px;
}

.price-card .price {
    color: var(--mint-hover);
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0 20px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    color: #4b5d63;
}

.price-card ul li {
    margin-bottom: 5px;
}

/* Popular Card */
.popular-card {
    border-top-color: var(--mint-hover);
    transform: scale(1.03);
    
}

.popular-card .badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #F97316;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
}



/* Feature List Check Icons */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
}

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #25D366; /* WhatsApp Green */
    font-weight: bold;
    font-size: 12px;
    line-height: 1.3rem;
}


/* Buy Button */
.buy-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    /*text-decoration: ;*/
    transition: 0.3s;
    margin-bottom: 10px;
    text-decoration: none !important;
}

.buy-btn:hover {
    background: #1ebb59;
    color: white;
}

/* Popular button highlight */
.popular-btn {
    background: #128C7E;
}

.popular-btn:hover {
    background: #0d6d63;


/* Responsive */
@media (max-width: 768px) {
    .pricing-table-wrapper {
        overflow-x: auto;
    }

}/* End custom CSS */