:root{
  --bg: #0b0b10;
  --card: #ffffff;
  --soft: #f6f3ff;
  --text: #12131a;
  --muted: #5f6575;
  --primary: #ff3d8d;
  --primary-2: #7c3aed;
  --ring: rgba(var(--btn-focus-rgb), .25);
  --shadow: 0 20px 60px rgba(18, 19, 26, .10);
  --btn: #ff3d8d;
  --btn-hover: #ff197b;
  --btn-active: #e91267;
  --btn-focus-rgb: 255, 61, 141;
  --btn-outline-border: rgba(var(--btn-focus-rgb), .35);
  --btn-outline-hover-bg: rgba(var(--btn-focus-rgb), .10);
  --btn-outline-hover-border: rgba(var(--btn-focus-rgb), .45);
  --btn-outline-active-bg: rgba(var(--btn-focus-rgb), .14);
  --btn-outline-active-border: rgba(var(--btn-focus-rgb), .50);
  --brand-glow-1: rgba(var(--btn-focus-rgb), 0.09);
  --brand-glow-1-mid: rgba(var(--btn-focus-rgb), 0.055);
  --brand-glow-1-soft: rgba(var(--btn-focus-rgb), 0.025);
  --brand-glow-1-faint: rgba(var(--btn-focus-rgb), 0.008);
  --brand-glow-2: rgba(124, 58, 237, 0.075);
  --brand-glow-2-mid: rgba(124, 58, 237, 0.04);
  --brand-glow-2-soft: rgba(124, 58, 237, 0.018);
  --brand-glow-2-faint: rgba(124, 58, 237, 0.006);
  --brand-wash-top: #fffcfd;
  --brand-wash-mid: #ffffff;
  --brand-wash-bottom: #fcfbfe;
}

html{
  height: 100%;
}

body{
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100dvh;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background-color: var(--brand-wash-mid);
  /* Градиент привязан к viewport: на длинной странице нет «полосы» на 40% высоты документа */
  background-image:
    radial-gradient(
      115% 95% at 10% -15%,
      var(--brand-glow-1) 0%,
      var(--brand-glow-1-mid) 22%,
      var(--brand-glow-1-soft) 48%,
      var(--brand-glow-1-faint) 68%,
      transparent 88%
    ),
    radial-gradient(
      110% 90% at 98% -5%,
      var(--brand-glow-2) 0%,
      var(--brand-glow-2-mid) 24%,
      var(--brand-glow-2-soft) 50%,
      var(--brand-glow-2-faint) 70%,
      transparent 90%
    ),
    linear-gradient(
      180deg,
      var(--brand-wash-top) 0%,
      var(--brand-wash-mid) 28%,
      var(--brand-wash-mid) 72%,
      var(--brand-wash-bottom) 100%
    );
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

@media (max-width: 991.98px) {
  body {
    /* iOS/Android: fixed-фон часто даёт рывки, на малых экранах оставляем scroll */
    background-attachment: scroll;
  }
}

#main{
  flex: 1 0 auto;
}

h1,
.h1{
  font-size: 2.2rem;
  font-weight: 400 !important;
}

.fw-semibold{
  font-weight: 400 !important;
}

.fw-bold{
  font-weight: 400 !important;
}

.py-lg-6{
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.skip-link{
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  background: #fff;
  color: #000;
  border: 1px solid rgba(0,0,0,.12);
  padding: .75rem 1rem;
  border-radius: .75rem;
  margin: .75rem;
  z-index: 2000;
}
.skip-link:focus{
  transform: translateY(0);
  outline: 3px solid var(--ring);
}

.header-blur{
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  overflow: visible;
}

.header-blur .navbar,
.header-blur .navbar > .container{
  overflow: visible;
}

/* Шапка: избранное и корзина всегда видны на мобиле */
.site-header-bar{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.site-header-tools{
  margin-left: auto;
  flex-shrink: 0;
  gap: 0.15rem;
}
.site-header-tool{
  min-width: 2.75rem;
  min-height: 2.75rem;
}
.site-header-tools .navbar-toggler{
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.45rem;
  border-radius: 0.65rem;
}
@media (max-width: 991.98px){
  .site-header-bar > .navbar-collapse{
    flex-basis: 100%;
  }
  .site-header-bar .navbar-collapse .site-nav,
  .site-header-bar .navbar-collapse .site-nav__overflow-list{
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
  }
  .site-header-bar .navbar-collapse .nav-item{
    width: 100%;
  }
  .site-header-bar .navbar-collapse .nav-link,
  .site-header-bar .navbar-collapse .btn{
    width: 100%;
    justify-content: flex-start;
  }
  .site-header-bar .navbar-collapse .dropdown-menu{
    width: 100%;
  }
}
@media (min-width: 992px){
  .site-header-bar{
    flex-wrap: nowrap;
  }
  .site-header-tools{
    order: 3;
    margin-left: 0.35rem;
  }
  .site-header-bar > .navbar-collapse{
    order: 2;
    flex-grow: 1;
  }
  .site-header-bar > .navbar-brand{
    order: 1;
  }
}

.navbar .nav-link{
  color: rgba(18, 19, 26, .72);
  font-weight: 600;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus{
  color: rgba(18, 19, 26, 1);
}

/* Priority+ «Ещё»: пункты справа у иконок, слот сжимается, не залезая на логотип */
.site-nav{
  width: auto;
  max-width: 100%;
  flex-wrap: nowrap;
  margin-left: auto;
  justify-content: flex-end;
}
.site-nav__overflow{
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}
.site-nav__overflow-list{
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__more-menu{
  min-width: 12rem;
  padding: .4rem;
  border-radius: 1rem;
  border: 1px solid rgba(18, 19, 26, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow:
    0 4px 6px rgba(18, 19, 26, .04),
    0 18px 40px rgba(18, 19, 26, .12);
}
.site-nav__more-menu > [data-nav-item]{
  list-style: none;
  margin: 0;
}
.site-nav__more-menu .dropdown-item{
  border-radius: .7rem;
  font-weight: 600;
  color: rgba(18, 19, 26, .78);
  padding: .55rem .85rem;
}
.site-nav__more-menu .dropdown-item:hover,
.site-nav__more-menu .dropdown-item:focus{
  background: rgba(var(--btn-focus-rgb), .08);
  color: rgba(18, 19, 26, 1);
}
.site-nav__more-menu .dropdown-item.active{
  background: linear-gradient(90deg, rgba(var(--btn-focus-rgb), .12), rgba(124, 58, 237, .08));
  color: rgba(18, 19, 26, 1);
}
@media (min-width: 992px){
  .navbar > .container.py-2 #navMain.navbar-collapse{
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
  }
  .site-nav > .nav-item:not(.site-nav__overflow){
    flex: 0 0 auto;
  }
}
@media (max-width: 991.98px){
  .site-nav{
    width: auto;
    max-width: none;
    flex-wrap: wrap;
    margin-left: 0;
    justify-content: flex-start;
  }
  .site-nav__overflow{
    flex: 1 1 100%;
    max-width: none;
  }
  .site-nav__overflow-list{
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch !important;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
  }
  .site-nav__more{
    display: none !important;
  }
}

.catalog-menu{
  --catalog-menu-max-h: min(calc(100vh - 4.5rem), 560px);
  width: min(640px, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1.5rem);
  max-height: var(--catalog-menu-max-h);
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(18, 19, 26, .08);
  box-shadow:
    0 4px 6px rgba(18, 19, 26, .04),
    0 24px 64px rgba(18, 19, 26, .14);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px) saturate(1.4);
  padding: .4rem;
}

.dropdown-menu{
  background: transparent;
  backdrop-filter: none;
  background-clip: padding-box;
}

.catalog-mega{
  display: block;
  min-height: 0;
  max-height: calc(var(--catalog-menu-max-h) - .8rem);
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #fafafa 100%);
  border-radius: .95rem;
  border: 1px solid rgba(18, 19, 26, .06);
}

.catalog-mega--split{
  display: grid;
  grid-template-columns: minmax(168px, 38%) minmax(0, 1fr);
  min-height: min(320px, calc(var(--catalog-menu-max-h) - .8rem));
}

.catalog-mega-left{
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .45rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-right: 1px solid rgba(18, 19, 26, .07);
  background: rgba(18, 19, 26, .025);
}

.catalog-nav-item{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .55rem;
  width: 100%;
  border: 0;
  border-radius: .75rem;
  padding: .62rem .72rem;
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.25;
  text-align: left;
  color: rgba(18, 19, 26, .82);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color .18s ease,
    box-shadow .18s ease,
    color .18s ease,
    transform .18s ease;
}

.catalog-nav-item__label{
  min-width: 0;
}

.catalog-nav-item__chevron{
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  width: .45rem;
  height: .45rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .35;
  transition: opacity .18s ease, transform .18s ease;
}

.catalog-nav-item__chevron::before{
  content: "";
  position: absolute;
  inset: -0.7rem -0.85rem;
}

.catalog-nav-item:hover,
.catalog-nav-item:focus-visible{
  color: rgba(18, 19, 26, 1);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 2px 10px rgba(18, 19, 26, .06);
  outline: none;
}

.catalog-nav-item.is-active{
  color: rgba(18, 19, 26, 1);
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .8) inset,
    0 4px 16px rgba(var(--btn-focus-rgb), .12),
    0 2px 8px rgba(18, 19, 26, .06);
}

.catalog-nav-item.is-active .catalog-nav-item__chevron{
  opacity: .75;
  transform: rotate(45deg) translate(1px, -1px);
}

.catalog-mega-detail{
  position: relative;
  padding: .45rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.catalog-mega-detail__placeholder{
  margin: 0;
  padding: 1rem .25rem;
  color: rgba(18, 19, 26, .45);
  font-size: .88rem;
}

.catalog-detail-panel{
  display: none;
  animation: catalog-panel-in .22s ease;
}

.catalog-detail-panel.is-active{
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

@keyframes catalog-panel-in{
  from{
    opacity: 0;
    transform: translateY(4px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-detail-panel__section{
  margin-bottom: .15rem;
  border-bottom: 1px solid rgba(18, 19, 26, .07);
  border-radius: .75rem .75rem 0 0;
  padding-bottom: .72rem;
}

.catalog-detail-panel__section-prefix{
  font-weight: 700;
  color: rgba(var(--btn-focus-rgb), .85);
}

.catalog-detail-panel__links{
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.catalog-mega-single{
  display: grid;
  gap: .25rem;
  padding: .45rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  max-height: calc(var(--catalog-menu-max-h) - .8rem);
}

.catalog-menu-loading,
.catalog-menu-error{
  padding: 1rem;
}

.catalog-menu::-webkit-scrollbar,
.catalog-mega-left::-webkit-scrollbar,
.catalog-mega-detail::-webkit-scrollbar,
.catalog-mega-single::-webkit-scrollbar{
  width: 8px;
}

.catalog-menu::-webkit-scrollbar-thumb,
.catalog-mega-left::-webkit-scrollbar-thumb,
.catalog-mega-detail::-webkit-scrollbar-thumb,
.catalog-mega-single::-webkit-scrollbar-thumb{
  background: rgba(18, 19, 26, .12);
  border-radius: 999px;
}

.catalog-menu::-webkit-scrollbar-thumb:hover,
.catalog-mega-left::-webkit-scrollbar-thumb:hover,
.catalog-mega-detail::-webkit-scrollbar-thumb:hover,
.catalog-mega-single::-webkit-scrollbar-thumb:hover{
  background: rgba(18, 19, 26, .2);
}

@media (max-width: 991.98px){
  .catalog-menu{
    width: calc(100vw - 1.25rem);
    max-width: calc(100vw - 1.25rem);
  }

  .catalog-mega--split{
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(140px, 1fr);
    min-height: min(420px, calc(var(--catalog-menu-max-h) - .8rem));
  }

  .catalog-mega-left{
    border-right: 0;
    border-bottom: 1px solid rgba(18, 19, 26, .07);
    max-height: min(220px, 42vh);
  }

  .catalog-nav-item__chevron{
    transform: rotate(135deg);
  }

  .catalog-nav-item.is-active .catalog-nav-item__chevron{
    transform: rotate(-45deg);
  }
}

.navbar .dropdown-toggle::after{
  margin-left: .45rem;
  vertical-align: .1em;
  opacity: .7;
}

.anchor-offset{
  scroll-margin-top: 96px;
}

.brand-mark{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: conic-gradient(from 220deg, var(--primary), var(--primary-2), var(--primary), var(--primary));
  box-shadow: 0 8px 18px rgba(var(--btn-focus-rgb), .25);
}

.brand-logo{
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0 10px 18px rgba(18, 19, 26, .12));
}

.brand-logo--icon{
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Режим «только логотип»: слот = max-width картинки, иначе меню наезжает на лого */
.navbar-brand[data-brand-mode="logo"]{
  position: relative;
  align-self: center;
  display: block;
  flex: 0 0 auto;
  width: min(14rem, 56vw);
  height: 2.75rem;
  min-height: 2.75rem;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  overflow: visible;
  z-index: 5;
}

.navbar-brand[data-brand-mode="logo"] .brand-logo,
.navbar-brand[data-brand-mode="logo"] [data-site-logo]{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 4.75rem;
  max-height: none;
  max-width: min(14rem, 56vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(18, 19, 26, .12));
}

.navbar > .container.py-2 .navbar-brand[data-brand-mode="logo"]{
  height: 2.75rem;
}

.navbar > .container.py-2 .navbar-brand[data-brand-mode="logo"] .brand-logo,
.navbar > .container.py-2 .navbar-brand[data-brand-mode="logo"] [data-site-logo]{
  height: 4.75rem;
  max-height: none;
}

.site-footer__brand-link[data-brand-mode="logo"]{
  position: relative;
  display: block;
  width: clamp(6.5rem, 28vw, 10rem);
  min-height: 2.5rem;
  height: 2.5rem;
  overflow: visible;
}

.site-footer__brand-link[data-brand-mode="logo"] .brand-logo,
.site-footer__brand-link[data-brand-mode="logo"] [data-site-logo]{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 3.25rem;
  max-height: none;
  max-width: min(12rem, 60vw);
  object-fit: contain;
  object-position: left center;
}

.navbar-brand[data-brand-mode="logo"] .site-brand-name,
.site-footer__brand-link[data-brand-mode="logo"] .site-brand-name{
  display: none;
}

@media (max-width: 575.98px){
  .navbar-brand[data-brand-mode="logo"]{
    width: clamp(6.25rem, 40vw, 9rem);
  }

  .navbar-brand[data-brand-mode="logo"] .brand-logo,
  .navbar-brand[data-brand-mode="logo"] [data-site-logo],
  .navbar > .container.py-2 .navbar-brand[data-brand-mode="logo"] .brand-logo,
  .navbar > .container.py-2 .navbar-brand[data-brand-mode="logo"] [data-site-logo]{
    height: 3.85rem;
  }
}

.site-brand-name,
.navbar-brand [data-site-name],
.site-footer__brand-link [data-site-name]{
  font-family: "Amatic SC", "Manrope", cursive;
  font-weight: 700 !important;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.navbar-brand .site-brand-name,
.navbar-brand [data-site-name]{
  font-size: 2rem;
}

.site-footer__brand-link .site-brand-name,
.site-footer__brand-link [data-site-name]{
  font-size: 1.75rem;
}

.btn-primary{
  --bs-btn-bg: var(--btn, var(--primary));
  --bs-btn-border-color: var(--btn, var(--primary));
  --bs-btn-hover-bg: var(--btn-hover, #ff197b);
  --bs-btn-hover-border-color: var(--btn-hover, #ff197b);
  --bs-btn-active-bg: var(--btn-active, #e91267);
  --bs-btn-active-border-color: var(--btn-active, #e91267);
  --bs-btn-focus-shadow-rgb: var(--btn-focus-rgb);
}
.btn-outline-primary{
  --bs-btn-color: var(--btn, var(--primary));
  --bs-btn-border-color: var(--btn-outline-border, rgba(var(--btn-focus-rgb), .35));
  --bs-btn-hover-bg: var(--btn-outline-hover-bg, rgba(var(--btn-focus-rgb), .10));
  --bs-btn-hover-border-color: var(--btn-outline-hover-border, rgba(var(--btn-focus-rgb), .45));
  --bs-btn-active-bg: var(--btn-outline-active-bg, rgba(var(--btn-focus-rgb), .14));
  --bs-btn-active-border-color: var(--btn-outline-active-border, rgba(var(--btn-focus-rgb), .50));
  --bs-btn-focus-shadow-rgb: var(--btn-focus-rgb);
}

.hero{
  position: relative;
}

.hero.hero--has-bg{
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.hero--has-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 42%,
      rgba(255, 255, 255, 0.52) 72%,
      rgba(255, 255, 255, 0.32) 100%
    );
}

.hero > .container{
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px){
  .hero.py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .hero-week-col__chips{
    margin-top: 0.75rem !important;
  }

  .hero__badge--hide-mobile,
  .hero__badges .badge:last-child,
  .hero__copy > .d-flex.flex-wrap.gap-2.mb-3 > .badge:last-child{
    display: none;
  }

  .hero__badges,
  .hero__copy > .d-flex.flex-wrap.gap-2.mb-3:has(> .badge){
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    width: 100%;
  }

  .hero__badges > .badge:not(.hero__badge--hide-mobile),
  .hero__copy > .d-flex.flex-wrap.gap-2.mb-3:has(> .badge) > .badge:not(:last-child){
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }
}

.hero__copy h1.display-5{
  font-size: clamp(1.3rem, 2.2vw, 2.4rem);
  letter-spacing: -0.02em;
}
@media (min-width: 1200px){
  .hero__copy h1.display-5{
    font-size: 2.4rem;
  }
}

.hero__cta,
.hero__copy > .d-flex:has(> .btn){
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.5rem;
}
.hero__cta > .btn,
.hero__copy > .d-flex:has(> .btn) > .btn{
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
@media (max-width: 575.98px){
  .hero__cta,
  .hero__copy > .d-flex:has(> .btn){
    gap: 0.4rem;
  }
  .hero__cta > .btn,
  .hero__copy > .d-flex:has(> .btn) > .btn{
    font-size: 0.875rem;
    line-height: 1.25;
    padding: 0.65rem 0.7rem;
    border-radius: 0.85rem;
  }
}

.text-gradient{
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18, 19, 26, .08);
  border-radius: 1rem;
  padding: .9rem 1rem;
  box-shadow: 0 10px 24px rgba(18, 19, 26, .06);
}
@media (max-width: 767.98px){
  .hero__stat--hide-mobile,
  .hero__stats .stat:last-child,
  .hero__copy > .d-flex.flex-wrap.gap-3 > .stat:last-child{
    display: none;
  }

  .hero__stats,
  .hero__copy > .d-flex.flex-wrap.gap-3:has(> .stat){
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
  }

  .hero__stats > .stat:not(.hero__stat--hide-mobile),
  .hero__copy > .d-flex.flex-wrap.gap-3:has(> .stat) > .stat:not(:last-child){
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }
}
.stat-value{
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat-label{
  color: rgba(18, 19, 26, .60);
  font-size: .875rem;
}

.hero-card{
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: var(--shadow);
}

.hero__copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* «Коллекция недели»: карусель — 2 карточки, до 6 товаров, горизонтальная прокрутка */
.hero-week-carousel {
  max-width: 100%;
}
@media (min-width: 992px) {
  .hero-week-col {
    min-height: 0;
  }
  .hero-week-carousel {
    min-height: 0;
  }
  .hero-week-carousel__viewport {
    flex: 0 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .hero-week-carousel__track {
    align-items: stretch;
  }
  .hero-week-carousel__slide {
    display: flex;
    align-items: stretch;
    align-self: stretch;
  }
  .hero-week-carousel__slide > .product.card {
    flex: 1 1 auto;
    min-height: 100%;
  }
}
.hero-week-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(246, 243, 255, 0.4), #fff 55%);
  box-shadow: 0 12px 32px rgba(18, 19, 26, 0.08);
  margin: 0;
  padding: 0.55rem 0.6rem 0.7rem;
  outline: 0;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
}
.hero-week-carousel__viewport:focus-visible {
  box-shadow: 0 0 0 3px var(--ring);
}
.hero-week-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.hero-week-carousel__viewport.is-drag-scroll{
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.hero-week-carousel__viewport.is-drag-scroll a,
.hero-week-carousel__viewport.is-drag-scroll button{
  pointer-events: none;
}
.hero-week-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  gap: 0.5rem;
}
.hero-week-carousel__slide {
  flex: 0 0 auto;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
}
.hero-week-carousel__slide > .product.card {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hero-week-carousel__slide .product-card .card-body {
  padding: 0.65rem 0.5rem 0.7rem;
}
.hero-week-carousel__slide .product-card .card-body > h3 {
  font-size: calc(0.85rem + 0.1rem);
  padding-top: 0.25rem;
  padding-bottom: 0.35rem;
}
.hero-week-carousel__slide .product-card__price .product-price-current {
  font-size: 0.95rem;
}
.hero-week-carousel__slide .product-card__price .product-price-old {
  font-size: 0.78rem;
}
.hero-week-carousel__slide .product-card__bonus {
  font-size: 0.68rem;
}
.hero-week-carousel__slide .product-card__bonus-icon {
  width: 14px;
  height: 14px;
}
.hero-week-carousel__slide .product-card .card-body .btn {
  min-height: 2rem;
  padding: 0.4rem 0.45rem;
  font-size: 0.78rem;
}
.hero-week-carousel__slide .product-card__actions--row .btn {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

/* Карточка товара — единый стиль витрины (как section.html) */
.product-card {
  border-radius: 0.9rem;
}
.product-card .card-body {
  padding: 0.8rem 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0;
}
.product-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  font-size: 0.78rem;
  margin-bottom: 0.35rem !important;
  flex: 0 0 auto;
}
.product-card .card-body > h3,
.product-card__title {
  font-weight: 400 !important;
  font-size: calc(1rem + 0.2rem);
  margin-bottom: 0 !important;
  padding-top: 0.35rem;
  padding-bottom: 0.45rem;
}
.product-card .card-body > h3 a {
  font-weight: 400 !important;
}
.product-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
}
.product-card .product-img {
  min-height: 0;
}
.product-card .product-price-cell {
  line-height: 1.2;
  white-space: normal;
}
.product-card__footer {
  margin-top: auto;
  gap: 0.65rem !important;
}
.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.35rem 0.35rem 0.4rem;
  box-sizing: border-box;
}
.product-card__price {
  padding-left: 0.05rem;
}
.product-card__bonus {
  margin-left: auto;
  text-align: right;
  font-size: 0.82rem;
  padding-right: 0.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(18, 19, 26, 0.62);
  white-space: nowrap;
  flex-shrink: 0;
}
.product-card__price .product-price-current {
  font-size: 1.1rem;
}
.product-card__price .product-price-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(18, 19, 26, 0.35);
}
.product-card__bonus-icon {
  flex-shrink: 0;
  opacity: 0.75;
  width: 16px;
  height: 16px;
}
.product-card__actions--row {
  flex-direction: row !important;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  padding-top: 0.35rem;
  padding-bottom: 0.3rem;
  gap: 0.5rem;
}
.product-card__actions--row .btn.btn-light,
.product-card__actions--row .product-card__more {
  border: none;
  box-shadow: none;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin-left: auto;
}
.product-card__actions--row .btn.btn-primary {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  justify-content: flex-start;
}

@media (max-width: 575.98px) {
  .home-product-section .row,
  #saleGrid,
  #novinkiGrid {
    --bs-gutter-x: 0.65rem;
    --bs-gutter-y: 0.65rem;
  }

  .home-product-section .product-card .card-body,
  #saleGrid .product-card .card-body,
  #novinkiGrid .product-card .card-body {
    padding: 0.55rem 0.5rem 0.65rem;
  }

  .home-product-section .product-card .card-body > h3,
  .home-product-section .product-card__title,
  #saleGrid .product-card .card-body > h3,
  #saleGrid .product-card__title,
  #novinkiGrid .product-card .card-body > h3,
  #novinkiGrid .product-card__title {
    font-size: 0.9rem;
    padding-top: 0.2rem;
    padding-bottom: 0.3rem;
  }

  .home-product-section .product-card__excerpt,
  #saleGrid .product-card__excerpt,
  #novinkiGrid .product-card__excerpt {
    display: none;
  }

  .home-product-section .product-card__price .product-price-current,
  #saleGrid .product-card__price .product-price-current,
  #novinkiGrid .product-card__price .product-price-current {
    font-size: 0.95rem;
  }
}

.product-card .card-body .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.product-card .card-body .btn.btn-primary {
  box-shadow: 0 10px 24px rgba(var(--btn-focus-rgb), 0.18);
}
.product-card .card-body .btn.btn-light {
  background: rgba(255, 255, 255, 0.92);
}

.product-similar-carousel__item > .product-card,
.product-addons-carousel__item > .product-card {
  min-height: 100%;
}

.hero-week-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
@media (min-width: 576px) {
  .hero-week-carousel__btn {
    min-width: 2.25rem;
  }
}

/* Похожие товары на карточке: карусель, 4 в ряд на десктопе */
.product-similar-carousel {
  max-width: 100%;
}
.product-similar-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  outline: 0;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
}
.product-similar-carousel__viewport:focus-visible {
  box-shadow: 0 0 0 3px var(--ring);
  border-radius: 0.75rem;
}
.product-similar-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.product-similar-carousel__viewport.is-drag-scroll{
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.product-similar-carousel__viewport.is-drag-scroll a,
.product-similar-carousel__viewport.is-drag-scroll button{
  pointer-events: none;
}
.product-similar-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.15rem 0.1rem 0.35rem;
}
.product-similar-carousel__item {
  flex: 0 0 calc((100% - 0.75rem) / 2);
  max-width: calc((100% - 0.75rem) / 2);
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
}
.product-similar-carousel__card {
  min-height: 100%;
}
.product-similar-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .product-similar-carousel__item {
    flex: 0 0 calc((100% - 2 * 0.75rem) / 3);
    max-width: calc((100% - 2 * 0.75rem) / 3);
  }
}
@media (min-width: 992px) {
  .product-similar-carousel__item {
    flex: 0 0 calc((100% - 3 * 0.75rem) / 4);
    max-width: calc((100% - 3 * 0.75rem) / 4);
  }
}
@media (min-width: 576px) {
  .product-similar-carousel__btn {
    min-width: 2.25rem;
  }
}

/* Дополнения к букету: карусель, 4 в ряд на десктопе */
.product-addons-carousel {
  max-width: 100%;
}
.product-addons-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  outline: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--btn-focus-rgb), 0.25) rgba(18, 19, 26, 0.06);
}
.product-addons-carousel__viewport:focus-visible {
  box-shadow: 0 0 0 3px var(--ring);
  border-radius: 0.75rem;
}
.product-addons-carousel__viewport::-webkit-scrollbar {
  height: 6px;
}
.product-addons-carousel__viewport::-webkit-scrollbar-thumb {
  background: rgba(var(--btn-focus-rgb), 0.3);
  border-radius: 999px;
}
.product-addons-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.15rem 0.1rem 0.35rem;
}
.product-addons-carousel__item {
  flex: 0 0 calc((100% - 0.75rem) / 2);
  max-width: calc((100% - 0.75rem) / 2);
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
}
.product-addons-carousel__card {
  min-height: 100%;
}
.product-addons-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .product-addons-carousel__item {
    flex: 0 0 calc((100% - 2 * 0.75rem) / 3);
    max-width: calc((100% - 2 * 0.75rem) / 3);
  }
}
@media (min-width: 992px) {
  .product-addons-carousel__item {
    flex: 0 0 calc((100% - 3 * 0.75rem) / 4);
    max-width: calc((100% - 3 * 0.75rem) / 4);
  }
}
@media (min-width: 576px) {
  .product-addons-carousel__btn {
    min-width: 2.25rem;
  }
}

