/**
 * Jodia Bazaar Seller Central — Onboarding & Auth View Specific Styles
 * Path: frontend/public/css/views/auth.css
 */

/* ==========================================================================
   LANDING PAGE LAYOUTS & HERO ENGINE (TASK 05 ORIGINAL WORKING ASSETS)
   ========================================================================== */

/* Landing Page Navigation Configurations */
.auth-header {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--ui-outline);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.auth-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-logo {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--brand-hero);
}

.auth-logo span {
    color: var(--dark-anchor);
    font-weight: 400;
}

/* Task 05 Hero Engine */
.hero-wrapper {
    padding: 96px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-surface) 100%);
    text-align: center;
    border-bottom: 1px solid var(--ui-outline);
}

.hero-wrapper h1 {
    max-width: 840px;
    margin: 0 auto 24px auto;
    color: var(--dark-anchor);
}

.hero-wrapper p {
    font-size: var(--text-lg);
    color: var(--ui-subtext);
    max-width: 640px;
    margin: 0 auto 36px auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Value Props Feature Section */
.features-section {
    padding: 88px 0;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--brand-hero);
}

/* Responsive Adaptive View Breakpoints */
@media (max-width: 768px) {
    .hero-wrapper {
        padding: 64px 0;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
}


/* ==========================================================================
   TASK 06: MULTI-STEP WIZARD ENGINE APPENDED CONFIGURATIONS
   ========================================================================== */

/* Master Structural Grid Frame for Multi-Step Registration Layout Split */
.registration-viewport-wrapper {
    display: flex;
    min-height: calc(100vh - 64px); /* Fills screen space cleanly under sticky navbar */
}

/* Institutional Left Sidebar Progress Navigation Drawer Panel */
.registration-sidebar {
    width: 280px;
    background-color: var(--bg-surface);
    border-right: 1px solid var(--ui-outline);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.sidebar-heading-group h3 {
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--dark-anchor);
    margin: 0;
}

.sidebar-heading-group p {
    font-size: var(--text-xs);
    color: var(--ui-utility);
    margin-top: 4px;
}

.sidebar-menu-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 36px;
}

.sidebar-step-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--ui-subtext);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all 0.2s ease;
    user-select: none;
}

.sidebar-step-row.active {
    background-color: var(--dark-anchor);
    color: #FFFFFF;
}

.sidebar-step-row .icon-box {
    width: 20px;
    text-align: center;
}

/* Right Side Processing Canvas Content Area Area Restrictor */
.registration-canvas {
    flex: 1;
    background-color: var(--bg-core);
    padding: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.registration-restrictor {
    width: 100%;
    max-width: 640px;
}

/* Horizontal Flow Step Progress Header Layout */
.flow-progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    padding: 0 12px;
}

.flow-node-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.flow-node-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--ui-outline);
    color: var(--ui-utility);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
    transition: all 0.25s ease;
}

/* Step Complete Visual Modifiers mapping to Success Green */
.flow-node-element.active .flow-node-circle,
.flow-node-element.completed .flow-node-circle {
    background-color: var(--status-success);
    color: #FFFFFF;
}

.flow-node-label {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--dark-anchor);
}

/* Connecting Process Pathway Bar Vectors */
.flow-horizontal-bar {
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: var(--ui-outline);
    z-index: 1;
}

.flow-horizontal-fill {
    height: 100%;
    background-color: var(--status-success);
    width: 0%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtext & Layout Header Presets Inside Form Card */
.card-meta-tag {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--brand-hero);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.wizard-subtext {
    font-size: var(--text-sm);
    color: var(--ui-subtext);
    margin: 8px 0 32px 0;
}

/* Advanced Grid Structural Layout Utilities */
.layout-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.layout-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Complex Combined Input Form Components */
.input-combo-group {
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
}

/* Embedded Phone Extension Dropdown Prefix Adjustments */
.input-combo-group select.prefix-selector {
    width: 80px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    background-color: var(--bg-surface);
    height: 42px;
}

.input-combo-group input.suffix-input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    flex: 1;
    height: 42px;
}

/* Advanced URL Marketplace Slug Mask Configuration */
.input-combo-group .url-prefix-tag {
    position: absolute;
    left: 14px;
    color: var(--ui-utility);
    font-size: var(--text-sm);
    pointer-events: none;
    user-select: none;
}

.input-combo-group input.slug-input {
    padding-left: 112px;
    padding-right: 40px;
    width: 100%;
    height: 42px;
}

.input-combo-group .shop-slug-status-badge {
    position: absolute;
    right: 14px;
    color: var(--status-success);
    font-weight: 700;
    font-size: var(--text-sm);
    display: none;
}

.slug-live-feedback {
    font-size: var(--text-xs);
    color: var(--status-success);
    margin-top: 4px;
    display: none;
}

/* Clean Drag-and-Drop Form Document Upload Target Box */
.dashed-upload-surface {
    border: 2px dashed var(--ui-outline);
    border-radius: 6px;
    padding: 32px 16px;
    text-align: center;
    background-color: var(--bg-core);
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.dashed-upload-surface:hover {
    border-color: var(--brand-hero);
    background-color: var(--bg-surface);
}

.dashed-upload-surface p {
    margin: 4px 0 0 0;
    font-size: var(--text-xs);
    color: var(--ui-utility);
}

/* Control Action Strip Boundary Element Row */
.wizard-action-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--ui-outline);
}

.btn-wizard-link {
    background: none;
    border: none;
    color: var(--ui-subtext);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

/* Security Trust Badge Indicators Component Summary Cards */
.trust-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.trust-badge-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--ui-outline);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.trust-badge-card h5 {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--dark-anchor);
    margin: 0 0 2px 0;
}

.trust-badge-card p {
    font-size: var(--text-xs);
    color: var(--ui-subtext);
    line-height: 1.4;
    margin: 0;
}

/* Base Display Structural Bottom Legal Footer Layout */
.global-system-footer {
    height: 48px;
    background-color: #FFFFFF;
    border-top: 1px solid var(--ui-outline);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    font-size: var(--text-xs);
    color: var(--ui-utility);
    box-sizing: border-box;
}

.footer-link-group {
    display: flex;
    gap: 16px;
}

.footer-link-group a {
    color: var(--ui-utility);
    text-decoration: none;
}

.footer-link-group a:hover {
    text-decoration: underline;
}

/* Dynamic Panel State Visibility Utilities */
.hidden-step-panel {
    display: none !important;
}

.invisible-control {
    visibility: hidden !important;
}