/* ==========================================
   Секция «О мастере» — Hero-блок
   ========================================== */

.about-hero {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.about-hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero__content {
  flex: 1;
  max-width: 600px;
}

.about-hero__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-hero__text {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 30px;
}

.about-hero__image-wrap {
  flex: 1;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Адаптивность для мобилок */
@media (max-width: 768px) {
  .about-hero__container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-hero__title {
    font-size: 28px;
  }

  .about-hero__actions {
    display: flex;
    justify-content: center;
  }
}

/* ==========================================
   Секция «О мастере» — Блок преимуществ
   ========================================== */

.about-features {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-features__heading {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.about-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-card__desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.5;
}

/* Адаптивность для мобилок и планшетов */
@media (max-width: 900px) {
  .about-features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================
   Секция «О мастере» — Адреса магазинов
   ========================================== */

.about-shops {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.about-shops__heading {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
}

.about-shops__subheading {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.about-shops__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.shop-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.shop-card__name {
  font-size: 22px;
  margin-bottom: 15px;
}

.shop-card__address {
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
}

.shop-card__shelf {
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* Адаптивность */
@media (max-width: 768px) {
  .about-shops__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Секция «О мастере» — Блок B2B / Партнерам
   ========================================== */

.about-partner {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-partner__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-partner__box {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
}

.about-partner__heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-partner__desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

/* Адаптивность для мобилок */
@media (max-width: 768px) {
  .about-partner__box {
    padding: 30px 20px;
  }
  
  .about-partner__heading {
    font-size: 24px;
  }
}

/* ==========================================
   Секция «О мастере» — Финальный CTA
   ========================================== */

.about-cta {
  padding: 80px 0;
  text-align: center;
  background-color: #ffffff;
}

.about-cta__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-cta__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-cta__text {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-cta__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Адаптивность для кнопок */
@media (max-width: 600px) {
  .about-cta__actions {
    flex-direction: column;
    gap: 10px;
  }
}