/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

:root {
  --product-gap: 20px;
  --footer-logo-scale: 7;
  --footer-logo-opacity: 0.4;
  --menu-panel-width: min(340px, 30vw);
  --menu-offset-top: var(--marquee-offset, 26px);
  --header-menu-bg: rgba(0, 0, 0, 0.6);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}

.container--catalog {
  max-width: none;
  padding: 0;
}

.width-b {
  width: 100%;
}

.pc_only { display: block; }
.mob_only { display: none; }

/* ===== Marquee ===== */
.b-marquee {
  position: relative;
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  line-height: 26px;
  height: 26px;
  z-index: 4000;
}

.b-marquee__text {
  display: block;
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

@media (min-width: 991px) {
  .b-marquee {
    line-height: 26px;
    height: 26px;
  }
}

@media (min-width: 1600px) {
  .b-marquee {
    line-height: 32px;
    height: 32px;
  }

  .b-marquee__text {
    font-size: 14px;
  }
}

/* ===== Header ===== */
.b-wrapper {
  width: 100%;
  min-height: 100vh;
}

.b-header {
  position: fixed;
  top: var(--marquee-offset, 26px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3000;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.b-head__top__contact {
  width: 100%;
}

.b-head__bottom {
  position: relative;
  width: 100%;
}

.b-head__bott-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 52px;
  min-height: 52px;
  padding: 0 clamp(40px, 5vw, 96px);
  background: transparent;
  box-sizing: border-box;
}

.b-head__left,
.b-head__category,
.main-menu-but {
  opacity: calc(1 - var(--header-fade, 0));
  transition: opacity 0.45s ease-out;
  pointer-events: auto;
}

.b-header.is-minimal .b-head__left,
.b-header.is-minimal .b-head__category,
.b-header.is-minimal .main-menu-but {
  pointer-events: none;
}

.b-head__left {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: start;
}

body.mm_s .b-head__left {
  transform: translateX(var(--menu-panel-width));
  position: relative;
  z-index: 5502;
  transition: opacity 0.45s ease-out, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.b-head__left .menu-but {
  width: auto;
}

.b-head__left .b-category__login {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  letter-spacing: 0.04em;
  line-height: 1;
}

.b-head__left .t_tit {
  display: inline;
}

.menu-but {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.04em;
  line-height: 1;
  width: 210px;
  padding-left: 3px;
  text-align: left;
}

.menu-but::after {
  content: "+";
  margin-left: 5px;
}

body.mm_s .menu-but::after {
  content: "-";
}

.b-head__logo {
  display: flex;
  align-items: center;
  height: 52px;
  justify-self: center;
  opacity: 1;
  position: relative;
  z-index: 2;
}

.logo_f {
  display: block;
  height: 52px;
  width: auto;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0);
}

.b-head__category {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 18px;
  transition: opacity 0.45s ease-out, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.b-head__category li span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  letter-spacing: 0.04em;
  line-height: 1;
}

.b-head__category li span.b-category__basket,
.b-head__category li span.b-category__basket .t_tit {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.b-category__basket::after {
  content: "+";
  margin-left: 1px;
}

body.cart_s .b-category__basket::after {
  content: "-";
}

.t_tit {
  display: inline;
}

.b-category__count {
  display: none;
}

/* Header when menu is open / animating */
body.mm_s .b-head__bott-main,
body.mm_lock .b-head__bott-main {
  background: transparent !important;
  transition: none !important;
}

body:not(.collection-page).mm_s .b-head__bott-main,
body:not(.collection-page).mm_lock .b-head__bott-main {
  background: transparent !important;
  transition: none !important;
}

@media (min-width: 991px) {
  body.mm_s .b-head__bott-main {
    /* Only while open: buttons are shifted right of this cut */
    clip-path: inset(0 0 0 var(--menu-panel-width));
  }
}

body.mm_s .b-head__left .b-category__login,
body.mm_s .b-head__left .menu-but {
  color: #fff;
}

body.mm_s .b-head__left .b-category__login svg path {
  stroke: #fff;
}

body.mm_s .b-head__category li span {
  color: #000;
}

body:not(.collection-page).mm_s .b-head__category li span {
  color: #fff;
}

body.mm_s .b-head__category svg path {
  stroke: #000;
}

body.mm_s .logo_f {
  filter: brightness(0);
}

body:not(.collection-page).mm_s .logo_f {
  filter: brightness(0) invert(1);
}

body.mm_s .b-head__top__contact {
  position: relative;
  z-index: 5500;
}

/* Homepage header: white text/logo → white bar + black on hover */
body:not(.collection-page) .b-head__bott-main {
  transition: background 0.28s ease;
}

body:not(.collection-page) .b-head__left .b-category__login,
body:not(.collection-page) .menu-but,
body:not(.collection-page) .b-head__category li span {
  color: #fff;
  transition: color 0.28s ease;
}

body:not(.collection-page) .logo_f {
  filter: brightness(0) invert(1);
  transition: filter 0.28s ease;
}

body:not(.collection-page) .b-header.logo--dark .logo_f {
  filter: brightness(0);
}

body:not(.collection-page) .b-header.logo--dark .b-head__left .b-category__login,
body:not(.collection-page) .b-header.logo--dark .menu-but,
body:not(.collection-page) .b-header.logo--dark .b-head__category li span {
  color: #000;
}

body:not(.collection-page) .b-header.logo--dark .main-menu-but::before {
  background: #000;
}

body:not(.collection-page):not(.mm_s):not(.mm_lock):not(.cart_s):not(.cart_lock) .b-header:hover .b-head__bott-main {
  background: rgba(255, 255, 255, 0.82);
}

body:not(.collection-page):not(.mm_s):not(.mm_lock):not(.cart_s):not(.cart_lock) .b-header:hover .b-head__left .b-category__login,
body:not(.collection-page):not(.mm_s):not(.mm_lock):not(.cart_s):not(.cart_lock) .b-header:hover .menu-but,
body:not(.collection-page):not(.mm_s):not(.mm_lock):not(.cart_s):not(.cart_lock) .b-header:hover .b-head__category li span {
  color: #000;
}

body:not(.collection-page):not(.mm_s):not(.mm_lock):not(.cart_s):not(.cart_lock) .b-header:hover .logo_f {
  filter: brightness(0);
}

body:not(.collection-page) .main-menu-but::before {
  background: #fff;
  transition: background 0.28s ease;
}

body:not(.collection-page):not(.mm_s):not(.mm_lock):not(.cart_s):not(.cart_lock) .b-header:hover .main-menu-but::before {
  background: #000;
}

.collection-page .b-head__left .menu-but,
.collection-page .main-menu-but {
  display: none;
}

.collection-page .b-head__category .b-category__login {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  letter-spacing: 0.04em;
  line-height: 1;
}

.collection-page .b-head__category .t_tit {
  display: inline;
}

.collection-page .b-head__category {
  margin-right: 0;
}

/* ===== Mobile Menu ===== */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
}

.mobilemenu-overlay {
  position: fixed;
  top: var(--menu-offset-top);
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mob-menu.show .mobilemenu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobilemenu {
  position: fixed;
  top: var(--menu-offset-top);
  left: 0;
  bottom: 0;
  width: var(--menu-panel-width);
  max-width: 90vw;
  background: var(--header-menu-bg);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  z-index: 5001;
  box-shadow: none;
}

.mob-menu.show .mobilemenu {
  transform: translateX(0);
  pointer-events: auto;
  z-index: 5501;
}

.mobilemenu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 0;
}

body.mm_s,
body.mm_lock {
  overflow: hidden;
}

.m_close {
  font-size: 14px;
  text-transform: lowercase;
  padding: 10px 20px;
  text-align: left;
  color: #fff;
}

.m_close--text {
  border: none;
  background: none;
  width: 100%;
  color: #fff;
}

.mob-menu__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 20px;
}

.mob-menu__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.b_mobile_menu {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.first_lvl_li {
  margin-top: 20px;
}

.first_lvl_li--gap {
  margin-top: 40px;
}

.first_lvl_li--gift {
  margin-top: auto;
  padding-top: 48px;
  padding-bottom: 32px;
}

.first_lvl {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}

.first_lvl--center {
  display: block;
  text-align: center;
}

.second_lvl a {
  display: block;
  padding: 10px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: lowercase;
  color: #fff;
}

.second_lvl.sale_b a {
  color: #cb2f2f;
}

.sub_catalog,
.sub_m {
  display: none;
  padding-left: 15px;
}

.sub_catalog.active,
.sub_m.active {
  display: block;
}

.third_lvl a {
  display: block;
  padding: 8px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-transform: capitalize;
}

.third_lvl.show_all a {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}

.m_p.active_l {
  font-weight: 600;
}

.mob_tm {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: auto;
}

.m_messengers li {
  margin-bottom: 8px;
}

.m_messengers a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.m_copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  text-transform: uppercase;
}

/* ===== Hero Banner ===== */
.m_banner {
  margin-top: 0;
}

.m_b_img {
  display: block;
  width: 100%;
  height: calc(100vh - var(--marquee-offset, 26px));
  min-height: 600px;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.hero-video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video__player--look {
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.hero-video.is-looking .hero-video__player--look {
  opacity: 1;
}

.hero-video__hotspot {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 22%;
  height: 30%;
  z-index: 3;
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
}

.hero-video__hotspot--leg {
  top: auto;
  bottom: 11%;
  right: 18%;
  width: 6%;
  height: 9%;
  z-index: 4;
  cursor: pointer;
}

body.is-prank-playing {
  overflow: hidden;
  touch-action: none;
}

body.is-prank-playing > *:not(.prank-overlay) {
  filter: blur(14px);
  pointer-events: none;
  user-select: none;
}

.prank-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  background: #000;
  pointer-events: auto;
}

.prank-overlay.is-active {
  display: block;
}

.prank-overlay__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.1;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
  animation: heroNoise 0.35s steps(3) infinite;
}

@keyframes heroNoise {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 1%); }
  66% { transform: translate(1%, -2%); }
  100% { transform: translate(-1%, 2%); }
}

