/* ===== Five Oceans Header (new, isolated) ===== */

body {
  background: red;
}

.foh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10010;
  background: rgba(233, 232, 226, 0.5);
}

.foh-description-sizechart {
  max-width: 660px;
  margin-top: 60px;
}

.foh-header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foh-header__left {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.foh-icon-btn {
  background: transparent;
  border: 0;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.foh-icon path {
  fill: var(--color-primary);
}

.foh-logo img,
.foh-logo .custom-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* Burger */
.foh-burger {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}

.foh-burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  transition:
    transform var(--t-mid),
    opacity var(--t-mid);
  transform-origin: center;
}

/* Animate burger -> X */
.foh-is-menu-open .foh-burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.foh-is-menu-open .foh-burger__line:nth-child(2) {
  opacity: 0;
}
.foh-is-menu-open .foh-burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Search bar (slides down) */
.foh-searchbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  background: rgba(127, 181, 181, 0.95); /* как на мокапе */
  backdrop-filter: blur(6px);

  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;

  transition:
    transform var(--t-mid),
    opacity var(--t-mid);
}

.foh-is-search-open .foh-searchbar {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.foh-searchbar__inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.foh-searchbar__form {
  height: auto;
  display: flex;
  align-items: center;
}

.foh-searchbar__input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.foh-searchbar__input:focus-visible {
  outline: none;
  box-shadow: none;
}

.foh-searchbar__field {
  width: 100%;
}

input:focus {
  border: none !important;
}

.foh-searchbar__input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 0;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-black);
}

.foh-searchbar__input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(60, 113, 148, 0.25);
}

.foh-searchbar__close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Fullscreen menu */
.foh-menu {
  position: fixed;
  inset: 0;
  z-index: 10000; /* ниже header */
  background: rgba(245, 245, 245, 0.96);
  backdrop-filter: blur(6px);

  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
  padding-top: 72px; /* чтобы хедер оставался сверху */
}

.foh-is-menu-open .foh-menu {
  opacity: 1;
  pointer-events: auto;
}

.foh-menu__inner {
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}

.foh-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}

.foh-menu__link {
  font-family: var(--text-accent);
  font-size: clamp(28px, 4vw, 56px);
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1.05;
  transition: all 0.3s ease;
}

.foh-menu__link:hover {
  color: #7ab3b3;
}

/* FIX: old theme rules hide .search-container (max-width:0). Force it visible inside new header */
.foh-header .search-container {
  max-width: none;
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  overflow: visible;
}

/* ===== FIVE OCEANS: HERO SPLIT (static) ===== */
.foh-hero-split {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}

.foh-hero-split__side {
  position: relative;
  flex: 0 0 50%;
  width: 50vw; /* важно: половина viewport */
  background: var(--bg) center / cover no-repeat;
  overflow: hidden;
}

/* “прилипание” к краям экрана */
.foh-hero-split__side--left {
  margin-right: auto; /* прижимаем к левому краю */
}

.foh-hero-split__side--right {
  margin-left: auto; /* прижимаем к правому краю */
}

/* Тексты поверх */
.foh-hero-split__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

/* Левый текст как на скрине */
.foh-hero-split__content--left {
  align-items: center;
  color: #fff;
}

.foh-hero-split__brand {
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.foh-hero-split__sub {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Правый текст */
.foh-hero-split__content--right {
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.35;
  padding-top: 70px; /* чуть выше, как на макете */
}

/* ===== BESTSELLERS ===== */
.foh-bestsellers {
  padding: 80px 0;
}

div#foh-bestsellers-swiper {
  padding: 0 24px;
}

.foh-bestsellers__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 66px !important;
}

.foh-bestsellers__title {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

.foh-bestsellers__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  background: rgba(127, 181, 181, 0.95);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  white-space: nowrap;
}

/* карточка */
.foh-card__media {
  position: relative;
  display: block;
  border-radius: 0;
  overflow: hidden;
}

