.plan-prompt {
    background: linear-gradient(135deg, #fff5f6 0%, #f0f7ff 100%);
    border-bottom: 1px solid #f0c4c8;
    padding: 12px 16px;
}

.plan-prompt-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.plan-prompt-icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.plan-prompt-text {
    flex: 1 1 200px;
    min-width: 0;
}

.plan-prompt-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.plan-prompt-text span {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.plan-prompt-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.plan-prompt-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 9px 16px;
    border-radius: 6px;
    background: #e8505b;
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.plan-prompt-cta:hover {
    background: #d43e4f;
    color: #fff;
}

.plan-prompt-cta.outline {
    background: #fff;
    color: #e8505b;
    border: 1px solid #e8505b;
}

.plan-prompt-cta.outline:hover {
    background: #fff5f6;
}

.plan-prompt-dismiss {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 4px;
}

.plan-prompt-dismiss:hover {
    color: #666;
    background: rgba(0, 0, 0, 0.05);
}

.plan-prompt--subtle {
    background: #f8f9fb;
    border-bottom-color: #e8eaed;
}

.plan-prompt--subtle .plan-prompt-cta {
    background: #fff;
    color: #e8505b;
    border: 1px solid #e8505b;
}

@media (max-width: 560px) {
    .plan-prompt-inner {
        gap: 10px;
    }
    .plan-prompt-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
