/**
 * Techno Throne – Start Your Shopify Store section (new merchants)
 * Clean SaaS layout: left copy, right dashboard illustration. Soft Shopify green accent.
 */

.start-shopify {
  padding: 4rem 1.5rem 5rem;
  background: linear-gradient(165deg, #f8fcf8 0%, #f0f7f0 40%, #f8fafc 100%);
}

@media (min-width: 768px) {
  .start-shopify {
    padding: 5rem 2rem 6rem;
  }
}

@media (min-width: 1024px) {
  .start-shopify {
    padding: 6rem 2rem 7rem;
  }
}

.start-shopify__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .start-shopify__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* —— Left: Content —— */
.start-shopify__content {
  text-align: center;
}

@media (min-width: 1024px) {
  .start-shopify__content {
    text-align: left;
    max-width: 32rem;
  }
}

.start-shopify__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 1rem;
}

.start-shopify__title .start-shopify__accent {
  color: #2d7d46;
}

@media (min-width: 640px) {
  .start-shopify__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .start-shopify__title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
}

.start-shopify__subtitle {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 1.75rem;
}

@media (min-width: 1024px) {
  .start-shopify__subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.start-shopify__content .start-shopify__subtitle {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .start-shopify__content .start-shopify__subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.start-shopify__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  text-align: left;
  display: inline-block;
}

@media (min-width: 1024px) {
  .start-shopify__list {
    display: block;
    margin-bottom: 2.25rem;
  }
}

.start-shopify__list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: #334155;
  margin-bottom: 0.75rem;
}

.start-shopify__list li:last-child {
  margin-bottom: 0;
}

.start-shopify__list .start-shopify__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #2d7d46;
}

.start-shopify__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .start-shopify__ctas {
    justify-content: flex-start;
  }
}

.start-shopify__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #2d7d46;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(45, 125, 70, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.start-shopify__cta-primary:hover {
  background: #236b3a;
  box-shadow: 0 4px 14px rgba(45, 125, 70, 0.4);
}

.start-shopify__cta-primary:active {
  transform: scale(0.98);
}

.start-shopify__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.start-shopify__cta-secondary:hover {
  border-color: #2d7d46;
  color: #2d7d46;
  background: #f0f7f0;
}

.start-shopify__disclaimer {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .start-shopify__disclaimer {
    margin-left: 0;
  }
}

/* —— Right: Dashboard illustration —— */
.start-shopify__visual {
  position: relative;
  order: -1;
}

@media (min-width: 1024px) {
  .start-shopify__visual {
    order: 0;
  }
}

.start-shopify__dashboard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 10px 30px -10px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .start-shopify__dashboard {
    margin: 0;
    max-width: 100%;
  }
}

.start-shopify__dashboard-header {
  padding: 0.875rem 1.25rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.start-shopify__dashboard-dots {
  display: flex;
  gap: 6px;
}

.start-shopify__dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.start-shopify__dashboard-dots span:first-child {
  background: #94a3b8;
}

.start-shopify__dashboard-title {
  flex: 1;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.start-shopify__dashboard-body {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  min-height: 200px;
}

.start-shopify__dashboard-sidebar {
  background: #f1f5f9;
  border-right: 1px solid #e2e8f0;
  padding: 1rem 0.75rem;
  margin: -1.25rem 0 -1.25rem -1.25rem;
}

@media (max-width: 480px) {
  .start-shopify__dashboard-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .start-shopify__dashboard-sidebar {
    margin: -1.25rem -1.25rem 0 -1.25rem;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
  }

  .start-shopify__dashboard-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.25rem;
  }

  .start-shopify__dashboard-nav li {
    margin-bottom: 0;
    white-space: nowrap;
  }

  .start-shopify__dashboard-main {
    padding-left: 0;
  }
}

.start-shopify__dashboard-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.start-shopify__dashboard-nav li {
  font-size: 0.6875rem;
  color: #64748b;
  padding: 0.5rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.25rem;
}

.start-shopify__dashboard-nav li.start-shopify__dashboard-nav--active {
  background: #fff;
  color: #2d7d46;
  font-weight: 600;
}

.start-shopify__dashboard-main {
  padding-left: 1rem;
}

.start-shopify__dashboard-section {
  margin-bottom: 1rem;
}

.start-shopify__dashboard-section:last-child {
  margin-bottom: 0;
}

.start-shopify__dashboard-section-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.start-shopify__dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.start-shopify__dashboard-metric {
  background: #f0f7f0;
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  border: 1px solid rgba(45, 125, 70, 0.15);
}

.start-shopify__dashboard-metric-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.start-shopify__dashboard-metric-label {
  font-size: 0.625rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.start-shopify__dashboard-bar {
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  overflow: hidden;
  margin-top: 0.375rem;
}

.start-shopify__dashboard-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #2d7d46, #95BF47);
}

.start-shopify__dashboard-bar-fill--1 { width: 70%; }
.start-shopify__dashboard-bar-fill--2 { width: 45%; }
.start-shopify__dashboard-bar-fill--3 { width: 55%; }
