/**
 * Webreta - WhatsApp Dekont Yönlendirme
 * Ön Yüz Stilleri
 */

.wwd-box {
    --wwd-green: #25d366;
    --wwd-green-dark: #1ebe5d;
    --wwd-green-deep: #128c7e;
    --wwd-ink: #0b2e26;
    --wwd-text: #2b4a43;

    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 28px auto;
    padding: 26px 28px;
    background: linear-gradient(150deg, #f6fffb 0%, #f1fdf6 50%, #eafaf1 100%);
    border: 1px solid #cdeede;
    border-left: 5px solid var(--wwd-green);
    border-radius: 16px;
    box-shadow: 0 10px 30px -12px rgba(18, 140, 126, 0.25);
    box-sizing: border-box;
}

.wwd-box * {
    box-sizing: border-box;
}

/* Sol ikon dairesi */
.wwd-box__icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--wwd-green) 0%, var(--wwd-green-deep) 100%);
    box-shadow: 0 6px 16px -4px rgba(37, 211, 102, 0.6);
}

.wwd-box__content {
    flex: 1 1 auto;
    min-width: 0;
}

.wwd-box__title {
    margin: 0 0 8px;
    font-size: 1.18em;
    font-weight: 700;
    line-height: 1.25;
    color: var(--wwd-ink);
}

.wwd-box__text {
    margin: 0 0 18px;
    font-size: 0.97em;
    line-height: 1.6;
    color: var(--wwd-text);
}

.wwd-box__text strong {
    color: var(--wwd-green-deep);
}

/* WhatsApp butonu */
.wwd-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    font-size: 1.02em;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    color: #fff !important;
    background: linear-gradient(135deg, var(--wwd-green) 0%, var(--wwd-green-dark) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.7);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.wwd-button:hover,
.wwd-button:focus {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 12px 26px -6px rgba(37, 211, 102, 0.8);
    color: #fff !important;
    text-decoration: none;
}

.wwd-button:active {
    transform: translateY(0);
}

.wwd-button__icon {
    flex: 0 0 auto;
}

.wwd-box__note {
    margin: 12px 0 0;
    font-size: 0.82em;
    color: #6b8a82;
}

/* Mobil uyum */
@media (max-width: 560px) {
    .wwd-box {
        flex-direction: column;
        align-items: stretch;
        padding: 22px 20px;
        gap: 14px;
    }
    .wwd-box__icon {
        width: 50px;
        height: 50px;
    }
    .wwd-button {
        width: 100%;
        justify-content: center;
    }
}
