/* ==========================================================================
   HALDEN — каталог, карточка товара, главная и футер.
   Раскладка и пропорции сняты с референса (namelazz.com):
   сетка 4 в ряд без зазоров, фото 3:4, подписи 10px, цена в RUB,
   фильтр — панель слева, карточка — миниатюры / фото 524px / липкая колонка 371px.
   Подключается после style.css и переопределяет его.
   ========================================================================== */

:root {
  --pl-name: 12px;
  --pl-grey: #c9c9c9;
  --pl-dim: #7a7a7a;
}

.header { background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%); }
.header.is-solid { border-bottom: none; }
body[data-header-solid="1"] .header { background: var(--bg); height: var(--head-h); }
.header .logo-word { font-size: 21px; font-weight: 700; letter-spacing: 0.16em; text-indent: 0.16em; }
.h-city { font-size: 12px; letter-spacing: 0.02em; text-transform: none; }
.price-old, .plc__price .price-old, .pp-price .price-old { color: #9a9a9a; }
.co-sum__row[hidden] { display: none; }
body.cart-open .p-toast { opacity: 0; visibility: hidden; }
#newGrid .plc__flag { display: none; }
.atelier__body { justify-content: center; align-self: center; }
.atelier__media img { max-height: 760px; }
.d-del { color: #9a9a9a; }
/* cookie-плашка ниже панелей и корзины, компактнее на мобильном */
.lgbar { z-index: 95; }
.cart-count { display: none; }
.cart-count.is-on { display: block; }

/* --------------------------------------------------------------------------
   Сетка товаров и карточка
   -------------------------------------------------------------------------- */
.plist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.plc { position: relative; display: flex; flex-direction: column; background: var(--bg); }
.plc__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #101010;
  aspect-ratio: 3 / 4;
}
.plc__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s var(--ease);
}
.plc__img--2 { opacity: 0; }
.plc.is-alt .plc__img--2 { opacity: 1; }
.plc__dots {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: flex;
  gap: 2px;
}
.plc__dots i {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: background-color 0.3s var(--ease);
}
.plc__dots i.is-on { background: #fff; }
.plc__flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 8px;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
}
.plc__body { padding: 22px 15px 56px; }
.plc__name {
  display: block;
  font-size: var(--pl-name);
  line-height: 18px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #fff;
  overflow-wrap: anywhere;
}
.plc__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
  font-size: var(--pl-name);
  line-height: 18px;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #fff;
}
.plc__price .price-old { font-size: 11px; color: #b3b3b3; text-decoration: line-through; }

/* --------------------------------------------------------------------------
   Каталог: заголовок «РАЗДЕЛ / ФИЛЬТР», сетка, пустое состояние
   -------------------------------------------------------------------------- */
.cat-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: calc(var(--head-h) + 8px) var(--pad-x) 26px;
}
.cat-top__l { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0 6px; }
.cat-top h1 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cat-top h1::after { content: " /"; font-weight: 400; color: var(--pl-grey); }
.cat-top__filter {
  padding: 0;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pl-dim);
  transition: color 0.25s var(--ease);
}
.cat-top__filter:hover { color: #fff; }
.cat-top__count { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pl-dim); }
.cat-empty { padding: 90px var(--pad-x) 120px; text-align: center; color: var(--grey); }
.cat-empty .h-sec { margin-bottom: 14px; }
.cat-empty button { margin-top: 20px; }

/* --------------------------------------------------------------------------
   Панель фильтра — слева, 600px, как у референса
   -------------------------------------------------------------------------- */
.fd {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 135;
  width: 100%;
  max-width: 600px;
  height: 100%;
  overflow-y: auto;
  background: var(--bg);
  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: flex-end; padding: 40px 40px 0; }
