

/* Start:/local/components/china/seller.landing/templates/.default/style.css?17730971086867*/
:root {
    --sl-primary: #c62828;
    --sl-primary-hover: #b71c1c;
    --sl-text: #1a1a1a;
    --sl-gray: #f5f7fa;
}

.seller-lp {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--sl-text);
    line-height: 1.5;
    background: #fff;
}

.seller-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-red { color: var(--sl-primary); }

/* Header */
.seller-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.seller-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.seller-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--sl-text);
}
.seller-logo__badge {
    background: var(--sl-primary);
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 5px;
    text-transform: uppercase;
}
.seller-nav {
    display: flex;
    gap: 30px;
}
.seller-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}
.seller-nav a:hover { color: var(--sl-primary); }
.seller-header__actions { display: flex; gap: 10px; }

/* Buttons */
.seller-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    font-size: 14px;
    display: inline-block;
    text-align: center;
}
.seller-btn--primary {
    background: var(--sl-primary);
    color: #fff;
}
.seller-btn--primary:hover {
    background: var(--sl-primary-hover);
    transform: translateY(-1px);
}
.seller-btn--outline {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--sl-text);
}
.seller-btn--outline:hover {
    border-color: var(--sl-text);
}
.seller-btn--lg {
    padding: 16px 32px;
    font-size: 18px;
}
.seller-btn--full { width: 100%; }

/* Hero */
.seller-hero {
    padding: 80px 0;
    overflow: hidden;
}
.seller-hero__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.seller-hero__content { flex: 1; }
.seller-hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.seller-hero__subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}
.seller-hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}
.seller-stat__val {
    font-size: 24px;
    font-weight: 700;
    color: var(--sl-text);
}
.seller-stat__label {
    font-size: 14px;
    color: #888;
}
.seller-hero__visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seller-card-mockup {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    width: 300px;
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
}
.mockup-val { font-size: 32px; font-weight: 800; color: var(--sl-primary); }
.seller-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}
.seller-circle--1 {
    width: 300px;
    height: 300px;
    background: rgba(198, 40, 40, 0.05);
    top: 0;
    right: 0;
}
.seller-circle--2 {
    width: 150px;
    height: 150px;
    background: rgba(198, 40, 40, 0.1);
    bottom: 20px;
    left: 20px;
}

/* Sections */
.seller-section { padding: 80px 0; }
.seller-bg-gray { background: var(--sl-gray); }
.seller-section__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

/* Grid */
.seller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.seller-feature {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: transform 0.3s;
}
.seller-feature:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.seller-feature__icon { font-size: 40px; margin-bottom: 20px; }
.seller-feature h3 { font-size: 20px; margin-bottom: 10px; }
.seller-feature p { color: #666; }

/* Steps */
.seller-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.seller-step { text-align: center; }
.seller-step__num {
    width: 50px;
    height: 50px;
    background: var(--sl-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Reg Form */
.seller-reg-card {
    background: #1a1a1a;
    color: #fff;
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.seller-reg-card__left h2 { font-size: 40px; margin-bottom: 20px; }
.seller-reg-card__left p { font-size: 18px; opacity: 0.8; margin-bottom: 40px; }
.seller-check-list { list-style: none; padding: 0; }
.seller-check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-size: 18px; }
.seller-check-list li::before { content: "✓"; color: var(--sl-primary); font-weight: bold; }

.seller-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    color: #333;
}
.seller-form__group { margin-bottom: 20px; }
.seller-form__group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 14px; }
.seller-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}
.seller-input:focus { outline: none; border-color: var(--sl-primary); }
.seller-form__note { font-size: 12px; color: #888; margin-top: 15px; text-align: center; }

.seller-success-msg {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    color: #333;
    text-align: center;
}
.seller-success-icon { font-size: 60px; margin-bottom: 20px; }

/* FAQ */
.seller-faq { max-width: 800px; margin: 0 auto; }
.seller-faq__item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.seller-faq__item summary {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.seller-faq__item summary::after { content: "+"; font-size: 24px; color: var(--sl-primary); }
.seller-faq__item[open] summary::after { content: "−"; }
.seller-faq__content { margin-top: 15px; color: #666; line-height: 1.6; }

@media (max-width: 900px) {
    .seller-hero__inner { flex-direction: column; text-align: center; }
    .seller-hero__stats { justify-content: center; }
    .seller-reg-card { grid-template-columns: 1fr; padding: 30px; }
    .seller-nav { display: none; }
}
/* End */
/* /local/components/china/seller.landing/templates/.default/style.css?17730971086867 */