.foh-card__img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
  transition:
    opacity var(--t-mid),
    transform var(--t-mid);
}

.foh-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.foh-card__media:hover .foh-card__img--hover {
  opacity: 1;
}

.foh-card__media:hover .foh-card__img--main {
  opacity: 0;
}

.foh-card__discount {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* текст под карточкой */
.foh-card__info {
  padding-top: 14px;
}

.foh-card__title {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
  text-overflow: ellipsis;

  line-height: 1.25;
  max-height: calc(1.25em * 2);
}

.foh-card__subtitle {
  margin-top: 6px;
  color: var(--color-primary);
  opacity: 0.85;
  font-size: 14px;
}

.foh-card__price {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.foh-price--new {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 500;
}

.foh-price--old {
  color: var(--color-primary);
  opacity: 0.45;
  text-decoration: line-through;
  font-size: 16px;
}

/* pagination (цифры) */
.foh-bestsellers__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 34px;
}

.foh-bestsellers__pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.foh-bestsellers__pagination .swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(60, 113, 148, 0.25);
  background: transparent;
  color: rgba(60, 113, 148, 0.55);
  cursor: pointer;
  transition:
    background var(--t-mid),
    color var(--t-mid),
    border-color var(--t-mid);
}

.foh-bestsellers__pagination .swiper-pagination-bullet-active {
  border-color: rgba(60, 113, 148, 0.9);
  color: rgba(60, 113, 148, 0.95);
}

/* next arrow button */
.foh-bestsellers__next {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.foh-bestsellers__next::before {
  content: "→";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(60, 113, 148, 0.65);
  font-size: 20px;
}

/* pager buttons */
.foh-pager__btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(60, 113, 148, 0.25);
  background: transparent;
  color: rgba(60, 113, 148, 0.55);
  cursor: pointer;
  transition:
    background var(--t-mid),
    color var(--t-mid),
    border-color var(--t-mid);
}

.foh-pager__btn.is-active {
  border-color: rgba(60, 113, 148, 0.9);
  color: rgba(60, 113, 148, 0.95);
}

.foh-pager__dots {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: rgba(60, 113, 148, 0.55);
}

/* prev arrow */
.foh-bestsellers__prev,
.foh-bestsellers__next {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.foh-bestsellers__prev::before {
  content: "←";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(60, 113, 148, 0.65);
  font-size: 20px;
}

.foh-bestsellers__next::before {
  content: "→";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(60, 113, 148, 0.65);
  font-size: 20px;
}

.foh-bestsellers__prev:disabled,
.foh-bestsellers__next:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ===== CATEGORIES STRIP ===== */
.foh-cats-strip {
  display: flex;
  width: 100%;
}

.foh-cats-strip__item {
  position: relative;
  flex: 1 1 33.333%;
  min-height: 80vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--bg) center / cover no-repeat;
  text-decoration: none;
  overflow: hidden;
}

/* лёгкий затемнитель, чтобы белый текст читался */
.foh-cats-strip__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  transition: opacity var(--t-mid);
}

.foh-cats-strip__title {
  position: relative;
  z-index: 1;

  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;

  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.15;
}

.foh-cats-strip__item:hover::before {
  opacity: 0.35;
}

/* ===== ABOUT BLOCK ===== */
.foh-about {
  padding-top: 60px;
}

.foh-about__brand {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  font-size: clamp(30px, 3.2vw, 46px);
}

.foh-about__top-row {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.foh-about__lead {
  margin: 0;
  max-width: 760px;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 1.45;
}

.foh-about__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  background: rgba(127, 181, 181, 0.95);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  white-space: nowrap;
}

