/* assets/css/home.css */

/* Минимальные стили для главной */

.home-hero { padding: 8px 0 6px; }
.home-hero__text { margin-top: 12px; margin-bottom: 12px; font-size: 13px; line-height: 1.35; color: #2b2b2b; }

/* Баннер только на мобиле */
.home-mobile-banner { margin: 10px 0 12px; }
.home-mobile-banner img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
@media (min-width: 768px){
  .home-mobile-banner { display:none; }
}

.home-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0 10px;
}
.home-actions a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 10px;
  background: #2b3866;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.home-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 6px;
}
.home-cats a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  background: #4f6a5f;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
  padding: 10px 8px;
  box-sizing: border-box;
}

/* Блоки товаров — плоские заголовки (без теней/объёма) */
.home-block { padding: 14px 0; }

.home-title{
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 0 12px;
  padding: 14px 14px;
  border-radius: 0;

  /* новый единый цвет для инфо-блоков товаров */
  background: #5a4f6a;
  color: #fff;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: none;

  box-shadow: none;
}

/* делаем таким же, чтобы ВСЕ 3 раздела были одного цвета без правок PHP */
.home-title--alt { background:#5a4f6a; }

.home-title--light {
  background:#ffffff;
  color:#1f2a26;
  border: none;
}

/* Бренды — плоский белый блок, без рамок/карточек */
.home-brands__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 380px){
  .home-brands__grid{ grid-template-columns: repeat(3, 1fr); }
}
.home-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 6px 4px;
  border: 0;
  background: transparent;
  text-decoration:none;
}
.home-brand img{
  max-width: 100%;
  max-height: 44px;
  height:auto;
  display:block;
  object-fit: contain;
}
.home-brand__txt{
  font-weight: 800;
  font-size: 12px;
  color:#1f2a26;
  text-align:center;
}

/* Нижние блоки — ПЛОСКИЕ: без рамок и без радиусов */
.home-flat-img{
  margin: 0 0 12px;
}
.home-flat-img img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 0;
}

/* "Почему именно" — плоский (без рамки) */
.home-why{
  padding: 4px 0 0;
}
.home-why h3{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
}
.home-why ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.home-why li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 13px;
  line-height: 1.35;
  color:#1f2a26;
}
.home-why li::before{
  content:"✅";
  flex:0 0 auto;
  line-height: 1.2;
}
