/* CTA Bar - Default (gold accent) */
.kvltx-es-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #faf3e6 0%, #fff8ed 100%);
    border: 1px solid #e8d5a8;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.kvltx-es-cta__content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.kvltx-es-cta__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c8922a;
    color: #fff;
    border-radius: 10px;
}

.kvltx-es-cta__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.kvltx-es-cta__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.kvltx-es-cta__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.kvltx-es-cta__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #c8922a;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

.kvltx-es-cta__btn:hover {
    background: #b07e20;
    color: #fff;
    text-decoration: none;
}

.kvltx-es-cta__btn:active {
    transform: scale(0.97);
}

/* Dark style */
.kvltx-es-cta--dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-color: #333;
}

.kvltx-es-cta--dark .kvltx-es-cta__icon {
    background: rgba(200, 146, 42, 0.15);
    color: #c8922a;
}

.kvltx-es-cta--dark .kvltx-es-cta__title {
    color: #fff;
}

.kvltx-es-cta--dark .kvltx-es-cta__desc {
    color: #999;
}

.kvltx-es-cta--dark .kvltx-es-cta__btn {
    background: #c8922a;
    color: #fff;
}

.kvltx-es-cta--dark .kvltx-es-cta__btn:hover {
    background: #d9a43b;
    color: #fff;
}

/* Minimal style */
.kvltx-es-cta--minimal {
    background: #fff;
    border: 2px solid #e5e5e5;
}

.kvltx-es-cta--minimal .kvltx-es-cta__icon {
    background: transparent;
    color: #c8922a;
    width: auto;
    height: auto;
}

.kvltx-es-cta--minimal .kvltx-es-cta__btn {
    background: transparent;
    color: #c8922a;
    border: 2px solid #c8922a;
    padding: 10px 22px;
}

.kvltx-es-cta--minimal .kvltx-es-cta__btn:hover {
    background: #c8922a;
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .kvltx-es-cta {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .kvltx-es-cta__content {
        flex-direction: column;
        gap: 12px;
    }

    .kvltx-es-cta__btn {
        width: 100%;
        justify-content: center;
    }
}