/* media part */
.foh-about__media {
  margin-top: 34px;

  /* девушка не должна обрезаться -> contain */
  background-image: var(--bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 40% bottom;

  /* большая секция как на скрине */
  min-height: 740px;
}

.foh-about__media-inner {
  position: relative;
  min-height: inherit;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* текст справа */
.foh-about__text {
  margin-left: auto;
  width: min(630px, 100%);
  color: var(--color-primary);
}

.foh-about__title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.15;
  font-weight: bold;
}

.foh-about__p {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.5;
  max-width: 520px;
}

/* нижняя плашка */
.foh-about__badge {
  position: absolute;
  right: 0;
  bottom: 60px;

  width: min(630px, 100%);
  padding: 22px 26px;
  border-radius: 12px;

  background: rgba(127, 181, 181, 0.95);
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  margin: 10px;
}

.foh-bestsellers__slider {
  padding: 0 20px;
}

/* ===== foh-adv ===== */
.foh-adv {
  width: 100%;
  margin-bottom: 0;
}
.foh-adv__grid {
  width: 100%;
}

.foh-adv__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.foh-adv__item--reverse {
  grid-template-columns: 1fr 1fr;
}
.foh-adv__item--reverse .foh-adv__media {
  order: 1;
}
.foh-adv__item--reverse .foh-adv__text {
  order: 2;
}

.foh-adv__text {
  background: var(--color-bg);
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.foh-adv__title {
  margin: 0 0 18px;
  color: #2a6789;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.15;
}

.foh-adv__p {
  margin: 0;
  color: #2a6789;
  font-size: 15px;
  line-height: 1.35;
  max-width: 520px;
}

.foh-adv__media {
  position: relative;
  background: #eeeae1;
  overflow: hidden;
  min-height: 420px;
}

.foh-adv__img {
  position: absolute;
  inset: 0;
  background: var(--bg) center / cover no-repeat;
}

.foh-adv__num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 86px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* clickable word */
.foh-adv__link {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;

  position: relative;
}
.foh-adv__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  opacity: 0.9;
}
.foh-adv__arrow {
  font-weight: 700;
}

/* ===== modal ===== */
.foh-adv-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.foh-adv-modal.is-open {
  display: block;
}

.foh-adv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.foh-adv-modal__panel {
  position: relative;
  width: min(860px, calc(100vw - 60px));
  max-height: calc(100vh - 60px);
  margin: 30px auto;
  background: #eeeae1;
  overflow: hidden;
  display: grid;
  grid-template-rows: 320px 1fr;
}

.foh-adv-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 26px;
  line-height: 44px;
}

.foh-adv-modal__img {
  background: var(--bg) center / cover no-repeat;
}

.foh-adv-modal__content {
  padding: 28px 34px 30px;
}

.foh-adv-modal__title {
  margin: 0 0 14px;
  color: #2a6789;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.foh-adv-modal__scroll {
  max-height: 320px;
  overflow: auto;
  padding-right: 10px;
  color: #2a6789;
  font-size: 14px;
  line-height: 1.5;
}
.foh-adv-modal__scroll p {
  margin: 0 0 16px;
}

html.foh-adv-modal-open,
html.foh-adv-modal-open body {
  overflow: hidden;
}

.foh-footer {
  background: #3f7897;
  color: #fff;
}

.foh-footer__wrap {
  margin: 0 auto;
  padding: 44px 24px;
}

/* TOP logo full width */
.foh-footer__top {
  margin-bottom: 22px;
}

.foh-footer__brand {
  display: block;
  width: 100%;
}

.foh-footer__brand-img {
  display: block;
  width: 100%;
  height: auto;
}

/* BOTTOM 3 columns */
.foh-footer__bottom {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 0.8fr;
  gap: 22px;
  align-items: end;
}

.foh-footer__col--info {
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.95;
}

.foh-footer__info-line {
  margin: 0;
}

.foh-footer__col--links {
  display: flex;
  gap: 44px;
  justify-content: center;
  align-items: flex-end;
}

.foh-footer__links {
  display: flex;
  gap: 10px;
}