.hero-week-label{
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18, 19, 26, .48);
  margin-bottom: 0.25rem;
}

.hero-visual{
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(900px 420px at 30% 10%, rgba(var(--btn-focus-rgb), .22), transparent 60%),
    radial-gradient(700px 360px at 90% 40%, rgba(124, 58, 237, .20), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .10), rgba(18, 19, 26, 0));
  position: relative;
}
.hero-visual::before{
  content: "";
  position: absolute;
  inset: 18% 12%;
  border-radius: 1.25rem;
  background:
    radial-gradient(240px 160px at 35% 30%, rgba(255,255,255,.92), rgba(255,255,255,.55)),
    radial-gradient(260px 180px at 70% 60%, rgba(255,255,255,.78), rgba(255,255,255,.35));
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 30px 80px rgba(18, 19, 26, .10);
}
.hero-visual::after{
  content: "";
  position: absolute;
  inset: 10% 18%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--btn-focus-rgb),.32), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(124,58,237,.28), transparent 55%);
  filter: blur(10px);
}
.hero-card-bottom{
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.82);
  border-top: 1px solid rgba(18, 19, 26, .08);
}
.price-tag{
  font-weight: 800;
  letter-spacing: -0.02em;
  background: rgba(var(--btn-focus-rgb), .10);
  color: #b0104f;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--btn-focus-rgb), .18);
}

.product-price-wrap{
  line-height: 1.1;
}
.product-price-sale{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem .6rem;
}
.product-price-current{
  font-weight: 800;
  color: var(--bs-body-color, #12131a);
  letter-spacing: -0.02em;
}
.product-price-current--lg{
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.product-price-old{
  font-size: .92em;
  font-weight: 700;
  color: rgba(18, 19, 26, .55);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(18, 19, 26, .35);
  text-decoration-skip-ink: none;
  padding: .14rem .45rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 19, 26, .10);
  background: rgba(255,255,255,.75);
}
.product-price-sale--lg .product-price-old{
  font-size: 1.125rem;
}
.product-price-cell .product-price-sale{
  gap: .25rem .5rem;
}

/* Компактный вид цены в карточках каталога */
.product-price-cell .product-price-current{
  font-weight: 800;
}
.product-price-cell .product-price-old{
  font-size: .88em;
  padding: .12rem .4rem;
  background: rgba(255,255,255,.85);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(18, 19, 26, 0.35);
}

/* Контекст блока "glass" на product.html */
.glass .product-price-current--lg{
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(18, 19, 26, .08);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-weight: 600;
  font-size: .9rem;
}
.chip-dot{
  width: .6rem;
  height: .6rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
}
.chip-dot--pink{
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--btn-focus-rgb), .14);
}
.chip-dot--violet{
  background: var(--primary-2);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-2) 14%, transparent);
}
.chip-dot--green{
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
}