/* ===== Section Titles ===== */
.g_tit {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 23px 15px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.g_tit span {
  color: #767676;
}

.g_tit span.g_tit__caps {
  text-transform: uppercase;
  color: #000;
}

.g_tit--center {
  text-align: center;
}

/* ===== Product Slider ===== */
.m-slider {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--product-gap);
  width: 100%;
  padding-inline: var(--product-gap);
  box-sizing: border-box;
}

.m-slider--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ms-item {
  min-width: 0;
}

.ms-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-transform: uppercase;
}

.m-inner-img {
  position: relative;
  display: block;
  overflow: hidden;
  width: calc(100% / 1.5);
  text-align: center;
}

.m-inner-img a {
  position: relative;
  display: block;
}

.m-inner-img img {
  width: 100%;
  height: auto;
  transition: opacity 0.9s easy-in-out;
}

.m-inner-img .outfit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

.outfit_b.m-inner-img a:hover img:first-child {
  opacity: 0;
}

.outfit_b.m-inner-img a:hover .outfit {
  opacity: 1;
}

.m-name {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  margin-top: 22px;
  margin-bottom: 10px;
  text-transform: initial;
}

.m-inner-price {
  font-size: 12px;
  line-height: 1;
  opacity: 0.5;
}

.m-inner-price.not_disc {
  opacity: 0.5;
}

