/* ============================================================
   SHOPPI BUSINESS SIGNUP - MODERN PREMIUM REDESIGN
   ============================================================ */

:root {
    --signup-primary: #0f172a;
    --signup-secondary: #1e293b;
    --signup-accent: #FF4B6E;
    --signup-accent-light: #FF8E53;
    --signup-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --signup-accent-gradient: linear-gradient(135deg, #FF4B6E 0%, #FF8E53 100%);
    --field-bg: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --radius-lg: 30px;
}

.signup-wrapper {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9;
    color: var(--text-main);
    min-height: 100vh;
    margin: 0;
    display: flex;
    /* Restoring flex from business-signup.html wrapper needs to be consistent */
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* Split Layout */
.signup-wrapper {
    display: flex;
    min-height: 100vh;
}

.signup-sidebar {
    flex: 1;
    background: var(--signup-gradient);
    padding: 80px 60px;
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.signup-sidebar::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 75, 110, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.signup-sidebar::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.signup-form-container {
    flex: 1.2;
    padding: 60px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-card {
    background: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 650px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Steps Indicator */
.step-indicator {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
}

.setup-content {
    display: none;
}

.setup-content.active {
    display: block;
}

.step-dot {
    height: 8px;
    flex: 1;
    background: #e2e8f0;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-dot.active {
    background: var(--signup-accent-gradient);
    box-shadow: 0 4px 10px rgba(255, 75, 110, 0.2);
}

.step-dot.completed {
    background: #10b981;
}

/* Form Styling */
.form-label {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--signup-primary);
    display: block;
}

.form-control,
.form-select {
    border-radius: 16px;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    background: var(--field-bg);
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--signup-accent);
    box-shadow: 0 0 0 6px rgba(255, 75, 110, 0.08);
    background: white;
    outline: none;
}

.form-control.error {
    border-color: #ef4444 !important;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    display: none;
}

/* Buttons */
.btn-next {
    background: var(--signup-accent-gradient);
    color: white !important;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 75, 110, 0.3);
}

.btn-next:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 75, 110, 0.4);
}

.btn-link {
    color: var(--text-muted) !important;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--signup-primary) !important;
}

/* Sidebar Benefits */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--signup-accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Success Message */
.signup-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: var(--radius-lg);
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
    animation: fadeIn 0.5s ease-out;
}

.signup-success-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sync Info Box */
.sync-info {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.sync-info h5 {
    color: #166534;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .signup-wrapper {
        flex-direction: column;
    }

    .signup-sidebar {
        padding: 40px 20px;
        min-height: auto;
    }

    .signup-form-container {
        padding: 30px 15px;
    }

    .signup-card {
        padding: 40px 25px;
        border-radius: 24px;
        margin-top: -40px;
    }
}