/* ==========================================================================
   КАДР — витрина: hero в красном дуотоне, «значение», панели фильмов,
   сетка товаров, каталог, карточка, футер. Подключается после style.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Дуотон: серое фото + красный слой multiply
   -------------------------------------------------------------------------- */
.duo { position: relative; overflow: hidden; background: var(--red); }
.duo img, .duo video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.15) brightness(1.35); }
/* multiply красит света в красный, screen поднимает тени в бордовый — как в референсе */
.duo::after { content: ""; position: absolute; inset: 0; background: var(--red); mix-blend-mode: multiply; pointer-events: none; }
.duo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--red); mix-blend-mode: screen; opacity: 0.45; pointer-events: none; }

/* --------------------------------------------------------------------------
   Сетка товаров и карточка
   -------------------------------------------------------------------------- */
.strip { padding: 90px var(--pad-x) 40px; background: var(--cream); }
.strip__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.strip__head h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(30px, 4.4vw, 58px); line-height: 0.92; text-transform: uppercase; color: var(--red); }
.strip__head .lbl { display: block; margin-bottom: 8px; color: var(--ink); }

.plist { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 20px; }
.plc { position: relative; display: flex; flex-direction: column; }
.plc__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 3 / 4;
}
.plc__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.6s var(--ease), transform 1.2s var(--ease); }
.plc__img--2 { opacity: 0; }
.plc.is-alt .plc__img--1 { transform: scale(1.03); }
.plc.is-alt .plc__img--2 { opacity: 1; }
.plc__dots { position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2; display: flex; gap: 3px; }
.plc__dots i { flex: 1; height: 2px; background: rgba(243, 239, 233, 0.4); transition: background-color 0.3s var(--ease); }
.plc__dots i.is-on { background: var(--cream); }
.plc__flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--red);
}
.plc__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.plc__body { padding: 14px 0 0; }
.plc__name { display: block; font-family: var(--f-serif); font-size: 17px; line-height: 1.2; color: var(--ink); overflow-wrap: anywhere; transition: color 0.3s var(--ease); }
.plc__name:hover { color: var(--red); }
.plc__price { display: flex; align-items: baseline; gap: 10px; margin-top: 8px; }
.plc__price .price { display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: 12px; font-weight: 500; color: var(--red); border: 1px solid transparent; transition: background-color 0.35s var(--ease), color 0.35s var(--ease); margin-left: -9px; }
.plc.is-alt .plc__price .price { background: var(--red); color: var(--cream); }
.plc__price .price-old { font-size: 11px; color: var(--grey-dim); text-decoration: line-through; }

/* --------------------------------------------------------------------------
   Каталог
   -------------------------------------------------------------------------- */
.cat-top { padding: calc(var(--head-h) + 40px) var(--pad-x) 26px; }
.cat-top__l { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.cat-top h1 { font-family: var(--f-display); font-weight: 700; font-size: clamp(48px, 9vw, 132px); line-height: 0.88; text-transform: uppercase; color: var(--red); }
.cat-top__filter { height: 36px; padding: 0 20px; border-radius: 999px; background: none; border: 1px solid var(--red); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); transition: background-color 0.3s var(--ease), color 0.3s var(--ease); }
.cat-top__filter:hover { background: var(--red); color: var(--cream); }
.cat-top__filter [data-filter-count]:not(:empty)::before { content: " /"; }
.cat-top__count { display: block; margin-top: 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); }
.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 var(--pad-x) 30px; }
.cat-chips a { display: inline-flex; align-items: center; height: 32px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line-red); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); }
.cat-chips a:hover, .cat-chips a.is-on { background: var(--red); border-color: var(--red); color: var(--cream); }
#catGrid { padding: 0 var(--pad-x) 90px; }
.cat-empty { padding: 60px var(--pad-x) 120px; text-align: center; color: var(--grey); }
.cat-empty .h-sec { margin-bottom: 14px; color: var(--red); }
.cat-empty button { margin-top: 22px; }