.b-price {
  opacity: 0.7;
}

.b-old-price {
  text-decoration: line-through;
  opacity: 0.5;
  margin-left: 4px;
}

/* ===== SHOP NOW ===== */
.see_all {
  margin-top: 30px;
  text-align: center;
  line-height: 1;
}

.see_all a {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  border-bottom: 1px solid #000;
  letter-spacing: -0.02em;
}

.see_all a:hover {
  border-bottom-color: #c63636;
  color: #c63636;
}

/* ===== Mid-page Banners ===== */
.duality-slider {
  margin-top: 30px;
  width: 100%;
}

.one-slider {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 500px;
  background: url('images2/второе фото на сайт.png') no-repeat center center;
  background-size: cover;
}

.fcm {
  margin-top: 30px;
}

.mb_img {
  display: block;
  width: 100%;
  height: 900px;
  background: url('https://frht.ru/upload/iblock/47e/d4wei5a28js2faxkwvp9byc6hlhhngl3/FRZ02179-1.jpg') no-repeat center center;
  background-size: cover;
}

.s_slider {
  margin-bottom: 30px;
}

/* ===== Footer ===== */
.footer2 {
  background: #f8f8f8;
  border-top: 1px solid #e3e3e3;
  margin-top: 40px;
}

.f_fl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.f_fli {
  flex: 0 0 20%;
  max-width: 20.5%;
  min-width: 20.5%;
  padding: 33px 40px 30px;
  border-left: 1px solid #e3e3e3;
  box-sizing: border-box;
}