.section-soft{
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(var(--btn-focus-rgb), .04), transparent 70%),
    radial-gradient(110% 85% at 100% 10%, rgba(124, 58, 237, .035), transparent 68%),
    linear-gradient(180deg, color-mix(in srgb, var(--soft) 55%, #ffffff) 0%, #ffffff 100%);
}

/* Страница раздела каталога (section.html) */
.section-page-main .section-page-visual{
  min-height: 180px;
  border-radius: 0;
  border: 0;
}
@media (min-width: 992px){
  .section-page-main .section-page-visual{
    min-height: 220px;
  }
}

/* Пагинация каталога (section.html) — в тон кнопкам и карточкам */
.section-catalog-nav{
  margin-top: 0.5rem;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid rgba(18, 19, 26, .08);
  background: linear-gradient(180deg, rgba(246, 243, 255, .45), rgba(255, 255, 255, 0) 100%);
  border-radius: 0 0 1.25rem 1.25rem;
}
.section-catalog-nav__range{
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.4;
  max-width: 100%;
}

.section-catalog-pagination{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 100%;
  row-gap: 0.4rem;
}
.section-catalog-pagination .page-item{
  margin: 0;
}
.section-catalog-pagination .page-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(18, 19, 26, .10);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(18, 19, 26, .05);
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.section-catalog-pagination a.page-link:hover{
  color: var(--primary);
  border-color: rgba(var(--btn-focus-rgb), .38);
  background: rgba(var(--btn-focus-rgb), .07);
  box-shadow: 0 6px 18px rgba(var(--btn-focus-rgb), .12);
}
.section-catalog-pagination a.page-link:focus-visible{
  color: var(--primary);
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}
.section-catalog-pagination .page-item.active .page-link{
  color: #fff;
  background: linear-gradient(135deg, var(--btn, var(--primary)) 0%, var(--btn-active, var(--primary)) 100%);
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(var(--btn-focus-rgb), .28);
}
.section-catalog-pagination .page-item.active .page-link span{
  color: inherit;
}
.section-catalog-pagination .page-item.disabled .page-link{
  color: var(--muted);
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(18, 19, 26, .04);
  border-color: rgba(18, 19, 26, .07);
  box-shadow: none;
}
.section-catalog-pagination .page-item.disabled[aria-hidden="true"] .page-link{
  opacity: 0.4;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
}
/* «Назад» / «Вперёд» — чуть шире */
.section-catalog-pagination .page-item:first-child .page-link,
.section-catalog-pagination .page-item:last-child .page-link{
  min-width: auto;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
}
@media (max-width: 575.98px){
  .section-catalog-nav{
    flex-direction: column;
    align-items: stretch !important;
  }
  .section-catalog-pagination{
    justify-content: center;
  }
  .section-catalog-nav__range{
    text-align: center;
  }
}

/* Боковые фильтры каталога (section.html) */
.catalog-filters{
  padding: 1rem 1rem 1.05rem;
  position: sticky;
  top: 5.5rem;
}
.catalog-filters__head{
  padding-bottom: 0.15rem;
}
.catalog-filters__body{
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.catalog-filter-group__title{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 19, 26, 0.48);
  margin: 0 0 0.55rem;
}
.catalog-filter-group__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.catalog-filter-chip{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 19, 26, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.catalog-filter-chip--color{
  border-radius: 999px;
  padding: 0.38rem 0.7rem 0.38rem 0.5rem;
  gap: 0.45rem;
}
.catalog-filter-chip__swatch{
  flex: 0 0 auto;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--swatch, #c5c5c8);
  box-shadow: inset 0 0 0 1px rgba(18, 19, 26, 0.12);
}
.catalog-filter-chip__swatch.is-light{
  box-shadow: inset 0 0 0 1px rgba(18, 19, 26, 0.22);
}
.catalog-filter-chip__swatch.is-mix{
  background: conic-gradient(
    #e53935 0deg 60deg,
    #f6c343 60deg 120deg,
    #66bb6a 120deg 180deg,
    #64b5f6 180deg 240deg,
    #b39ddb 240deg 300deg,
    #f48fb1 300deg 360deg
  );
}
.catalog-filter-chip:hover{
  border-color: rgba(var(--btn-focus-rgb), 0.35);
  background: #fff;
  color: inherit;
}
.catalog-filter-chip.is-active{
  border-color: rgba(var(--btn-focus-rgb), 0.45);
  background: rgba(var(--btn-focus-rgb), 0.08);
  box-shadow: 0 8px 20px rgba(var(--btn-focus-rgb), 0.1);
}
.catalog-filter-chip.is-disabled{
  opacity: 0.45;
  pointer-events: none;
}
.catalog-filter-chip__count{
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(18, 19, 26, 0.45);
}
.catalog-filter-chip.is-active .catalog-filter-chip__count{
  color: rgba(var(--btn-focus-rgb), 0.85);
}
.catalog-filter-price__row{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.45rem;
  align-items: center;
}
.catalog-filter-price__sep{
  color: rgba(18, 19, 26, 0.35);
  font-weight: 600;
  line-height: 1;
}
.catalog-filter-price__input{
  width: 100%;
  min-width: 0;
  padding: 0.42rem 0.55rem;
  border: 1px solid rgba(18, 19, 26, 0.12);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
  color: inherit;
}
.catalog-filter-price__input:focus{
  outline: none;
  border-color: rgba(var(--btn-focus-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--btn-focus-rgb), 0.12);
}
.catalog-filter-price__slider{
  --fill-left: 0%;
  --fill-width: 100%;
  position: relative;
  height: 1.55rem;
  margin: 0.85rem 0 0.15rem;
  touch-action: none;
}
.catalog-filter-price__track{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0.28rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(18, 19, 26, 0.1);
  pointer-events: none;
}
.catalog-filter-price__track-fill{
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--fill-left);
  width: var(--fill-width);
  border-radius: inherit;
  background: rgba(var(--btn-focus-rgb), 0.55);
}
.catalog-filter-price__range{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.catalog-filter-price__range--min{
  z-index: 2;
}
.catalog-filter-price__range--max{
  z-index: 3;
}
.catalog-filter-price__range:focus{
  outline: none;
}
.catalog-filter-price__range::-webkit-slider-runnable-track{
  height: 0.28rem;
  background: transparent;
  border: none;
}
.catalog-filter-price__range::-moz-range-track{
  height: 0.28rem;
  background: transparent;
  border: none;
}
.catalog-filter-price__range::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: calc((0.28rem - 1.05rem) / 2);
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgb(var(--btn-focus-rgb));
  box-shadow: 0 1px 4px rgba(18, 19, 26, 0.22);
  cursor: grab;
}
.catalog-filter-price__range::-moz-range-thumb{
  pointer-events: auto;
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgb(var(--btn-focus-rgb));
  box-shadow: 0 1px 4px rgba(18, 19, 26, 0.22);
  cursor: grab;
}
.catalog-filter-price__range:active::-webkit-slider-thumb{
  cursor: grabbing;
}
.catalog-filter-price__range:active::-moz-range-thumb{
  cursor: grabbing;
}
.catalog-filter-price__range:focus-visible::-webkit-slider-thumb{
  box-shadow: 0 0 0 3px rgba(var(--btn-focus-rgb), 0.28);
}
.catalog-filter-price__range:focus-visible::-moz-range-thumb{
  box-shadow: 0 0 0 3px rgba(var(--btn-focus-rgb), 0.28);
}
.catalog-filter-price__hint{
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  color: rgba(18, 19, 26, 0.45);
}
.catalog-filter-price__apply{
  margin-top: 0.65rem;
  width: 100%;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(var(--btn-focus-rgb), 0.35);
  border-radius: 0.7rem;
  background: rgba(var(--btn-focus-rgb), 0.08);
  color: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.catalog-filter-price__apply:hover{
  background: rgba(var(--btn-focus-rgb), 0.14);
  border-color: rgba(var(--btn-focus-rgb), 0.5);
}
@media (max-width: 991.98px) {
  .section-catalog-filters-col{
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(18, 19, 26, 0.35);
    padding: 0.75rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .section-catalog-filters-col.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .section-catalog-filters-col .catalog-filters{
    max-width: 22rem;
    position: relative;
    top: 0;
    margin-left: auto;
    box-shadow: 0 20px 50px rgba(18, 19, 26, 0.18);
  }
  body.catalog-filters-open{
    overflow: hidden;
  }
}

.product{
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 16px 40px rgba(18, 19, 26, .06);
  border-radius: 1.25rem;
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.33, 1, 0.32, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.product:hover{
  transform: translateY(-6px);
  border-color: rgba(var(--btn-focus-rgb), 0.28);
  box-shadow:
    0 6px 20px rgba(var(--btn-focus-rgb), 0.12),
    0 4px 16px rgba(124, 58, 237, 0.1),
    0 18px 44px rgba(18, 19, 26, 0.1);
}
@media (prefers-reduced-motion: reduce) {
  .product {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .product:hover {
    transform: none;
  }
}

.product-link{
  display: block;
  color: inherit;
  text-decoration: none;
}

.cat{
  border-radius: 1.25rem;
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 16px 40px rgba(18, 19, 26, .06);
  color: inherit;
  overflow: hidden;
}
.cat:hover{
  transform: translateY(-2px);
  transition: transform .15s ease;
}
@media (max-width: 575.98px){
  .cat .card-body{
    padding: 0.65rem 0.7rem;
  }
  .cat .card-body .fw-semibold{
    font-size: 0.9rem;
  }
  .cat .card-body .small{
    font-size: 0.75rem;
  }
}
.cat-media{
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(18, 19, 26, .08);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 0%, rgba(var(--btn-focus-rgb), .18), transparent 62%),
    radial-gradient(100% 80% at 90% 40%, rgba(124, 58, 237, .16), transparent 58%),
    linear-gradient(135deg, rgba(18, 19, 26, .10), rgba(18, 19, 26, 0));
}
.cat-media--sale{
  background:
    radial-gradient(120% 90% at 30% 0%, rgba(var(--btn-focus-rgb), .22), transparent 62%),
    radial-gradient(100% 80% at 90% 40%, var(--brand-glow-2, color-mix(in srgb, var(--primary-2) 14%, transparent)), transparent 58%),
    linear-gradient(135deg, rgba(18, 19, 26, .10), rgba(18, 19, 26, 0));
}
.cat-media--roses{
  background:
    radial-gradient(120% 90% at 30% 0%, rgba(244, 63, 94, .22), transparent 62%),
    radial-gradient(100% 80% at 90% 40%, rgba(124, 58, 237, .14), transparent 58%),
    linear-gradient(135deg, rgba(18, 19, 26, .10), rgba(18, 19, 26, 0));
}
.cat-media--bouquets{
  background:
    radial-gradient(120% 90% at 30% 0%, rgba(124, 58, 237, .20), transparent 62%),
    radial-gradient(100% 80% at 90% 40%, rgba(var(--btn-focus-rgb), .16), transparent 58%),
    linear-gradient(135deg, rgba(18, 19, 26, .10), rgba(18, 19, 26, 0));
}
.cat-media--comp{
  background:
    radial-gradient(120% 90% at 30% 0%, var(--brand-glow-1, rgba(var(--btn-focus-rgb), .18)), transparent 62%),
    radial-gradient(100% 80% at 90% 40%, rgba(var(--btn-focus-rgb), .14), transparent 58%),
    linear-gradient(135deg, rgba(18, 19, 26, .10), rgba(18, 19, 26, 0));
}
.cat-media--balloons{
  background:
    radial-gradient(120% 90% at 30% 0%, rgba(59, 130, 246, .18), transparent 62%),
    radial-gradient(100% 80% at 90% 40%, rgba(var(--btn-focus-rgb), .14), transparent 58%),
    linear-gradient(135deg, rgba(18, 19, 26, .10), rgba(18, 19, 26, 0));
}
.cat-media--has-photo{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.catalog-nav-item__thumb{
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: .55rem;
  overflow: hidden;
  background: rgba(18, 19, 26, .06);
}
.catalog-nav-item__thumb img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-media{
  position: relative;
  overflow: hidden;
}
.product-media__corner--tl{
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  max-width: calc(100% - 3.5rem);
  pointer-events: none;
}
.product-media__corner--tl > *{
  pointer-events: auto;
}
.product-size-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 14px rgba(18, 19, 26, 0.1);
  color: rgba(18, 19, 26, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.product-size-badge__icon{
  display: block;
  flex-shrink: 0;
  opacity: 0.72;
}
.product-media__corner--tl .product-badge{
  position: static;
  top: auto;
  left: auto;
}
.product-card__favorite{
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 14px rgba(18, 19, 26, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(18, 19, 26, 0.52);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.product-card__favorite:hover{
  color: var(--primary);
  transform: scale(1.06);
}
.product-card__favorite.is-active{
  color: var(--primary);
}
.product-card__favorite-icon{
  display: block;
  fill: none;
  transition: fill 0.15s ease;
}
.product-card__favorite.is-active .product-card__favorite-icon{
  fill: var(--primary);
  stroke: var(--primary);
}
.hero-week-carousel__slide .product-card__favorite{
  top: 0.4rem;
  right: 0.4rem;
  width: 1.85rem;
  height: 1.85rem;
}
.hero-week-carousel__slide .product-card__favorite-icon{
  width: 16px;
  height: 16px;
}

.favorites-empty{
  padding: 1.25rem 1.35rem;
}
.favorites-loading[hidden]{
  display: none !important;
}

/* Карточки товаров без product-card — резерв для старых вставок */
.product.card:not(.product-card) .card-body{
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.95rem 1rem 1rem;
}
.product.card:not(.product-card) .card-body > h3{
  margin-bottom: 0 !important;
}
.product.card:not(.product-card) .card-body > .d-flex{
  margin-top: auto;
}
.product.card:not(.product-card) .product-price-cell{
  line-height: 1.1;
  white-space: nowrap;
}
.product.card:not(.product-card) .card-body .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.product.card:not(.product-card) .card-body .btn.btn-primary{
  box-shadow: 0 10px 24px rgba(var(--btn-focus-rgb), 0.18);
}
.product.card:not(.product-card) .card-body .btn.btn-light{
  background: rgba(255,255,255,.92);
}
.product.card:not(.product-card) .card-body .d-flex.gap-2{
  gap: 0.5rem !important;
}
.florista-btn-cart-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.florista-btn-cart-icon svg{
  display: block;
  flex-shrink: 0;
}
.product-card .florista-btn-cart__label{
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.florista-min-order-toast{
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 1080;
  max-width: min(92vw, 28rem);
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  background: rgba(18, 19, 26, 0.94);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.35;
  box-shadow: 0 16px 40px rgba(18, 19, 26, 0.24);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
}
.florista-min-order-toast.is-visible{
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Добавление в корзину: анимация и подтверждение */
.florista-cart-fly{
  position: fixed;
  z-index: 1095;
  pointer-events: none;
  width: 3.5rem;
  height: 3.5rem;
}
.florista-cart-fly__thumb{
  width: 100%;
  height: 100%;
  border-radius: .85rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .95);
  box-shadow:
    0 10px 28px rgba(18, 19, 26, .18),
    0 0 0 1px rgba(var(--btn-focus-rgb), .18);
  background: #fff;
}
.florista-cart-fly__thumb img,
.florista-cart-fly__thumb .product-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}
.florista-cart-added-toast{
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 1085;
  display: flex;
  align-items: center;
  gap: .65rem;
  max-width: min(92vw, 30rem);
  padding: .7rem 1rem;
  border-radius: .95rem;
  background: rgba(255, 255, 255, .98);
  color: rgba(18, 19, 26, .92);
  font-size: .875rem;
  line-height: 1.35;
  border: 1px solid rgba(var(--btn-focus-rgb), .22);
  box-shadow:
    0 16px 40px rgba(18, 19, 26, .14),
    0 0 0 1px rgba(255, 255, 255, .8) inset;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
  opacity: 0;
  pointer-events: none;
}
.florista-cart-added-toast.is-visible{
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.florista-cart-added-toast__ico{
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 6px 16px rgba(var(--btn-focus-rgb), .28);
}
.florista-cart-added-toast__more{
  color: rgba(18, 19, 26, .62);
}
#floristaCartBtn.is-cart-pulse{
  background: rgba(var(--btn-focus-rgb), .12) !important;
}
#floristaCartBtn.is-cart-pulse .florista-cart-ico{
  animation: florista-cart-pulse .58s cubic-bezier(.22, 1, .36, 1);
}
.florista-cart-badge.is-cart-badge-pop{
  animation: florista-cart-badge-pop .58s cubic-bezier(.22, 1, .36, 1);
}
[data-florista-add].is-cart-add-success,
#productCartBtn.is-cart-add-success{
  box-shadow: 0 0 0 3px rgba(var(--btn-focus-rgb), .32) !important;
}
@keyframes florista-cart-pulse{
  0%, 100%{ transform: scale(1); }
  40%{ transform: scale(1.2); }
}
@keyframes florista-cart-badge-pop{
  0%, 100%{ transform: translate(-50%, -50%) scale(1); }
  45%{ transform: translate(-50%, -50%) scale(1.38); }
}
@media (prefers-reduced-motion: reduce){
  .florista-cart-fly,
  #floristaCartBtn.is-cart-pulse .florista-cart-ico,
  .florista-cart-badge.is-cart-badge-pop{
    animation: none !important;
  }
}
.btn-primary.is-min-order-blocked,
.btn-primary.is-min-order-blocked:disabled,
.btn-primary.is-min-order-blocked[disabled],
a.btn-primary.is-min-order-blocked[aria-disabled="true"] {
  --bs-btn-bg: rgba(var(--btn-focus-rgb), 0.4);
  --bs-btn-border-color: rgba(var(--btn-focus-rgb), 0.32);
  --bs-btn-disabled-bg: rgba(var(--btn-focus-rgb), 0.4);
  --bs-btn-disabled-border-color: rgba(var(--btn-focus-rgb), 0.32);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-opacity: 1;
  background: rgba(var(--btn-focus-rgb), 0.4) !important;
  border-color: rgba(var(--btn-focus-rgb), 0.32) !important;
  color: rgba(255, 255, 255, 0.98) !important;
  opacity: 1 !important;
  cursor: not-allowed;
  box-shadow: none !important;
  filter: none;
  pointer-events: auto;
}
.product-card .btn-primary.is-min-order-blocked,
.product-card .btn-primary.is-min-order-blocked:disabled {
  box-shadow: none !important;
}
.product-qty-input{
  width: 5rem;
  text-align: center;
}

/* Главная: ссылки разделов справа (Каталог, «Все товары», «К категориям») */
.home-section-links{
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
  max-width: 100%;
}
.home-section-link{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 19, 26, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  box-shadow: 0 6px 16px rgba(18, 19, 26, 0.05);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}
.home-section-link:hover,
.home-section-link:focus-visible{
  transform: translateY(-1px);
  color: var(--primary);
  border-color: rgba(var(--btn-focus-rgb), 0.35);
  background: rgba(var(--btn-focus-rgb), 0.06);
  box-shadow: 0 10px 24px rgba(var(--btn-focus-rgb), 0.12);
}
.home-section-link:focus-visible{
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring), 0 10px 24px rgba(var(--btn-focus-rgb), 0.12);
}
.home-section-link--more::after{
  content: "→";
  font-weight: 700;
  opacity: 0.72;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.home-section-link--more:hover::after,
.home-section-link--more:focus-visible::after{
  opacity: 1;
  transform: translateX(2px);
}

/* Главная: кнопка «Посмотреть ещё» (Новинки и Акции) */
.home-more-btn{
  min-height: 2.75rem;
  padding: 0.6rem 1.25rem !important;
  border-radius: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 22px rgba(18, 19, 26, .06);
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    border-color .15s ease,
    background .15s ease,
    color .15s ease;
}
.home-more-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(var(--btn-focus-rgb), .35) !important;
  background: rgba(var(--btn-focus-rgb), .06);
  box-shadow: 0 12px 28px rgba(var(--btn-focus-rgb), .12);
  color: var(--primary);
}
.home-more-btn:focus-visible{
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring), 0 12px 28px rgba(var(--btn-focus-rgb), .12);
}
.home-more-btn:disabled,
.home-more-btn.disabled{
  transform: none;
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
  background: rgba(18, 19, 26, .04);
  border-color: rgba(18, 19, 26, .10) !important;
  color: rgba(18, 19, 26, .55) !important;
}
.product:hover .product-img{
  transform: scale(1.05);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product .product-img{
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (prefers-reduced-motion: reduce) {
  .product:hover .product-img,
  .product .product-img {
    transform: none;
    transition: none;
  }
}
.product-badge{
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: .4rem .6rem;
}
.product-img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(900px 420px at 30% 10%, rgba(var(--btn-focus-rgb), .22), transparent 60%),
    radial-gradient(700px 360px at 90% 40%, rgba(124, 58, 237, .20), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0));
}
img.product-img,
.product-img--photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.product picture:has(> .product-img),
.section-product-card__img-wrap picture:has(> .product-img){
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: inherit;
}
.product picture:has(> .product-img) > img.product-img,
.section-product-card__img-wrap picture:has(> .product-img) > img.product-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-img--1{
  background:
    radial-gradient(900px 420px at 30% 10%, rgba(var(--btn-focus-rgb), .22), transparent 60%),
    radial-gradient(700px 360px at 90% 40%, rgba(124, 58, 237, .20), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0));
}

.product-page-card{
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: var(--shadow);
}
.product-page-img{
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(900px 420px at 30% 10%, rgba(var(--btn-focus-rgb), .22), transparent 60%),
    radial-gradient(700px 360px at 90% 40%, rgba(124, 58, 237, .20), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0));
}
.bg-white-80{
  background: rgba(255,255,255,.82);
}
.product-hero--1{
  background:
    radial-gradient(900px 420px at 30% 10%, rgba(var(--btn-focus-rgb), .22), transparent 60%),
    radial-gradient(700px 360px at 90% 40%, rgba(124, 58, 237, .20), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0));
}
.product-hero--2{ background-image:
  radial-gradient(700px 360px at 25% 20%, rgba(124, 58, 237, .22), transparent 60%),
  radial-gradient(700px 380px at 90% 60%, rgba(var(--btn-focus-rgb), .20), transparent 55%),
  linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0)); }