.foh-footer__link {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.foh-footer__link:hover {
  opacity: 1;
}

.foh-footer__col--cta {
  display: flex;
  justify-content: flex-end;
}

.foh-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  background: rgba(135, 197, 197, 0.9);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.foh-footer__btn:hover {
  transform: translateY(-1px);
  background: rgba(135, 197, 197, 1);
}

.foh-abhero {
  position: relative;
  width: 100%;
  min-height: 720px;
  background-image: var(--bg);
  background-size: cover;
  background-position: top 20% center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-bottom: 0;
}

.foh-about-hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg) center / cover no-repeat;
  display: flex;
  align-items: flex-end; /* 👈 КЛЮЧЕВО */
}

.foh-abhero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.foh-abhero__content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 80px));
  padding: 110px 0 80px;
  margin-left: 60px;
  color: #fff;
}

.foh-abhero__title {
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.foh-abhero__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 640px;
}

/* HERO ABOUT — текст снизу */
.foh-abhero {
  position: relative;
  width: 100%;
  background-image: var(--bg);
  background-size: cover;
  background-position: top 20% center;
  background-repeat: no-repeat;

  display: flex; /* ← добавь */
  flex-direction: column; /* ← добавь */
  justify-content: flex-end; /* ← добавь: прижимаем вниз */
}

/* оверлей оставь абсолютным, чтобы не влиял на поток */
.foh-abhero__overlay {
  position: absolute;
  inset: 0;
  /* если есть — оставь свои цвета/градиент */
}

/* сам текстовый блок */
.foh-abhero__content {
  position: relative;
  z-index: 2;

  padding: 0 0 60px 60px; /* ← УБРАЛИ padding-top, оставили низ */
  max-width: 720px;
}

/* About panels (full-bleed) */
.foh-fullbleed {
  width: 100%;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.foh-about-panels {
  background: #f3f1ec; /* как на макете */
  margin-bottom: 0;
}

.foh-about-panels__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 60vw, 680px);
}