.fd__close { background: none; border: none; padding: 0; line-height: 0; color: var(--pl-grey); }
.fd__close:hover { color: #fff; }
.fd__cols { padding: 24px 40px 60px; }
.fd__col + .fd__col { margin-top: 34px; }
.fd__col h3 {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fd__opts { display: flex; flex-direction: column; }
.fd-item, .fd-opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.fd-item:hover, .fd-opt:hover { color: var(--pl-grey); }
.fd-item.is-on { color: var(--pl-dim); }
.fd-item.is-on::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 10px;
  width: 6px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}
.fd-opt input {
  appearance: none;
  width: 12px;
  height: 12px;
  margin: 0;
  border: 1px solid #fff;
  flex: none;
  transition: background-color 0.2s var(--ease);
}
.fd-opt input:checked { background: #fff; box-shadow: inset 0 0 0 2px #000; }
.fd-sw { display: inline-block; width: 12px; height: 12px; margin-right: 8px; vertical-align: -2px; border: 1px solid rgba(255, 255, 255, 0.35); }

.fd-range { padding-top: 4px; }
.fd-range__vals { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 0.1em; }
.fd-range__vals b { font-weight: 500; }
.fd-range__track { position: relative; height: 30px; margin-top: 10px; }
.fd-range__track::before { content: ""; position: absolute; left: 0; right: 0; top: 14px; height: 1px; background: rgba(255, 255, 255, 0.3); }
.fd-range__fill { position: absolute; top: 14px; height: 1px; background: #fff; }
.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: 13px; height: 13px; border-radius: 50%; background: #fff; border: 2px solid #000; box-shadow: 0 0 0 1px #fff; cursor: pointer; pointer-events: auto; }
.fd-range input[type="range"]::-moz-range-thumb { width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 2px solid #000; box-shadow: 0 0 0 1px #fff; 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: 24px; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.fd__foot .btn-solid { flex: 1; }
.fd__reset { background: none; border: none; padding: 0; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pl-dim); border-bottom: 1px solid var(--line); }
.fd__reset:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Карточка товара
   -------------------------------------------------------------------------- */
.pp {
  display: grid;
  grid-template-columns: 70px 524px 371px;
  column-gap: 30px;
  justify-content: center;
  align-items: start;
  padding-top: var(--head-h);
}
.pp-thumbs { display: flex; flex-direction: column; gap: 6px; }
.pp-thumbs button {
  padding: 0;
  background: none;
  border: none;
  line-height: 0;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}
.pp-thumbs button.is-active, .pp-thumbs button:hover { opacity: 1; }
.pp-thumbs img { width: 70px; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }

.pp-gallery { position: relative; overflow: hidden; background: #101010; }
.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: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  line-height: 0;
  opacity: 0;
  transition: opacity 0.3s var(--ease), background-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: #fff; color: #000; }

.pp-info { margin-left: 30px; }
.pp-sticky { position: sticky; top: var(--head-h); }
.pp-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 0; background: none; border: none; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; cursor: pointer; }
.pp-back svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.pp-back:hover { color: #fff; }
.pp-back:hover svg { transform: translateX(-3px); }
.pp-crumbs { display: flex; flex-wrap: wrap; gap: 0 6px; font-size: 10px; letter-spacing: 0.04em; color: var(--pl-grey); }
.pp-crumbs { gap: 0; }
.pp-crumbs li + li::before { content: "/"; margin: 0 6px; }
.pp-crumbs a:hover { color: #fff; }
.pp-title {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}
.pp-price { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; font-size: 13px; letter-spacing: 0.04em; color: var(--pl-grey); }
.pp-price .price-old { font-size: 11px; color: var(--pl-dim); text-decoration: line-through; }
.pp-split {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  margin-top: 22px;
  padding: 0 14px;
  background: none;
  border: 1px solid #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #fff;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.pp-split b { font-weight: 500; }
.pp-split:hover { background: #fff; color: #000; }
.pp-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--pl-grey);
}
.pp-label b { font-weight: 400; color: #fff; }
.pp-link { padding: 0 0 2px; background: none; border: none; font-size: 10px; letter-spacing: 0.04em; color: var(--pl-grey); border-bottom: 1px solid var(--pl-grey); }
.pp-link:hover { color: #fff; border-color: #fff; }
.pp-sizes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.pp-size {
  min-width: 65px;
  height: 30px;
  padding: 0 12px;
  background: none;
  border: 1px solid #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #fff;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.pp-size:hover { background: rgba(255, 255, 255, 0.14); }
.pp-size.is-active { background: #fff; color: #000; }
.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: 14px; margin-top: 14px; }
.pp-sw { display: block; padding-bottom: 5px; border-bottom: 1px solid transparent; line-height: 0; }
.pp-sw i { display: block; width: 30px; height: 28px; border: 1px solid #bdbdbd; }
.pp-sw.is-active { border-color: #fff; }
.pp-sw:hover i { border-color: #fff; }
.pp-add { margin-top: 32px; }
.pp-btn {
  width: 100%;
  height: 45px;
  background: #fff;
  border: 1px solid #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.pp-btn:hover { background: #000; color: #fff; }
.pp-need { height: 0; overflow: hidden; margin-top: 0; font-size: 10px; letter-spacing: 0.04em; color: var(--pl-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: #fff; }
.pp-bottom { display: flex; justify-content: flex-end; margin-top: 22px; }
.pp-gift { display: inline-flex; align-items: center; gap: 12px; padding: 0; background: none; border: none; font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.pp-gift:hover { color: var(--pl-grey); }

.pp-accs { margin-top: 34px; border-top: 1px solid var(--line-soft); }
.pp-acc { border-bottom: 1px solid var(--line-soft); }
.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: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.pp-acc__t i { position: relative; width: 10px; height: 10px; }
.pp-acc__t i::before, .pp-acc__t i::after { content: ""; position: absolute; background: #fff; 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: 11px; line-height: 1.75; letter-spacing: 0.02em; color: var(--pl-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: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #9a9a9a; }

.pp-line { width: 524px; max-width: calc(100% - 2 * var(--pad-x)); height: 1px; margin: 34px 0 0 calc(50% - 495px); background: #fff; }

/* похожие товары */
.sim { padding: 70px 0 60px; }
.sim__head { display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad-x) 22px; }
.sim__head h2 { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.sim__nav { display: flex; gap: 8px; }
.sim__nav button { width: 30px; height: 30px; padding: 0; background: none; border: none; color: #fff; line-height: 0; transition: opacity 0.25s var(--ease); }
.sim__nav button:hover { opacity: 0.6; }
.sim__track {
  display: flex;
  gap: 2px;
  margin: 0 38px;
  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% - 6px) / 4); scroll-snap-align: start; }
.sim__track .plc__body { padding-bottom: 30px; }

/* модалки карточки */
.modal--wide { max-width: 520px; }
.modal__p { font-size: 12px; line-height: 1.75; color: var(--grey); }
.modal__p b { font-weight: 500; color: #fff; }
.split-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 22px 0 4px; background: var(--line-soft); }
.split-row div { padding: 16px 10px; background: var(--bg); text-align: center; }
.split-row span { display: block; font-size: 13px; }
.split-row small { display: block; margin-top: 6px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-dim); }
.size-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 11px; }
.size-table th { padding: 8px 6px; text-align: left; font-weight: 500; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pl-dim); border-bottom: 1px solid var(--line); }
.size-table td { padding: 10px 6px; border-bottom: 1px solid var(--line-soft); letter-spacing: 0.04em; }

/* --------------------------------------------------------------------------
   Главная: мозаика фото, два блока-баннера
   -------------------------------------------------------------------------- */
.mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 2px;
  height: calc(100vh + var(--head-h));
  height: calc(100svh + var(--head-h));
  margin-top: calc(-1 * var(--head-h));
  padding-top: 2px;
  background: var(--bg);
}
.mosaic a { display: block; overflow: hidden; background: #101010; min-height: 0; }
.mosaic::after { content: ""; position: absolute; z-index: 1; left: 0; right: 0; top: 0; height: 150px; background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); pointer-events: none; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), opacity 0.6s var(--ease); }
.mosaic a:hover img { transform: scale(1.05); }
.mosaic video { display: block; width: 100%; height: 100%; object-fit: cover; background: #101010; }
.mosaic__video { position: relative; }
.mosaic--scrim { position: relative; }
.mosaic__top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
}

.duo { display: grid; grid-template-columns: 1fr 1fr; margin-top: 2px; }
.duo__item { position: relative; display: block; overflow: hidden; background: #101010; min-height: 600px; }
.duo__item img, .duo__item video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform 1.4s var(--ease); }
.duo__item:hover img { transform: scale(1.03); }
.duo__item--media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0) 50%); }
.duo__text {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 44px;
  padding: 0 40px;
  text-align: center;
}
.duo__text--center { bottom: 44px; }
.duo__brand {
  display: block;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.65);
}
.duo__sub {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}
.duo__soon {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  padding: 36px 0 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
  font-size: 10px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}
.duo__cta {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 26px;
  border: 1px solid #fff;
  font-size: 9px;
  letter-spacing: 0.26em;
  text-indent: 0.26em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.duo__item:hover .duo__cta { background: #fff; color: #000; }

.strip { padding: 60px 0 20px; }
.strip__head { display: flex; align-items: baseline; justify-content: space-between; padding: 0 var(--pad-x) 22px; }
.strip__head h2 { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.strip__head a { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pl-dim); border-bottom: 1px solid transparent; }
.strip__head a:hover { color: #fff; border-color: #fff; }

/* --------------------------------------------------------------------------
   Футер по референсу: строка ссылок + подписка, строка копирайта + контакты
   -------------------------------------------------------------------------- */
.ft { border-top: 1px solid var(--line-soft); }
.ft__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 44px var(--pad-x) 30px;
}
.ft__links { display: flex; flex-wrap: wrap; gap: 24px; }
.ft__links a, .ft__sub label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; white-space: nowrap; }
.ft__links a:hover { color: var(--pl-grey); }
.ft__sub { position: relative; display: flex; align-items: center; gap: 18px; width: 460px; max-width: 100%; }
.ft__sub label { flex: none; }
.ft__sub input {
  flex: 1;
  min-width: 0;
  height: 30px;
  padding: 0 24px 0 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.ft__sub input::placeholder { font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-dim); }
.ft__sub input:focus { outline: none; border-color: #fff; }
.ft__sub button { position: absolute; right: 0; bottom: 6px; padding: 0; background: none; border: none; color: #fff; line-height: 0; }
.ft__note { position: absolute; left: 0; top: 100%; margin-top: 6px; font-size: 9px; letter-spacing: 0.06em; color: var(--pl-dim); white-space: nowrap; }
.ft__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 30px;
  padding: 26px var(--pad-x) 30px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--pl-grey);
}
.ft__bottom b { font-weight: 600; letter-spacing: 0.14em; color: #fff; }
.ft__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.ft__legal a { font-size: 11px; color: #8a8a8a; }
.ft__legal a:hover { color: #fff; }
.ft__contacts { display: flex; flex-wrap: wrap; gap: 30px; }
.ft__contacts a:hover { color: #fff; }
.ft .footer__demo { padding-top: 18px; padding-bottom: 26px; }

/* --------------------------------------------------------------------------
   Адаптив
   -------------------------------------------------------------------------- */
@media (max-width: 1240px) {
  .pp { grid-template-columns: 60px minmax(0, 1fr) minmax(300px, 371px); column-gap: 20px; padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .pp-thumbs img { width: 60px; }
  .pp-info { margin-left: 16px; }
  .pp-line { display: none; }
}

@media (max-width: 1100px) {
  .plist { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sim__track .plc { flex-basis: calc((100% - 4px) / 3); }
  .mosaic { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .mosaic a:nth-child(n + 20) { display: none; }
  .mosaic a:nth-child(n + 14) { display: block; }
  .duo__item { min-height: 480px; }
}

@media (max-width: 860px) {
  .plist { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plc__body { padding: 16px 12px 40px; }
  .cat-top { flex-wrap: wrap; padding-top: calc(var(--head-h) + 14px); padding-bottom: 18px; }
  .cat-top__count { display: none; }
  .cat-top__l { margin-left: auto; }

  .pp { display: block; padding: var(--head-h) 0 0; }
  .pp-thumbs { display: none; }
  .pp-gallery { margin: 0; }
  .pp-slide img { height: calc(100svh - var(--head-h)); 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(255, 255, 255, 0.4); }
  .pp-dots i.is-on { background: #fff; }
  .pp-arr { opacity: 1; width: 36px; height: 36px; margin-top: -18px; }
  .pp-info { margin: 0; padding: 26px var(--pad-x) 40px; }
  .pp-sticky { position: static; }
  .pp-crumbs { display: none; }
  .pp-title { margin-top: 0; }
  .pp-line { display: none; }
  .sim { padding: 30px 0 40px; }
  .sim__track { margin: 0 var(--pad-x); }
  .sim__track .plc { flex-basis: calc((100% - 2px) / 2); }

  .mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mosaic a:nth-child(n + 14) { display: none; }
  .duo { grid-template-columns: 1fr; }
  .duo__item { min-height: 420px; }

  .fd { max-width: 100%; }
  .fd__head { padding: 22px 26px 0; }
  .fd__cols { padding: 10px 26px 50px; }

  .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; }
  .ft__top { flex-direction: column; align-items: flex-start; padding: 34px var(--pad-x) 26px; }
  .ft__sub { width: 100%; }
  .ft__bottom { padding: 22px var(--pad-x) 26px; }
}

@media (max-width: 480px) {
  .mosaic a:nth-child(n + 14) { display: none; }
}

/* --------------------------------------------------------------------------
   Чекаут: плитки служб доставки (как в ILCATO) + карта адреса
   -------------------------------------------------------------------------- */
.ship-note { margin: -4px 0 14px; font-size: 11px; letter-spacing: 0.04em; color: var(--grey); }
.ship-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px; }
.ship-tile {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name price" "method days";
  gap: 6px 12px;
  align-items: baseline;
  padding: 16px 16px 14px;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}
.ship-tile:hover { border-color: var(--line); }
.ship-tile:has(input:checked) { border-color: var(--fg); }
.ship-tile.is-off { opacity: 0.35; pointer-events: none; }
.ship-tile input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.ship-tile b { grid-area: name; white-space: nowrap; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.ship-tile span { grid-area: method; font-size: 11px; color: var(--grey); letter-spacing: 0.03em; }
.ship-tile em { grid-area: price; font-style: normal; font-size: 12px; letter-spacing: 0.06em; white-space: nowrap; }
.ship-tile small { grid-area: days; justify-self: end; font-size: 10px; color: var(--grey-dim); letter-spacing: 0.06em; white-space: nowrap; }
.ship-tile--wide { grid-column: 1 / -1; grid-template-areas: "name price" "method method"; }
.addr-map { margin: -6px 0 22px; }
.addr-map[hidden] { display: none; }
.addr-map__map { height: 300px; border: 1px solid var(--line-soft); background: var(--bg-2); }
.pvz__map .leaflet-tile-pane, .addr-map__map .leaflet-tile-pane { filter: grayscale(1) invert(1) contrast(0.9) brightness(0.9); }
.addr-map__map .leaflet-control-attribution { background: rgba(0,0,0,0.7); color: var(--grey); font-size: 9px; }
.addr-map__map .leaflet-control-attribution a { color: var(--grey); }
.addr-map__map .leaflet-bar { border: 1px solid var(--line); box-shadow: none; }
.addr-map__map .leaflet-bar a { background: var(--bg); color: var(--fg); border-color: var(--line-soft); }
.addr-map__note { margin-top: 10px; font-size: 11px; color: var(--grey); letter-spacing: 0.03em; }
.field[hidden] { display: none; }
@media (max-width: 860px) {
  .ship-tiles { grid-template-columns: 1fr 1fr; }
  .addr-map__map { height: 240px; }
}
@media (max-width: 480px) {
  .ship-tiles { grid-template-columns: 1fr; }
}
