/* Светлая тема страницы магазина */
.shop-light{
  background: #f6f8fb;
  font-family: 'Poppins','Montserrat',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
/* Цвет только для контента, чтобы шапка не темнела */
.shop-wrap{ color:#1f2937; }

/* Контейнер */
.shop-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:24px 16px 64px;
}

/* Заголовки */
.shop-title{
  font-size:clamp(28px,3vw,36px);
  font-weight:700;
  margin:24px 0 20px;
}
.section-head{
  font-size:20px;
  font-weight:700;
  margin:18px 0 12px;
}

/* Карточка уведомления */
.notice-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(9,30,66,.05);
  padding:18px;
  display:grid;
  grid-template-columns:56px 1fr;
  gap:16px;
  align-items:start;
  margin-bottom:20px;
}
.notice-icon{ font-size:30px; line-height:1; }
.notice-card h2{ font-size:18px; margin:0 0 6px; }
.notice-card p{ margin:0 0 8px; line-height:1.7; }
.wa-link{ color:var(--accent-teal); font-weight:700; text-decoration:none; }
.wa-link:hover{ text-decoration:underline; }

/* Сетка тизеров */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.product-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(9,30,66,.05);
  padding:14px;
  text-align:center;
}
.product-card img{
  width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:12px; margin-bottom:10px;
}
.product-card h3{ font-size:18px; margin:6px 0 2px; }
.product-card .muted{ color:#6b7280; font-size:14px; margin:0 0 8px; }
.product-card .price{ font-weight:800; font-size:20px; margin-bottom:8px; }

/* Кнопка-заглушка */
.btn.disabled{
  border:2px solid #e5e7eb;
  background:#f9fafb;
  color:#6b7280;
  border-radius:9999px;
  padding:8px 14px;
  font-weight:700;
  cursor:not-allowed;
}

/* Плавающий WhatsApp (если используется на сайте) */
.floating-whatsapp{
  position:fixed; right:20px; bottom:20px; z-index:999;
  background:#25D366; color:#fff; padding:12px 16px;
  border-radius:50px; box-shadow:0 4px 10px rgba(0,0,0,.2);
  font-weight:700; text-decoration:none;
}

/* Небольшая гармонизация с шапкой */
.site-header *{ margin-block:0; }

/* Адаптив */
@media (max-width:860px){
  .notice-card{ grid-template-columns:40px 1fr; }
  .product-grid{ grid-template-columns:1fr; }
}




.shop-link {
  color: var(--accent-red, #ff1744);
  font-weight: 800;
  text-decoration: none;
}
.shop-link:hover,
.shop-link:focus-visible {
  text-decoration: underline;
}





/* --- Shop header: вернуть видимые цвета в шапке --- */
.shop-light .site-header .main-nav a,
.shop-light .site-header .header-cart,
.shop-light .site-header .social-btn,
.shop-light .site-header .nav-toggle {
  color: #fff !important;              /* белый текст/иконки на тёмной шапке */
}

/* если иконки — svg или используют currentColor */
.shop-light .site-header svg {
  fill: #fff !important;
  color: #fff !important;
}

/* лёгкая «пилюля» под соц.ссылками, как на блоге */
.shop-light .social-btn {
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
}
.shop-light .social-btn:hover { background: rgba(255,255,255,.18); }



