/* Ezze Product CTA Styles */
.ezze-product-cta-wrap {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ezze-product-cta-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    text-align: center;
}

.ezze-product-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.ezze-product-cta-btn img {
    margin: 0 8px;
    vertical-align: middle;
}

/* Specific button styles handled via Inline CSS for customization, providing defaults here */
.ezze-product-cta-buy {
    background-color: #333;
    color: #fff;
}

.ezze-product-whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

.ezze-product-whatsapp-number {
    font-family: monospace;
    font-size: 1.1em;
    margin-left: 5px;
}

@media (min-width: 768px) {
    .ezze-product-cta-wrap {
        flex-direction: row;
    }

    .ezze-product-cta-btn {
        width: auto;
        flex-grow: 1;
    }
}