/* =========================================
   PRICE + WHATSAPP BUTTON
   ========================================= */

.pricing-list-block li {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.price-list-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.price-list-amount {
    width: 160px;
    min-width: 160px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;

    text-align: right;
}

/* Keep ₹ and price on the SAME LINE */
.price-list-amount h3 {
    margin: 0;
    padding: 0;

    text-align: right;
    line-height: 1.15;

    white-space: nowrap;
}

/* Keep price components together */
.price-list-amount .amount-sign,
.price-list-amount .amount-price {
    white-space: nowrap;
}


/* =========================================
   WHATSAPP BUTTON
   ========================================= */

.price-list-amount .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 15px;
    padding: 9px 16px;

    min-width: 110px;

    background: #25D366;
    color: #ffffff !important;

    border: 2px solid #25D366;
    border-radius: 6px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;

    text-align: center;
    text-decoration: none !important;

    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.30);

    transition: all 0.3s ease;
}

/* WhatsApp icon */
.price-list-amount .whatsapp-btn i {
    font-size: 16px;
    line-height: 1;
}

/* Hover */
.price-list-amount .whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 14px rgba(18, 140, 126, 0.35);
}

/* Active */
.price-list-amount .whatsapp-btn:active {
    transform: translateY(0);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 575px) {

    .pricing-list-block li {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .price-list-info {
        width: 100%;
    }

    .price-list-amount {
        width: 100%;
        min-width: 0;

        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        text-align: left;
    }

    .price-list-amount h3 {
        text-align: left;
        white-space: nowrap;
    }

    .price-list-amount .whatsapp-btn {
        margin-top: 0;
        flex-shrink: 0;
    }
}