/* ==========================================
   Шапка страницы точек продаж (Shops Header)
   ========================================== */

.shops-header {
  padding: 60px 0 30px;
  text-align: center;
}

.shops-header .page-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.shops-header .page-subtitle {
  font-size: 16px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .shops-header {
    padding: 40px 0 20px;
  }

  .shops-header .page-title {
    font-size: 28px;
  }

  .shops-header .page-subtitle {
    font-size: 14px;
  }
}

/* ==========================================
   Сетка точек продаж (Shops Grid)
   ========================================== */

.shops-list-section {
  padding: 40px 0 80px 0;
}

.shops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.shop-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 25px;
  transition: box-shadow 0.2s ease;
}

.shop-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shop-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.shop-card__address, 
.shop-card__hours {
  font-size: 15px;
  color: #666666;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Выделение номера полки */
.shop-card__shelf {
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 10px;
  background: #fff3e0;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
}

.shop-card__link {
  display: inline-block;
  margin-top: 15px;
  color: #ff6b00;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.shop-card__link:hover {
  opacity: 0.8;
}

/* Адаптив */
@media (max-width: 768px) {
  .shops-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Блок сотрудничества (Shops CTA)
   ========================================== */

.shops-cta {
  padding: 0 0 80px 0;
}

.shops-cta__box {
  background-color: #f9f9f9;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.shops-cta__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.shops-cta__text {
  font-size: 16px;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.shops-cta__button {
  display: inline-block;
  background-color: #ff6b00;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.shops-cta__button:hover {
  background-color: #e56000;
}

/* Адаптив */
@media (max-width: 768px) {
  .shops-cta__box {
    padding: 25px 20px;
  }
  
  .shops-cta__title {
    font-size: 20px;
  }

  .shops-cta__text {
    font-size: 14px;
  }
}