.wholesale-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

.wholesale-modal.active {
    display: flex;
    animation: fadeInModal 0.3s ease;
}

.wholesale-modal-header {
    width: 100%;
    background: #fff;
    z-index: 100;
}

.modal-nav-white {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-logo {
    max-height: 40px;
}

.wholesale-close-new {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.wholesale-modal-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

.wholesale-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.wholesale-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    color: var(--orbe-laranja);
    font-weight: 800;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.step-header h2 {
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.step-header p {
    color: #888;
    margin-bottom: 30px;
    font-size: 1rem;
}

#wholesaleForm input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #eee;
    padding: 15px 0;
    font-size: 1.5rem;
    outline: none;
    transition: 0.3s;
    background: transparent;
}

#wholesaleForm input:focus {
    border-color: var(--orbe-laranja);
}

.step-footer {
    margin-top: 40px;
}

.btn-next,
.btn-submit {
    background: var(--orbe-laranja);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-next:hover,
.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 89, 0, 0.3);
}

.btn-prev {
    background: #f0f0f0;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    color: #555;
}

.wholesale-progress-bar {
    width: 100%;
    height: 4px;
    background: #f0f0f0;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 25%;
    background: var(--orbe-laranja);
    transition: 0.5s ease;
}

.country-selector-wrapper {
    position: relative;
    min-width: 110px;
}

.country-selected {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-bottom: 2px solid #eee;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    transition: 0.3s;
}

.country-selected img {
    width: 24px;
    height: auto;
    border-radius: 3px;
}

.country-selected:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    margin-left: auto;
    color: #999;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    border-radius: 8px;
    margin-top: 5px;
    display: none;
    z-index: 10;
    padding: 10px 0;
}

.country-dropdown.active {
    display: block;
}

.country-option {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
}

.country-option:hover {
    background: #f8f9fa;
    color: var(--orbe-laranja);
}

.country-option img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.country-option span {
    margin-left: auto;
    color: #999;
    font-weight: 400;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .wholesale-modal-content {
        padding: 25px;
    }

    .step-header h2 {
        font-size: 1.4rem;
    }

    #wholesaleForm input {
        font-size: 1.2rem;
    }

    .country-selected {
        font-size: 1.2rem;
        padding: 10px 0;
    }

    .country-selector-wrapper {
        min-width: 90px;
    }
}