.product-hero--3{ background-image:
  radial-gradient(720px 360px at 25% 30%, var(--brand-glow-1, rgba(var(--btn-focus-rgb), .18)), transparent 60%),
  radial-gradient(820px 400px at 80% 40%, var(--brand-glow-2, color-mix(in srgb, var(--primary-2) 20%, transparent)), transparent 55%),
  linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0)); }
.product-hero--4{ background-image:
  radial-gradient(740px 380px at 20% 30%, rgba(255,255,255,.95), rgba(255,255,255,.18)),
  radial-gradient(820px 400px at 90% 40%, rgba(18,19,26,.10), transparent 55%),
  linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0)); }
.product-hero--5{ background-image:
  radial-gradient(800px 420px at 25% 20%, rgba(var(--btn-focus-rgb), .18), transparent 60%),
  radial-gradient(820px 420px at 80% 60%, var(--brand-glow-2, color-mix(in srgb, var(--primary-2) 16%, transparent)), transparent 55%),
  linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0)); }
.product-hero--6{ background-image:
  radial-gradient(820px 420px at 25% 20%, rgba(18, 19, 26, .22), transparent 60%),
  radial-gradient(720px 380px at 80% 60%, rgba(124, 58, 237, .18), transparent 55%),
  linear-gradient(135deg, rgba(18, 19, 26, .16), rgba(18, 19, 26, 0)); }
.product-img--2{
  background:
    radial-gradient(700px 360px at 25% 20%, rgba(124, 58, 237, .22), transparent 60%),
    radial-gradient(700px 380px at 90% 60%, rgba(var(--btn-focus-rgb), .20), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0));
}
.product-img--3{
  background:
    radial-gradient(720px 360px at 25% 30%, var(--brand-glow-1, rgba(var(--btn-focus-rgb), .18)), transparent 60%),
    radial-gradient(820px 400px at 80% 40%, var(--brand-glow-2, color-mix(in srgb, var(--primary-2) 20%, transparent)), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0));
}
.product-img--4{
  background:
    radial-gradient(740px 380px at 20% 30%, rgba(255,255,255,.95), rgba(255,255,255,.18)),
    radial-gradient(820px 400px at 90% 40%, rgba(18,19,26,.10), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0));
}
.product-img--5{
  background:
    radial-gradient(800px 420px at 25% 20%, rgba(var(--btn-focus-rgb), .18), transparent 60%),
    radial-gradient(820px 420px at 80% 60%, var(--brand-glow-2, color-mix(in srgb, var(--primary-2) 16%, transparent)), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .12), rgba(18, 19, 26, 0));
}
.product-img--6{
  background:
    radial-gradient(820px 420px at 25% 20%, rgba(18, 19, 26, .22), transparent 60%),
    radial-gradient(720px 380px at 80% 60%, rgba(124, 58, 237, .18), transparent 55%),
    linear-gradient(135deg, rgba(18, 19, 26, .16), rgba(18, 19, 26, 0));
}

.glass{
  border-radius: 1.25rem;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 14px 40px rgba(18, 19, 26, .08);
}

/* Карточка товара: дополнения в блоке покупки */
.product-glass-addons{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 19, 26, .08);
}