.foh-about-panels__content {
  padding: clamp(28px, 4vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  background: var(--color-bg);
}

.foh-about-panels__title,
.foh-about-panels__subtitle {
  margin: 0;
  color: var(--color-primary, #3c7194);
  font-family: var(--text-accent, inherit);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.foh-about-panels__title {
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: 1.15;
}

.foh-about-panels__subtitle {
  font-size: clamp(16px, 1.9vw, 28px);
  line-height: 1.2;
  margin-top: 8px;
}

.foh-about-panels__text {
  color: var(--color-primary, #3c7194);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.35;
  max-width: 62ch;
}

.foh-about-panels__text p {
  margin: 0;
}

.foh-about-panels__media {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== FAQ ===== */
.foh-faq {
  width: 100%;
  padding: 56px 0 64px;
}

.foh-faq__head {
  max-width: 1200px;
  margin: 0 auto 34px;
  padding: 0 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foh-faq__title {
  margin: 0;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #2f6f86;
  font-weight: 400;
}

.foh-faq__btn {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: #7fb3b3;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.foh-faq__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}

.foh-faq__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.foh-faq__item {
  border-top: 1px solid rgba(47, 111, 134, 0.55);
}

.foh-faq__item:last-child {
  border-bottom: 1px solid rgba(47, 111, 134, 0.55);
}

.foh-faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
}

.foh-faq__qtext {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  color: #2f6f86;
}

.foh-faq__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #7fb3b3;
  position: relative;
  transition: all 0.5s ease;
}

.foh-faq__icon * {
  pointer-events: none;
}

.foh-faq__icon:hover {
  background: #7ab3b3;
}

/* "+" */
.foh-faq__icon:before,
.foh-faq__icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.foh-faq__icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* open state -> "x" */
.foh-faq__q[aria-expanded="true"] .foh-faq__icon:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.foh-faq__q[aria-expanded="true"] .foh-faq__icon:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.foh-faq__a {
  padding: 0 0 22px 0;
}

.foh-faq__a-inner {
  color: #2f6f86;
  font-size: 16px;
  line-height: 1.6;
  max-width: 95%;
}

/* =========================
   SIZE GRID
========================= */

.foh-size__container {
  max-width: 1200px;
  margin: 0 auto;
}

.foh-size__title {
  text-align: center;
  color: #3b6f94;
  font-size: 32px;
  letter-spacing: 0.08em;
  margin-bottom: 80px;
}

.foh-size__images {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.foh-size__images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* =========================
   SIZE CTA
========================= */

.foh-size-cta {
  padding: 120px 20px;
  text-align: center;
}

.foh-size-cta__container {
  max-width: 900px;
  margin: 0 auto;
}

.foh-size-cta__note {
  font-size: 14px;
  line-height: 1.6;
  color: #3b6f94;
  margin-bottom: 48px;
}

.foh-size-cta__title {
  font-size: 28px;
  line-height: 1.3;
  color: #3b6f94;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.foh-size-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: #7fb9b7;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.foh-size-cta__button:hover {
  background: #6aa7a5;
}

/* =========================
   ADAPTIVE
========================= */

/* ===== CATALOG (2 tiles row) ===== */
.foh-cats-strip--two .foh-cats-strip__item {
  flex: 1 1 50%;
  min-height: 80vh;
}

.page.page-catalog .foh-fullbleed {
  margin-bottom: 0;
}

/* adaptive: 2 tiles -> 1 column on mobile */
@media (max-width: 768px) {
  .foh-cats-strip--two .foh-cats-strip__item {
    flex-basis: 100%;
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .foh-size-cta {
    padding: 80px 16px;
  }

  .foh-size-cta__note {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .foh-size-cta__title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .foh-size-cta__button {
    width: 100%;
    padding: 16px;
  }
}

/* =========================
   ADAPTIVE
========================= */

@media (max-width: 768px) {
  .foh-size {
    padding: 80px 16px;
  }

  .foh-size__title {
    font-size: 26px;
    margin-bottom: 48px;
  }

  .foh-size__images {
    gap: 48px;
  }

  .foh-hero-split {
    min-height: 60vh;
  }
}

/* adaptive */
@media (max-width: 1024px) {
  .foh-faq__grid {
    gap: 28px 28px;
  }
  .foh-faq__title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .foh-faq {
    padding: 40px 0 48px;
  }

  .foh-faq__head {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .foh-faq__btn {
    position: static;
    transform: none;
    right: auto;
    top: auto;
  }

  .foh-faq__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .foh-faq__col {
    border-top: 0;
  }

  .foh-faq__qtext {
    font-size: 18px;
  }
}

/* adaptive */
@media (max-width: 768px) {
  .foh-about-panels__row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .foh-about-panels__media {
    aspect-ratio: 4 / 3;
  }

  /* Важно: на мобиле порядок должен быть ТЕКСТ -> КАРТИНКА даже у reverse */
  .foh-about-panels__row.is-reverse .foh-about-panels__content {
    order: 1;
  }
  .foh-about-panels__row.is-reverse .foh-about-panels__media {
    order: 2;
  }
}

/* адаптив */
@media (max-width: 768px) {
  .foh-abhero__content {
    padding: 0 20px 24px 20px;
  }
}

/* adaptive */
@media (max-width: 1024px) {
  .foh-abhero {
    min-height: 640px;
  }
  .foh-abhero__content {
    width: min(720px, calc(100% - 48px));
    margin-left: 24px;
    padding: 90px 0 60px;
  }
  .foh-abhero__title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .foh-abhero {
    min-height: 760px; /* чтобы “девушка не обрезалась” */
    background-position: 60% center; /* чуть сдвигаем кадр под мобилку */
  }

  .foh-abhero__content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 140px 0 28px;
  }

  .foh-abhero__title {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .foh-abhero__text {
    font-size: 13px;
    line-height: 1.55;
    max-width: 100%;
  }
}

/* adaptive: order = button -> links -> info */
@media (max-width: 768px) {
  .foh-footer__wrap {
    padding: 36px 16px;
  }

  .foh-footer__bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .foh-footer__col--cta {
    order: 1;
    justify-content: flex-start;
  }

  .foh-footer__col--links {
    order: 2;
    justify-content: flex-start;
    gap: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .foh-footer__col--info {
    order: 3;
  }
}

/* ===== adaptive ===== */
@media (max-width: 1024px) {
  .foh-adv__text {
    padding: 70px 44px;
  }
  .foh-adv__title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .foh-adv__item {
    display: flex;
    flex-direction: column;
  }

  /* ТОЛЬКО 2 и 4 блок — column-reverse */
  .foh-adv__item--reverse {
    flex-direction: column-reverse;
  }

  .foh-adv__media {
    min-height: 420px;
  }

  .foh-adv__text {
    padding: 44px 26px;
  }

  .foh-adv__num {
    font-size: 74px;
  }
}

@media (max-width: 768px) {
  .foh-adv-modal__panel {
    width: calc(100vw - 26px);
    margin: 13px auto;
    max-height: calc(100vh - 26px);
  }
  .foh-adv-modal__content {
    padding: 22px 20px;
  }
  .foh-adv-modal__scroll {
    max-height: 45vh;
  }
}

/* ===== Adaptive ===== */
@media (max-width: 1024px) {
  .foh-about__media {
    min-height: 680px;
    background-position: left 40% bottom;
  }

  .foh-about__media-inner {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .foh-about__badge {
    bottom: 40px;
  }
}

@media (max-width: 768px) {
  .foh-about {
    padding-top: 40px;
  }

  .foh-about__top-row {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .foh-about__btn {
    height: 46px;
    padding: 0 18px;
    align-self: center;
  }

  /* На мобилке делаем картинку сверху, чтобы выглядело как на скрине */
  .foh-about__media {
    min-height: auto;
    background-position: left 20% top;
    background-size: cover;
    padding-top: 0;
  }

  .foh-about__media-inner {
    min-height: 0;
    padding-top: 320px; /* место под картинку */
    padding-bottom: 130px;
  }

  .foh-about__text {
    margin-left: 0;
    width: 100%;
  }

  .foh-about__badge {
    /* left: 0; */
    right: 0;
    bottom: 24px;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .foh-about__media-inner {
    padding-top: 290px;
  }
}

/* ===== Adaptive ===== */

/* Планшет: 2 колонки + 1 снизу */
@media (max-width: 1024px) {
  .foh-cats-strip {
    flex-wrap: wrap;
  }
  .foh-cats-strip__item {
    flex: 1 1 50%;
    min-height: 420px;
  }
  .foh-cats-strip__item:nth-child(3) {
    flex-basis: 100%;
  }
}

/* Мобилка: 1 колонка */
@media (max-width: 768px) {
  .foh-cats-strip__item {
    flex-basis: 100%;
    min-height: 360px;
  }
}

/* adaptive */
@media (max-width: 1024px) {
  .foh-card__img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .foh-bestsellers {
    padding: 60px 0;
  }

  .foh-bestsellers__all {
    height: 46px;
    padding: 0 18px;
  }
  .foh-card__img {
    height: 420px;
  }
  .foh-bestsellers__prev,
  .foh-bestsellers__next {
    display: none;
  }
}

@media (max-width: 480px) {
  .foh-card__img {
    height: 420px;
  }
  .foh-bestsellers__controls {
    padding-top: 26px;
  }
}

/* После 768px: правая картинка пропадает */
@media (max-width: 768px) {
  .foh-hero-split__side--right {
    display: none;
  }

  .foh-hero-split__side--left {
    width: 100%;
    flex: 1 1 100%;
    margin-right: 0;
  }

  .foh-hero-split__content {
    padding: 24px;
  }
}

/* tiny adaptive */
@media (max-width: 540px) {
  .foh-header__inner,
  .foh-searchbar__inner {
    height: 64px;
  }
  .foh-menu {
    padding-top: 64px;
  }
  .foh-logo img,
  .foh-logo .custom-logo {
    height: 24px;
  }
  .foh-footer__links {
    flex-direction: column;
  }
}
