.listing-ai-entry {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: auto
}

.listing-ai-entry .listing-ai-screen {
    min-height: 100vh;
    background: #f5f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.listing-ai-entry .listing-ai-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.06),
        0 2px 10px rgba(0,0,0,0.04);
}

.listing-ai-entry .ai-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.listing-ai-entry .listing-ai-card h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    color: #111827;
    letter-spacing: -1px;
}

.listing-ai-entry .subtitle {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    font-weight: 400 !important;
    text-align: center;
}

.listing-ai-entry .ai-description {
    width: 100%;
    height: 300px;
    margin-top: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 8px !important;
    padding: 22px !important;
    font-size: 15px;
    line-height: 1.7;
    resize: none;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: #fafafa;
}

.listing-ai-entry .ai-description:focus {
    border-color: #7c3aed;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08);
}

.listing-ai-entry .ai-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.listing-ai-entry .btn-ai-generate {
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    background: var(--flyer-main-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.listing-ai-entry .btn-ai-generate:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.listing-ai-entry .btn-ai-generate:hover {
    transform: translateY(-1px);
    background: var(--flyer-main-color);;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.listing-ai-entry .btn-ai-skip {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 16px;
    background: #fff;
    color: #3e546e;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.listing-ai-entry .btn-ai-skip:hover {
    background: #b1c8df;
    border: 1px solid #b1c8df;
}