.badge-recommended {
    background: rgba(122, 82, 255, 0.14);
    color: #a794ff;
    border: 1px solid rgba(122, 82, 255, 0.35);
}

.thumb-page .welcome-container.flow-active {
    padding-top: 100px;
    padding-bottom: 60px;
}

.thumb-page .welcome-container .container {
    max-width: none;
    padding-left: 3rem;
    padding-right: 3rem;
}

.thumb-page .stepper-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.thumb-page .step-content-card {
    min-height: auto;
    padding: 1rem 1.5rem;
    width: 100%;
}

.thumb-page .stepper-sidebar {
    width: 260px;
}

.thumb-page .step-header-title {
    font-size: 2rem;
    line-height: 1.1;
}

.thumb-page .step-header-desc {
    margin-bottom: 1rem;
}

.thumb-page #step-nav {
    margin-top: 1.25rem !important;
    padding-top: 1rem !important;
}

.thumb-step1-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.thumb-direction-input {
    min-height: 170px;
}

@media (min-width: 1200px) {
    .thumb-step1-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: start;
    }
}

.thumb-upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    min-height: 250px;
    max-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.25s ease;
    overflow: hidden;
}

.thumb-upload-zone:hover {
    border-color: var(--bs-primary);
    background: rgba(193, 255, 114, 0.04);
}

#thumb-preview {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.thumb-step2-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
}

.thumb-action-panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 250px;
    max-height: 250px;
    justify-content: center;
}

.thumb-action-btn {
    width: 100%;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.thumb-action-btn:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #142022;
}

@media (min-width: 992px) {
    .thumb-step2-layout {
        grid-template-columns: 1.5fr 1fr;
        align-items: stretch;
    }
}

@media (max-width: 991px) {
    .thumb-page .welcome-container .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .thumb-page .stepper-layout {
        display: block;
    }

    .thumb-page .stepper-sidebar {
        display: none;
    }
}

.thumb-page .btn-back-step {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding-left: 1rem;
}

.thumb-page .btn-back-step:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.thumb-page .back-link {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.thumb-summary-preview {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 575.98px) {
    .thumb-page .step-content-card {
        padding: 1rem;
    }

    .thumb-page .step-header-title {
        font-size: 1.5rem;
    }

    .thumb-upload-zone,
    #thumb-preview,
    .thumb-action-panel {
        min-height: 200px;
        max-height: none;
    }

    .thumb-action-btn {
        min-width: 0;
        width: 100%;
    }
}