.f_fl > .f_fli:first-child {
  border-left: none;
  max-width: 18.5%;
  min-width: 18.5%;
  overflow: hidden;
}

.f_lo {
  height: 32px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.f_logo-img {
  display: block;
  height: 32px;
  width: auto;
  margin: 0;
  opacity: var(--footer-logo-opacity);
  transform: scale(var(--footer-logo-scale)) translateX(-9.5px);
  transform-origin: left center;
}

.f_logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.15em;
  display: block;
}

.f_gr {
  color: #919191;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 20px;
}

.f_adr {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1;
}

.f_adr a {
  font-size: 14px;
  color: #000;
}

.f_tg {
  margin-top: 11px;
}

.f_flsoc div {
  margin-bottom: 16px;
  line-height: 1;
}

.f_flsoc a {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.f_flsoc a:hover {
  color: #c63636;
  border-bottom-color: #c63636;
}

.f_inst {
  font-size: 11px;
  color: #b4b4b4;
  line-height: 1.2;
  margin-top: 10px;
}

.f_menu li {
  margin-bottom: 15px;
  line-height: 1;
}

.f_menu a {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
}

.f_menu a:hover {
  color: #c63636;
}

.f_docs {
  color: #b4b4b4;
  font-size: 14px;
  margin-top: 32px;
  display: block;
}

.f_docs:hover {
  color: #c63636;
}

.f_copyright {
  border-top: 1px solid #e3e3e3;
  text-transform: uppercase;
  padding: 20px 15px;
  font-size: 14px;
  color: #000;
  margin: 0 -15px;
}

/* ===== Cart Panel ===== */
.mobilebasket-overlay {
  position: fixed;
  top: var(--menu-offset-top);
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobilebasket-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.b_basket {
  position: fixed;
  top: var(--menu-offset-top);
  right: 0;
  bottom: 0;
  width: var(--menu-panel-width);
  max-width: 90vw;
  background: var(--header-menu-bg);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 5001;
  transform: translateX(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: none;
  overflow-y: auto;
}

.b_basket.active {
  transform: translateX(0);
  pointer-events: auto;
  z-index: 5501;
}

.b_basket-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 0;
}

.ba_top {
  padding: 10px 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ba_t {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ba_t1 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.ba_count {
  font-weight: 400;
  opacity: 0.5;
}

.ba_close {
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M1 1l6 6M7 1L1 7' stroke='%23fff' stroke-width='1.2'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
}

.ba_body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.ba_empty {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

body.cart_s .b-head__category {
  transform: translateX(calc(-1 * var(--menu-panel-width)));
  position: relative;
  z-index: 5502;
}

body.cart_s .b-head__bott-main,
body.cart_lock .b-head__bott-main,
body:not(.collection-page).cart_s .b-head__bott-main,
body:not(.collection-page).cart_lock .b-head__bott-main {
  background: transparent !important;
  transition: none !important;
}

@media (min-width: 991px) {
  body.cart_s .b-head__bott-main {
    clip-path: inset(0 var(--menu-panel-width) 0 0);
  }
}

body.cart_s,
body.cart_lock {
  overflow: hidden;
}

/* ===== Collection Page ===== */
.collection-main {
  padding-top: calc(var(--marquee-offset, 26px) + 52px);
  min-height: 60vh;
  background: #fff;
}

.collection-page__inner {
  padding: 32px clamp(20px, 5vw, 96px) 80px;
}

.collection-breadcrumb {
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: #767676;
  margin-bottom: 28px;
}

.collection-breadcrumb a:hover {
  color: #000;
}

.collection-breadcrumb__sep {
  margin: 0 6px;
}

.collection-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  padding-top: 40px;
  padding-bottom: 24px;
}

.collection-page .b-header {
  will-change: transform, opacity;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  transform: translateY(0);
  opacity: 1;
}

.collection-page .b-head__bott-main {
  background: transparent;
}

.collection-page .b-header.is-away {
  transform: translateY(-110%);
  opacity: 0.65;
  pointer-events: none;
}

.collection-page .collection-toolbar {
  position: sticky;
  top: 40px;
  z-index: 2600;
  margin-left: calc(-1 * clamp(20px, 5vw, 96px));
  margin-right: calc(-1 * clamp(20px, 5vw, 96px));
  padding-left: clamp(20px, 5vw, 96px);
  padding-right: clamp(20px, 5vw, 96px);
  background: transparent;
  overflow: visible;
}

.collection-toolbar-placeholder {
  display: none;
}

.collection-title {
  display: flex;
  align-items: baseline;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 30px);
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

.collection-title__cat {
  position: relative;
  display: inline-block;
}

.collection-title__current {
  display: inline-block;
}

.collection-title__alt {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  line-height: inherit;
  color: #000;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.collection-title__cat:hover .collection-title__alt,
.collection-title__cat:focus-within .collection-title__alt {
  opacity: 0.4;
  pointer-events: auto;
  transform: translateY(0);
}

.collection-title__cat:hover .collection-title__alt:hover,
.collection-title__cat:focus-within .collection-title__alt:hover {
  opacity: 1;
}

.collection-title__sep {
  white-space: pre;
}

.collection-title__arrivals {
  position: relative;
  display: inline-block;
  z-index: 2600;
}

.collection-title__arrivals-label {
  display: inline-block;
  cursor: default;
}

.collection-title__menu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: max-content;
  padding: 4px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 2700;
}

.collection-title__arrivals:hover .collection-title__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.collection-title__menu-item {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: lowercase;
  line-height: 1;
  color: #000;
  white-space: nowrap;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 2701;
  cursor: pointer;
}

.collection-title__menu-item:hover,
.collection-title__menu-item.is-active {
  opacity: 1;
}

.collection-title__menu-item[hidden] {
  display: none;
}

.collection-filters-wrap {
  position: relative;
  flex-shrink: 0;
  margin-right: 195px;
  z-index: 2600;
}

.collection-filters-btn {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #000;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.collection-filters-btn:hover {
  color: #000;
}

.collection-filters-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: max-content;
  padding: 10px 0 4px;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 2700;
}

.collection-filters-wrap:hover .collection-filters-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.collection-filters-menu__item {
  display: block;
  width: auto;
  padding: 0;
  text-align: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  line-height: 1;
  color: #000;
  background: none;
  border: none;
  white-space: nowrap;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.collection-filters-menu__item:hover,
.collection-filters-menu__item.is-active {
  opacity: 1;
  color: #000;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.collection-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.collection-card.is-sold-out {
  opacity: 0.55;
}

.collection-card__link {
  display: block;
}

.collection-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #fff;
  overflow: hidden;
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.35s ease;
}

.collection-card__image .collection-card__hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.collection-card__link:hover .collection-card__image img:first-child {
  opacity: 0;
}

.collection-card__link:hover .collection-card__hover {
  opacity: 1;
}

.collection-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #767676;
}

.collection-card__meta {
  padding-top: 14px;
}

.collection-card__name {
  display: block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
  margin-bottom: 6px;
}

.collection-card__variant {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #767676;
  margin-bottom: 8px;
}

.collection-card__price {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.collection-card__price--old {
  text-decoration: line-through;
  color: #767676;
  margin-left: 6px;
}

.collection-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.collection-card__swatch {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #767676;
  border-bottom: 1px solid transparent;
}

.collection-card__swatch.is-active {
  color: #000;
  border-bottom-color: #000;
}

@media (max-width: 1200px) {
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .collection-page__inner {
    padding-top: 20px;
    padding-bottom: 48px;
  }

  .collection-toolbar {
    margin-bottom: 24px;
  }
}

/* ===== Responsive ===== */
@media (min-width: 1200px) {
  .m_b_img {
    height: calc(100vh - var(--marquee-offset, 26px));
    min-height: 800px;
  }
}

@media (min-width: 1600px) {
  .see_all {
    margin-top: 31px;
  }

  .see_all a {
    font-size: 14px;
  }

  .g_tit {
    font-size: 18px;
    padding: 28px 15px;
  }
}

@media (max-width: 990px) {
  .pc_only { display: none; }
  .mob_only { display: block; }

  :root {
    --menu-panel-width: min(320px, 78vw);
  }

  .b-head__bott-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 44px;
    min-height: 44px;
    padding: 0 clamp(28px, 6vw, 48px);
  }

  .b-head__left {
    gap: 0;
    flex: 0 0 auto;
    z-index: 1;
  }

  .b-head__left .menu-but {
    display: none;
  }

  .b-head__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-self: auto;
    height: 44px;
  }

  .menu-but:not(.main-menu-but) {
    display: none;
  }

  .main-menu-but {
    width: auto;
    font-size: 0;
    padding: 0;
    margin-left: auto;
    z-index: 1;
  }

  .main-menu-but::after {
    display: none;
  }

  .main-menu-but::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    box-shadow: 0 6px 0 #000, 0 -6px 0 #000;
  }

  body.mm_s .main-menu-but::before {
    background: #000;
    box-shadow: 0 6px 0 #000, 0 -6px 0 #000;
  }

  .b-head__category {
    gap: 12px;
    justify-self: auto;
    flex: 0 0 auto;
    z-index: 1;
  }

  .logo_f {
    height: 22px;
    max-height: 32px;
  }

  .ms-item {
    margin-bottom: 0;
  }

  .m-slider,
  .m-slider--three,
  .m-slider--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .one-slider {
    height: 350px;
  }

  .mb_img {
    height: 500px;
  }

  .f_fl {
    display: block;
  }

  .f_fli {
    flex: unset;
    max-width: unset;
    min-width: unset;
    border-left: none;
    border-top: 1px solid #e3e3e3;
    margin-left: -15px;
    margin-right: -15px;
    padding: 24px 15px 21px;
  }

  .f_fl > .f_fli:first-child {
    border-top: none;
    max-width: unset;
    padding-bottom: 0;
  }

  .f_fl > .f_fli:nth-child(2) {
    border-top: none;
  }

  .f_fl > .f_fli:nth-child(3),
  .f_fl > .f_fli:nth-child(4) {
    width: 50%;
    float: left;
    box-sizing: border-box;
  }

  .f_fl > .f_fli:nth-child(4) {
    border-left: 1px solid #e3e3e3;
    width: calc(50% + 30px);
    float: right;
  }

  .f_fl::after {
    content: '';
    display: block;
    clear: both;
  }

  .f_copyright {
    font-size: 10px;
    padding: 14px 15px;
  }

  .f_gr {
    font-size: 10px;
    margin-bottom: 18px;
  }

  .f_adr, .f_adr a, .f_menu a, .f_flsoc a {
    font-size: 12px;
  }

  .f_menu li {
    margin-bottom: 10px;
  }

  .f_flsoc div, .f_adr {
    margin-bottom: 12px;
  }

  .f_docs {
    font-size: 10px;
    margin-top: 14px;
  }
}

