/* =========================
   GENERIC
========================= */

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* =========================
   ABOUT INTRO
========================= */

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

.about-text {
  font-size: 16px;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 16px;
}

/* =========================
   STATS
========================= */

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

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

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #0052ff;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* =========================
   IMAGE
========================= */

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   SHOP SECTION
========================= */

.shop-content {
  max-width: 900px;
}

.shop-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.shop-content ul {
  margin: 20px 0 30px;
  padding-left: 24px;
}

.shop-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE – TABLET
========================= */

@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }

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

  .about-image img {
    max-width: 90%;
    margin: 0 auto;
  }

  .about-stats {
    gap: 20px;
  }
}

/* =========================
   RESPONSIVE – MOBILE
========================= */

@media (max-width: 575px) {
  .section-title {
    font-size: 24px;
  }

  .about-intro,
  .about-shop {
    padding: 30px 0;
  }

  .about-text,
  .shop-content p,
  .shop-content li {
    font-size: 15px;
  }

  .stat-number {
    font-size: 30px;
  }
}
