/**
 * Buyer Central Page Styles
 * Landing page for buyers and shoppers
 */

.buyer-central-page {
  min-height: 100vh;
  padding: 60px 20px 80px;
}

.buyer-hero {
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}

.buyer-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #00b207;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.buyer-hero p {
  font-size: 20px;
  color: #4b5563;
  margin-bottom: 40px;
}

.buyer-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.buyer-cta-btn {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.buyer-cta-primary {
  background: linear-gradient(135deg, #00b207 0%, #009206 100%);
  color: white;
}

.buyer-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 178, 7, 0.4);
}

.buyer-cta-secondary {
  background: white;
  color: #00b207;
  border: 2px solid #00b207;
}

.buyer-cta-secondary:hover {
  background: #00b207;
  color: white;
}

.buyer-info-section {
  max-width: 1000px;
  margin: 0 auto 60px;
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.buyer-info-section h2 {
  font-size: 32px;
  color: #00b207;
  margin-bottom: 30px;
  text-align: center;
}

.buyer-info-section h3 {
  font-size: 24px;
  color: #1f2937;
  margin: 25px 0 15px;
  font-weight: 600;
}

.buyer-info-section p {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

.buyer-info-section .moto {
  background: linear-gradient(135deg, #00b207 0%, #009206 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin: 30px 0;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
}

.buyer-info-section .cta-text {
  text-align: center;
  font-size: 20px;
  color: #00b207;
  font-weight: 600;
  margin-top: 30px;
}

.buyer-features {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.buyer-feature-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.buyer-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.buyer-feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.buyer-feature-card h3 {
  font-size: 24px;
  color: #00b207;
  margin-bottom: 15px;
}

.buyer-feature-card p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
}

.buyer-stats {
  max-width: 1200px;
  margin: 80px auto;
  background: linear-gradient(135deg, #00b207 0%, #009206 100%);
  border-radius: 20px;
  padding: 60px 40px;
  color: white;
  text-align: center;
}

.buyer-stats h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .buyer-hero h1 {
    font-size: 32px;
  }

  .buyer-hero p {
    font-size: 16px;
  }

  .buyer-cta-buttons {
    flex-direction: column;
  }

  .buyer-cta-btn {
    width: 100%;
  }

  .buyer-info-section {
    padding: 30px 20px;
  }

  .buyer-info-section h2 {
    font-size: 26px;
  }

  .buyer-info-section h3 {
    font-size: 20px;
  }

  .buyer-info-section p {
    font-size: 15px;
  }
}