@media (max-width: 768px) {
  .m_b_img {
    height: 70vh;
    min-height: 400px;
  }

  .one-slider {
    background-image: url('https://frht.ru/upload/iblock/dfb/qz1cixezh0aihrmt7e78ky00i7aw9glj/FRHT_52442_1-1-_1_.jpg');
  }

  .mb_img {
    background-image: url('https://frht.ru/upload/iblock/dd8/s09sr5m1a6j8w7kx5x65lyr0lb443v48/FRZ02198-1.jpg');
  }
}

@media (max-width: 480px) {
  .ms-item {
    margin-bottom: 0;
  }

  .m-name {
    font-size: 12px;
    margin-top: 11px;
    margin-bottom: 8px;
  }

  .m-inner-price,
  .m-inner-price span {
    font-size: 11px;
  }

  .see_all {
    margin-top: 22px;
  }

  .see_all a {
    font-size: 14px;
  }

  .g_tit {
    font-size: 14px;
    padding: 18px 15px;
  }

  .one-slider {
    height: 280px;
  }

  .mb_img {
    height: 400px;
  }
}

/* ===== Auth modal ===== */
.auth-modal[hidden] {
  display: none !important;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 7000;
  display: grid;
  place-items: center;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.auth-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100vw - 32px));
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 24px;
  color: #fff;
}

