/* СМОТРИИ — только содержимое страницы.
   02.08.2026, слой входа: из этого файла выжжены ВСЕ правила, которые
   переопределяли общий шелл. Убрано:
     • @media (min-width: 768px) → .shell-tabs левой панелью 56px сбоку —
       левая панель отменена законом, док всегда снизу;
     • .shell-banner__kicker { display: none } — надстрочник у Смотрии виден;
     • .shell-banner__scene с шириной 70% и сдвигом вправо — картинки-рубашки
       придут отдельным заходом и лягут по канону;
     • .shell-banner__frame и .shell-splash* — фон и заставку красит шелл
       по цветам из реестра.
   Канон: свой CSS сайта не спорит с шеллом. Ниже — только зона .sm-*.
   Цвета берутся из переменных шелла, поэтому содержимое всегда в тон
   доку и шапке. */

:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #fff7ed;
  font-family: "Golos Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sm-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 14px 14px 94px;
}

.sm-stage {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--brand, #ff7668) 22%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 8%, color-mix(in srgb, var(--brand, #ff7668) 16%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 247, 237, .075), rgba(255, 247, 237, .028));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.sm-eyebrow {
  margin: 0;
  color: var(--brand-soft, #ffbbb4);
  font: 700 12px/1 "Philosopher", Georgia, serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px color-mix(in srgb, var(--brand, #ff7668) 34%, transparent);
}

.sm-stage h1 {
  margin: 0;
  color: #fff7ed;
  font: 760 36px/.96 "Philosopher", Georgia, serif;
  letter-spacing: 0;
}

.sm-hint {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 247, 237, .66);
  font-size: 15px;
  line-height: 1.5;
}

.sm-placeholder {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--brand, #ff7668) 26%, transparent);
  background: color-mix(in srgb, var(--brand, #ff7668) 8%, transparent);
  color: var(--brand-soft, #ffd6c7);
  font-size: 14px;
  font-weight: 700;
}

.sm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.sm-chips span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 237, .12);
  padding: 0 10px;
  color: rgba(255, 247, 237, .72);
  background: rgba(255, 247, 237, .045);
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .sm-page {
    padding: 18px 16px 104px;
  }

  .sm-stage {
    min-height: 238px;
    padding: 22px;
  }

  .sm-stage h1 {
    font-size: 48px;
  }
}

/* СОФИТ ВКЛЮЧЁН — титульное. Тёплый ореол перед раструбом, нарисованный
   КОДОМ, а не запечённый в PNG: так его можно приглушить одной строкой,
   и на любом фоне не появится кайма вокруг картинки.
   Раструб смотрит влево и вниз, поэтому пятно смещено туда же.
   Свечение еле заметное — намёк, что прибор включён, а не фонарь.
   Правило локальное, только для Смотрии: общий shell.css не тронут. */
body[data-shell-product="smotrii"] .shell-title__inner {
  position: relative;
}

body[data-shell-product="smotrii"] .shell-title__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(34vw, 190px);
  height: min(34vw, 190px);
  /* Пятно живёт на уровне раструба: чуть левее центра предмета
     и примерно на середине его высоты. */
  transform: translate(calc(-50% - min(10vw, 58px)), min(14vw, 78px));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(255, 214, 190, .26) 0%,
    rgba(255, 176, 140, .14) 34%,
    rgba(255, 150, 116, .045) 62%,
    transparent 78%);
  filter: blur(10px);
}

/* При схлопывании титульного гаснет вместе с предметом. */
body[data-shell-product="smotrii"].shell-collapsing .shell-title__inner::before,
html.shell-collapsing body[data-shell-product="smotrii"] .shell-title__inner::before {
  opacity: 0;
  transition: opacity 180ms ease;
}
