@import url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.2.3/css/flag-icons.min.css");

/* ========================================
   BECOME A VENDOR PAGE STYLES
   Version: 1.1 (Updated with Platform Features)
   Created: January 14, 2026
   ======================================== */

/* ========== HERO SECTION ========== */
.vendor-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    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,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.vendor-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.vendor-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 500;
}

.benefit-item i {
    color: #4ade80;
    font-size: 22px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: white;
    color: #667eea;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 38px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-large {
    background: #1e293b;
    color: white;
    padding: 20px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #0f172a;
}

.btn-hero {
    background: white;
    color: #667eea;
    padding: 22px 60px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #f8f9fa;
}

/* ========== WHY CHOOSE SECTION ========== */
.why-choose {
    padding: 80px 20px;
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.benefit-card i {
    font-size: 52px;
    color: #667eea;
    margin-bottom: 25px;
    display: block;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
}

/* ========== PERFECT FOR SECTION ========== */
.perfect-for {
    padding: 80px 20px;
    background: #f8fafc;
}

.perfect-for h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
    font-weight: 700;
}

.business-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.business-type {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.business-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.25);
}

.business-type i {
    font-size: 44px;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

.business-type h4 {
    font-size: 18px;
    color: #1e293b;
    font-weight: 600;
}

.all-welcome {
    text-align: center;
    font-size: 20px;
    color: #64748b;
    font-style: italic;
    font-weight: 500;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 280px;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step i {
    font-size: 52px;
    color: #667eea;
    margin-bottom: 25px;
    display: block;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
}

.step p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.time-badge {
    display: inline-block;
    background: #ede9fe;
    color: #667eea;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.step-arrow {
    font-size: 36px;
    color: #cbd5e1;
    align-self: center;
}

.cta-center {
    text-align: center;
}

/* ========== WHAT YOU GET SECTION ========== */
.what-you-get {
    padding: 80px 20px;
    background: #f8fafc;
}

.what-you-get h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
    font-weight: 700;
}

.features-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 25px;
}

.feature-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(15px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.2);
}

.feature-item i {
    font-size: 44px;
    color: #667eea;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 600;
}

.feature-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
    font-weight: 700;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.faq-item {
    background: #f8fafc;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.faq-item h4 i {
    color: #667eea;
    font-size: 22px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta .subtitle {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cta-benefits span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 500;
}

.cta-benefits i {
    font-size: 20px;
}

.signin-link {
    font-size: 17px;
    opacity: 0.9;
    font-weight: 400;
}

.signin-link a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.signin-link a:hover {
    opacity: 0.8;
}

/* ========== FOOTER ========== */
.main-footer {
    background: #1e293b;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-content p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-content a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* ========== MULTILINGUAL SECTION ========== */
.multilingual-section {
    padding: 100px 20px;
    background: #f1f5f9;
    text-align: center;
}

.multilingual-content {
    max-width: 800px;
    margin: 0 auto;
}

.language-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.lang-badge {
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
}

.lang-badge .fi {
    width: 22px;
    line-height: 1;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.multilingual-section h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

.multilingual-section p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
}

/* ========== SMART TOOLS SECTION ========== */
.smart-tools-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.smart-tools-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
    font-weight: 700;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-color: #e2e8f0;
}

.tool-card i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 30px;
}

.tool-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
}

.tool-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 768px) {
    .vendor-hero {
        padding: 60px 20px;
    }

    .vendor-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .why-choose h2,
    .perfect-for h2,
    .how-it-works h2,
    .what-you-get h2,
    .faq-section h2 {
        font-size: 32px;
    }

    .benefits-grid,
    .business-types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .final-cta .subtitle {
        font-size: 20px;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .offer-box h2 {
        font-size: 28px;
    }

    .offer-box h3 {
        font-size: 22px;
    }

    .multilingual-section {
        padding: 60px 20px;
    }

    .multilingual-section h2,
    .smart-tools-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .language-badges {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tool-card {
        padding: 35px 25px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .vendor-hero {
        padding: 50px 15px;
    }

    .vendor-hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 30px;
        font-size: 16px;
    }

    .btn-hero {
        padding: 18px 40px;
        font-size: 18px;
        width: 100%;
        justify-content: center;
    }

    .benefit-card,
    .business-type,
    .feature-item {
        padding: 25px 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .final-cta {
        padding: 60px 15px;
    }
}