/* ===== seller PAGE STYLES ===== */

/* ===== seller HERO ===== */
.seller-hero {
  background: linear-gradient(135deg, #fff 0%, #fef2f4 100%);
  padding: 60px 0;
  overflow: hidden;
}

.seller-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.seller-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seller-hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: #111;
  margin: 0;
}

.seller-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  max-width: 500px;
}

.seller-hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.hero-feature-icon {
  color: #E2012D;
  font-weight: 900;
}

/* Hero Image Area */
.seller-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.seller-image-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 20px;
}

.hero-dashboard-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
}

/* Floating Stats */
.floating-stat {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

.floating-stat.stat-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.floating-stat.stat-2 {
  top: 50%;
  right: -30px;
  animation-delay: 1s;
}

.floating-stat.stat-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-stat-icon {
  font-size: 24px;
}

.floating-stat-content {
  display: flex;
  flex-direction: column;
}

.floating-stat-number {
  font-size: 18px;
  font-weight: 900;
  color: #E2012D;
}

.floating-stat-label {
  font-size: 11px;
  color: #666;
  font-weight: 500;
}

/* ===== WHY SELL SECTION ===== */
.why-sell {
  background: #000;
  padding: 60px 0;
}

.why-sell .section-title {
  color: #fff;
}

.why-sell .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.why-sell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-sell-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-sell-card:hover {
  border-color: #E2012D;
  transform: translateY(-4px);
}

.why-sell-icon {
  width: 50px;
  height: 50px;
  background: #E2012D;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-sell-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.why-sell-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin: 0 0 10px;
}

.why-sell-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* ===== GET STARTED SECTION ===== */
.get-started {
  background: #fff;
  padding: 60px 0;
}

.get-started .section-title {
  color: #000;
}

.get-started .section-subtitle {
  color: #555;
}

.get-started-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  flex-wrap: wrap;
}

.get-started-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
  padding: 0 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #E2012D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin: 0 0 8px;
}

.step-content p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.step-connector {
  width: 80px;
  height: 3px;
  background: #E2012D;
  margin: 0 -10px;
  margin-top: -40px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: #f8f8f8;
  padding: 60px 0;
}

.pricing-section .section-title {
  color: #000;
}

.pricing-section .section-subtitle {
  color: #555;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 2px solid #eee;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #E2012D;
  box-shadow: 0 12px 40px rgba(226, 1, 45, 0.1);
}

.pricing-card.featured {
  border-color: #E2012D;
  background: linear-gradient(135deg, #fff 0%, #fef8f9 100%);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E2012D;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin: 0 0 12px;
}

.pricing-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price {
  font-size: 48px;
  font-weight: 900;
  color: #E2012D;
  line-height: 1;
}

.price-label {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: #E2012D;
  font-weight: 700;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== seller STORIES ===== */
.seller-stories {
  background: #fff;
  padding: 60px 0;
}

.seller-stories .section-title {
  color: #000;
}

.seller-stories .section-subtitle {
  color: #555;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.story-card {
  background: #fff;
  border: 2px solid #111;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.story-card:hover {
  border-color: #E2012D;
  box-shadow: 0 8px 24px rgba(226, 1, 45, 0.1);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.story-avatar {
  width: 50px;
  height: 50px;
  background: #E2012D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.story-meta h4 {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin: 0 0 4px;
}

.story-meta span {
  font-size: 13px;
  color: #666;
}

.story-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 10px;
}

.story-stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 20px;
  font-weight: 900;
  color: #E2012D;
}

.stat-label {
  font-size: 11px;
  color: #666;
  font-weight: 500;
}

.story-quote {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* ===== REGISTRATION SECTION ===== */
.registration-section {
  background: #000;
  padding: 40px 0;
}

/* Standalone registration page - fills viewport */
.registration-page {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

.registration-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.registration-info {
  color: #fff;
}

.registration-info h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 16px 0 12px;
}

.registration-info > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0 0 20px;
}

.registration-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.reg-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reg-benefit-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.reg-benefit h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}

.reg-benefit p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.contact-info {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 6px 0;
}

/* Form Container */
.registration-form-container {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.seller-form h3 {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin: 0 0 16px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #E2012D;
  box-shadow: 0 0 0 3px rgba(226, 1, 45, 0.1);
}

.form-group input::placeholder {
  color: #aaa;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #E2012D;
}

.checkbox-group label {
  font-size: 12px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

.checkbox-group a {
  color: #E2012D;
  text-decoration: underline;
}

.form-disclaimer {
  font-size: 10px;
  color: #888;
  text-align: center;
  margin: 12px 0 0;
}

.btn-full.btn-large {
  padding: 12px 24px;
  font-size: 14px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fff;
  padding: 60px 0;
}

.faq-section .section-title {
  color: #000;
}

.faq-section .section-subtitle {
  color: #555;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.faq-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
}

.faq-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: #E2012D;
  padding: 60px 0;
}

.final-cta-content {
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
}

.final-cta .btn-primary {
  background: #E2012D;
  color: #fff;
  border-color: #E2012D;
}

.final-cta .btn-primary:hover {
  background: #c80028;
  color: #fff;
  border-color: #c80028;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .seller-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .seller-hero-title {
    font-size: 38px;
  }

  .seller-hero-image {
    order: -1;
  }

  .floating-stat.stat-1 {
    left: 10px;
  }

  .floating-stat.stat-2 {
    right: 10px;
  }

  .get-started-steps {
    flex-direction: column;
    gap: 24px;
  }

  .step-connector {
    width: 3px;
    height: 40px;
    margin: -10px 0;
  }

  .registration-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 520px) {
  .seller-hero {
    padding: 40px 0;
  }

  .seller-hero-title {
    font-size: 32px;
  }

  .seller-hero-features {
    flex-direction: column;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .registration-form-container {
    padding: 24px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }
}