/* панель фильтра — слева, кремовая с красным */
.fd {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 135;
  width: 100%;
  max-width: 520px;
  height: 100%;
  overflow-y: auto;
  background: var(--cream);
  border-right: 1px solid var(--line-red);
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.5s var(--ease), visibility 0.5s;
}
body.filter-open .fd { transform: translateX(0); visibility: visible; }
body.filter-open .veil { opacity: 1; visibility: visible; }
.fd__head { display: flex; justify-content: space-between; align-items: center; padding: 26px 36px 0; }
.fd__head::before { content: "Фильтр"; font-family: var(--f-display); font-weight: 700; font-size: 26px; text-transform: uppercase; color: var(--red); }
.fd__close { background: none; border: none; padding: 0; line-height: 0; color: var(--red); }
.fd__cols { padding: 20px 36px 60px; }
.fd__col + .fd__col { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-red); }
.fd__col h3 { margin-bottom: 10px; font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }
.fd__opts { display: flex; flex-wrap: wrap; gap: 8px; }
#fdSort, #fdCats { flex-direction: column; gap: 0; }
.fd-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--f-serif);
  font-size: 20px;
  color: var(--ink);
  transition: color 0.25s var(--ease), padding-left 0.3s var(--ease);
}
.fd-item:hover { color: var(--red); }
.fd-item.is-on { color: var(--red); padding-left: 18px; }
.fd-item.is-on::before { content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: var(--red); }
.fd-opt { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 14px; border: 1px solid var(--line-red); border-radius: 999px; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); cursor: pointer; transition: background-color 0.25s var(--ease), color 0.25s var(--ease); }
.fd-opt:hover { border-color: var(--red); }
.fd-opt:has(input:checked) { background: var(--red); color: var(--cream); border-color: var(--red); }
.fd-opt input { position: absolute; width: 1px; height: 1px; margin: 0; opacity: 0; }
.fd-sw { display: inline-block; width: 10px; height: 10px; margin-right: 6px; border-radius: 50%; border: 1px solid rgba(28, 26, 26, 0.25); vertical-align: -1px; }

.fd-range { padding-top: 4px; }
.fd-range__vals { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink); }
.fd-range__vals b { font-weight: 500; color: var(--red); }
.fd-range__track { position: relative; height: 30px; margin-top: 8px; }
.fd-range__track::before { content: ""; position: absolute; left: 0; right: 0; top: 14px; height: 1px; background: var(--line-red); }
.fd-range__fill { position: absolute; top: 13px; height: 3px; background: var(--red); }
.fd-range input[type="range"] { position: absolute; left: 0; top: 0; width: 100%; height: 30px; margin: 0; appearance: none; background: transparent; pointer-events: none; }
.fd-range input[type="range"]::-webkit-slider-thumb { appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--red); border: 2px solid var(--cream); box-shadow: 0 0 0 1px var(--red); cursor: pointer; pointer-events: auto; }
.fd-range input[type="range"]::-moz-range-thumb { width: 15px; height: 15px; border-radius: 50%; background: var(--red); border: 2px solid var(--cream); box-shadow: 0 0 0 1px var(--red); cursor: pointer; pointer-events: auto; }
.fd-range input[type="range"]::-webkit-slider-runnable-track { height: 30px; background: transparent; }
.fd-range input[type="range"]::-moz-range-track { height: 30px; background: transparent; }

.fd__foot { display: flex; align-items: center; gap: 20px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line-red); }
.fd__foot .btn-solid { flex: 1; height: 46px; }
.fd__reset { background: none; border: none; padding: 0; font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); border-bottom: 1px solid var(--line); }
.fd__reset:hover { color: var(--red); border-color: var(--red); }

/* --------------------------------------------------------------------------
   Карточка товара — галерея слева, инфо справа
   -------------------------------------------------------------------------- */
