/* Checkout whatsapp button */
.wp-checkout-btn {
    border-radius: 50px;
    padding: 12px 20px;
    color: white !important;
    font-size: 18px !important;
    font-weight: 500;
    font-family: Poppins;
    text-transform: none !important;
    background-color: #22403D;
    border: none;
    transition: all 0.2s;
}
.wp-checkout-btn:hover {
    background-color: #22403DCC;
}

/* RRSS */
#aura-rrss-btns {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rrss-btn {
    width: 56px;
    height: 56px;
    filter: drop-shadow(3px 3px 3px #222);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rrss-btn:hover {
    transform: scale(1.1);
}

/* Media query para móviles */
@media (max-width: 480px) {
    .wp-checkout-btn {
    font-size: 14px !important;
}


    .rrss-btn {
        width: 48px;
        height: 48px;
    }
}
