/* --- SELLER PAGE STYLES --- */

/* --- Seller Hero Section --- */
.seller-hero {
    padding: 180px 5vw 80px 5vw;
    text-align: center;
    position: relative;
    z-index: 2;
}

.seller-hero .hero-badge {
    background: var(--purple-soft);
    color: #8a2be2;
}

.seller-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s forwards;
}

.seller-hero h1 span {
    background: var(--ig-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seller-hero p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

/* --- Benefits Grid --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--pink-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px auto;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- How It Works Banner --- */
.steps-banner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--ig-gradient);
    border-radius: 32px;
    padding: 60px 5vw;
    color: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(220, 39, 67, 0.3);
}

.steps-banner h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 40px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-box {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    color: #cc2366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-box p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- Seller Application Form --- */
.seller-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 60px 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.6);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.form-header h2 span {
    background: var(--ig-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header p {
    color: var(--text-muted);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    border-color: #cc2366;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(220, 39, 67, 0.1);
}

.input-group textarea {
    resize: vertical;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .seller-form-container {
        padding: 40px 25px;
    }
}