.pp {
  display: grid;
  grid-template-columns: 72px minmax(0, 560px) minmax(320px, 420px);
  column-gap: 32px;
  justify-content: center;
  align-items: start;
  padding: calc(var(--head-h) + 24px) var(--pad-x) 0;
}
.pp-thumbs { display: flex; flex-direction: column; gap: 8px; }
.pp-thumbs button { padding: 0; background: none; border: 1px solid transparent; line-height: 0; opacity: 0.6; transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease); }
.pp-thumbs button.is-active, .pp-thumbs button:hover { opacity: 1; border-color: var(--red); }
.pp-thumbs img { width: 70px; height: auto; aspect-ratio: 3 / 4; object-fit: cover; background: var(--cream-2); }

.pp-gallery { position: relative; overflow: hidden; background: var(--cream-2); }
.pp-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.pp-track::-webkit-scrollbar { display: none; }
.pp-slide { flex: 0 0 100%; scroll-snap-align: start; }
.pp-slide img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.pp-dots { display: none; }
.pp-arr {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  line-height: 0;
  opacity: 0;
  transition: opacity 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.pp-arr--prev { left: 14px; }
.pp-arr--next { right: 14px; }
.pp-gallery:hover .pp-arr, .pp-arr:focus-visible { opacity: 1; }
.pp-arr:hover { background: var(--red); color: var(--cream); }

.pp-info { padding-top: 4px; }
.pp-sticky { position: sticky; top: calc(var(--head-h-fixed) + 20px); }
.pp-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 0; background: none; border: none; font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); cursor: pointer; }
.pp-back svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.pp-back:hover svg { transform: translateX(-3px); }
.pp-crumbs { display: flex; flex-wrap: wrap; font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-dim); }
.pp-crumbs li + li::before { content: "/"; margin: 0 6px; }
.pp-crumbs a:hover { color: var(--red); }
.pp-title { margin-top: 18px; font-family: var(--f-serif); font-weight: 400; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.02; letter-spacing: -0.01em; color: var(--ink); }
.pp-price { display: flex; align-items: baseline; gap: 12px; margin-top: 16px; font-size: 20px; font-weight: 500; color: var(--red); }
.pp-price .price-old { font-size: 13px; font-weight: 400; color: var(--grey-dim); text-decoration: line-through; }
.pp-split {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 34px;
  margin-top: 16px;
  padding: 0 16px;
  background: none;
  border: 1px solid var(--line-red);
  border-radius: 999px;
  font-size: 11px;
  color: var(--ink);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pp-split b { font-weight: 500; color: var(--red); }
.pp-split:hover { border-color: var(--red); }
.pp-label { display: flex; align-items: baseline; justify-content: space-between; margin-top: 28px; font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); }
.pp-label b { font-weight: 600; color: var(--ink); }
.pp-link { padding: 0 0 2px; background: none; border: none; font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); border-bottom: 1px solid var(--line-red); }
.pp-link:hover { border-color: var(--red); }
.pp-sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pp-size {
  min-width: 52px;
  height: 36px;
  padding: 0 16px;
  background: none;
  border: 1px solid var(--red);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.pp-size:hover { background: rgba(238, 51, 53, 0.1); }
.pp-size.is-active { background: var(--red); color: var(--cream); }
.pp-sizes.is-shake { animation: shake 0.45s var(--ease); }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.pp-swatches { display: flex; gap: 12px; margin-top: 12px; }
.pp-sw { display: block; padding-bottom: 5px; border-bottom: 1px solid transparent; line-height: 0; }
.pp-sw i { display: block; width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(28, 26, 26, 0.25); }
.pp-sw.is-active { border-color: var(--red); }
.pp-sw:hover i { border-color: var(--red); }
.pp-add { margin-top: 30px; }
.pp-btn {
  width: 100%;
  height: 50px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pp-btn:hover { background: var(--ink); border-color: var(--ink); }
.pp-need { height: 0; overflow: hidden; margin-top: 0; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); transition: height 0.3s var(--ease), margin 0.3s var(--ease); }
.pp-need.is-shown, .pp-need.is-ok { height: 16px; margin-top: 10px; }
.pp-need.is-shown { color: var(--red); }
.pp-bottom { display: flex; justify-content: flex-end; margin-top: 18px; }
.pp-gift { display: inline-flex; align-items: center; gap: 10px; padding: 0; background: none; border: none; font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.pp-gift:hover { opacity: 0.7; }

.pp-accs { margin-top: 30px; border-top: 1px solid var(--line-red); }
.pp-acc { border-bottom: 1px solid var(--line-red); }
.pp-acc__t { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 0; background: none; border: none; text-align: left; font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.pp-acc__t i { position: relative; width: 10px; height: 10px; }
.pp-acc__t i::before, .pp-acc__t i::after { content: ""; position: absolute; background: var(--red); transition: transform 0.3s var(--ease); }
.pp-acc__t i::before { left: 0; top: 4.5px; width: 10px; height: 1px; }
.pp-acc__t i::after { left: 4.5px; top: 0; width: 1px; height: 10px; }
.pp-acc.is-open .pp-acc__t i::after { transform: scaleY(0); }
.pp-acc__b { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.pp-acc__b > div { overflow: hidden; }
.pp-acc.is-open .pp-acc__b { grid-template-rows: 1fr; }
.pp-acc__b p, .pp-acc__b li { font-size: 12.5px; line-height: 1.7; color: var(--grey); }
.pp-acc__b p { padding-bottom: 14px; }
.pp-acc__b ul { padding: 0 0 14px 14px; list-style: disc; }
.pp-sku { padding-bottom: 8px; font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.pp-line { display: none; }

.sim { padding: 80px var(--pad-x) 70px; }
.sim__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; }
.sim__head h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(28px, 4vw, 52px); line-height: 0.92; text-transform: uppercase; color: var(--red); }
.sim__nav { display: flex; gap: 8px; }
.sim__nav button { width: 36px; height: 36px; padding: 0; background: none; border: 1px solid var(--red); border-radius: 50%; color: var(--red); line-height: 0; transition: background-color 0.25s var(--ease), color 0.25s var(--ease); }
.sim__nav button:hover { background: var(--red); color: var(--cream); }
.sim__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.sim__track::-webkit-scrollbar { display: none; }
.sim__track .plc { flex: 0 0 calc((100% - 60px) / 4); scroll-snap-align: start; }

.modal--wide { max-width: 520px; }
.modal__p { font-size: 12.5px; line-height: 1.75; color: var(--grey); }
.modal__p b { font-weight: 500; color: var(--red); }
.split-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 22px 0 4px; background: var(--line-red); }
.split-row div { padding: 16px 10px; background: var(--cream); text-align: center; }
.split-row span { display: block; font-size: 13px; font-weight: 500; color: var(--red); }
.split-row small { display: block; margin-top: 6px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }
.size-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 12px; }
.size-table th { padding: 8px 6px; text-align: left; font-weight: 600; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); border-bottom: 1px solid var(--line-red); }
.size-table td { padding: 10px 6px; border-bottom: 1px solid var(--line-soft); }

