/**
 * Sell page (/vender): hero, steps, benefits and registration intro.
 *
 * Part of the vendor.css set - enqueued in order.
 * Order matters: later parts override earlier ones.
 */

/**
 * Vendor System Styles
 * Uses design tokens from design-tokens.css and extends components.css
 *
 * @package Sync_Recommerce
 */

/* ============================================
   VENDOR HERO
   ============================================ */

.vendor-hero {
    background: var(--gradient-overlay);
    padding: var(--space-24) 0 var(--space-20);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vendor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.vendor-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.vendor-hero .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.vendor-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    color: var(--color-white);
    line-height: var(--leading-tight);
    margin: 0 0 var(--space-4) 0;
}

.vendor-hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--leading-relaxed);
    margin: 0 0 var(--space-8) 0;
}

.vendor-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    margin-bottom: var(--space-8);
}

.vendor-hero-stat {
    text-align: center;
}

.vendor-hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    color: var(--color-white);
}

.vendor-hero-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   VENDOR STEPS (HOW IT WORKS)
   ============================================ */

.vendor-steps-section {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.vendor-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-12);
}

.vendor-step {
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
}

.vendor-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    border-radius: var(--border-radius-full);
    margin-bottom: var(--space-4);
}

.vendor-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 153, 204, 0.1);
    border-radius: var(--border-radius-full);
    margin: 0 auto var(--space-4);
    font-size: 32px;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.vendor-step:hover .vendor-step-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.vendor-step-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--color-secondary);
    margin: 0 0 var(--space-2) 0;
}

.vendor-step-text {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: var(--leading-relaxed);
}

.vendor-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 56px;
    font-size: 24px;
    color: var(--color-gray-300);
}

/* ============================================
   VENDOR BENEFITS
   ============================================ */

.vendor-benefits-section {
    padding: var(--space-20) 0;
}

.vendor-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.vendor-benefit {
    text-align: center;
    padding: var(--space-8);
}

.vendor-benefit .icon-circle {
    margin: 0 auto var(--space-4);
    font-size: 28px;
}

.vendor-benefit .card-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

/* ============================================
   REGISTRATION FORM SECTION
   ============================================ */

.vendor-register-section {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.vendor-register-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-8);
    align-items: start;
}

.vendor-register-form-wrap {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
}

