/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 15 2026 | 23:19:05 */
.whatsappproduct {
    display: block; /* Maakt de hele box klikbaar */
    text-decoration: none;
    background-color: #25D366; /* WhatsApp groen */
    background: linear-gradient(90deg, #25D366 0%, #1ebd59 100%);
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.whatsappproduct:hover {
    transform: scale(1.01); /* Subtiele zoom bij hover */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    filter: brightness(1.05);
}

.wa-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wa-icon-wrapper {
    background: white; /* Het witte icoon effect */
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-svg {
    width: 22px;
    height: 22px;
    fill: #25D366; /* Icoon krijgt de groene kleur terug */
}

.wa-text-container {
    display: flex;
    flex-direction: column;
}

.wa-header {
    color: white;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
}

.wa-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

/* Voor mobiel: zorg dat de tekst goed uitlijnt */
@media (max-width: 600px) {
    .whatsappproduct {
        padding: 10px 15px;
    }
}