.tookaa-cta-wrapper {
    width: 100%;
    margin: 32px 0;
}

.tookaa-cta-align-center {
    text-align: center;
}

.tookaa-cta-align-left {
    text-align: left;
}

.tookaa-cta-align-right {
    text-align: right;
}

/* Card / box around text + button */
.tookaa-cta-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 640px;
    width: 100%;
    padding: 18px 24px;
    border-radius: 16px;
    border: 1px solid #e4e4e4;
    background-color: #fafafa;
}

/* Description text */
.tookaa-cta-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    text-align: center;
}

/* Minimal button */
.tookaa-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 28px;
    border-radius: 999px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;

    text-decoration: none;
    color: #ffffff !important;
    background-color: #77aa11;
    border: none;

    transition:
        background-color 0.18s ease,
        transform 0.18s ease,
        opacity 0.18s ease;
}

.tookaa-cta-button:hover {
    background-color: #69950f; /* slightly darker */
    transform: translateY(-1px);
}

.tookaa-cta-button:active {
    transform: translateY(0);
    opacity: 0.96;
}

.tookaa-cta-text {
    white-space: nowrap;
}

.tookaa-cta-icon {
    font-size: 17px;
    transform: translateX(0);
    transition: transform 0.18s ease;
}

.tookaa-cta-button:hover .tookaa-cta-icon {
    transform: translateX(3px);
}

/* Responsive: full width on small screens */
@media (max-width: 640px) {
    .tookaa-cta-card {
        max-width: 100%;
        padding-inline: 18px;
    }

    .tookaa-cta-button {
        width: 100%;
        padding-inline: 20px;
    }

    .tookaa-cta-text {
        white-space: normal;
        text-align: center;
    }

    .tookaa-cta-desc {
        text-align: center;
    }
}
