.paic-cta {
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 32px 0;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-right: 4px solid #2563eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
    text-align: right;
}
.paic-cta-special { border-right-color: #dc2626; background: #fffafa; }
.paic-cta-product { border-right-color: #16a34a; background: #fbfffc; }
.paic-cta-body { min-width: 0; flex: 1 1 auto; }
.paic-cta-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.7;
}
.paic-cta-special .paic-cta-badge { background: #fee2e2; color: #b91c1c; }
.paic-cta-product .paic-cta-badge { background: #dcfce7; color: #15803d; }
.paic-cta-title {
    display: block;
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.8;
}
.paic-cta-desc {
    margin: 6px 0 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.9;
}
.paic-cta-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 18px;
    border-radius: 7px;
    background: #111827;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.6;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 160ms ease, transform 160ms ease;
}
.paic-cta-button:hover { background: #374151; transform: translateY(-1px); }
.paic-cta-special .paic-cta-button { background: #dc2626; }
.paic-cta-special .paic-cta-button:hover { background: #b91c1c; }
.paic-cta-product .paic-cta-button { background: #16a34a; }
.paic-cta-product .paic-cta-button:hover { background: #15803d; }
@media (max-width: 640px) {
    .paic-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
        gap: 14px;
    }
    .paic-cta-button { width: 100%; white-space: normal; text-align: center; }
}