/* --------------------------------------------------------------------------
   Футер — красный, кремовый текст, огромное «КАДР» по всей ширине
   -------------------------------------------------------------------------- */
.ft { background: var(--red); color: var(--cream); }
.ft__top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 30px; padding: 60px var(--pad-x) 40px; }
.ft h4 { margin-bottom: 14px; font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.75; }
.ft__links { display: flex; flex-direction: column; gap: 8px; }
.ft__links a, .ft__legal a, .ft__contacts a { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; transition: opacity 0.25s var(--ease); }
.ft__links a:hover, .ft__legal a:hover, .ft__contacts a:hover { opacity: 0.65; }
.ft__sub { position: relative; display: flex; flex-direction: column; gap: 10px; }
.ft__sub label { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.75; }
.ft__sub input { width: 100%; height: 36px; padding: 0 30px 0 0; background: none; border: none; border-bottom: 1px solid rgba(243, 239, 233, 0.6); color: var(--cream); font: inherit; font-size: 13px; }
.ft__sub input::placeholder { color: rgba(243, 239, 233, 0.6); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.ft__sub input:focus { outline: none; border-color: var(--cream); }
.ft__sub button { position: absolute; right: 0; bottom: 30px; padding: 0; background: none; border: none; color: var(--cream); line-height: 0; }
.ft__note { font-size: 10px; opacity: 0.8; min-height: 14px; }
.ft__legal, .ft__contacts { display: flex; flex-direction: column; gap: 8px; }
.ft__big { display: flex; justify-content: space-between; padding: 20px var(--pad-x) 0; font-family: var(--f-display); font-weight: 700; font-size: clamp(90px, 22vw, 330px); line-height: 1; text-transform: uppercase; user-select: none; }
.ft__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 30px; padding: 26px var(--pad-x) 0; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.footer__demo { padding: 16px var(--pad-x) 26px; font-size: 11px; line-height: 1.6; opacity: 0.8; }
.footer__demo a { text-decoration: underline; text-underline-offset: 2px; }

/* cookie-плашка ниже панелей и корзины */
.lgbar { z-index: 95; }
.lg-consent a { text-decoration: underline; text-underline-offset: 2px; }

/* --------------------------------------------------------------------------
   Адаптив
   -------------------------------------------------------------------------- */
@media (max-width: 1240px) {
  .pp { grid-template-columns: 60px minmax(0, 1fr) minmax(300px, 380px); column-gap: 22px; }
  .pp-thumbs img { width: 58px; }
}

@media (max-width: 1100px) {
  .plist { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sim__track .plc { flex-basis: calc((100% - 40px) / 3); }
  .ft__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {




  .pillar + .pillar { padding-left: 0; }

  .strip { padding: 60px var(--pad-x) 30px; }
  .strip__head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .plist { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
  .plc__name { font-size: 15px; }
  .plc__tag { display: none; }

  .cat-top { padding-top: calc(var(--head-h) + 26px); }
  .cat-top__l { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cat-chips { padding-bottom: 22px; }
  #catGrid { padding-bottom: 60px; }

  .pp { display: block; padding: var(--head-h) 0 0; }
  .pp-thumbs { display: none; }
  .pp-slide img { height: calc(100svh - var(--head-h) - 40px); aspect-ratio: auto; }
  .pp-dots { position: absolute; left: 0; right: 0; bottom: 10px; display: flex; justify-content: center; gap: 6px; }
  .pp-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(243, 239, 233, 0.5); }
  .pp-dots i.is-on { background: var(--red); }
  .pp-arr { opacity: 1; width: 36px; height: 36px; margin-top: -18px; }
  .pp-info { padding: 24px var(--pad-x) 30px; }
  .pp-sticky { position: static; }
  .pp-crumbs { display: none; }
  .pp-title { margin-top: 0; }
  .sim { padding: 30px var(--pad-x) 50px; }
  .sim__track { gap: 12px; }
  .sim__track .plc { flex-basis: calc((100% - 12px) / 2); }

  .fd { max-width: 100%; border-right: none; }
  .fd__head { padding: 20px var(--pad-x) 0; }
  .fd__cols { padding: 14px var(--pad-x) 50px; }

  .ft__top { grid-template-columns: 1fr; gap: 26px; padding: 44px var(--pad-x) 20px; }
  .ft__bottom { flex-direction: column; align-items: flex-start; }
  .lgbar { padding: 12px 14px; }
  .lgbar__txt { font-size: 11.5px; line-height: 1.45; }
  .lgbar__acts { gap: 6px; }
  .lgbar__btn { padding: 8px 10px; font-size: 12px; }
}
