/* Ellevate Woo Zap - Frontend Styles */

.ellevate-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
    min-height: 44px;
    margin: 10px 0;
    box-sizing: border-box;
}

.ellevate-whatsapp-btn:before {
    content: "📱";
    font-size: 18px;
}

.ellevate-btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.ellevate-btn-whatsapp:hover {
    background-color: #22c55e;
    border-color: #22c55e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.ellevate-btn-whatsapp:focus {
    color: white;
    text-decoration: none;
}

.ellevate-btn-custom {
    background-color: #333;
    color: white;
    border: 2px solid #333;
}

.ellevate-btn-custom:hover {
    background-color: #555;
    border-color: #555;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.ellevate-btn-custom:focus {
    color: white;
    text-decoration: none;
}

/* Posicionamento específico */
.ellevate-product-button {
    margin: 20px 0;
    text-align: center;
    clear: both;
}

.ellevate-cart-button {
    margin: 15px 0;
    text-align: center;
    clear: both;
}

.ellevate-checkout-button {
    margin: 15px 0;
    text-align: center;
    clear: both;
}

.ellevate-cart-button .ellevate-whatsapp-btn,
.ellevate-checkout-button .ellevate-whatsapp-btn {
    width: 100%;
    justify-content: center;
}

/* Integração com temas do WooCommerce */
.woocommerce .ellevate-whatsapp-btn {
    font-family: inherit;
}

.woocommerce-cart .ellevate-cart-button {
    margin-top: 20px;
}

.woocommerce-checkout .ellevate-checkout-button {
    margin-top: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
    .ellevate-whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .ellevate-product-button,
    .ellevate-cart-button,
    .ellevate-checkout-button {
        margin: 15px 0;
    }
    
    .ellevate-whatsapp-btn:before {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ellevate-whatsapp-btn {
        padding: 18px 15px;
        font-size: 15px;
    }
}