/* Common Button Styles */
.payment-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.pay-btn, .qr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: white;
    background: linear-gradient(to bottom, #3CD100, #168700);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
    position: relative;
}

/* Add space between logo and text */
.btn-logo {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* Hover Effect */
.pay-btn:hover, .qr-btn:hover {
    background: linear-gradient(to bottom, #45E200, #1A9900);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 1);
}

/* Active Click Effect */
.pay-btn:active, .qr-btn:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8);
}

/* WhatsApp & Telegram Buttons */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.whatsapp-button, .telegram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: white;
    width: 140px;
    height: 40px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

/* WhatsApp Button Color */
.whatsapp-button {
    background: linear-gradient(to bottom, #25D366, #128C7E);
}

/* Telegram Button Color */
.telegram-button {
    background: linear-gradient(to bottom, #0088cc, #005F99);
}

/* Button Icons */
.whatsapp-button img, .telegram-button img {
    width: 18px;
    height: 18px;
    margin-right: 4px;
}

/* Hover Effects */
.whatsapp-button:hover, .telegram-button:hover {
    transform: scale(1.03);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
    filter: brightness(1.1);
}

/* Active Click Effect */
.whatsapp-button:active, .telegram-button:active {
    transform: scale(0.95);
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Ripple Effect */
.whatsapp-button::after, .telegram-button::after {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;
    background: rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.whatsapp-button:active::after, .telegram-button:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Make Payment Button */
.payment-container {
    text-align: center;
    margin-top: 15px;
}

.make-payment-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: yellow;
    color: black;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
}

.make-payment-button:hover {
    background-color: #FFD700;
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.9);
}

.make-payment-button:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .button-container {
        flex-direction: row;
        gap: 5px;
    }

    .whatsapp-button, .telegram-button {
        width: 120px;
        height: 35px;
        font-size: 12px;
    }

    .whatsapp-button img, .telegram-button img {
        width: 16px;
        height: 16px;
        margin-right: 3px;
    }

    .make-payment-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}