.auth-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M1 1l6 6M7 1L1 7' stroke='%23fff' stroke-width='1.2'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
}

.auth-modal__tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.auth-modal__tabs button {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  background: none;
  border: none;
  cursor: pointer;
}

.auth-modal__tabs button.is-active {
  color: #fff;
}

.auth-modal__error {
  min-height: 1.2em;
  color: #ff8d8d;
  font-size: 13px;
  margin-bottom: 10px;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form input,
.auth-form button,
#authLogoutBtn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}

.auth-form button,
#authLogoutBtn {
  cursor: pointer;
  text-transform: lowercase;
}

.auth-modal__user {
  margin-bottom: 14px;
  word-break: break-all;
}

.auth-admin-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

/* ===== Cart content ===== */
.ba_body {
  align-items: stretch;
  justify-content: flex-start;
  overflow: auto;
}

.ba_list {
  display: grid;
  gap: 16px;
  width: 100%;
  margin-bottom: 20px;
}

.ba_item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: start;
}

.ba_item-img {
  width: 72px;
  height: 90px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.ba_item-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #fff;
  margin-bottom: 4px;
}

.ba_item-price,
.ba_total {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.ba_item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #fff;
}

.ba_item-qty button,
.ba_btn {
  font: inherit;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 8px;
  cursor: pointer;
}

.ba_item-remove {
  margin-left: auto;
  opacity: 0.7;
}

.ba_footer {
  margin-top: auto;
  width: 100%;
  display: grid;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ba_checkout {
  display: grid;
  gap: 8px;
}

.ba_checkout input {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}

.ba_btn {
  padding: 12px;
  text-transform: lowercase;
}

.ba_note,
.ba_empty-wrap {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-align: center;
}

.ba_empty-wrap {
  display: grid;
  gap: 14px;
  place-items: center;
  width: 100%;
  padding: 40px 0;
}

.collection-card__add {
  margin-top: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #000;
}

.collection-card__add:hover {
  opacity: 0.55;
}

.collection-loading {
  grid-column: 1 / -1;
  padding: 40px 0;
  text-align: center;
  color: #767676;
}
