/* ===============================================
   SELLER APPLICATION - NUEVA APLICACIÓN STYLES
   =============================================== */

/* ================= HEADER ================= */
.seller_application_header {
    background: rgba(30, 30, 46, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.seller_application_header_content {
    max-width: 1000px;
    margin: 0 auto;
}

.seller_application_header_text {
    text-align: center;
    margin-bottom: 3rem;
}

.seller_application_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seller_application_subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
}

/* ================= PROGRESS INDICATOR ================= */
.seller_application_progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.seller_application_progress_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.seller_application_progress_step_number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(55, 65, 81, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6b7280;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.seller_application_progress_step span {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.seller_application_progress_step.active .seller_application_progress_step_number {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.seller_application_progress_step.active span {
    color: #fff;
}

.seller_application_progress_step.completed .seller_application_progress_step_number {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981;
}

.seller_application_progress_line {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 0 -20px;
    margin-bottom: 28px;
}

/* ================= CONTAINER ================= */
.seller_application_container {
    max-width: 900px;
    margin: 0 auto;
}

.seller_application_step {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= CARD ================= */
.seller_application_card {
    background: rgba(30, 30, 46, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.seller_application_card_header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seller_application_card_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.seller_application_card_subtitle {
    font-size: 1rem;
    color: #9ca3af;
}

.seller_application_card_body {
    padding: 2rem;
}

/* ================= FORM ELEMENTS ================= */
.seller_application_form_row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .seller_application_form_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.seller_application_form_group {
    margin-bottom: 1.5rem;
}

.seller_application_form_group.full {
    grid-column: 1 / -1;
}

.seller_application_label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.seller_application_input,
.seller_application_select,
.seller_application_textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.seller_application_input:focus,
.seller_application_select:focus,
.seller_application_textarea:focus {
    outline: none;
    border-color: #06b6d4;
    background: rgba(55, 65, 81, 0.7);
}

.seller_application_textarea {
    resize: vertical;
    font-family: inherit;
}

/* ================= FILE UPLOAD ================= */
.seller_application_file_upload {
    text-align: center;
}

.seller_application_file_preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(55, 65, 81, 0.5);
    border: 3px dashed rgba(255, 255, 255, 0.2);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seller_application_file_preview:hover {
    border-color: #06b6d4;
}

.seller_application_file_placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
}

.seller_application_file_placeholder svg {
    width: 48px;
    height: 48px;
}

.seller_application_file_placeholder span {
    font-size: 0.75rem;
}

.seller_application_btn_upload {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    color: white;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
}

.seller_application_btn_upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.seller_application_file_upload_simple {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.seller_application_btn_file {
    padding: 0.625rem 1rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #d1d5db;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.seller_application_btn_file:hover {
    background: rgba(55, 65, 81, 0.7);
    border-color: #06b6d4;
}

.seller_application_file_name {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* ================= SECTION TITLE ================= */
.seller_application_section_title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seller_application_section_title svg {
    color: #06b6d4;
}

/* ================= SELECTION STATS ================= */
.seller_application_selection_stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.seller_application_stat_item {
    background: rgba(55, 65, 81, 0.3);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.seller_application_stat_number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.25rem;
}

.seller_application_stat_label {
    display: block;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* ================= TOOLBAR ================= */
.seller_application_toolbar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.seller_application_search {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 0.875rem;
}

.seller_application_search:focus {
    outline: none;
    border-color: #06b6d4;
}

.seller_application_btn_select_all {
    padding: 0.75rem 1.5rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #d1d5db;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.seller_application_btn_select_all:hover {
    background: rgba(55, 65, 81, 0.7);
    border-color: #06b6d4;
}

/* ================= PRODUCTS GRID ================= */
.seller_application_products_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

@media (min-width: 640px) {
    .seller_application_products_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .seller_application_products_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.seller_application_product_card {
    background: rgba(55, 65, 81, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.seller_application_product_card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.3);
}

.seller_application_product_checkbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
}

.seller_application_product_checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #06b6d4;
}

.seller_application_product_checkbox input[type="checkbox"] + label {
    width: 24px;
    height: 24px;
    border-radius: 0.375rem;
    background: rgba(55, 65, 81, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.seller_application_product_checkbox input[type="checkbox"]:checked + label {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-color: transparent;
}

.seller_application_product_image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(6, 182, 212, 0.1);
    margin-bottom: 1rem;
}

.seller_application_product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller_application_product_placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.seller_application_product_info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.seller_application_product_category {
    font-size: 0.75rem;
    color: #06b6d4;
    margin-bottom: 0.5rem;
    display: block;
}

.seller_application_product_price {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

/* ================= SUMMARY ================= */
.seller_application_summary {
    
}

.seller_application_summary_section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seller_application_summary_section:last-of-type {
    border-bottom: none;
}

.seller_application_summary_title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.seller_application_summary_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.seller_application_summary_item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.seller_application_summary_label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.seller_application_summary_value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

.seller_application_summary_products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ================= TERMS ================= */
.seller_application_terms {
    background: rgba(55, 65, 81, 0.3);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.seller_application_checkbox_label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.seller_application_checkbox_label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: #06b6d4;
    cursor: pointer;
}

.seller_application_checkbox_label span {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
}

.seller_application_link {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 500;
}

.seller_application_link:hover {
    text-decoration: underline;
}

/* ================= FORM ACTIONS ================= */
.seller_application_form_actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.seller_application_btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.seller_application_btn svg {
    width: 20px;
    height: 20px;
}

.seller_application_btn_primary {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    color: white;
}

.seller_application_btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.seller_application_btn_secondary {
    background: rgba(55, 65, 81, 0.5);
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seller_application_btn_secondary:hover {
    background: rgba(55, 65, 81, 0.7);
}

.seller_application_btn_success {
    background: linear-gradient(90deg, #10b981, #059669);
    color: white;
}

.seller_application_btn_success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* ================= FAB ================= */
.seller_application_fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
}

.seller_application_fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.5);
}

.seller_application_fab svg {
    width: 28px;
    height: 28px;
    color: white;
}

.seller_application_fab_badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid #1e1e2e;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .seller_application_header {
        padding: 1.5rem;
    }

    .seller_application_title {
        font-size: 1.75rem;
    }

    .seller_application_progress {
        flex-direction: column;
        gap: 1rem;
    }

    .seller_application_progress_line {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .seller_application_form_actions {
        flex-direction: column;
    }

    .seller_application_btn {
        width: 100%;
        justify-content: center;
    }

    .seller_application_fab {
        bottom: 1rem;
        right: 1rem;
        width: 56px;
        height: 56px;
    }
}
