/* ==========================================
   GIFTNETAPP SELLER LANDING PAGE
   All classes prefixed with .sl- to avoid conflicts
   ========================================== */

/* ── Reset scoped to seller landing ── */
.sl-root * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sl-root {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

/* ── Container ── */
.sl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.sl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.sl-header .sl-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.sl-logo h2 {
  font-size: 22px;
  font-weight: 800;
  color: #16a34a;
  letter-spacing: -0.5px;
}

.sl-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sl-nav a {
  padding: 8px 14px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.15s;
}

.sl-nav a:hover {
  background: #f0fdf4;
  color: #16a34a;
}

.sl-btn-login {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: 2px solid #16a34a;
  background: transparent;
  color: #16a34a;
}

.sl-btn-login:hover {
  background: #16a34a;
  color: #fff;
}

.sl-btn-login.sl-primary {
  background: #16a34a;
  color: #fff;
}

.sl-btn-login.sl-primary:hover {
  background: #15803d;
}

.sl-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #374151;
  padding: 4px 8px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.sl-hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #fff7ed 100%);
  padding: 80px 0 60px;
}

.sl-hero .sl-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sl-hero-badge {
  display: inline-flex;
  align-items: center;
  background: #dcfce7;
  color: #15803d;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sl-hero-content h1 {
  font-size: 42px;
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}

.sl-hero-subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.sl-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sl-btn-start-selling {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.sl-btn-start-selling:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.3);
}

.sl-btn-start-selling.sl-large {
  font-size: 18px;
  padding: 16px 36px;
}

.sl-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sl-image-placeholder {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.sl-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ==========================================
   SECTION COMMONS
   ========================================== */
.sl-section {
  padding: 72px 0;
}

.sl-section-alt {
  padding: 72px 0;
  background: #f9fafb;
}

.sl-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.sl-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.sl-section-subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

/* ==========================================
   CATEGORIES SECTION
   ========================================== */
.sl-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.sl-category-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s;
}

.sl-category-card:hover {
  border-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sl-category-image {
  margin-bottom: 14px;
}

.sl-category-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.sl-category-card p {
  font-size: 13.5px;
  color: #6b7280;
  margin-bottom: 12px;
}

.sl-category-list {
  list-style: none;
  padding: 0;
}

.sl-category-list li {
  font-size: 13px;
  color: #374151;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.sl-category-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.sl-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.sl-feature-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.2s;
}

.sl-feature-card:hover {
  border-color: #16a34a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sl-feature-icon {
  margin-bottom: 16px;
}

.sl-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.sl-feature-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.sl-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.sl-step-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
}

.sl-step-card:hover {
  border-color: #16a34a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sl-step-visual {
  margin-bottom: 16px;
}

.sl-step-visual svg {
  max-width: 100%;
  border-radius: 10px;
}

.sl-step-number {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sl-step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.sl-step-card p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 14px;
}

.sl-step-requirements {
  background: #f0fdf4;
  border-radius: 8px;
  padding: 12px 14px;
  text-align: left;
  font-size: 13px;
  color: #374151;
}

.sl-step-requirements strong {
  display: block;
  color: #15803d;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.sl-step-requirements ul {
  list-style: none;
  padding: 0;
}

.sl-step-requirements li {
  padding: 2px 0;
  font-size: 12.5px;
}

.sl-cta-center {
  text-align: center;
}

.sl-cta-subtext {
  margin-top: 12px;
  font-size: 14px;
  color: #9ca3af;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.sl-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 20px;
}

.sl-faq-item {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 22px;
  transition: border-color 0.15s;
}

.sl-faq-item:hover {
  border-color: #16a34a;
}

.sl-faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.sl-faq-item p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.6;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.sl-cta-section {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  padding: 72px 0;
}

.sl-cta-content {
  text-align: center;
}

.sl-cta-content h2 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.sl-cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.sl-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.sl-btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: #16a34a;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.sl-btn-secondary-cta:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}

/* ==========================================
   FOOTER
   ========================================== */
.sl-footer {
  background: #111827;
  color: #9ca3af;
  padding: 56px 0 0;
}

.sl-footer-top {
  margin-bottom: 40px;
}

.sl-footer-brand h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.sl-footer-brand p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.sl-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sl-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #1f2937;
  color: #9ca3af;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.15s;
}

.sl-social-icon:hover {
  background: #374151;
  color: #fff;
}

.sl-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.sl-footer-column h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.sl-footer-column ul {
  list-style: none;
  padding: 0;
}

.sl-footer-column ul li {
  margin-bottom: 8px;
}

.sl-footer-column ul li a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.sl-footer-column ul li a:hover {
  color: #fff;
}

.sl-footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 0;
}

.sl-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.sl-footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sl-footer-badge {
  background: #1f2937;
  color: #9ca3af;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .sl-hero .sl-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sl-hero-content h1 { font-size: 28px; }
  .sl-hero-cta { justify-content: center; }
  .sl-hero-image { display: none; }

  .sl-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .sl-nav.sl-active { display: flex; }
  .sl-mobile-menu-btn { display: block; }

  .sl-section-title { font-size: 24px; }
  .sl-faq-grid { grid-template-columns: 1fr; }
  .sl-cta-content h2 { font-size: 26px; }
  .sl-footer-bottom-content { flex-direction: column; text-align: center; }
}