/* Панель покупки на странице товара */
.product-buy-sheet{
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.product-buy-sheet__top,
.product-buy-sheet__actions{
  display: grid;
  gap: .65rem;
  align-items: stretch;
}
.product-buy-sheet__top{
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: .85rem;
  padding: 1.05rem 1.2rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, .72);
  border: 0;
  box-shadow: 0 14px 40px rgba(18, 19, 26, .08);
}
.product-buy-sheet__top .product-buy-sheet__cell{
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.product-buy-sheet__top .product-buy-sheet__cell--meta{
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.product-buy-sheet__top .product-buy-sheet__cell--price{
  padding: 0;
}
.product-buy-sheet__actions{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: .65rem;
  row-gap: .22rem;
  align-items: stretch;
  --buy-action-h: 2.35rem;
}
.product-buy-sheet__qty-wrap{
  display: contents;
}
.product-buy-sheet__qty-label{
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: .62rem;
  text-align: left;
  line-height: 1;
}
.product-buy-sheet__cell{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 5.35rem;
  padding: .85rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(18, 19, 26, .08);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 24px rgba(18, 19, 26, .05);
}
.product-buy-sheet__label{
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(18, 19, 26, .45);
  margin-bottom: .35rem;
}
.product-buy-sheet__cell--price{
  min-height: 0;
  padding: .85rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.product-buy-sheet__price{
  padding-left: 0;
}
.product-buy-sheet__price .product-price-wrap{
  line-height: 1.05;
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s ease;
}
.product-buy-sheet__price .product-price-wrap.is-price-animating{
  transform: scale(1.04);
}
.product-buy-sheet__price .product-price-wrap.is-price-animating .product-price-current--lg{
  color: var(--brand, #ff3d8d);
}
@media (prefers-reduced-motion: reduce) {
  .product-buy-sheet__price .product-price-wrap,
  .product-buy-sheet__price .product-price-wrap.is-price-animating{
    transform: none;
    transition: none;
  }
}
.product-buy-sheet__price .product-price-current--lg{
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.product-buy-sheet__price .product-price-old{
  font-size: .88rem;
}
.product-buy-sheet__price .product-price-bundle-note{
  display: block;
  margin-top: .35rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(18, 19, 26, .52);
  line-height: 1.3;
}
.product-buy-sheet__cell--meta{
  background: rgba(255, 255, 255, .62);
  padding: .75rem .9rem;
}
.product-buy-sheet__meta-list{
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
  justify-content: center;
}
.product-buy-sheet__meta-item{
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}
.product-buy-sheet__meta-item + .product-buy-sheet__meta-item{
  padding-top: .65rem;
  border-top: 1px solid rgba(18, 19, 26, .06);
}
.product-buy-sheet__meta-icon{
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: .7rem;
}
.product-buy-sheet__meta-icon svg{
  width: 1.2rem;
  height: 1.2rem;
}
.product-buy-sheet__meta-icon--assembly{
  color: var(--primary);
  background: rgba(var(--btn-focus-rgb), .10);
  border: 1px solid rgba(var(--btn-focus-rgb), .16);
}
.product-buy-sheet__meta-icon--delivery{
  color: var(--primary-2);
  background: rgba(124, 58, 237, .10);
  border: 1px solid rgba(124, 58, 237, .16);
}
.product-buy-sheet__meta-copy{
  min-width: 0;
  flex: 1;
}
.product-buy-sheet__meta-item .product-buy-sheet__label{
  margin-bottom: .12rem;
}
.product-buy-sheet__meta-value{
  display: block;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.25;
  color: #12131a;
  letter-spacing: -.01em;
}
.product-buy-sheet__cell--qty{
  grid-column: 1;
  justify-content: center;
  width: fit-content;
  min-width: 0;
  min-height: var(--buy-action-h);
  height: var(--buy-action-h);
  padding: 0 .4rem;
  border-radius: .7rem;
  background:
    linear-gradient(160deg, rgba(124, 58, 237, .07) 0%, rgba(255, 255, 255, .92) 100%);
  border-color: rgba(124, 58, 237, .12);
  box-shadow: 0 3px 10px rgba(18, 19, 26, .04);
}
.product-buy-sheet__stepper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  height: 100%;
}
.product-buy-sheet__qty{
  flex: 0 0 auto;
  width: 1.75rem;
  min-width: 1.75rem;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  color: #12131a;
  -moz-appearance: textfield;
}
.product-buy-sheet__cell--qty .product-qty-input{
  width: 1.75rem;
}
.product-buy-sheet__qty:focus{
  outline: none;
}
.product-buy-sheet__qty::-webkit-outer-spin-button,
.product-buy-sheet__qty::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.product-buy-sheet__step{
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 1px solid rgba(18, 19, 26, .1);
  border-radius: .45rem;
  background: rgba(255, 255, 255, .92);
  color: rgba(18, 19, 26, .7);
  font-size: .8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background .15s ease,
    color .15s ease,
    border-color .15s ease;
}
.product-buy-sheet__step:hover,
.product-buy-sheet__step:focus-visible{
  border-color: rgba(124, 58, 237, .35);
  color: var(--primary-2);
  outline: none;
}
.product-buy-sheet__cart{
  grid-column: 2;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--buy-action-h);
  height: var(--buy-action-h);
  border-radius: .7rem;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: -.01em;
  padding: 0 .95rem;
  box-shadow: 0 6px 18px rgba(var(--btn-focus-rgb), .18);
  transition:
    transform .15s ease,
    box-shadow .15s ease;
}
.product-buy-sheet__cart:hover,
.product-buy-sheet__cart:focus-visible{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(var(--btn-focus-rgb), .24);
}
.product-buy-sheet__cart:active{
  transform: translateY(0);
}
.product-buy-sheet__notice{
  margin-top: .85rem;
  line-height: 1.45;
}
.product-buy-sheet__notice:empty{
  display: none;
  padding: 0;
  margin: 0;
  border: 0;
}
@media (max-width: 575.98px){
  .product-buy-sheet__top{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: .65rem;
    padding: 1rem 1.05rem;
  }
  .product-buy-sheet__actions{
    column-gap: .5rem;
    row-gap: .2rem;
    --buy-action-h: 2.75rem;
  }
  .product-buy-sheet__cell:not(.product-buy-sheet__cell--qty){
    min-height: 4.85rem;
    padding: .75rem .85rem;
    border-radius: 1rem;
  }
  .product-buy-sheet__top .product-buy-sheet__cell{
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }
  .product-buy-sheet__top .product-buy-sheet__cell--meta{
    padding: 0;
  }
  .product-buy-sheet__cell--qty{
    height: var(--buy-action-h);
    min-height: var(--buy-action-h);
    padding: 0 .35rem;
  }
  .product-buy-sheet__step{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .55rem;
  }
  .product-buy-sheet__qty,
  .product-buy-sheet__cell--qty .product-qty-input{
    width: 2rem;
    min-width: 2rem;
    font-size: .95rem;
  }
  .product-buy-sheet__price .product-price-current--lg{
    font-size: 1.5rem;
  }
  .product-buy-sheet__meta-value{
    font-size: .85rem;
  }
  .product-buy-sheet__meta-list{
    gap: .55rem;
  }
  .product-buy-sheet__meta-item + .product-buy-sheet__meta-item{
    padding-top: .55rem;
  }
  .product-buy-sheet__cart{
    font-size: .82rem;
    height: var(--buy-action-h);
    min-height: var(--buy-action-h);
    padding: 0 .8rem;
    border-radius: .7rem;
  }
}
@media (max-width: 399.98px){
  .product-buy-sheet__top{
    grid-template-columns: 1fr;
  }
  .product-buy-sheet__top .product-buy-sheet__cell--meta{
    padding: 0;
    margin-top: 0;
    border: 0;
  }
  .product-buy-sheet__cell--price{
    min-height: 0;
  }
}

.product-glass-addons__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .75rem;
}
.product-glass-addons__title{
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
}
.product-glass-addons__hint{
  font-size: .8rem;
}
.product-glass-addons__list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: .5rem;
  align-items: stretch;
}
.product-glass-addon-item{
  position: relative;
  min-width: 0;
  height: 100%;
}
.product-glass-addon-item.is-active .product-glass-addon__box{
  border-color: rgba(var(--btn-focus-rgb), .45);
  background: rgba(var(--btn-focus-rgb), .08);
  box-shadow: 0 8px 20px rgba(var(--btn-focus-rgb), .12);
}
.product-glass-addon__remove{
  position: absolute;
  top: -.3rem;
  right: -.3rem;
  z-index: 2;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 1px solid rgba(18, 19, 26, .12);
  border-radius: 999px;
  background: #fff;
  color: rgba(18, 19, 26, .62);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(18, 19, 26, .12);
  transition:
    color .15s ease,
    border-color .15s ease,
    background .15s ease,
    transform .15s ease;
}
.product-glass-addon__remove span{
  margin-top: -.05rem;
}
.product-glass-addon__remove:hover,
.product-glass-addon__remove:focus-visible{
  color: var(--primary);
  border-color: rgba(var(--btn-focus-rgb), .4);
  background: rgba(var(--btn-focus-rgb), .06);
  outline: none;
  transform: scale(1.05);
}
.product-glass-addon{
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.product-glass-addon__box{
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  height: 100%;
  min-height: 5rem;
  padding: .55rem .6rem;
  border-radius: .9rem;
  border: 1px solid rgba(18, 19, 26, .10);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 4px 14px rgba(18, 19, 26, .04);
  transition:
    border-color .15s ease,
    background .15s ease,
    box-shadow .15s ease;
}
.product-glass-addon:hover .product-glass-addon__box,
.product-glass-addon:focus-visible .product-glass-addon__box{
  border-color: rgba(var(--btn-focus-rgb), .28);
  background: rgba(var(--btn-focus-rgb), .04);
}
.product-glass-addon:focus-visible{
  outline: 0;
}
.product-glass-addon:focus-visible .product-glass-addon__box{
  box-shadow: 0 0 0 3px var(--ring), 0 6px 18px rgba(var(--btn-focus-rgb), .10);
}
.product-glass-addon__qty-badge{
  flex-shrink: 0;
  align-self: center;
  margin-left: auto;
  min-width: 1.75rem;
  min-height: 1.75rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-glass-addon__qty-badge.is-empty{
  visibility: hidden;
}
.product-addon-qty-modal{
  border-radius: 1.1rem;
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 24px 60px rgba(18, 19, 26, .16);
}
.product-addon-qty-modal__thumb{
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid rgba(18, 19, 26, .08);
  background: rgba(18, 19, 26, .04);
}
.product-addon-qty-modal__thumb img,
.product-addon-qty-modal__thumb .product-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-addon-qty-modal__step{
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: .7rem;
  font-size: 1.1rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.product-addon-qty-modal__input{
  width: 4.5rem;
  max-width: 100%;
  font-weight: 700;
  font-size: 1.05rem;
  -moz-appearance: textfield;
}
.product-addon-qty-modal__input::-webkit-outer-spin-button,
.product-addon-qty-modal__input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.product-glass-addon__thumb{
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .65rem;
  overflow: hidden;
  border: 1px solid rgba(18, 19, 26, .08);
  background: rgba(18, 19, 26, .04);
}
.product-glass-addon__thumb .product-img{
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.product-glass-addon__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-glass-addon__info{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .15rem;
  min-height: 2.85rem;
}
.product-glass-addon__name{
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.05em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-glass-addon__price{
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  line-height: 1.2;
  min-height: 1.2em;
}
.product-price-bundle-note{
  font-size: .8rem;
  margin-top: .35rem;
  color: rgba(18, 19, 26, .62);
}
@media (min-width: 992px){
  .product-glass-addons__list{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 420px){
  .product-glass-addons__list{
    grid-template-columns: 1fr;
  }
}

.feature{
  border-radius: 1.25rem;
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 16px 40px rgba(18, 19, 26, .06);
}
.feature-icon{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(var(--btn-focus-rgb), .10);
  border: 1px solid rgba(var(--btn-focus-rgb), .18);
  margin-bottom: .75rem;
}

.timeline{
  display: grid;
  gap: .9rem;
}
.timeline-item{
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: .9rem;
  align-items: start;
}
.timeline-dot{
  width: 14px;
  height: 14px;
  margin-top: .35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px rgba(var(--btn-focus-rgb), .12);
}

.delivery-card{
  border-radius: 1.5rem;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(var(--btn-focus-rgb), .14), transparent 55%),
    radial-gradient(820px 520px at 100% 20%, rgba(124, 58, 237, .14), transparent 55%),
    rgba(255,255,255,.80);
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: var(--shadow);
}

.rating-pill{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18, 19, 26, .10);
  border-radius: 999px;
  padding: .55rem .85rem;
}

.product-rating-reviews-link{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 19, 26, 0.2);
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.product-rating-reviews-link:hover,
.product-rating-reviews-link:focus-visible{
  color: var(--primary, #ff3d8d);
  border-bottom-color: rgba(var(--btn-focus-rgb), 0.45);
  outline: none;
}
.stars{
  font-size: 1rem;
  letter-spacing: .08em;
  color: #f59e0b;
}

.review{
  border-radius: 1.25rem;
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 16px 40px rgba(18, 19, 26, .06);
}

.store-review-card__content{
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.store-review-card__copy{
  flex: 1 1 0;
  min-width: 0;
}

.store-review-card__media{
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  max-width: min(7.5rem, 38%);
  margin-top: 0;
  padding: 0.35rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: rgba(18, 19, 26, 0.04);
}

.store-review-card__img{
  display: block;
  width: auto;
  max-width: min(7.5rem, 100%);
  max-height: 6.5rem;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0.5rem;
}

.store-reviews-page .product-reviews-panel {
  margin-bottom: 0;
}


.product-reviews-panel{
  border-radius: 1.25rem;
}

.product-reviews-panel__head .btn{
  border-radius: 999px;
  font-weight: 600;
}

@media (min-width: 992px){
  .product-reviews-panel__layout > [class*="col"]{
    display: flex;
    flex-direction: column;
  }

  .product-reviews-sidebar__inner,
  .product-reviews-cards-col__inner{
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100%;
  }

  .product-reviews-cards-col__inner{
    min-height: 0;
  }

  .product-reviews-recent{
    flex: 1;
    min-height: 100%;
    align-items: stretch;
    grid-auto-rows: 1fr;
  }

  .product-review-card{
    min-height: 100%;
  }

  .product-review-card__thumb{
    flex: 0 0 auto;
    width: auto;
    min-height: unset;
    height: auto;
  }

  .product-review-card__thumb--photo{
    flex: 0 0 auto;
  }
}

.product-reviews-summary__score{
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.product-reviews-summary__stars{
  font-size: 1.1rem;
  margin-top: 0.35rem;
}

.product-reviews-summary__count{
  font-size: 0.925rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.product-reviews-summary__badge{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0.85rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.product-reviews-summary__badge-value{
  font-weight: 800;
  font-size: 1rem;
  color: #15803d;
  line-height: 1.1;
}

.product-reviews-summary__badge-label{
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(18, 19, 26, 0.55);
}

.product-reviews-bar{
  display: grid;
  grid-template-columns: 1.1rem 1rem 1fr 1.5rem;
  align-items: center;
  gap: 0.35rem 0.45rem;
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.product-reviews-bar__label{
  font-weight: 700;
  text-align: right;
}

.product-reviews-bar__stars{
  font-size: 0.65rem;
  color: #f59e0b;
}

.product-reviews-bar__track{
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(18, 19, 26, 0.08);
  overflow: hidden;
}

.product-reviews-bar__fill{
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f59e0b, #ff3d8d);
}

.product-reviews-bar__count{
  font-weight: 600;
  color: rgba(18, 19, 26, 0.45);
  text-align: right;
}

.product-reviews-recent{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px){
  .product-reviews-recent{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px){
  .product-reviews-recent{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-reviews-recent.is-count-1{
    grid-template-columns: minmax(0, 1fr);
    max-width: 22rem;
  }

  .product-reviews-recent.is-count-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-reviews-empty,
.product-reviews-more{
  grid-column: 1 / -1;
}

/* Единый FAQ: одна glass-оболочка, шапка + плотная сетка вопросов */
.product-faq-section{
  scroll-margin-top: .75rem;
}
.storefront-faq{
  position: relative;
}
.storefront-faq__shell{
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.1rem 1rem;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(var(--btn-focus-rgb), .07), transparent 55%),
    radial-gradient(90% 70% at 100% 0%, rgba(124, 58, 237, .06), transparent 50%),
    rgba(255, 255, 255, .78);
}
@media (min-width: 768px){
  .storefront-faq__shell{
    padding: 1.35rem 1.4rem 1.15rem;
  }
}
.storefront-faq__head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: .85rem 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid rgba(18, 19, 26, .08);
}
.storefront-faq__head-main{
  flex: 1 1 16rem;
  min-width: 0;
  max-width: 42rem;
}
.storefront-faq__eyebrow{
  display: inline-flex;
  align-items: center;
  margin: 0 0 .4rem;
  padding: .22rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--btn-focus-rgb), .2);
  background: rgba(var(--btn-focus-rgb), .08);
  color: var(--primary);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.storefront-faq__title{
  margin: 0;
  font-size: clamp(1.45rem, 1.5vw + 1rem, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.storefront-faq__lead{
  margin: .45rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.storefront-faq__actions{
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  flex: 0 0 auto;
}
.storefront-faq__actions .btn{
  white-space: nowrap;
}
.storefront-faq__panel-title{
  margin: 0 0 .65rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.storefront-faq__list{
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}
@media (min-width: 768px){
  .storefront-faq__list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }
}
.storefront-faq__item{
  margin: 0;
  border-radius: .9rem;
  border: 1px solid rgba(18, 19, 26, .08);
  background: rgba(255, 255, 255, .72);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.storefront-faq__item[open]{
  border-color: rgba(var(--btn-focus-rgb), .22);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 28px rgba(18, 19, 26, .05);
}
.storefront-faq__summary{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .65rem;
  padding: .8rem .9rem;
  list-style: none;
  cursor: pointer;
}
.storefront-faq__summary::-webkit-details-marker{
  display: none;
}
.storefront-faq__summary::marker{
  content: "";
}
.storefront-faq__q{
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
}
.storefront-faq__chevron{
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 19, 26, .1);
  background: rgba(var(--btn-focus-rgb), .06);
  position: relative;
  flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease, transform .18s ease;
}
.storefront-faq__chevron::before,
.storefront-faq__chevron::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: .5rem;
  height: 1.5px;
  background: rgba(18, 19, 26, .5);
  border-radius: 1px;
  transition: transform .18s ease, opacity .18s ease;
}
.storefront-faq__chevron::before{
  transform: translate(-50%, -50%);
}
.storefront-faq__chevron::after{
  transform: translate(-50%, -50%) rotate(90deg);
}
.storefront-faq__item[open] > .storefront-faq__summary .storefront-faq__chevron{
  border-color: rgba(var(--btn-focus-rgb), .3);
  background: rgba(var(--btn-focus-rgb), .12);
  transform: rotate(45deg);
}
.storefront-faq__item[open] > .storefront-faq__summary .storefront-faq__chevron::after{
  opacity: 0;
}
.storefront-faq__summary:focus-visible{
  outline: none;
}
.storefront-faq__summary:focus-visible .storefront-faq__q{
  box-shadow: 0 0 0 3px var(--ring);
  border-radius: .35rem;
}
.storefront-faq__a{
  padding: 0 .9rem .85rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}
.storefront-faq--product .storefront-faq__shell{
  padding: .85rem .9rem .75rem;
}
.storefront-faq--product .storefront-faq__panel-title{
  margin-bottom: .55rem;
  font-size: .95rem;
}
.storefront-faq--product .storefront-faq__list{
  gap: .45rem;
}
.storefront-faq--product .storefront-faq__summary{
  padding: .65rem .75rem;
}
.storefront-faq--product .storefront-faq__q{
  font-size: .86rem;
}
.storefront-faq--product .storefront-faq__a{
  padding: 0 .75rem .7rem;
  font-size: .8rem;
}
@media (max-width: 575.98px){
  .storefront-faq__shell{
    padding: 1rem .9rem .85rem;
  }
  .storefront-faq__head{
    margin-bottom: .85rem;
    padding-bottom: .8rem;
  }
  .storefront-faq__summary{
    padding: .7rem .75rem;
  }
  .storefront-faq__q{
    font-size: .88rem;
  }
}

.product-review-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(18, 19, 26, 0.04);
}

.product-review-card__content{
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-height: 0;
}

.product-review-card__meta{
  flex-wrap: wrap;
}

.product-review-card__thumb{
  align-self: flex-start;
  flex: 0 0 auto;
  width: auto;
  max-width: min(9rem, 38%);
  border-radius: 0.75rem;
}

.product-review-card__thumb--photo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: rgba(18, 19, 26, 0.04);
}

.product-review-card__thumb--photo img{
  display: block;
  width: auto;
  max-width: min(9rem, 100%);
  max-height: 7rem;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0.5rem;
}


.product-review-card__body{
  min-width: 0;
  flex: 1 1 0;
}

.product-review-card__meta{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem 1rem;
  margin-bottom: 0.35rem;
}

.product-review-card__who{
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.product-review-card__text{
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-review-modal .modal-content{
  border-radius: 1.25rem;
  border: 1px solid rgba(18, 19, 26, 0.1);
  box-shadow: var(--shadow);
}

.product-review-modal .form-control,
.product-review-modal .form-select{
  border-radius: 0.75rem;
}

.product-review-fields-row__label{
  display: block;
  margin-bottom: 0.5rem;
}

.product-review-control{
  display: flex;
  align-items: stretch;
  min-height: 2.875rem;
}

.product-review-modal .product-review-control .form-control{
  flex: 1;
  min-height: 2.875rem;
  height: 2.875rem;
}

.product-star-rating-wrap{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  width: 100%;
  min-height: 2.875rem;
  height: 2.875rem;
  padding: 0 0.65rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.65), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(245, 158, 11, 0.18);
}

@media (min-width: 576px){
  .product-review-fields-row{
    align-items: stretch;
  }

  .product-review-fields-row > [class*="col"]{
    display: flex;
    flex-direction: column;
  }

  .product-review-fields-row .product-review-control{
    flex: 1;
  }
}

.product-star-rating{
  display: inline-flex;
  align-items: center;
  gap: 0.05rem;
  max-width: 100%;
}

.product-star-rating__star{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 0.65rem;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    filter 0.15s ease;
}

.product-star-rating__star svg{
  width: 1.45rem;
  height: 1.45rem;
  fill: rgba(18, 19, 26, 0.12);
  transition:
    fill 0.15s ease,
    transform 0.15s ease,
    filter 0.15s ease;
}

.product-star-rating__star:hover,
.product-star-rating__star:focus-visible{
  outline: none;
  background: rgba(245, 158, 11, 0.1);
  transform: scale(1.06);
}

.product-star-rating__star.is-on svg{
  fill: #f59e0b;
  filter: drop-shadow(0 3px 8px rgba(245, 158, 11, 0.35));
}

.product-star-rating__star.is-on:hover svg,
.product-star-rating__star.is-on:focus-visible svg{
  fill: #fbbf24;
}

.product-review-photo-upload{
  position: relative;
  border: 2px dashed rgba(124, 58, 237, 0.28);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(246, 243, 255, 0.55), rgba(255, 255, 255, 0.98));
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.product-review-photo-upload:hover,
.product-review-photo-upload.is-dragover{
  border-color: rgba(var(--btn-focus-rgb), 0.45);
  background: linear-gradient(145deg, rgba(var(--btn-focus-rgb), 0.06), rgba(255, 255, 255, 0.98));
  box-shadow: 0 0 0 4px rgba(var(--btn-focus-rgb), 0.08);
}

.product-review-photo-upload__empty{
  padding: 1.25rem 1rem;
  text-align: center;
}

.product-review-photo-upload__icon{
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--btn-focus-rgb), 0.12), rgba(124, 58, 237, 0.14));
  color: rgba(124, 58, 237, 0.75);
}

.product-review-photo-upload__title{
  font-weight: 700;
  font-size: 0.9375rem;
}

.product-review-photo-upload__formats{
  margin-top: 0.35rem;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.product-review-photo-upload__preview{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.5rem;
  padding: 0.75rem;
  background: rgba(18, 19, 26, 0.03);
}

.product-review-photo-upload__preview img{
  max-width: 100%;
  max-height: 10rem;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px rgba(18, 19, 26, 0.12);
}

.product-review-photo-upload__remove{
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: rgba(18, 19, 26, 0.65);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(18, 19, 26, 0.15);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}

.product-review-photo-upload__remove:hover{
  background: #fff;
  color: #e11d48;
  transform: scale(1.05);
}

.product-review-photo-upload.has-file{
  border-style: solid;
  border-color: rgba(18, 19, 26, 0.1);
  cursor: default;
}

.product-review-photo-upload.has-file:hover{
  box-shadow: none;
}

@media (max-width: 575.98px){
  .product-review-card__meta{
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 768px){
  .contact-grid{
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.contact-item{
  border-radius: 1.25rem;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(18, 19, 26, .10);
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(18, 19, 26, .06);
}
.contact-social-links{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .15rem;
}
.contact-social-link{
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: .85rem;
  border: 1px solid rgba(18, 19, 26, .10);
  background: rgba(255, 255, 255, .92);
  color: rgba(18, 19, 26, .78);
  box-shadow: 0 6px 18px rgba(18, 19, 26, .06);
  transition:
    transform .15s ease,
    border-color .15s ease,
    background .15s ease,
    color .15s ease,
    box-shadow .15s ease;
}
.contact-social-link svg{
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.contact-social-link:hover,
.contact-social-link:focus-visible{
  transform: translateY(-1px);
  text-decoration: none;
  outline: 0;
}
.contact-social-link:focus-visible{
  box-shadow: 0 0 0 3px var(--ring), 0 8px 22px rgba(18, 19, 26, .08);
}
.contact-social-link--telegram:hover,
.contact-social-link--telegram:focus-visible{
  color: #229ed9;
  border-color: rgba(34, 158, 217, .35);
  background: rgba(34, 158, 217, .08);
}
.contact-social-link--vk:hover,
.contact-social-link--vk:focus-visible{
  color: #0077ff;
  border-color: rgba(0, 119, 255, .35);
  background: rgba(0, 119, 255, .08);
}
.contact-social-link--instagram:hover,
.contact-social-link--instagram:focus-visible{
  color: #e1306c;
  border-color: rgba(225, 48, 108, .35);
  background: rgba(225, 48, 108, .08);
}

.map-mock{
  border-radius: 1.5rem;
  border: 1px solid rgba(18, 19, 26, .10);
  background:
    radial-gradient(900px 500px at 20% 10%, var(--brand-glow-1, rgba(var(--btn-focus-rgb), .12)), transparent 55%),
    radial-gradient(820px 520px at 90% 20%, var(--brand-glow-2, color-mix(in srgb, var(--primary-2) 12%, transparent)), transparent 55%),
    rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.map-mock-inner{
  position: absolute;
  inset: 18px;
  border-radius: 1.25rem;
  border: 1px dashed rgba(18, 19, 26, .20);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,.55);
}

.map-embed{
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(18, 19, 26, .10);
  background: rgba(255,255,255,.70);
}
.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

.card, .modal-content{
  border-radius: 1.25rem;
}

.form-control:focus, .form-select:focus{
  border-color: rgba(var(--btn-focus-rgb), .45);
  box-shadow: 0 0 0 .25rem rgba(var(--btn-focus-rgb), .18);
}

/* Текст и каретка в полях — тёмные на светлом фоне (не сливаются при hover/focus) */
.form-control,
.form-select,
.checkout-input,
input.form-control,
textarea.form-control {
  color: var(--text);
  caret-color: #12131a;
  color-scheme: light;
}

.form-control:hover,
.form-control:focus,
.form-select:hover,
.form-select:focus,
.checkout-input:hover,
.checkout-input:focus {
  color: var(--text);
  caret-color: #12131a;
}

.form-control::selection,
.form-select::selection,
.checkout-input::selection,
textarea.form-control::selection {
  background: rgba(var(--btn-focus-rgb), 0.22);
  color: var(--text);
}

a{
  text-underline-offset: .18em;
}

/* Мини-корзина (header) */
#floristaNavCart .btn#floristaCartBtn{
  color: rgba(18, 19, 26, .88);
  min-width: 2.5rem;
  min-height: 2.5rem;
}
#floristaNavCart .btn#floristaCartBtn:hover,
#floristaNavCart .btn#floristaCartBtn:focus{
  color: var(--text);
  background: rgba(var(--btn-focus-rgb), .08) !important;
  outline: none;
}
#floristaNavCart .btn#floristaCartBtn:focus-visible{
  box-shadow: 0 0 0 3px var(--ring);
}
.florista-cart-ico{
  display: flex;
  line-height: 0;
}
.florista-account-ico{
  display: flex;
  line-height: 0;
}
.florista-cart-badge{
  font-size: 0.65rem;
  line-height: 1.1;
  padding: 0.2rem 0.45rem;
}
.mini-cart{
  border-radius: 1.25rem;
  border: 1px solid rgba(18, 19, 26, 0.1);
  box-shadow: 0 24px 60px rgba(18, 19, 26, 0.14);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}
.mini-cart__body{
  max-height: min(55vh, 300px);
  overflow-y: auto;
  min-height: 0;
  padding: 0.2rem 0.35rem 0.4rem;
}
.mini-cart__row + .mini-cart__row{
  border-top: 1px solid rgba(18, 19, 26, 0.07);
}
.mini-cart__empty[hidden]{
  display: none;
}
.mini-cart__thumb{
  width: 48px;
  height: 48px;
  border-radius: 0.7rem;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: #fff;
}
.mini-cart__thumb--img{
  padding: 0;
  display: block;
  background: #f3f0f7;
}
.mini-cart__thumb--img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.mini-cart__thumb .product-img{
  aspect-ratio: 1 / 1;
  min-height: 100%;
  transform: scale(1.08);
}

.product-img--roses-external{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f0f7;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-img--roses-external.product-img--photo{
  background-image: none;
}
.product:hover .product-img--roses-external {
  transform: scale(1.04);
}
.product-page-img--roses,
.product-page-img--photo{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f0f7;
}

/* Страница оформления: итог заказа слева от прокрутки на десктопе */
@media (min-width: 992px) {
  .checkout-summary {
    position: sticky;
    top: 1.25rem;
  }
}

/* ——— Checkout (оформление заказа) ——— */
.checkout-form-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-panel {
  padding: 1.25rem 1.25rem 1.35rem;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(var(--btn-focus-rgb), 0.06), transparent 55%),
    rgba(255, 255, 255, 0.92);
}

.checkout-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.checkout-promo-cta {
  margin: 0;
  text-align: center;
}

.checkout-promo-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--primary-2);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
  transition: color 0.15s ease;
}

.checkout-promo-cta__btn:hover {
  color: var(--primary);
}

.checkout-promo-cta__btn:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.45);
  outline-offset: 3px;
}

.checkout-bonus-offer {
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(var(--btn-focus-rgb), 0.06));
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.checkout-bonus-offer__lead {
  font-size: 0.9375rem;
  color: var(--ink);
}

.checkout-bonus-offer__lead strong {
  color: var(--primary-2);
  font-weight: 800;
}

.checkout-bonus-offer__hint {
  margin-top: 0.35rem;
}

.checkout-bonus-offer__apply .form-check-label {
  font-weight: 600;
}

.checkout-panel__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  color: var(--primary);
  background: rgba(var(--btn-focus-rgb), 0.1);
  border: 1px solid rgba(var(--btn-focus-rgb), 0.18);
}

.checkout-panel__icon--violet {
  color: var(--primary-2);
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.18);
}

.checkout-panel__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.checkout-panel__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.35;
}

.checkout-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(18, 19, 26, 0.78);
  margin-bottom: 0.35rem;
}

.checkout-input {
  border-radius: 0.75rem;
  border-color: rgba(18, 19, 26, 0.12);
  min-height: 2.75rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  background: rgba(255, 255, 255, 0.95);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.checkout-input:focus {
  background: #fff;
}

textarea.checkout-input {
  min-height: auto;
}

.address-suggest-wrap {
  position: relative;
}

.address-suggest-list {
  position: absolute;
  z-index: 40;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  border-radius: 0.85rem;
  border: 1px solid rgba(18, 19, 26, 0.12);
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 19, 26, 0.12);
}

.address-suggest-list__item {
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  line-height: 1.35;
  cursor: pointer;
  color: rgba(18, 19, 26, 0.92);
}

.address-suggest-list__item:hover,
.address-suggest-list__item:focus {
  background: rgba(124, 58, 237, 0.08);
}

.checkout-mode,
.checkout-pay {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 480px) {
  .checkout-mode {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-pay {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .checkout-pay:has(> :nth-child(3)) {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.checkout-mode__item,
.checkout-pay__item {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.checkout-mode__input,
.checkout-pay__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.checkout-mode__card,
.checkout-pay__card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  height: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  border: 1.5px solid rgba(18, 19, 26, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 14px rgba(18, 19, 26, 0.04);
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.checkout-mode__item:hover .checkout-mode__card,
.checkout-pay__item:hover .checkout-pay__card {
  border-color: rgba(var(--btn-focus-rgb), 0.28);
  background: rgba(255, 255, 255, 0.98);
}

.checkout-mode__input:checked + .checkout-mode__card,
.checkout-pay__input:checked + .checkout-pay__card {
  border-color: rgba(var(--btn-focus-rgb), 0.55);
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(var(--btn-focus-rgb), 0.1), transparent 70%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 3px rgba(var(--btn-focus-rgb), 0.12);
}

.checkout-mode__input:focus-visible + .checkout-mode__card,
.checkout-pay__input:focus-visible + .checkout-pay__card {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.checkout-mode__card-title,
.checkout-pay__title {
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.checkout-mode__card-hint,
.checkout-pay__hint {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.checkout-pay-details {
  border-radius: 0.95rem;
  padding: 0.9rem 1rem;
}

.checkout-pay-sber-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.checkout-pay-sber-qr__img {
  width: min(220px, 70vw);
  height: auto;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: #fff;
  padding: 0.5rem;
}

.checkout-sber-modal.modal-content {
  border-radius: 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(var(--btn-focus-rgb), 0.07), transparent 55%),
    radial-gradient(720px 360px at 100% 100%, color-mix(in srgb, var(--primary-2) 8%, transparent), transparent 60%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(18, 19, 26, 0.12);
}

.checkout-sber-modal__header {
  padding: 1.2rem 1.25rem 0.85rem;
  align-items: flex-start;
}

.checkout-sber-modal__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.checkout-sber-modal__icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  color: var(--primary);
  background: rgba(var(--btn-focus-rgb), 0.1);
  border: 1px solid rgba(var(--btn-focus-rgb), 0.18);
}

.checkout-sber-modal__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.checkout-sber-modal__subtitle {
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.35;
}

.checkout-sber-modal__body {
  padding: 0.35rem 1.25rem 0.5rem;
}

.checkout-sber-modal__footer {
  padding: 0.85rem 1.25rem 1.25rem;
}

.checkout-sber-modal__layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-sber-modal__qr {
  display: flex;
  justify-content: center;
  padding: 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.checkout-sber-modal__qr-img {
  width: min(200px, 62vw);
  height: auto;
  aspect-ratio: 1;
  display: block;
  border-radius: 0.65rem;
  background: #fff;
}

.checkout-sber-modal__instruction {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid color-mix(in srgb, var(--primary) 16%, transparent);
  background: color-mix(in srgb, var(--primary) 6%, #fff);
  color: rgba(18, 19, 26, 0.9);
}

.checkout-sber-modal__instruction-lead {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.checkout-sber-modal__instruction-list {
  margin: 0.65rem 0 0;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(18, 19, 26, 0.82);
}

.checkout-sber-modal__instruction-list li::marker {
  color: var(--primary);
}

.checkout-sber-modal__instruction-key {
  color: rgba(18, 19, 26, 0.62);
}

.checkout-sber-modal__details {
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.checkout-sber-modal__field {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.checkout-sber-modal__field + .checkout-sber-modal__field {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(18, 19, 26, 0.07);
}

.checkout-sber-modal__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(18, 19, 26, 0.45);
}

.checkout-sber-modal__value-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}

.checkout-sber-modal__card-number {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
  color: rgba(18, 19, 26, 0.94);
}

.checkout-sber-modal__holder {
  font-size: 1rem;
  font-weight: 650;
  color: rgba(18, 19, 26, 0.92);
}

.checkout-pay-details__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.checkout-pay-details__row + .checkout-pay-details__row {
  margin-top: 0.45rem;
}

.checkout-pay-details__value {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  text-align: right;
}

.checkout-pay-copy {
  appearance: none;
  border: 1px solid rgba(18, 19, 26, 0.14);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  min-height: 2.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.checkout-pay-copy:hover {
  border-color: rgba(var(--btn-focus-rgb), 0.35);
  color: var(--primary);
  background: rgba(var(--btn-focus-rgb), 0.05);
}

.checkout-pay-copy.is-copied {
  border-color: color-mix(in srgb, var(--primary) 35%, transparent);
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, #fff);
}

@media (max-width: 479px) {
  .checkout-pay {
    grid-template-columns: 1fr;
  }

  .checkout-pay-details__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-pay-details__value {
    justify-content: flex-start;
    text-align: left;
  }
}

.checkout-agree .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkout-agree .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  margin-left: 0;
  float: none;
  flex-shrink: 0;
}

.checkout-agree.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-left: 0;
  min-height: 1.5rem;
}

.checkout-agree .form-check-label {
  cursor: pointer;
  line-height: 1.45;
}

.checkout-agree.is-invalid {
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(220, 53, 69, 0.35);
  background: rgba(220, 53, 69, 0.06);
}

.checkout-agree.is-invalid .invalid-feedback {
  display: block;
}

.checkout-form-alert {
  font-size: 0.9rem;
  border-radius: 0.85rem;
  margin-bottom: 0;
}

.checkout-input.is-invalid,
.checkout-form .form-select.is-invalid {
  border-color: #dc3545;
}

.checkout-form .is-invalid ~ .invalid-feedback {
  display: block;
}

.checkout-submit {
  border-radius: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  box-shadow: 0 12px 32px rgba(var(--btn-focus-rgb), 0.28);
}

.checkout-submit:hover {
  box-shadow: 0 16px 36px rgba(var(--btn-focus-rgb), 0.34);
}

/* Блок «Ваш заказ» */
.checkout-summary {
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 100% 0%, rgba(124, 58, 237, 0.1), transparent 55%),
    radial-gradient(700px 400px at 0% 100%, rgba(var(--btn-focus-rgb), 0.08), transparent 60%),
    rgba(255, 255, 255, 0.95);
}

.checkout-summary__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(18, 19, 26, 0.07);
}

.checkout-summary__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.checkout-summary__meta {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.checkout-summary__badge {
  flex-shrink: 0;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(var(--btn-focus-rgb), 0.1);
  border: 1px solid rgba(var(--btn-focus-rgb), 0.2);
  border-radius: 999px;
}

.checkout-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: min(50vh, 360px);
  overflow-y: auto;
  padding: 0.35rem 0.75rem;
}

.checkout-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(18, 19, 26, 0.06);
}

.checkout-line:last-child {
  border-bottom: 0;
}

.checkout-line__thumb {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: #f3f0f7;
  box-shadow: 0 6px 18px rgba(18, 19, 26, 0.06);
}

.checkout-line__thumb--img {
  padding: 0;
}

.checkout-line__thumb--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.checkout-line__thumb .product-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  transform: scale(1.08);
}

.checkout-line__body {
  flex: 1;
  min-width: 0;
}

.checkout-line__name {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.checkout-line__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.checkout-line__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 0.55rem;
}

.checkout-line__qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(18, 19, 26, 0.05);
}

.checkout-line__qty-btn {
  min-width: 2rem;
  padding: 0.15rem 0.55rem;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.checkout-line__qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: rgba(18, 19, 26, 0.82);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(18, 19, 26, 0.1);
  border-bottom: 1px solid rgba(18, 19, 26, 0.1);
}

.checkout-line__remove {
  border: 0;
  padding: 0;
  background: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(18, 19, 26, 0.48);
  text-decoration: underline;
  text-underline-offset: 0.14em;
  cursor: pointer;
}

.checkout-line__remove:hover,
.checkout-line__remove:focus-visible {
  color: #c92a3a;
}

.checkout-line__warn {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #b45309;
}

.checkout-line__total {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: right;
  white-space: nowrap;
}

.checkout-summary__totals {
  padding: 0.85rem 1.25rem 1rem;
  border-top: 1px solid rgba(18, 19, 26, 0.07);
  background: rgba(246, 243, 255, 0.45);
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.checkout-summary__row + .checkout-summary__row {
  margin-top: 0.35rem;
}

.checkout-summary__free {
  font-weight: 700;
  color: #16a34a;
}

.checkout-summary__row--discount {
  color: #16a34a;
}

.checkout-summary__discount {
  font-weight: 700;
  color: #16a34a;
}

.checkout-summary__grand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(18, 19, 26, 0.12);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.checkout-summary__grand span:last-child {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.checkout-summary__hint {
  margin: 0;
  padding: 0.85rem 1.25rem 1.15rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  border-top: 1px solid rgba(18, 19, 26, 0.06);
}

@media (max-width: 991.98px) {
  .checkout-panel {
    padding: 1rem 1rem 1.1rem;
  }

  .checkout-summary__head,
  .checkout-summary__totals,
  .checkout-summary__hint {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .checkout-lines {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    max-height: none;
  }
}

/* ——— Галерея товара (2026) ——— */
.product-gallery {
  width: 100%;
}

.product-gallery__stage {
  position: relative;
  width: 100%;
}

.product-gallery__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 30% 10%, rgba(var(--btn-focus-rgb), 0.12), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 243, 255, 0.65));
}
.product-gallery__size{
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  pointer-events: none;
}
.product-gallery__size .product-size-badge{
  font-size: 0.78rem;
  padding: 0.32rem 0.58rem;
}

.product-gallery__main {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: opacity 0.28s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-gallery__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__main.is-changing {
  opacity: 0.72;
  transform: scale(0.985);
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(18, 19, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(18, 19, 26, 0.08);
  transform: translateY(-50%);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.product-gallery__nav--prev {
  left: 0.75rem;
}

.product-gallery__nav--next {
  right: 0.75rem;
}

.product-gallery__nav:hover {
  transform: translateY(calc(-50% - 1px));
  border-color: rgba(var(--btn-focus-rgb), 0.35);
  box-shadow: 0 12px 28px rgba(var(--btn-focus-rgb), 0.12);
}

.product-gallery__thumbs-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 2.5rem 0.75rem 0.85rem;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(18, 19, 26, 0.55) 0%,
    rgba(18, 19, 26, 0.2) 45%,
    transparent 100%
  );
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.1rem;
  scrollbar-width: thin;
  pointer-events: auto;
}

.product-gallery__thumb {
  flex: 0 0 auto;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  opacity: 0.82;
  box-shadow: 0 6px 18px rgba(18, 19, 26, 0.25);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.product-gallery__thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.product-gallery__thumb.is-active {
  opacity: 1;
  border-color: #fff;
  box-shadow:
    0 0 0 2px rgba(var(--btn-focus-rgb), 0.85),
    0 8px 22px rgba(18, 19, 26, 0.35);
}

@media (max-width: 575.98px) {
  .product-gallery__nav--prev {
    left: 0.5rem;
  }
  .product-gallery__nav--next {
    right: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery__main,
  .product-gallery__thumb,
  .product-gallery__nav {
    transition: none;
  }
  .product-gallery__main.is-changing {
    opacity: 1;
    transform: none;
  }
}

.product-gallery-tags{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.product-gallery-tag{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .75rem .5rem .5rem;
  border-radius: .9rem;
  border: 1px solid rgba(18, 19, 26, .08);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 4px 14px rgba(18, 19, 26, .04);
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(18, 19, 26, .82);
  letter-spacing: -.01em;
}
.product-gallery-tag__icon{
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: .6rem;
}
.product-gallery-tag__icon svg{
  width: 1.1rem;
  height: 1.1rem;
}
.product-gallery-tag--fresh .product-gallery-tag__icon{
  color: #16a34a;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .18);
}
.product-gallery-tag--photo .product-gallery-tag__icon{
  color: var(--primary-2);
  background: rgba(124, 58, 237, .10);
  border: 1px solid rgba(124, 58, 237, .16);
}
.product-gallery-tag--delivery .product-gallery-tag__icon{
  color: var(--primary);
  background: rgba(var(--btn-focus-rgb), .10);
  border: 1px solid rgba(var(--btn-focus-rgb), .16);
}
.product-gallery-tag__text{
  min-width: 0;
}

.product-details-accordion{
  margin-top: 0;
  border-radius: 1rem;
  border: 1px solid rgba(18, 19, 26, .08);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 6px 18px rgba(18, 19, 26, .05);
  overflow: hidden;
}
.product-details-accordion .accordion-item{
  border-bottom: 0;
}
.product-details-accordion .accordion-button{
  padding-top: .85rem;
  padding-bottom: .85rem;
}
.product-details-disclosure__list{
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.product-details-disclosure__list li{
  line-height: 1.45;
}
.product-details-disclosure__body{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.product-details-disclosure__body.is-two-cols{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
}
.product-details-disclosure__section{
  min-width: 0;
}
.product-details-disclosure__body.is-two-cols .product-details-disclosure__section + .product-details-disclosure__section{
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(18, 19, 26, .08);
}
.product-details-disclosure__body:not(.is-two-cols) .product-details-disclosure__section + .product-details-disclosure__section{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 19, 26, .08);
}
.product-details-disclosure__section-title{
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(18, 19, 26, .72);
  margin-bottom: .65rem;
}

/* Страница товара — разметка в стиле карточки каталога */
.product-page-layout{
  align-items: stretch;
}
.product-page-info__inner{
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 992px){
  .product-page-info__inner{
    position: sticky;
    top: 5.5rem;
  }
}
.product-page-head{
  gap: .5rem 1rem;
}
.product-page-head__title{
  flex: 1 1 0;
  min-width: 0;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.product-page-head__meta{
  flex: 0 0 auto;
  max-width: 100%;
  justify-content: flex-end;
}
.product-page-title{
  letter-spacing: -.02em;
  line-height: 1.15;
}
.product-stock-badge{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: #15803d;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .24);
}
.product-stock-badge::before{
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
}
.product-page-lead{
  font-size: .95rem;
  line-height: 1.55;
}
.product-buy-card{
  border-radius: 1.25rem;
}
.product-buy-card__price-row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.product-buy-card__price{
  flex: 1;
  min-width: 0;
}
.product-buy-card__price-label{
  display: block;
  margin-bottom: .2rem;
}
.product-buy-card__qty{
  flex-shrink: 0;
  width: 5.5rem;
}
.product-buy-card__qty .product-qty-input{
  text-align: center;
  font-weight: 700;
}
.product-buy-card__actions .btn{
  border-radius: .9rem;
  font-weight: 700;
}
.product-page-share{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  margin-top: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(18, 19, 26, .08);
}
.product-page-share__label{
  flex: 0 0 100%;
  margin-bottom: -.15rem;
}
@media (min-width: 576px){
  .product-page-share__label{
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
.product-page-share__links{
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.product-page-share__btn{
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: .7rem;
  border: 1px solid rgba(18, 19, 26, .10);
  background: rgba(255, 255, 255, .85);
  color: rgba(18, 19, 26, .72);
  text-decoration: none;
  transition:
    border-color .15s ease,
    color .15s ease,
    background .15s ease,
    transform .15s ease;
}
.product-page-share__btn svg{
  width: 1.1rem;
  height: 1.1rem;
}
.product-page-share__btn:hover,
.product-page-share__btn:focus-visible{
  color: var(--primary);
  border-color: rgba(var(--btn-focus-rgb), .28);
  background: rgba(var(--btn-focus-rgb), .06);
  outline: none;
}
.product-page-share__btn--link{
  border: 0;
  background: transparent;
  cursor: pointer;
}
.product-page-share__btn.is-copied{
  color: #15803d;
  border-color: rgba(34, 197, 94, .35);
  background: rgba(34, 197, 94, .1);
}
.product-page-messenger-link{
  margin-left: auto;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--btn-focus-rgb), .25);
}
.product-page-messenger-link:hover,
.product-page-messenger-link:focus-visible{
  color: var(--primary-2);
  border-bottom-color: rgba(124, 58, 237, .35);
  outline: none;
}
.product-page-accordion{
  margin-top: 1rem;
  --bs-accordion-border-radius: 1rem;
  --bs-accordion-inner-border-radius: 1rem;
  --bs-accordion-btn-padding-x: 1rem;
  --bs-accordion-btn-padding-y: .9rem;
  --bs-accordion-body-padding-x: 1rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--text);
  --bs-accordion-active-bg: rgba(var(--btn-focus-rgb), .04);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 3px var(--ring);
}
.product-page-accordion .accordion-item{
  border: 0;
  border-bottom: 1px solid rgba(18, 19, 26, .08);
  background: transparent;
}
.product-page-accordion .accordion-item:last-child{
  border-bottom: 0;
}
.product-page-accordion .accordion-button{
  font-weight: 700;
  font-size: .95rem;
  background: transparent;
  box-shadow: none;
}
.product-page-accordion .accordion-button:not(.collapsed){
  color: var(--text);
}
.product-page-accordion .accordion-button::after{
  filter: opacity(.55);
}
.product-page-details-list,
.product-page-delivery-list{
  padding-left: 1.1rem;
  color: rgba(18, 19, 26, .72);
}
.product-page-details-list li + li,
.product-page-delivery-list li + li{
  margin-top: .35rem;
}
.product-page-notice{
  margin-top: 1rem;
  padding: .75rem .85rem;
  border-radius: .85rem;
  background: rgba(var(--btn-focus-rgb), .05);
  border: 1px solid rgba(var(--btn-focus-rgb), .12);
}
.product-glass-addons:not(.d-none) + .product-page-notice{
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(18, 19, 26, .08);
  border-radius: 0;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-page-notice__text{
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(18, 19, 26, .78);
}
.product-perk{
  height: 100%;
  padding: 1rem .85rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(18, 19, 26, .08);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 28px rgba(18, 19, 26, .05);
  text-align: center;
}
.product-perk__icon{
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto .65rem;
  display: grid;
  place-items: center;
  border-radius: .85rem;
  color: var(--primary);
  background: rgba(var(--btn-focus-rgb), .10);
  border: 1px solid rgba(var(--btn-focus-rgb), .16);
}
.product-perk__icon svg{
  width: 1.35rem;
  height: 1.35rem;
}
.product-perk__text{
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(18, 19, 26, .78);
}

/* Плавающая кнопка мессенджеров */
.messenger-fab{
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .65rem;
  pointer-events: none;
}

.messenger-fab__toggle,
.messenger-fab__menu,
.messenger-fab__item{
  pointer-events: auto;
}

.messenger-fab__toggle{
  position: relative;
  width: 3.55rem;
  height: 3.55rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--btn, var(--primary)) 0%, var(--primary) 52%, var(--primary-2) 100%);
  box-shadow:
    0 4px 14px rgba(var(--btn-focus-rgb), .35),
    0 12px 32px rgba(18, 19, 26, .16);
  cursor: pointer;
  transition:
    transform .28s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow .28s ease;
}

.messenger-fab__toggle:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 6px 18px rgba(var(--btn-focus-rgb), .4),
    0 16px 36px rgba(18, 19, 26, .18);
}

.messenger-fab__toggle:focus-visible{
  outline: 2px solid rgba(var(--btn-focus-rgb), .55);
  outline-offset: 3px;
}

.messenger-fab__pulse{
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  opacity: .45;
  animation: messenger-fab-pulse 2.4s ease-out infinite;
  z-index: -1;
}

.messenger-fab[data-open="true"] .messenger-fab__pulse{
  animation: none;
  opacity: 0;
}

@keyframes messenger-fab-pulse{
  0%{
    transform: scale(1);
    opacity: .45;
  }
  70%{
    transform: scale(1.45);
    opacity: 0;
  }
  100%{
    transform: scale(1.45);
    opacity: 0;
  }
}

.messenger-fab__toggle-icon{
  position: absolute;
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity .22s ease,
    transform .28s cubic-bezier(.34, 1.56, .64, 1);
}

.messenger-fab__toggle-icon svg{
  width: 100%;
  height: 100%;
}

.messenger-fab__toggle-icon--chat{
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.messenger-fab__toggle-icon--close{
  opacity: 0;
  transform: scale(.6) rotate(-90deg);
}

.messenger-fab[data-open="true"] .messenger-fab__toggle{
  transform: rotate(0deg);
}

.messenger-fab[data-open="true"] .messenger-fab__toggle-icon--chat{
  opacity: 0;
  transform: scale(.6) rotate(90deg);
}

.messenger-fab[data-open="true"] .messenger-fab__toggle-icon--close{
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.messenger-fab__menu{
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: .55rem;
  margin: 0;
  padding: 0;
}

.messenger-fab__item{
  --fab-item-index: 0;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(18, 19, 26, .18);
  opacity: 0;
  transform: translateY(12px) scale(.82);
  pointer-events: none;
  transition:
    opacity .24s ease,
    transform .28s cubic-bezier(.34, 1.56, .64, 1),
    width .24s ease,
    box-shadow .2s ease;
}

.messenger-fab__item svg{
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.messenger-fab__label{
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  opacity: 0;
  transition:
    max-width .24s ease,
    opacity .18s ease,
    margin .24s ease;
}

.messenger-fab__item:hover,
.messenger-fab__item:focus-visible{
  width: auto;
  padding: 0 .95rem 0 .75rem;
  transform: translateY(0) scale(1.04);
  box-shadow: 0 12px 28px rgba(18, 19, 26, .22);
  outline: none;
}

.messenger-fab__item:hover .messenger-fab__label,
.messenger-fab__item:focus-visible .messenger-fab__label{
  max-width: 7rem;
  opacity: 1;
  margin-right: .1rem;
}

.messenger-fab[data-open="true"] .messenger-fab__item{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: calc(var(--fab-item-index) * 55ms);
}

.messenger-fab__item--max{
  background: linear-gradient(135deg, #5b3fd9 0%, #7c4dff 55%, #9b59ff 100%);
}

.messenger-fab__item--telegram{
  background: linear-gradient(135deg, #1f9bd0 0%, #26a5e4 55%, #4fc3f7 100%);
}

.messenger-fab__item--whatsapp{
  background: linear-gradient(135deg, #1faa52 0%, #25d366 55%, #5de374 100%);
}

@media (max-width: 575.98px){
  .messenger-fab{
    right: max(.75rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  .messenger-fab__toggle{
    width: 3.25rem;
    height: 3.25rem;
  }

  .messenger-fab__item{
    width: 2.85rem;
    height: 2.85rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .messenger-fab__pulse{
    animation: none;
  }

  .messenger-fab__toggle,
  .messenger-fab__toggle-icon,
  .messenger-fab__item,
  .messenger-fab__label{
    transition: none;
  }
}

/* ——— Подвал сайта ——— */
.site-footer{
  --footer-head-h: 2.75rem;
  --footer-row-gap: 0.55rem;
  --footer-item-h: 1.75rem;
  --footer-col-gap: 1.5rem;
  --footer-bg: #726262;
  --footer-bg-top: #7a6a6a;
  --footer-bg-bottom: #655555;
  --footer-fg: #faf6f3;
  --footer-muted: rgba(250, 246, 243, 0.82);
  --footer-soft: rgba(250, 246, 243, 0.58);
  --footer-line: rgba(250, 246, 243, 0.16);
  --footer-surface: rgba(255, 255, 255, 0.1);
  --footer-surface-strong: rgba(255, 255, 255, 0.16);
  --footer-ink: #4a3f3f;
  --footer-accent-hover: #ffb5d4;
  flex-shrink: 0;
  margin-top: auto;
  color: var(--footer-fg);
  background:
    radial-gradient(
      1400px 520px at 8% -20%,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.03) 38%,
      transparent 72%
    ),
    radial-gradient(
      1200px 480px at 92% -10%,
      rgba(var(--btn-focus-rgb), 0.16) 0%,
      rgba(var(--btn-focus-rgb), 0.08) 28%,
      rgba(var(--btn-focus-rgb), 0.03) 52%,
      transparent 78%
    ),
    radial-gradient(
      900px 420px at 50% 120%,
      rgba(124, 58, 237, 0.08) 0%,
      rgba(124, 58, 237, 0.02) 40%,
      transparent 70%
    ),
    linear-gradient(
      180deg,
      #7d6c6c 0%,
      var(--footer-bg) 38%,
      #6b5b5b 72%,
      var(--footer-bg-bottom) 100%
    );
}

.site-footer__main{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem var(--footer-col-gap);
  padding-bottom: 1.35rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--footer-line);
  align-items: start;
}

@media (min-width: 768px){
  .site-footer__main{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 992px){
  .site-footer__main{
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .site-footer__col{
    height: 100%;
  }

  .site-footer__body{
    flex: 1 1 auto;
    justify-content: space-between;
    min-height: 0;
  }

  .site-footer__brand{
    justify-content: space-between;
    gap: 0;
  }

  .site-footer__brand .site-footer__brand-link,
  .site-footer__brand .site-footer__perk,
  .site-footer__brand .site-footer__meta{
    flex: 0 0 auto;
  }

  .site-footer__list,
  .site-footer__messengers{
    flex: 1 1 auto;
    justify-content: space-between;
  }

  .site-footer__nav .site-footer__list{
    flex: 1 1 auto;
  }

  .site-footer__cta{
    margin-top: 0;
    flex: 0 0 auto;
  }

  .site-footer__contacts .site-footer__meta{
    flex: 1 1 auto;
    justify-content: center;
  }
}

.site-footer__col{
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}

.site-footer__brand{
  gap: var(--footer-row-gap);
}

.site-footer__head{
  display: flex;
  align-items: center;
  min-height: var(--footer-head-h);
  height: var(--footer-head-h);
  margin-bottom: 0.75rem;
}

.site-footer__brand-link{
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.55rem;
  margin: 0;
  color: var(--footer-fg);
  font-weight: 700;
  text-decoration: none;
  max-width: 100%;
}

.site-footer__brand-link:hover{
  color: var(--footer-fg);
}

.site-footer__brand-link .site-brand-name,
.site-footer__brand-link [data-site-name]{
  color: var(--footer-fg);
}

.site-footer__title{
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--footer-soft);
}

.site-footer__body{
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: var(--footer-row-gap);
  min-width: 0;
}

.site-footer__list,
.site-footer__messengers{
  display: flex;
  flex-direction: column;
  gap: var(--footer-row-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list--grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--footer-row-gap) 1rem;
}

.site-footer__label{
  display: block;
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--footer-soft);
}

.site-footer__list a,
.site-footer__text{
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--footer-muted);
}

.site-footer__list a,
.site-footer__inline-link{
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__list > li > a{
  display: flex;
  align-items: center;
  min-height: var(--footer-item-h);
  font-weight: 600;
}

.site-footer__nav .site-footer__list > li > a:hover,
.site-footer__nav .site-footer__list > li > a:focus-visible{
  color: var(--footer-accent-hover);
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible,
.site-footer__inline-link:hover,
.site-footer__inline-link:focus-visible{
  color: var(--footer-fg);
}

.site-footer__meta{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0.55rem 0.75rem;
  max-width: none;
  border-radius: 0.9rem;
  border: 1px solid var(--footer-line);
  background: var(--footer-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--footer-muted);
}

.site-footer__brand .site-footer__meta{
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-height: auto;
}

.site-footer__meta .site-footer__inline-link{
  font-weight: 600;
  color: var(--footer-fg);
}

.site-footer__meta .site-footer__inline-link:hover,
.site-footer__meta .site-footer__inline-link:focus-visible{
  color: var(--footer-accent-hover);
}

.site-footer__perk{
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  min-height: var(--footer-item-h);
  padding-left: 0.95rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--footer-muted);
}

.site-footer__perk::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff8fba, var(--primary));
  box-shadow: 0 0 0 3px rgba(var(--btn-focus-rgb), 0.14);
}

.site-footer__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.55rem 1.05rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--footer-fg);
  color: var(--footer-ink);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible{
  color: #fff;
  background: var(--btn, var(--primary));
  border-color: var(--btn, var(--primary));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  outline: none;
  transform: translateY(-1px);
}

.site-footer__list a.site-footer__messenger{
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-height: var(--footer-item-h);
  padding: 0.15rem 0.2rem;
  margin: 0 -0.2rem;
  border-radius: 0.7rem;
  color: var(--footer-muted);
  font-weight: 600;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.site-footer__list a.site-footer__messenger:hover,
.site-footer__list a.site-footer__messenger:focus-visible{
  background: var(--footer-surface);
  color: var(--footer-fg);
}

.site-footer__messenger-icon{
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 1.7rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.96);
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.site-footer__messenger-icon svg{
  width: 0.88rem;
  height: 0.88rem;
  display: block;
}

.site-footer__messenger--telegram .site-footer__messenger-icon{
  color: #2aabee;
  border-color: rgba(42, 171, 238, 0.35);
}

.site-footer__messenger--whatsapp .site-footer__messenger-icon{
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.35);
}

.site-footer__messenger--max .site-footer__messenger-icon{
  color: #7c4dff;
  border-color: rgba(124, 77, 255, 0.35);
}

.site-footer__messenger--vk .site-footer__messenger-icon{
  color: #0077ff;
  border-color: rgba(0, 119, 255, 0.35);
}

.site-footer__list a.site-footer__messenger:hover .site-footer__messenger-icon,
.site-footer__list a.site-footer__messenger:focus-visible .site-footer__messenger-icon{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.site-footer__list a.site-footer__messenger--telegram:hover,
.site-footer__list a.site-footer__messenger--telegram:focus-visible{
  color: #9ad8f5;
}

.site-footer__list a.site-footer__messenger--whatsapp:hover,
.site-footer__list a.site-footer__messenger--whatsapp:focus-visible{
  color: #8be3ae;
}

.site-footer__list a.site-footer__messenger--max:hover,
.site-footer__list a.site-footer__messenger--max:focus-visible{
  color: #c4b0ff;
}

.site-footer__list a.site-footer__messenger--vk:hover,
.site-footer__list a.site-footer__messenger--vk:focus-visible{
  color: #8fc4ff;
}

.site-footer__text{
  max-width: 20rem;
}

.site-footer__brand .site-footer__text{
  max-width: none;
}

.site-footer__text--muted{
  color: var(--footer-soft);
}

.site-footer__bottom{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
}

.site-footer__copy{
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--footer-soft);
}

.site-footer__legal{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.site-footer__legal a{
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible{
  color: var(--footer-accent-hover);
}

@media (max-width: 767.98px){
  .site-footer__list--grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px){
  .site-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce){
  .site-footer__cta,
  .site-footer__messenger-icon{
    transition: none;
  }

  .site-footer__cta:hover,
  .site-footer__cta:focus-visible,
  .site-footer__list a.site-footer__messenger:hover .site-footer__messenger-icon,
  .site-footer__list a.site-footer__messenger:focus-visible .site-footer__messenger-icon{
    transform: none;
  }
}

/* Информационные страницы (Почему мы, Доставка, Контакты, оферта) */
.info-page{
  background:
    radial-gradient(1100px 520px at 8% 0%, rgba(var(--btn-focus-rgb), .06), transparent 58%),
    radial-gradient(900px 480px at 100% 8%, rgba(124, 58, 237, .06), transparent 55%),
    linear-gradient(180deg, #fff, var(--soft) 120%);
}
.info-page--contacts .info-page__contacts{
  margin-top: .25rem;
}
.info-page__body{
  max-width: none;
}
.info-page__body--legal{
  max-width: 48rem;
  line-height: 1.7;
}
.info-page__body--legal h2{
  margin-top: 1.75rem;
}
.info-page__published{
  opacity: .85;
}
.info-page__layout--why .info-page__highlight{
  height: 100%;
}
.info-page__layout--delivery .delivery-card{
  height: 100%;
}
.info-page--default .info-page__body{
  max-width: 52rem;
}
/* Сетка визуального редактора — на всю ширину контейнера, как в редакторе */
.info-page--default .info-page__body:has([data-fe-block="row"]),
.info-page--default .info-page__body:has(.row),
.info-page--default .info-page__body:has([data-fe-width]),
.info-page--default .info-page__body:has([data-fe-width-row]){
  max-width: none;
  width: 100%;
}

/* Маркированные списки — маркеры/отступы в em, карточка как у остальных блоков */
.info-page__body ul,
.info-page__body .fe-list,
.home-custom-block ul,
.home-custom-block .fe-list{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55em;
  font-size: 0.98rem;
}
.info-page__body ul,
.info-page__body .fe-list,
.info-page__body ol{
  margin: 0.35em 0 0.85em;
  padding: 0;
}
.info-page__body ol{
  padding-left: 1.35em;
}
.info-page__body ul > li,
.info-page__body .fe-list > li,
.home-custom-block ul > li,
.home-custom-block .fe-list > li{
  position: relative;
  margin: 0;
  padding: 0.15em 0 0.15em 1.2em;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text, #12131a);
}
.info-page__body ul > li::before,
.info-page__body .fe-list > li::before,
.home-custom-block ul > li::before,
.home-custom-block .fe-list > li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff8fba, var(--primary, #ff3d8d));
  box-shadow: 0 0 0 0.2em rgba(var(--btn-focus-rgb), 0.14);
}
.info-page__body ol,
.home-custom-block ol{
  display: flex;
  flex-direction: column;
  gap: 0.45em;
  font-size: 0.98rem;
  padding-left: 1.35em;
}
.info-page__body ol > li,
.home-custom-block ol > li{
  padding-left: 0.25em;
  font-weight: 500;
  line-height: 1.55;
}
.info-page__body ol > li::marker,
.home-custom-block ol > li::marker{
  color: var(--primary, #ff3d8d);
  font-weight: 700;
}

/* Компактные ссылки с главной на инфо-страницы */
.home-info-links__card{
  border-radius: 1.25rem;
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 16px 40px rgba(18, 19, 26, .06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.home-info-links__card:hover,
.home-info-links__card:focus-visible{
  transform: translateY(-2px);
  border-color: rgba(var(--btn-focus-rgb), .22);
  box-shadow: 0 20px 48px rgba(18, 19, 26, .10);
}
.home-info-links__icon{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(var(--btn-focus-rgb), .10);
  border: 1px solid rgba(var(--btn-focus-rgb), .18);
  margin-bottom: .85rem;
  font-size: 1.15rem;
}
.home-info-links__more{
  color: var(--primary);
}

/* Контент визуального редактора: CMS (.info-page__body) и блоки главной (.home-custom-block) */
.info-page__body,
.home-custom-block{
  overflow-wrap: anywhere;
  word-break: break-word;
}.home-custom-block > .container{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 992px){.home-custom-block > .container{
    gap: 3rem;
  }
}.info-page__body [data-fe-block="section"],
.home-custom-block [data-fe-block="section"],
.home-custom-block > .container > section,
.info-page__body [data-fe-block="text"],
.home-custom-block [data-fe-block="text"],
.info-page__body [data-fe-block="heading"],
.home-custom-block [data-fe-block="heading"],
.info-page__body [data-fe-block="list"],
.home-custom-block [data-fe-block="list"],
.info-page__body ul.fe-list,
.home-custom-block ul.fe-list,
.info-page__body .fe-list,
.home-custom-block .fe-list{
  margin: 0;
  padding: 1.35rem 1.5rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(var(--btn-focus-rgb), .05), transparent 58%),
    rgba(255, 255, 255, .82);
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 12px 32px rgba(18, 19, 26, .05);
}
@media (min-width: 992px){.info-page__body [data-fe-block="section"],
.home-custom-block [data-fe-block="section"],
.home-custom-block > .container > section,
.info-page__body [data-fe-block="text"],
.home-custom-block [data-fe-block="text"],
.info-page__body [data-fe-block="heading"],
.home-custom-block [data-fe-block="heading"],
.info-page__body [data-fe-block="list"],
.home-custom-block [data-fe-block="list"],
.info-page__body ul.fe-list,
.home-custom-block ul.fe-list,
.info-page__body .fe-list,
.home-custom-block .fe-list{
    padding: 1.6rem 1.75rem;
  }
}.info-page__body [data-fe-block="section"] .container,
.home-custom-block [data-fe-block="section"] .container,
.home-custom-block > .container > section > .container,
.info-page__body [data-fe-block="text"].container,
.home-custom-block [data-fe-block="text"].container,
.info-page__body [data-fe-block="heading"].container,
.home-custom-block [data-fe-block="heading"].container{
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  width: 100%;
}.info-page__body [data-fe-block="heading"] h1,
.home-custom-block [data-fe-block="heading"] h1,
.info-page__body [data-fe-block="heading"] h2,
.home-custom-block [data-fe-block="heading"] h2,
.info-page__body [data-fe-block="heading"] h3,
.home-custom-block [data-fe-block="heading"] h3,
.info-page__body [data-fe-block="heading"] h4,
.home-custom-block [data-fe-block="heading"] h4{
  margin-bottom: 0;
}.info-page__body [data-fe-block="layout"],
.home-custom-block [data-fe-block="layout"],
.info-page__body .info-page__layout,
.home-custom-block .info-page__layout{
  margin: 0;
}.info-page__body [data-fe-block="row"],
.home-custom-block [data-fe-block="row"],
.info-page__body .row[data-fe-block="row"],
.home-custom-block .row[data-fe-block="row"]{
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
  width: 100%;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}
@media (min-width: 992px){.info-page__body [data-fe-block="row"],
.home-custom-block [data-fe-block="row"],
.info-page__body .row[data-fe-block="row"],
.home-custom-block .row[data-fe-block="row"]{
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
  }
}/*
 * Колонки сетки (data-fe-block="col"): gutter + карточка через ::before.
 * Блоки с шириной Bootstrap (text/section + col-*) не получают этот хром —
 * только классы сетки, чтобы вставать в ряд как в Bootstrap.
 */
.info-page__body [data-fe-block="col"],
.home-custom-block [data-fe-block="col"],
.info-page__body .info-page__layout .row > [data-fe-block="col"],
.home-custom-block .info-page__layout .row > [data-fe-block="col"]{
  --fe-col-pad-x: 1.5rem;
  --fe-col-pad-y: 1.35rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 !important;
  min-width: 0;
  min-height: 3.5rem;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
  padding-left: calc(var(--bs-gutter-x) * 0.5 + var(--fe-col-pad-x)) !important;
  padding-right: calc(var(--bs-gutter-x) * 0.5 + var(--fe-col-pad-x)) !important;
  padding-top: calc(var(--bs-gutter-y) * 0.5 + var(--fe-col-pad-y)) !important;
  padding-bottom: calc(var(--bs-gutter-y) * 0.5 + var(--fe-col-pad-y)) !important;
}.info-page__body [data-fe-block="col"]::before,
.home-custom-block [data-fe-block="col"]::before,
.info-page__body .info-page__layout .row > [data-fe-block="col"]::before,
.home-custom-block .info-page__layout .row > [data-fe-block="col"]::before{
  content: "";
  position: absolute;
  inset: calc(var(--bs-gutter-y) * 0.5) calc(var(--bs-gutter-x) * 0.5);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 12px 32px rgba(18, 19, 26, .05);
  pointer-events: none;
  z-index: 0;
}.info-page__body [data-fe-block="col"] > *,
.home-custom-block [data-fe-block="col"] > *,
.info-page__body .info-page__layout .row > [data-fe-block="col"] > *,
.home-custom-block .info-page__layout .row > [data-fe-block="col"] > *{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}.info-page__body [data-fe-width-row],
.home-custom-block [data-fe-width-row],
.info-page__body .row[data-fe-width-row],
.home-custom-block .row[data-fe-width-row]{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}
/* Явная ширина по data-fe-width — работает и в узком редакторе, и на витрине */
.info-page__body [data-fe-width="25%"],
.home-custom-block [data-fe-width="25%"]{ flex: 0 0 auto; width: 25%; max-width: 25%; }
.info-page__body [data-fe-width="33.333%"],
.home-custom-block [data-fe-width="33.333%"]{ flex: 0 0 auto; width: 33.333333%; max-width: 33.333333%; }
.info-page__body [data-fe-width="40%"],
.home-custom-block [data-fe-width="40%"]{ flex: 0 0 auto; width: 41.666667%; max-width: 41.666667%; }
.info-page__body [data-fe-width="50%"],
.home-custom-block [data-fe-width="50%"]{ flex: 0 0 auto; width: 50%; max-width: 50%; }
.info-page__body [data-fe-width="60%"],
.home-custom-block [data-fe-width="60%"]{ flex: 0 0 auto; width: 58.333333%; max-width: 58.333333%; }
.info-page__body [data-fe-width="66.666%"],
.home-custom-block [data-fe-width="66.666%"]{ flex: 0 0 auto; width: 66.666667%; max-width: 66.666667%; }
.info-page__body [data-fe-width="75%"],
.home-custom-block [data-fe-width="75%"]{ flex: 0 0 auto; width: 75%; max-width: 75%; }
.info-page__body [data-fe-width="80%"],
.home-custom-block [data-fe-width="80%"]{ flex: 0 0 auto; width: 83.333333%; max-width: 83.333333%; }
.info-page__body [data-fe-width="100%"],
.home-custom-block [data-fe-width="100%"]{ flex: 0 0 auto; width: 100%; max-width: 100%; }
.info-page__body [data-fe-width],
.home-custom-block [data-fe-width]{
  box-sizing: border-box;
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}
/* Снятие карточного фона / рамки (инспектор редактора) */
.info-page__body [data-fe-no-bg],
.home-custom-block [data-fe-no-bg]{
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}.info-page__body [data-fe-no-bg]::before,
.home-custom-block [data-fe-no-bg]::before{
  background: transparent !important;
  box-shadow: none !important;
}.info-page__body [data-fe-bg],
.home-custom-block [data-fe-bg]{
  background: var(--fe-block-bg) !important;
}.info-page__body [data-fe-bg="gradient"][data-fe-bg-gradient="brand"],
.home-custom-block [data-fe-bg="gradient"][data-fe-bg-gradient="brand"]{
  --fe-block-bg: linear-gradient(90deg, #ff3d8d, #7c3aed);
}.info-page__body [data-fe-bg="gradient"][data-fe-bg-gradient="warm"],
.home-custom-block [data-fe-bg="gradient"][data-fe-bg-gradient="warm"]{
  --fe-block-bg: linear-gradient(90deg, #f59e0b, #ef4444);
}.info-page__body [data-fe-bg="gradient"][data-fe-bg-gradient="cool"],
.home-custom-block [data-fe-bg="gradient"][data-fe-bg-gradient="cool"]{
  --fe-block-bg: linear-gradient(90deg, #06b6d4, #3b82f6);
}.info-page__body [data-fe-bg="gradient"][data-fe-bg-gradient="soft"],
.home-custom-block [data-fe-bg="gradient"][data-fe-bg-gradient="soft"]{
  --fe-block-bg: linear-gradient(135deg, rgba(var(--btn-focus-rgb), 0.18), rgba(124, 58, 237, 0.12));
}.info-page__body [data-fe-bg="gradient"][data-fe-bg-gradient="dark"],
.home-custom-block [data-fe-bg="gradient"][data-fe-bg-gradient="dark"]{
  --fe-block-bg: linear-gradient(135deg, #1f2937, #111827);
}.info-page__body .fe-text-grad--brand,
.home-custom-block .fe-text-grad--brand,
.info-page__body .fe-text-grad--warm,
.home-custom-block .fe-text-grad--warm,
.info-page__body .fe-text-grad--cool,
.home-custom-block .fe-text-grad--cool{
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}.info-page__body .fe-text-grad--brand,
.home-custom-block .fe-text-grad--brand{
  background-image: linear-gradient(90deg, #ff3d8d, #7c3aed);
}.info-page__body .fe-text-grad--warm,
.home-custom-block .fe-text-grad--warm{
  background-image: linear-gradient(90deg, #f59e0b, #ef4444);
}.info-page__body .fe-text-grad--cool,
.home-custom-block .fe-text-grad--cool{
  background-image: linear-gradient(90deg, #06b6d4, #3b82f6);
}.info-page__body [data-fe-block="heading"] h1,
.home-custom-block [data-fe-block="heading"] h1,
.info-page__body [data-fe-block="heading"] h2,
.home-custom-block [data-fe-block="heading"] h2,
.info-page__body [data-fe-block="heading"] h3,
.home-custom-block [data-fe-block="heading"] h3,
.info-page__body [data-fe-block="heading"] h4,
.home-custom-block [data-fe-block="heading"] h4{
  font-weight: 700;
}.info-page__body [data-fe-block="col"][data-fe-bg],
.home-custom-block [data-fe-block="col"][data-fe-bg]{
  background: transparent !important;
}.info-page__body [data-fe-block="col"][data-fe-bg]::before,
.home-custom-block [data-fe-block="col"][data-fe-bg]::before{
  background: var(--fe-block-bg) !important;
}.info-page__body [data-fe-no-bg][data-fe-bg],
.home-custom-block [data-fe-no-bg][data-fe-bg],
.info-page__body [data-fe-no-bg][data-fe-bg]::before,
.home-custom-block [data-fe-no-bg][data-fe-bg]::before{
  background: transparent !important;
  background-image: none !important;
}.info-page__body [data-fe-no-border],
.home-custom-block [data-fe-no-border]{
  border: 0 !important;
  border-color: transparent !important;
}.info-page__body [data-fe-no-border]::before,
.home-custom-block [data-fe-no-border]::before{
  border: 0 !important;
  border-color: transparent !important;
}.info-page__body [data-fe-no-bg][data-fe-no-border]::before,
.home-custom-block [data-fe-no-bg][data-fe-no-border]::before{
  content: none;
}.info-page__body [data-fe-block="text"],
.home-custom-block [data-fe-block="text"]{
  margin-left: 0;
  margin-right: 0;
}.info-page__body .fe-icon,
.home-custom-block .fe-icon,
.info-page__body [data-fe-block="icon"],
.home-custom-block [data-fe-block="icon"]{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  color: var(--primary);
  line-height: 0;
  margin: 0 0.2em;
}.info-page__body .fe-icon svg,
.home-custom-block .fe-icon svg,
.info-page__body [data-fe-block="icon"] svg,
.home-custom-block [data-fe-block="icon"] svg{
  display: block;
  flex-shrink: 0;
}.info-page__body [data-fe-block="image"],
.home-custom-block [data-fe-block="image"],
.info-page__body .fe-figure,
.home-custom-block .fe-figure{
  margin: 0;
  padding: 0.85rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(18, 19, 26, .10);
  box-shadow: 0 14px 40px rgba(18, 19, 26, .06);
  overflow: hidden;
}.info-page__body [data-fe-block="image"] img,
.home-custom-block [data-fe-block="image"] img,
.info-page__body .fe-figure img,
.home-custom-block .fe-figure img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}.info-page__body [data-fe-block="image"] figcaption,
.home-custom-block [data-fe-block="image"] figcaption,
.info-page__body .fe-figure figcaption,
.home-custom-block .fe-figure figcaption{
  display: none;
}.info-page__body h1,
.home-custom-block h1,
.info-page__body h2,
.home-custom-block h2,
.info-page__body .h1,
.home-custom-block .h1,
.info-page__body .h2,
.home-custom-block .h2,
.info-page__body .h4,
.home-custom-block .h4{
  letter-spacing: -0.02em;
}.home-custom-block > .container > div:not([data-fe-block]):not(.row):not(.container):not(.info-page__layout){
  border-radius: 1.25rem;
}
@media (max-width: 575.98px){.home-custom-block > .container{
    gap: 2rem;
  }.info-page__body [data-fe-block="section"],
.home-custom-block [data-fe-block="section"],
.home-custom-block > .container > section,
.info-page__body [data-fe-block="text"],
.home-custom-block [data-fe-block="text"],
.info-page__body [data-fe-block="heading"],
.home-custom-block [data-fe-block="heading"],
.info-page__body [data-fe-block="list"],
.home-custom-block [data-fe-block="list"],
.info-page__body ul.fe-list,
.home-custom-block ul.fe-list,
.info-page__body .fe-list,
.home-custom-block .fe-list{
    padding: 1.15rem 1.05rem;
    border-radius: 1.1rem;
  }.info-page__body [data-fe-block="row"],
.home-custom-block [data-fe-block="row"],
.info-page__body .row[data-fe-block="row"],
.home-custom-block .row[data-fe-block="row"]{
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

/* ——— Мобильная адаптация витрины ——— */
@media (max-width: 575.98px) {
  .hero-week-carousel__slide {
    scroll-snap-align: start;
  }

  body:has(.messenger-fab) .site-footer {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  #checkoutForm .checkout-submit {
    min-height: 3rem;
    width: 100%;
  }

  .mini-cart {
    width: min(100vw - 1.25rem, 380px) !important;
    max-width: calc(100vw - 1.25rem);
  }
}

@media (max-width: 767.98px) {
  .product-buy-panel.product-buy-sheet {
    position: sticky;
    bottom: 0;
    z-index: 30;
    margin-top: 0.75rem;
    padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 1.1rem 1.1rem 0 0;
    border: 1px solid rgba(18, 19, 26, 0.08);
    border-bottom: 0;
    box-shadow: 0 -10px 28px rgba(18, 19, 26, 0.1);
  }

  .product-buy-panel.product-buy-sheet .product-buy-sheet__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
    padding: 0 0 0.45rem;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .product-buy-panel.product-buy-sheet .product-buy-sheet__cell--meta,
  .product-buy-panel.product-buy-sheet .product-buy-sheet__notice {
    display: none;
  }

  body:has(.messenger-fab) .messenger-fab {
    bottom: max(6.25rem, calc(5.25rem + env(safe-area-inset-bottom, 0px)));
  }
}

