@charset "UTF-8";
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
/* ------------------------------------------------------------------------------------------------------------------------------
ROOT
--------------------------------------------------------------------------------------------------------------------------------*/
:root {
  --site-max-width: 116.25rem;
  --font-title: "Inter", sans-serif;
  --font-main: "Inter", sans-serif;
  --white: white;
  --black: black;
  --accent: #B584D3;
  --text: rgb(47, 47, 47);
  --hover: rgb(0, 0, 0, 0.55);
  --transition: all 0.3s ease-in-out;
}

/* ==========================================================================================================================
   BASIC ENTRANCE ANIMATIONS
============================================================================================================================ */
/* Плавное появление сверху (header reveal) */
@keyframes show-header {
  0% {
    inset-block-start: -100%;
  }
  100% {
    inset-block-start: 0;
  }
}
/* Fade + движение вверх (чуть заметное) */
@keyframes fade-up-big {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Просто fade */
@keyframes fade-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Плавное появление снизу */
@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Появление слева */
@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Появление справа */
@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ===================================================================
   SCALE ANIMATIONS
=================================================================== */
/* Лёгкий pop эффект */
@keyframes scale-in {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Сильный pop */
@keyframes scale-bounce {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* ===================================================================
   EXIT ANIMATIONS
=================================================================== */
/* Fade out */
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Slide вверх и исчезновение */
@keyframes slide-up-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-1rem);
  }
}
/* ===================================================================
   ROTATION
=================================================================== */
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Медленная постоянная анимация */
@keyframes rotation-slow {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ===================================================================
   MICRO INTERACTIONS
=================================================================== */
/* Hover-подъём */
@keyframes lift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-0.25rem);
  }
}
/* Лёгкое покачивание */
@keyframes wiggle {
  0%, 100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-1deg);
  }
  75% {
    transform: rotate(1deg);
  }
}
/* ===================================================================
   MODERN EFFECTS
=================================================================== */
/* Blur reveal (круто для hero текста) */
@keyframes blur-in {
  0% {
    opacity: 0;
    filter: blur(0.625rem);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
/* Clip reveal (эффект раскрытия) */
@keyframes clip-reveal {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------
MEDIAQUERIES 
--------------------------------------------------------------------------------------------------------------------------------*/
.scrollbar-none::-webkit-scrollbar {
  inline-size: 0;
  background-color: transparent;
}
.scrollbar-none::-webkit-scrollbar-track {
  background: transparent;
}
.scrollbar-none::-webkit-scrollbar-thumb {
  border: 0 none transparent;
  background-color: transparent;
}

/* =========================================================
   Global Overlay utility
   ========================================================= */
html.overlay-open {
  overflow: hidden;
  scrollbar-gutter: stable;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(0.125rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 500;
}
.overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================================================
   gasp
      ========================================================= */
.gsap-up,
.gsap-left,
.gsap-down,
.gsap-right,
.gsap-fadein,
.gsap-rise,
.gsap-zoomin {
  will-change: transform, opacity;
}

/* ========================================================
   slash
      ========================================================= */
/* Полноэкранный сплэш */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* фон страницы пока грузится */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* Простейшая анимация логотипа */
.splash-logo {
  width: 3.125rem;
  height: 3.125rem;
  border: 0.25rem solid #333;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Крутилка */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Когда скрываем сплэш */
#splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

/* =================================================================================================================================
   MODERN COMBINED RESET
   - based on modern-normalize + custom tweaks
   - fully compatible with Safari, Chrome, Firefox
=================================================================================================================================== */
/* ---------------------------------------------------------
   UNIVERSAL
--------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
*:focus, *:active,
*::before:focus,
*::before:active,
*::after:focus,
*::after:active {
  outline: none;
}

/* ---------------------------------------------------------
   HTML
--------------------------------------------------------- */
html {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

/* ---------------------------------------------------------
   BODY
--------------------------------------------------------- */
body {
  overscroll-behavior: none;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-main, system-ui, sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

/* ---------------------------------------------------------
   TEXT ELEMENTS
--------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

small {
  font-size: 80%;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1em;
}

/* ---------------------------------------------------------
   LINKS
--------------------------------------------------------- */
a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}

/* ---------------------------------------------------------
   LISTS
--------------------------------------------------------- */
ul,
li {
  list-style: none;
}

/* ---------------------------------------------------------
   IMAGES
--------------------------------------------------------- */
img {
  vertical-align: top;
}

/* ---------------------------------------------------------
   TABLES
--------------------------------------------------------- */
table {
  border-color: currentcolor;
}

/* ---------------------------------------------------------
   FORMS / BUTTONS / INPUTS
--------------------------------------------------------- */
input,
button,
textarea,
select,
optgroup {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* iOS / Safari fix */
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

input::-ms-clear {
  display: none;
}

/* ---------------------------------------------------------
   OTHER INTERACTIVE ELEMENTS
--------------------------------------------------------- */
summary {
  display: list-item;
}

progress {
  vertical-align: baseline;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -0.125rem;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* ---------------------------------------------------------
   NAV / HEADER / FOOTER / ASIDE
--------------------------------------------------------- */
nav,
header,
footer,
aside {
  display: block;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Base
--------------------------------------------------------------------------------------------------------------------------------*/
html {
  opacity: 0.1;
  scroll-behavior: smooth;
  transition: var(--transition);
}
html.loaded {
  opacity: 1;
}
html.lock {
  touch-action: none;
  overflow: hidden;
}
html.lock [data-lp] {
  padding-inline-end: var(--bh-scrollbar-width, 1rem);
}
html.lock .wrapper {
  margin-inline-end: var(--bh-scrollbar-width, 1rem);
}

html,
body {
  font-size: 1rem;
  margin: 0;
  background: #f6f6f6;
}

.container {
  min-width: 20rem;
  max-width: var(--site-max-width);
}

svg.icon {
  max-width: 2.5rem;
  max-height: 2.5rem;
}

.img-responsive {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.ibg {
  position: relative;
}
.ibg > img {
  display: block;
  position: absolute;
  inset-block-start: 0%;
  inset-inline-start: 0%;
  -o-object-fit: cover;
     object-fit: cover;
  block-size: 100%;
  inline-size: 100%;
}

.ibg-noblock {
  position: relative;
}
.ibg-noblock > img {
  position: absolute;
  inset-block-start: 0%;
  inset-inline-start: 0%;
  -o-object-fit: cover;
     object-fit: cover;
  block-size: 100%;
  inline-size: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 3.4375rem;
  /** Поменять на clip - если используется в проекте position: sticky */
  overflow: clip;
}

.main {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* ------------------------------------------------------------------------------------------------------------------------------
TYPOGRAPHY
--------------------------------------------------------------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
}

.typography {
  /* =========================================
     BASE TYPOGRAPHY for content page
     Breakpoints:
     0–575px   → mobile (base)
     576–991px → tablet
     992px+    → desktop
  ========================================= */
  /* =====================
     Headings
  ===================== */
  /* =====================
     Paragraph
  ===================== */
  /* =====================
     Lists
  ===================== */
  /* =====================
     Blockquote
  ===================== */
  /* =====================
     Links
  ===================== */
  /* =====================
     Tablet (576px+)
  ===================== */
  /* =====================
     Desktop (992px+)
  ===================== */
}
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
  margin: 0 0 1rem 0;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
}
.typography h1 {
  font-size: 1.75rem;
}
.typography h2 {
  font-size: 1.5rem;
}
.typography h3 {
  font-size: 1.25rem;
}
.typography h4 {
  font-size: 1.125rem;
}
.typography h5 {
  font-size: 0.875rem;
}
.typography p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
}
.typography ul,
.typography ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}
.typography li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.typography blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 0.25rem solid #000;
  background: #f5f5f5;
  font-style: italic;
}
.typography a {
  color: #000;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.typography a:hover {
  opacity: 0.7;
}

/* ------------------------------------------------------------------------------------------------------------------------------
ICONS
--------------------------------------------------------------------------------------------------------------------------------*/
.icon--burger {
  width: 1.1875rem;
  height: 1rem;
}

.icon--cart {
  width: 1rem;
  height: 1rem;
}

.icon--header-search {
  width: 0.9375rem;
  height: 1rem;
}

.icon--header-marker {
  width: 0.875rem;
  height: 1rem;
}

.icon--canvas-close {
  width: 0.8125rem;
  height: 0.8125rem;
}

.icon--canvas-telegram {
  width: 3.25rem;
  height: 3.25rem;
  color: #b584d3;
  transition: var(--transition);
}
.icon--canvas-telegram:hover {
  color: #2c99fe;
}

.icon--header-caret {
  width: 0.9375rem;
  height: 0.5625rem;
}

.icon--canvas-caret-right {
  width: 0.625rem;
  height: 0.9375rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Catalog products layout
 --------------------------------------------------------------------------------------------------------------------------------*/
.catalog__layout {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.catalog__content {
  width: 100%;
}

/* Sidebar — ТОЛЬКО desktop */
.catalog__sidebar {
  display: none;
}
/* ------------------------------------------------------------------------------------------------------------------------------
Products layout
 --------------------------------------------------------------------------------------------------------------------------------*/
/* Мобильная версия — 2 колонки */
.products__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
/* Планшет — 3 колонки */
/* Планшет — 3 колонки */
/*========================================================================================================================
* CONTAINER CONFIG 
* ========================================================================================================================
*/
/* =========================================================
   ROOT BREAKPOINT VARIABLES
========================================================= */
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 36rem;
  --bs-breakpoint-md: 48rem;
  --bs-breakpoint-lg: 62rem;
  --bs-breakpoint-xl: 75rem;
  --bs-breakpoint-xxl: 87.5rem;
}

/* =========================================================
   CONTAINER (mobile first)
========================================================= */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

/* =========================================================
   CONTAINER RESPONSIVE PADDING
========================================================= */
/* ------------------------------------------------------------------------------------------------------------------------------
 FOOTER
 --------------------------------------------------------------------------------------------------------------------------------*/
.footer {
  position: relative;
  background: #131314;
  color: #fff;
  padding-top: 1.5625rem;
  padding-bottom: 4.375rem;
  /* ================= TOP ROW ================= */
  /* ================= MENUS ================= */
  /* ================= HELPERS ================= */
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer::after {
  position: absolute;
  bottom: 0;
  left: 41.5%;
  transform: translateX(-50%);
  height: auto;
  aspect-ratio: 166/60;
  background-image: url("../images/webp/footer-phones.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.footer__top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4.0625rem;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 100%;
  height: inherit;
}
.footer__left-group {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  width: 14.4375rem;
  height: 6rem;
  margin-bottom: 2.875rem;
}
.footer__logo img {
  transition: var(--transition);
}
.footer__logo:hover img {
  transform: scale(1.025);
  margin-bottom: 0.625rem;
}
.footer__basetitle {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.footer__title {
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 100%;
  letter-spacing: -0.02em;
}
.footer__subtitle {
  color: var(--white);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  max-width: 18.75rem;
}
.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 24.5rem;
  min-width: 24.375rem;
  height: 3.375rem;
}
.footer__menus {
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 1.25rem;
  height: inherit;
}
.footer__menu {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6.875rem;
  width: 50%;
}
.footer__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.footer__menu--bigger li a {
  font-size: 1rem;
}
.footer__menu li {
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-size: 1rem;
}
.footer__menu li:hover {
  opacity: 0.7;
}
.footer__menu-title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin-bottom: 1.5625rem;
  font-size: 1.25rem;
}
.footer__requisites-mobile {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.footer__requisites-desktop {
  display: none;
}
.footer__requisites {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 65%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 0.625rem;
}
.footer__copyright {
  text-transform: uppercase;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  display: none;
  font-size: 0.625rem;
}
.footer__copyright--visible {
  display: block !important;
}
.footer__info {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  max-width: 15rem;
  font-size: 0.625rem;
}
.footer .max-md-hide {
  display: none;
}
.footer .min-md-width-50 {
  width: 50%;
}

/* ------------------------------------------------------------------------------------------------------------------------------
HEADER
--------------------------------------------------------------------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f6f6f6;
  height: 3.375rem;
  z-index: 400;
  /* Внутренний контейнер: горизонтальное выравнивание */
  /* Левая часть: логотип и прочее */
  /* Логотип */
  /* Навигация по центру */
  /* Правая часть: иконки, кнопки */
  /* Кнопки/иконки в шапке */
  /* Локация/доп. элементы */
  /* Бургер-меню (мобильное) */
}
.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left {
  display: flex;
  align-items: center;
}
.header__logo {
  width: 5.3125rem;
  height: 2.125rem;
}
.header__logo img {
  transition: var(--transition);
}
.header__logo:hover img {
  transform: scale(1.025);
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--black);
  transition: var(--transition);
}
.header__icon-btn:hover {
  color: var(--hover);
}
.header .cart-counter {
  position: absolute;
  bottom: -0.625rem;
  right: -0.625rem;
  background: #b584d3;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.5rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
}
.header__burger {
  display: none;
}

/* =========================
   Адаптив
========================= */
/* ------------------------------------------------------------------------------------------------------------------------------
 Products page layout
 --------------------------------------------------------------------------------------------------------------------------------*/
.product__title {
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: left;
  font-weight: 500;
  font-size: 1.5rem;
  display: block;
  padding-top: 0.625rem;
  margin-bottom: 1.25rem;
}

.product__layout {
  display: flex;
  flex-direction: column; /* mobile-first */
  padding-bottom: 1.5625rem;
  gap: 2.5rem;
  /* === Desktop layout >= 640px === */
}
.product__layout--gallery {
  width: 100%;
}
.product__layout--info {
  width: calc(100% + 1.25rem);
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
CATALOG PRODUCTS SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.catalog {
  padding-bottom: 6.25rem;
}
.catalog__title {
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: left;
  font-weight: 500;
  font-size: 1.75rem;
  margin-bottom: 0.3125rem;
}
.catalog__sorts-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  margin-bottom: 0.3125rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
CATALOG CATEGORIES SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.categories--home {
  padding-top: 2.1875rem;
  padding-bottom: 3.125rem;
}
.categories--catalog {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.categories--categories {
  padding-bottom: 6.25rem;
}
.categories__title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1.875rem;
}
.categories__title--categories {
  text-align: left;
  font-weight: 500;
  font-size: 1.75rem;
  margin-bottom: 1.5625rem;
}
.categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.categories-bottom-spaces {
  margin-bottom: 3.125rem;
}

/* =========================================================
   Catalog Highlights Section
   ========================================================= */
.highlights {
  /* ================= Ensure cards fill cells ================= */
}
.highlights__grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.highlights__gridgroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* Mobile layout: все по одному */
}
.highlights__gridgroup .highlights-card {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 370/192;
}
.highlights-img--desktop {
  display: none;
}
.highlights-img--mobile {
  display: block;
}
.highlights-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 0.9375rem;
  /* ================= TITLE ================= */
  /* ================= BUTTON ================= */
}
.highlights-card:hover {
  animation: lift 0.3s forwards;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
}
.highlights-card__title {
  position: relative;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.highlights-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.0625rem;
  height: 2.0625rem;
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.highlights-card__button svg {
  width: 0.875rem;
  height: 0.875rem;
}
.highlights-card__button:hover {
  background: #000;
  color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------------------
MAP SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.map {
  position: relative;
  background: #131314;
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  text-align: center;
  color: #fff;
  padding-top: 1.875rem;
  padding-bottom: 0.9375rem;
  margin-top: auto;
  /* ---------------- Overlay ---------------- */
  /* ---------------- Active state ---------------- */
}
.map__title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 1.875rem;
  margin-inline: auto;
  max-width: 29.5rem;
}
.map__box {
  position: relative;
  width: 100%;
  height: 39.0625rem;
  overflow: hidden;
  border-radius: 0.625rem;
  /* опционально — при наведении вернуть цвет */
}
.map__box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
  /* Чёрно-белый фильтр */
  filter: grayscale(100%);
  /* если хочется более "дизайнерский" эффект */
  transition: filter 500ms ease;
}
.map__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.map__box.is-active .map__overlay {
  opacity: 0;
  pointer-events: none;
}
.map__box.is-active iframe {
  filter: grayscale(0%);
}

/* ------------------------------------------------------------------------------------------------------------------------------
NEW PRODUCTS SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.new-products {
  padding: 4.6875rem 0;
  /* ---------------- Header ---------------- */
  /* ---------------- Arrows ---------------- */
  /* ---------------- Slider ---------------- */
}
.new-products__header {
  position: relative;
  padding-bottom: 3.4375rem;
  margin-bottom: 1.25rem;
}
.new-products__title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  font-size: 1.75rem;
  text-align: center;
}
.new-products__nav {
  position: absolute;
  right: 0;
  bottom: 0%;
  display: flex;
  gap: 0.75rem;
}
.new-products__arrow {
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.new-products__arrow.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.new-products .icon--slider-angle-left {
  width: 0.5rem;
  height: 1.0625rem;
}
.new-products .icon--slider-angle-right {
  width: 0.5rem;
  height: 1.0625rem;
}
.new-products__slider {
  overflow: visible;
}
.new-products__slider .swiper-wrapper {
  align-items: stretch;
}
.new-products__slider .swiper-slide {
  height: auto;
  display: flex;
}

/* =========================================================
   Home Promos Section
   ========================================================= */
.home-promos {
  padding-top: 0;
  /* ================= GRID ================= */
}
.home-promos__grid {
  display: grid;
  gap: 0.9375rem;
  /* Mobile layout */
  grid-template-columns: 1fr;
  grid-template-areas: "large" "top" "bottom";
  /* Tablet+ layout */
  /* Progressive height scaling */
}
.home-promos__grid .promo-card {
  aspect-ratio: 600/415;
}

/* =========================================================
   Grid Areas
   ========================================================= */
.promo-card--large {
  grid-area: large;
}

.promo-card--top {
  grid-area: top;
}

.promo-card--bottom {
  grid-area: bottom;
}

/* Ensure cards fill grid cells */
.promo-card {
  height: 100%;
}

/* ------------------------------------------------------------------------------------------------------------------------------
TRUST SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.trust {
  padding-top: 3.125rem;
  padding-bottom: 6.25rem;
}
.trust__title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: center;
  margin-bottom: 0.9375rem;
  font-size: 1.75rem;
}
.trust__description {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--black);
  font-size: 0.875rem;
  margin-bottom: 1.875rem;
  margin-inline: auto;
  max-width: 42rem;
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.page-content {
  padding-top: 0.9375rem;
  padding-bottom: 6.25rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
PRODUCT GALLERY
 --------------------------------------------------------------------------------------------------------------------------------*/
.product-gallery {
  width: 100%;
}
.product-gallery__container {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.product-gallery__thumbs {
  order: 2;
}
.product-gallery__main {
  order: 1;
}

/* === Main slider квадратный === */
.product-gallery__main {
  width: 100%;
  position: relative;
  border: 0.06625rem solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 368/385;
}
.product-gallery__slide {
  width: 100%;
}
.product-gallery__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product-gallery__main [data-fancybox] {
  cursor: zoom-in;
  cursor: url("../icons/search-cursor.svg") 16 16, zoom-in;
}
.product-gallery__main img {
  transition: transform 0.2s ease;
  transform-origin: center;
  will-change: transform; /* для производительности */
}

/* ------------------------------------------------------------------------------------------------------------------------------
PRODUCT GALLERY THUMBS
 --------------------------------------------------------------------------------------------------------------------------------*/
.product-gallery__thumbs {
  width: 100%;
  height: inherit;
}

.product-gallery__thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border-radius: 0.625rem;
  /* === Активный thumbnail — внутренний бордер === */
}
.product-gallery__thumb:hover img {
  transform: scale(1.05);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: var(--transition);
}
.product-gallery__thumb.swiper-slide-thumb-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.04);
}

/* ------------------------------------------------------------------------------------------------------------------------------
 Swiper arrows
 --------------------------------------------------------------------------------------------------------------------------------*/
.product-gallery__nav {
  z-index: 1;
  position: absolute;
  top: 50%;
  height: 0.0625rem;
  width: 100%;
  display: flex;
  gap: 0.5rem;
}

.product-gallery__arrow {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 1.625rem;
  height: 1.625rem;
}
.product-gallery__arrow svg {
  width: 0.25rem;
  height: 0.5rem;
}
.product-gallery__arrow--prev {
  left: 0.9375rem;
}
.product-gallery__arrow--next {
  right: 0.9375rem;
}

/* ===========================================================================================================================
   PRODUCT INFO
============================================================================================================================ */
.product-info {
  background: #fff;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1.5625rem 0.9375rem;
  /* ---------------------------------------------------------------
  Ограничительная обвертка для адаптива
  ----------------------------------------------------------*/
  /* ---------------------------------------------------------------
  Главный заголовок
  ----------------------------------------------------------*/
  /* ---------------------------------------------------------------
  Секции (отступы для адаптива)
  ----------------------------------------------------------*/
  /* ---------------------------------------------------------------
  Цена
  ----------------------------------------------------------*/
  /* ---------------------------------------------------------------
  Выбор цвета
  ----------------------------------------------------------*/
  /* ---------------------------------------------------------------
  Опции (Память, Тип Sim и др.)
  ----------------------------------------------------------*/
  /* ---------------------------------------------------------------
  Обвертка для кнопок
  ----------------------------------------------------------*/
  /* ---------------------------------------------------------------
  Элемент для выбора кол-ва товара( + 1 - )
  ----------------------------------------------------------*/
  /* ---------------------------------------------------------------
   Нижняя кнопка "запрос"
  ----------------------------------------------------------*/
}
.product-info__title {
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000;
  font-size: 0.875rem;
  margin-bottom: 0.9375rem;
}
.product-info fieldset {
  border: none;
  padding: 0;
  margin-inline: 0;
  margin-top: 0;
}
.product-info__section--color {
  margin-bottom: 1.875rem;
}
.product-info__section--memory {
  margin-bottom: 0.9375rem;
}
.product-info__section--sim {
  margin-bottom: 2.625rem;
}
.product-info__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem;
  margin-bottom: 1.5625rem;
  font-weight: 600;
}
.product-info__price-new, .product-info__price-old {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}
.product-info__price-new {
  color: #6c537b;
}
.product-info__price-current {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-left: 0;
}
.product-info__price-badge {
  background: #b584d3;
  color: #fff;
  font-size: 0.875rem;
  padding: 0 2.1875rem;
  height: 1.5625rem;
  border-radius: 6.25rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.product-info__color-list {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 0.5rem;
  justify-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.product-info__color-swatch {
  border-radius: 50%;
  border: 0.0625rem solid rgba(0, 0, 0, 0.65);
  display: block;
  cursor: pointer;
  background: var(--color);
  transition: 0.2s;
  width: 1.875rem;
  height: 1.875rem;
}
.product-info__color-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.product-info__color-item input:checked + .product-info__color-swatch {
  outline: 0.125rem solid #593c6d;
}
.product-info__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8125rem 0.625rem;
}
.product-info__option-label {
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.65);
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
  min-width: 6.4375rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
}
.product-info__option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.product-info__option input:checked + .product-info__option-label {
  border-color: #593c6d;
  background: #f4f4f4;
}
.product-info__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.product-info__quantity {
  border: 0.0625rem solid #000;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f6f6;
  min-height: 3.375rem;
  width: 100%;
  width: 7.125rem;
  padding: 0.75rem;
}
.product-info__quantity-input {
  width: 2.5rem;
  text-align: center;
  border: none;
  font-size: 1.125rem;
  background: #f6f6f6;
}
.product-info__quantity-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}
.product-info__quantity .icon--count-minus,
.product-info__quantity .icon--count-plus {
  color: #374957;
  width: 1.125rem;
  height: 1.125rem;
  transition: color 0.3s ease-in-out;
}
.product-info__quantity .icon--count-minus:hover,
.product-info__quantity .icon--count-plus:hover {
  color: black;
}
.product-info__request-btn {
  height: 3.625rem;
  border-radius: 1.25rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  border: 0.0625rem solid rgba(89, 60, 109, 0.3);
  background: transparent;
  color: #593c6d;
  margin-top: 0.75rem;
  height: 3.375rem;
  font-size: 1.125rem;
  transition: all 0.3s ease-in-out;
}
.product-info__request-btn:hover {
  background-color: #f4f4f4;
}

/* ------------------------------------------------------------------------------------------------------------------------------
RECOMMENDED PRODUCTS SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.recommended {
  padding: 3.125rem 0 6.25rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.recommended__title {
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: left;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1.375rem;
}
.recommended__slider .swiper-wrapper {
  align-items: stretch;
}
.recommended__slider .swiper-slide {
  display: flex;
  height: auto;
}
.recommended__card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.9375rem;
  background: #fff;
  border-radius: 1.25rem;
  text-align: center;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Swiper arrows
--------------------------------------------------------------------------------------------------------------------------------*/
.recommended__nav {
  position: absolute;
  top: 37%;
  width: 100%;
  height: 0.0625rem;
  display: flex;
  gap: 0.5rem;
  z-index: 1;
}

.recommended__arrow {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background: #ddd;
  width: 1.625rem;
  height: 1.625rem;
  /* 375px */
  /* 640px */
}
.recommended__arrow svg {
  width: 0.25rem;
  height: 0.5rem;
}
.recommended__arrow--prev {
  left: 0.9375rem;
}
.recommended__arrow--next {
  right: 0.9375rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
PRODUCT TABS SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.product-tabs {
  padding-top: 1.5625rem;
  padding-bottom: 3.125rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
NAV
--------------------------------------------------------------------------------------------------------------------------------*/
.product-tabs__nav {
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.product-tabs__btn {
  position: relative;
  height: auto;
  margin-left: 0.75rem;
  padding: 0.3125rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: left;
  font-size: 0.875rem;
  /* Layout rules (mobile) */
  /* Active state (mobile underline) */
  /* Desktop style */
}
.product-tabs__btn:first-child {
  margin-left: 0;
  width: 37%;
}
.product-tabs__btn:nth-child(2) {
  flex: 1;
}
.product-tabs__btn:last-child {
  flex: 0;
  padding-right: 2.8125rem;
}
.product-tabs__btn.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 0.125rem solid #000;
}

/* ------------------------------------------------------------------------------------------------------------------------------
CONTENT
--------------------------------------------------------------------------------------------------------------------------------*/
.product-tabs__content {
  position: relative;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000;
}
.product-tabs__content span {
  margin-right: 0.3rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
ANIMATION
--------------------------------------------------------------------------------------------------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------
PRODUCT TABS TYPOGRAPHY
--------------------------------------------------------------------------------------------------------------------------------*/
.product-tabs__pane {
  display: none;
  opacity: 0;
  color: #000;
}
.product-tabs__pane.is-active {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}
.product-tabs__pane h3 {
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
  font-size: 1.5rem;
}
.product-tabs__pane p {
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 0.9375rem;
  font-size: 0.875rem;
}
.product-tabs__pane ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.625rem 0;
}
.product-tabs__pane ul li {
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-size: 0.875rem;
}

/* =========================================================
   Breadcrumbs
   ========================================================= */
.breadcrumbs {
  background: #f6f6f6;
  padding: 0.9375rem 0;
  /* Ссылка (серенькая) */
  /* Текущая страница (чёрная) */
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.9375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
  font-size: 0.875rem;
}
.breadcrumbs__separator {
  color: rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.breadcrumbs__link {
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  color: rgba(0, 0, 0, 0.5);
}
.breadcrumbs__link:hover {
  color: #000;
  opacity: 0.8;
}
.breadcrumbs__current {
  color: #000;
  font-weight: 500;
}

/* ------------------------------------------------------------------------------------------------------------------------------
УНИВЕРСАЛЬНАЯ КНОПКА (ВАРИАНТЫ)
 --------------------------------------------------------------------------------------------------------------------------------*/
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Базовый padding, автоширина */
  border: transparent;
  overflow: hidden;
  align-self: flex-start;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  height: 2.0625rem;
  border-radius: 0.8125rem;
  cursor: pointer;
  padding-inline: 1.875rem;
  transition: transform 0.08s ease, box-shadow 0.2s ease;
  /* ================= GRADIENT LAYER ================= */
  /* ================= TEXT ================= */
  /* ================= ICON ================= */
  /* ================= STATES ================= */
  /* ================= SIZES ================= */
  /* ================= COLOR VARIANTS ================= */
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: background-position 0.6s ease;
}
.btn:hover::before {
  background-position: 100% 50%;
}
.btn__text {
  position: relative;
  z-index: 2;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.35), 0 0 0.0625rem rgba(0, 0, 0, 0.2);
}
.btn__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  height: 2.375rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.btn__icon img,
.btn__icon svg {
  aspect-ratio: 1/1;
  height: 2.375rem;
  width: auto;
}
.btn:active {
  transform: scale(0.97);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.1875rem rgba(108, 83, 123, 0.35);
}
.btn:disabled, .btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn--full {
  width: 100%;
}
.btn--fullheight {
  height: 3.3125rem;
  width: 100%;
  font-size: 1.125rem;
  border-radius: 1.25rem;
}
.btn--info {
  flex: 1;
  height: 3.375rem;
  font-size: 1rem;
  border-radius: 1.25rem;
}
.btn--catalog {
  flex: 1;
  height: 3.6875rem;
  font-size: 1.1875rem;
  border-radius: 1.375rem;
}
.btn--new {
  flex: 1;
  height: 2.0625rem;
  font-size: 0.6875rem;
  border-radius: 0.8125rem;
}
.btn--cart {
  width: 100%;
  height: 3.3125rem;
  font-size: 1.125rem;
  border-radius: 1.25rem;
}
.btn--tg {
  height: 3.3125rem;
  width: 100%;
  max-width: 24.5rem;
  border-radius: 6.25rem !important;
}
.btn--tg .btn__text {
  font-size: 1rem;
}
.btn--tg-full {
  width: 100%;
  height: 3.3125rem;
  border-radius: 6.25rem !important;
}
.btn--tg-full .btn__text {
  font-size: 1rem;
}
.btn--recommended_dark {
  font-size: 1.125rem;
  padding-inline: 0.3125rem;
  border-radius: 1.25rem;
  color: #fff;
  background-color: #6c537b;
  width: 100%;
  height: 3.375rem;
}
.btn--recommended_white {
  font-size: 1.125rem;
  padding-inline: 0.3125rem;
  border-radius: 1.25rem;
  width: 100%;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  color: black;
  transition: all 0.3s ease-in-out;
  height: 3.375rem;
}
.btn--recommended_white:before {
  content: none;
}
.btn--recommended_white:hover {
  background-color: #f4f4f4;
}
.btn--dark {
  color: #fff;
  background-color: #6c537b;
}
.btn--gray {
  color: #fff;
  background-color: #b4afb7;
}
.btn--light {
  color: #fff;
  background-color: #c9aadc;
}

/* ------------------------------------------------------------------------------------------------------------------------------
КАРТОЧКА КАТЕГОРИИ
--------------------------------------------------------------------------------------------------------------------------------*/
.categories-card {
  display: block;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5625rem 1.5625rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 370/257;
  transition: box-shadow 0.3s ease;
}
.categories-card img {
  inset-block-start: 10%;
  inset-inline-start: 10%;
  -o-object-fit: contain;
     object-fit: contain;
  block-size: 90%;
  inline-size: 90%;
}
.categories-card:hover {
  animation: lift 0.3s forwards;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
}
.categories-card__title {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  font-size: 1.125rem;
}
.categories-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.0625rem;
  height: 2.0625rem;
  border-radius: 50%;
  background: #ddd;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.categories-card__button svg {
  width: 0.875rem;
  height: 0.875rem;
}
.categories-card__button:hover {
  background: #000;
  color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------------------
КАРТОЧКА ТОВАРА \ PRODUCT CARD
--------------------------------------------------------------------------------------------------------------------------------*/
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* ---------------- Image Wrapper ---------------- */
  /* ---------------- Content ---------------- */
}
.product-card__image-wrapper {
  position: relative;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.8125rem;
  background: #fff;
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  display: block;
  /* Hover эффект: масштаб изображения */
  transition: transform 0.4s ease;
}
.product-card__image-wrapper:hover .product-card__image {
  transform: scale(1.05);
}
.product-card__image {
  block-size: 100%;
  inline-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease; /* плавный переход для hover */
}
.product-card__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1; /* растягиваем */
  justify-content: space-between;
  padding-top: 0.625rem;
}
.product-card__title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-size: 0.5rem;
  margin-bottom: 0.625rem;
  max-width: 85%;
  margin-inline: auto;
}
.product-card__title a {
  color: #000;
  text-decoration: none;
}
.product-card__price {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  font-size: 0.6875rem;
}
.product-card__group {
  margin-top: auto; /* прижимает к низу */
}
.product-card__button {
  width: 100%;
  margin-top: 0.75rem;
}

.new-products .product-card__title {
  font-size: 0.5rem;
  margin-bottom: 0.75rem;
}
.new-products .product-card__price {
  font-size: 0.6875rem;
}
.new-products .product-card__content {
  padding-top: 0.9375rem;
}
.new-products .product-card__button {
  margin-top: 0.9375rem;
}

.catalog .product-card__title {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}
.catalog .product-card__price {
  font-size: 1.1875rem;
}
.catalog .product-card__content {
  padding-top: 0.9375rem;
}
.catalog .product-card__button {
  margin-top: 1.25rem;
}

/* =========================================================
   КАРТОЧКА ПРОМО \ Promo Card
   ========================================================= */
.promo-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.625rem;
  padding-inline: 0.625rem;
  padding-bottom: 0.625rem;
  transition: transform 0.3s ease;
  /* ================= CONTENT ================= */
  /* ================= TITLE ================= */
  /* ================= PRICE ================= */
  /* ================= SIZE MODIFIERS ================= */
  /* ================= BUTTON ================= */
  /* ================= LABEL ================= */
}
.promo-card:hover {
  transform: scale(1.01);
}
.promo-card__content {
  position: relative;
  z-index: 2;
}
.promo-card__title {
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.promo-card__price {
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: 0.875rem;
}
.promo-card--large, .promo-card--top, .promo-card--bottom {
  padding-top: 0.625rem;
}
.promo-card--large .promo-card__button {
  top: 0.625rem;
}
.promo-card--top .promo-card__button {
  top: 0.625rem;
}
.promo-card--bottom .promo-card__button {
  top: 0.625rem;
}
.promo-card__button {
  position: absolute;
  right: 0.625rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.0625rem;
  height: 2.0625rem;
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.promo-card__button svg {
  width: 0.875rem;
  height: 0.875rem;
}
.promo-card__button:hover {
  background: #000;
  color: #fff;
}
.promo-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  margin-bottom: 1.25rem;
  padding: 0.6875rem;
  height: 1.625rem;
  border-radius: 3.5rem;
  border: 0.035rem solid #fff;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: 0.75rem;
  background: #fff;
  color: var(--black);
  z-index: 2;
}
.promo-card__label img {
  width: 0.75rem;
  height: 0.75rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
КАРТОЧКА ТОВАРА | RECOMMENDED PRODUCT CARD
--------------------------------------------------------------------------------------------------------------------------------*/
.recommended-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* ---------------- Image Wrapper ---------------- */
  /* ---------------- Content ---------------- */
}
.recommended-card__image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.8125rem;
  aspect-ratio: 368/385;
  transition: transform 0.4s ease;
}
.recommended-card__image-wrapper:hover .recommended-card__image {
  transform: scale(1.05);
}
.recommended-card__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.recommended-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  text-align: center;
  padding-top: 0.9375rem;
}
.recommended-card__group {
  margin-top: auto;
}
.recommended-card__title {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
  padding-inline: 1.25rem;
}
.recommended-card__title a {
  color: #000;
  text-decoration: none;
}
.recommended-card__price {
  display: none;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--black);
  font-size: 1.125rem;
}
.recommended-card__buttons {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.75rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
КАРТОЧКА "ПОЧЕМУ ВЫБИРАЮТ НАС" \ TRUST CARD
--------------------------------------------------------------------------------------------------------------------------------*/
.trust-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.25rem;
  border-radius: 1.0625rem;
  overflow: hidden;
  background-color: #5e4b8b; /* фиолетовый fallback */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 37/24;
  color: #fff;
}
.trust-card__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.trust-card__title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}
.trust-card__number {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgba(244, 244, 244, 0.7);
  font-size: 1.6875rem;
}
.trust-card__text {
  position: relative;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  max-width: 60%;
  font-size: 0.875rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
КАСТОМНЫЙ ЧЕКБОКС модалки
 --------------------------------------------------------------------------------------------------------------------------------*/
/* Контейнер чекбокса */
/* Лейбл как inline-flex */
.cart-check__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  position: relative; /* для абсолютного позиционирования галочки */
  margin-bottom: 0.8125rem;
}
.cart-check__label--approval {
  margin-bottom: 0;
  margin-top: -0.625rem;
}

/* Скрываем нативный input */
.cart-check__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Кастомный квадрат */
.cart-check__custom {
  width: 1.125rem;
  height: 1.125rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.125rem;
  background: #f4f4f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative; /* для галочки */
  flex-shrink: 0;
  transition: background 0.2s, border 0.2s;
}

/* Галочка по умолчанию скрыта, абсолютная внутри квадрата */
.cart-check__custom svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.75rem; /* под размер квадрата */
  height: 0.75rem;
  display: none;
}

/* Когда checked — показываем галочку и меняем фон */
.cart-check__input:checked + .cart-check__custom svg {
  color: rgba(0, 0, 0, 0.8);
  display: block;
}

/* Текст рядом */
.cart-check__text {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
  font-size: 0.875rem;
}
.cart-check__text a {
  color: #000;
  text-decoration: underline;
}
.cart-check__text a:hover {
  text-decoration: none;
}
.cart-check__text--approval {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
  font-size: 0.75rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
=== Overlay и модалка === 
 --------------------------------------------------------------------------------------------------------------------------------*/
.cart-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Полная высота окна */
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: flex-start; /* Чтобы модалка шла сверху */
  overflow-y: auto; /* Скролл всей страницы оверлея */
  z-index: 10000;
  animation: fade-up 0.25s ease forwards;
  padding: 4.6875rem 0.625rem;
}

.cart-modal-overlay.active {
  display: flex;
}

/* ------------------------------------------------------------------------------------------------------------------------------
=== модалка === 
 --------------------------------------------------------------------------------------------------------------------------------*/
.cart-modal {
  background: #fff;
  width: 100%;
  max-width: 46.75rem;
  margin: 0 auto 3.75rem auto;
  box-sizing: border-box;
  border-radius: 1.25rem;
  padding: 1.25rem;
}
.cart-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8125rem;
}
.cart-modal__title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
  font-size: 1.25rem;
}
.cart-modal__close {
  flex-shrink: 0;
  border-radius: 50%;
  border: 0.0625rem solid rgb(0, 0, 0);
  background: none;
  cursor: pointer;
  color: rgb(0, 0, 0);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
}
.cart-modal__close:hover {
  border: 0.0625rem solid rgba(0, 0, 0, 0.45);
  color: rgba(0, 0, 0, 0.45);
}
.cart-modal__close svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
=== Карточки товаров === 
 --------------------------------------------------------------------------------------------------------------------------------*/
.cart-cards {
  display: flex;
  flex-direction: column;
}

.cart-counter--desktop {
  display: none;
  flex-grow: 1;
  align-items: flex-end;
}

.cart-check__label--card {
  margin-bottom: 0 !important;
  position: absolute;
  z-index: 10;
  left: 0.0625rem;
  top: 0.625rem;
}

.cart-card__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.cart-card__wrapper:first-child .cart-card {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.2);
}

.cart-card {
  display: block;
  width: 100%;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
  padding-block: 0.625rem;
  padding-inline: 0.625rem;
}
.cart-card__row {
  display: flex;
  gap: 0.3125rem;
}
.cart-card__inner {
  display: flex;
  gap: 0.625rem;
  flex-direction: column;
}
.cart-card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.cart-card__info-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
.cart-card__image {
  overflow: hidden;
  flex-shrink: 0;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.625rem;
  width: 4.125rem;
  height: 4.125rem;
}
.cart-card__image img {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cart-card__image:hover img {
  transform: scale(1.025);
}
.cart-card__title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
  font-size: 0.75rem;
}
.cart-card__options li {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
}
.cart-card__actions {
  flex-shrink: 0;
  margin-inline: auto;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.cart-card__counter button, .cart-card__remove {
  flex-shrink: 0;
  border-radius: 50%;
  border: 0.0625rem solid rgba(0, 0, 0, 0.5);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  width: 0.8125rem;
  height: 0.8125rem;
}
.cart-card__counter button svg, .cart-card__remove svg {
  width: 0.4375rem;
  height: 0.4375rem;
}
.cart-card__counter button:hover, .cart-card__remove:hover {
  color: rgb(0, 0, 0);
}
.cart-card__remove--md {
  display: none;
}
.cart-card__remove--xs {
  display: flex;
}
.cart-card__counter {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.cart-card__counter span {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  min-width: 1rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.4375rem;
}
.cart-card__counter svg {
  width: 0.8125rem;
  height: 0.8125rem;
}
.cart-card__price {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
=== Тотал и описание === 
 --------------------------------------------------------------------------------------------------------------------------------*/
.cart-modal__total {
  text-align: right;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
}
.cart-modal__total--top {
  padding-top: 0.625rem;
  margin-bottom: 1.875rem;
  font-size: 0.875rem;
}
.cart-modal__total--bottom {
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000;
  padding-top: 0;
  margin-bottom: 0.3125rem;
  margin-top: -0.625rem;
  font-size: 0.875rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
=== Дополнительно (две колонки) === 
 --------------------------------------------------------------------------------------------------------------------------------*/
.cart-modal__description {
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000;
  font-size: 0.875rem;
  margin-bottom: 1.5625rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
ИНПУТЫ  - Телефон и Имя
 --------------------------------------------------------------------------------------------------------------------------------*/
/* === Форма === */
.cart-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cart-modal__form input[type=text],
.cart-modal__form input[type=tel] {
  border: none;
  background: none;
  width: 100%;
  outline: none;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgb(0, 0, 0);
  height: 3.3125rem;
  font-size: 0.875rem;
}
.cart-modal__form input[type=text]::-moz-placeholder, .cart-modal__form input[type=tel]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.cart-modal__form input[type=text]::placeholder,
.cart-modal__form input[type=tel]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.cart-modal__form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.125rem;
}
.cart-modal__form-input {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  padding: 0 1.25rem;
  background: #f9f9f9;
  height: 3.3125rem;
}
.cart-modal__form-input img {
  width: 1.5625rem;
  height: 1.0625rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-modal__form-input.input-error {
  border: 0.0625rem red solid !important;
}

/* ------------------------------------------------------------------------------------------------------------------------------
===  радио кнопки
 --------------------------------------------------------------------------------------------------------------------------------*/
.cart-radio__title {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
=== Дополнительно (две колонки) === 
 --------------------------------------------------------------------------------------------------------------------------------*/
.cart-additional__title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
  padding-top: 0.625rem;
  margin-bottom: 0.9375rem;
  font-size: 1.25rem;
}
.cart-additional__card {
  display: flex;
  gap: 0.625rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-radius: 1.25rem;
  padding: 0.5rem;
  align-items: center;
}
.cart-additional__card-image {
  overflow: hidden;
  flex-shrink: 0;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  width: 8.375rem;
  height: 8.375rem;
}
.cart-additional__card-image img {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cart-additional__card-image:hover img {
  transform: scale(1.025);
}
.cart-additional__card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-additional__card-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cart-additional__card-title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
  padding-top: 0.3125rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}
.cart-additional__card-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  color: white;
  padding-bottom: 0.625rem;
}
.cart-additional__card-add {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  background: none;
  cursor: pointer;
  background-color: #b584d3;
  transition: all 0.3s ease-in-out;
}
.cart-additional__card-add:hover {
  transform: scale(1.05);
}
.cart-additional__card-add svg {
  color: white;
  width: 1.25rem;
  height: 1.25rem;
}
.cart-additional__card-price {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.125rem;
}
.cart-additional [data-cart-additional] {
  position: relative;
  z-index: 10;
}

/* ------------------------------------------------------------------------------------------------------------------------------
КАСТОМНЫЙ РАДИО модалки
 --------------------------------------------------------------------------------------------------------------------------------*/
.cart-radio__labels {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* Лейбл как inline-flex */
.cart-radio__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  position: relative; /* для абсолютного позиционирования галочки */
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.5);
}

/* Скрываем нативный input */
.cart-radio__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Кастомный кружочек */
.cart-radio__custom {
  width: 1.3125rem;
  height: 1.3125rem;
  border: 0.0625rem solid rgb(0, 0, 0);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative; /* для галочки */
  flex-shrink: 0;
  transition: background 0.2s, border 0.2s;
}

/* Галочка по умолчанию скрыта, абсолютная внутри квадрата */
.cart-radio__custom span.point {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.4375rem; /* под размер квадрата */
  height: 0.4375rem;
  border-radius: 50%;
  display: none;
}

/* Когда checked — показываем галочку и меняем фон */
.cart-radio__input:checked + .cart-radio__custom span.point {
  background-color: #000;
  display: block;
}

/* Текст рядом */
.cart-radio__text {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-size: 0.875rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Навигация свайпера для модалки
 --------------------------------------------------------------------------------------------------------------------------------*/
.cart-additional {
  /* ---------------- Arrows ---------------- */
}
.cart-additional__header {
  position: relative;
}
.cart-additional__nav {
  position: absolute;
  right: 0;
  bottom: 0%;
  display: flex;
  gap: 0.75rem;
}
.cart-additional__arrow {
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.cart-additional__arrow.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.cart-additional .icon--slider-angle-left {
  width: 0.5rem;
  height: 1.0625rem;
}
.cart-additional .icon--slider-angle-right {
  width: 0.5rem;
  height: 1.0625rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
КНОПКИ ДЛЯ ФИЛЬТРА (МОБИЛЬНЫЕ)
 --------------------------------------------------------------------------------------------------------------------------------*/
/* Мобильная версия — mobile first */
.filter-toggle,
.filter-sorting {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* расстояние между иконкой и текстом */
  padding: 0.625rem 0;
  color: var(--black);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem; /* размер текста по умолчанию */
  line-height: 1;
  transition: var(--transition);
}
.filter-toggle svg.icon--filter-sorting,
.filter-sorting svg.icon--filter-sorting {
  width: 1.0625rem;
  height: 1.0625rem;
  fill: currentColor; /* цвет совпадает с текстом */
}
.filter-toggle svg.icon--filter-toggle,
.filter-sorting svg.icon--filter-toggle {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor; /* цвет совпадает с текстом */
}
.filter-toggle:hover,
.filter-sorting:hover {
  color: rgba(0, 0, 0, 0.7);
}

/* ------------------------------------------------------------------------------------------------------------------------------
МОБИЛЬНЫЙ ФИЛЬТР
 --------------------------------------------------------------------------------------------------------------------------------*/
.filter-c {
  position: fixed;
  top: 0;
  left: 0;
  width: 17.9375rem;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1200;
  padding: 0.9375rem 1.125rem 1.5625rem 0.9375rem;
  display: flex;
  flex-direction: column;
}

.filter-c-wrap {
  flex: 1;
  width: 100%; /* можно подстроить под дизайн */
  background: #fff;
  font-family: sans-serif;
}
.filter-c-wrap--parent {
  overflow-y: auto;
}
.filter-c-wrap--child {
  border-left: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
.filter-c-wrap--sort {
  border: transparent;
}

.filter-c-caret {
  transition: transform 0.3s ease;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.5rem;
}

.filter-c.active {
  transform: translateX(0);
}

.filter-c-header {
  padding: 0.9375rem;
  font-weight: 500;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
}
.filter-c-header__title {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000;
  display: block;
  margin-bottom: 0.625rem;
}
.filter-c-header--sort {
  gap: 0.0625rem;
  padding-inline-start: 0.5rem;
}
.filter-c-header--parent {
  padding-bottom: 0.9375rem;
  padding-inline: 0;
}

.filter-c-header.is-selected {
  background: #f2f2f2;
  font-weight: 600;
}

.filter-c-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Контент */
.filter-c-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0 0.9375rem; /* только горизонтальный */
}
.filter-c-content--sort {
  padding-inline: 0;
}

.filter-c-inner {
  padding-bottom: 0.625rem; /* вертикальный padding внутри */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-c-title {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: -0.02em;
}

.filter-c-list {
  padding-top: 0.3125rem;
  gap: 0 !important;
}

.filter-c-item {
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  padding-inline: 0.625rem;
  padding-block: 0.5rem;
  color: rgba(0, 0, 0, 0.5);
}
.filter-c-item.active {
  color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.025) !important;
}
.filter-c-item:hover {
  color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.01);
}

/* --- Общий стиль секций --- */
.filter-c-section {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
.filter-c-section--sort {
  margin-bottom: 0.3125rem;
  border: transparent;
}

.filter-c-section--parent {
  border-bottom: 0.0625rem solid transparent;
}

/* Когда активен — добавим отступ снизу */
.filter-c-section.parent > .filter-c-header .caret {
  transition: transform 0.3s ease;
  color: rgba(0, 0, 0, 0.5);
}

.filter-c-section .filter-c-section:last-child {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0);
}

.filter-c-section.parent.active > .filter-c-header .caret {
  transform: rotate(180deg);
  color: rgb(0, 0, 0);
}

.filter-c-label {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: -0.02em;
}

.filter-c-section--child.active .filter-c-caret {
  transform: rotate(180deg);
  color: rgb(0, 0, 0);
}

.filter-c-section--child .filter-c-label {
  color: rgba(0, 0, 0, 0.5);
}

.filter-c-section--child.active .filter-c-label {
  color: rgb(0, 0, 0);
}

.filter-c-footer {
  margin-top: auto;
  padding-top: 1.5625rem;
}

/*===============================================
Иконки
=================================================*/
.icon--filter-c {
  width: 1.125rem;
  height: 1.125rem;
}
.icon--close-c {
  width: 0.875rem;
  height: 0.875rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
КАСТОМНЫЙ ЧЕКБОКС ФИЛЬТРА
 --------------------------------------------------------------------------------------------------------------------------------*/
/* Контейнер чекбокса */
/* Лейбл как inline-flex */
.filter-check__label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.5);
  position: relative; /* для абсолютного позиционирования галочки */
}

/* Скрываем нативный input */
.filter-check__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Кастомный квадрат */
.filter-check__custom {
  width: 1.75rem;
  height: 1.75rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.125rem;
  background: #f9f9f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative; /* для галочки */
  flex-shrink: 0;
  transition: background 0.2s, border 0.2s;
}

/* Галочка по умолчанию скрыта, абсолютная внутри квадрата */
.filter-check__custom svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem; /* под размер квадрата */
  height: 1rem;
  display: none;
}

/* Когда checked — показываем галочку и меняем фон */
.filter-check__input:checked + .filter-check__custom svg {
  color: rgba(0, 0, 0, 0.8);
  display: block;
}

/* Текст рядом */
.filter-check__text {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
}

/* Кол-во рядом */
.filter-check__count {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.3);
  line-height: 1;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Sidebar STICKY
 --------------------------------------------------------------------------------------------------------------------------------*/
.sidebar {
  overflow-y: auto;
}

/* ------------------------------------------------------------------------------------------------------------------------------
SIDEBAR FILTER
--------------------------------------------------------------------------------------------------------------------------------*/
/* --- Общий контейнер --- */
.filter-s {
  width: 100%; /* можно подстроить под дизайн */
  background: #fff;
  font-family: sans-serif;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-left: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.2);
}

/* --- Кнопки --- */
.filter-s-header {
  width: 100%;
  padding: 0.9375rem;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
}
.filter-s-header--parent {
  color: black;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}

.filter-s-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Дочерние контенты --- */
/* Контент */
.filter-s-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0 0.9375rem; /* только горизонтальный */
}

.filter-s-inner {
  padding-bottom: 0.625rem; /* вертикальный padding внутри */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* --- Общий стиль секций --- */
.filter-s-section {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}

/* Когда активен — добавим отступ снизу */
.filter-s-section.parent > .filter-s-header .caret {
  transition: transform 0.3s ease;
  color: rgba(0, 0, 0, 0.5);
}

.filter-s-section .filter-s-section:last-child {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0);
}

.filter-s-section.parent.active > .filter-s-header .caret {
  transform: rotate(180deg);
  color: rgb(0, 0, 0);
}

.filter-s-caret {
  transition: transform 0.3s ease;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.5rem;
  margin-right: 0.25rem;
}

.filter-s-label {
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: -0.02em;
}

.filter-s-section--child.active .filter-s-caret {
  transform: rotate(180deg);
  color: rgb(0, 0, 0);
}

.filter-s-section--child .filter-s-label {
  color: rgba(0, 0, 0, 0.5);
}

.filter-s-section--child.active .filter-s-label {
  color: rgb(0, 0, 0);
}

/*===============================================
Иконки
=================================================*/
.icon--filter-s {
  width: 1.125rem;
  height: 1.125rem;
}
.icon--caret-s {
  width: 0.8125rem;
  height: 0.4375rem;
}
/*==========================================================================================================================
  СЛАЙДЕР ЦЕН ДЛЯ ФИЛЬТРА noUiSlider 
===========================================================================================================================*/
.filter-price__boxes {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  height: 2.625rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  background-color: #f9f9f9;
}

.filter-price__box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.4);
}

.filter-price__box span {
  line-height: 1;
}

.filter-price__slider {
  --track-height: 0.25rem;
  --handle-size: 1.5rem;
  margin-top: 0.9375rem;
  width: calc(100% - var(--handle-size));
  margin-inline: auto;
  margin-bottom: 1.5625rem;
}

/* Трек */
.filter-price__slider.noUi-target {
  position: relative;
  height: var(--track-height);
  border-radius: 1.25rem;
  background: #e9ecef;
  border: none;
  box-shadow: none;
}
.filter-price__slider.noUi-target:before {
  position: absolute;
  top: 0;
  left: calc(var(--handle-size) / -2);
  content: "";
  height: var(--track-height);
  width: var(--handle-size);
  background: #e9ecef;
  border-radius: 1.25rem;
}
.filter-price__slider.noUi-target:after {
  position: absolute;
  top: 0;
  right: calc(var(--handle-size) / -2);
  content: "";
  height: var(--track-height);
  width: var(--handle-size);
  background: #e9ecef;
  border-radius: 1.25rem;
}

/* Активная часть */
.filter-price__slider .noUi-connect {
  background: #b584d3;
}

/* Бегунок */
.filter-price__slider .noUi-handle {
  width: var(--handle-size);
  height: var(--handle-size);
  border-radius: 50%;
  background: #b584d3;
  box-shadow: initial !important;
  top: 50%;
  transform: translateY(-35%);
  margin-right: calc(var(--handle-size) / 5); /* ← универсально */
  cursor: pointer;
}

.filter-price__slider .noUi-handle.noUi-handle-lower::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -45%);
  content: "";
  border-radius: 50%;
  width: 0.625rem;
  height: 0.625rem;
  background: #fff;
}

.filter-price__slider .noUi-handle.noUi-handle-upper::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -45%);
  content: "";
  border-radius: 50%;
  width: 0.625rem;
  height: 0.625rem;
  background: #fff;
}

/* Убираем стандартные полоски внутри */
.filter-price__slider .noUi-handle:after {
  display: none;
}

.filter-price__slider .noUi-handle {
  overflow: visible;
}

/* Tooltip (цифры) */
.filter-price__slider .noUi-tooltip {
  position: absolute;
  top: 85%; /* ставим под бегунок */
  left: 50%;
  transform: translate(-50%, 0.625rem); /* центр + отступ 10px вниз */
  background: transparent;
  border: none;
  box-shadow: none;
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  padding: 0;
  white-space: nowrap;
}

/*===========================================================
 * Скрываем нативный селект (истина, используется Core)
 * ===========================================================*/
.sort-native {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ===========================================================
 * Десктопный кастомный селект
 * ===========================================================*/
.sort-desktop {
  position: relative;
  cursor: pointer;
}
.sort-desktop--types {
  display: inline-block;
}
.sort-desktop--catalog {
  display: none;
}

.sort-desktop__current {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  padding: 0.3125rem 0.75rem 0.3125rem 0.1875rem;
  transition: color 0.3s ease-in-out;
}

/* Каретка стрелочки */
.sort-desktop__caret {
  font-size: 0.5rem;
  transition: transform 0.25s ease;
}

/* ===========================================================
 * Выпадающий список
 * ===========================================================*/
.sort-desktop__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 0.625rem;
  padding: 0.625rem 0;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  list-style: none;
  opacity: 0;
  transform: translateY(0.625rem);
  pointer-events: none;
  transition: 0.2s ease;
}

/* Варианты ширины dropdown */
.sort-desktop__dropdown--default {
  min-width: 14.8125rem;
}

.sort-desktop__dropdown--short {
  min-width: 11.0625rem;
}

/* ===========================================================
 *  Hover эффекты для открытия
 * ===========================================================*/
.sort-desktop:hover .sort-desktop__current {
  background-color: #fff;
  color: rgb(0, 0, 0);
}

.sort-desktop:hover .sort-desktop__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sort-desktop:hover .sort-desktop__caret {
  transform: rotate(180deg);
}

/* ===========================================================
 * Элементы списка
 * ===========================================================*/
.sort-desktop__dropdown li {
  padding: 0.75rem;
  cursor: pointer;
  transition: background 0.15s ease;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: -0.01em;
  white-space: nowrap; /* текст не переносится */
}

.sort-desktop__dropdown li.active,
.sort-desktop__dropdown li:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgb(0, 0, 0);
}

/* =========================
   Header navigation (меню в шапке сайта)
========================= */
.nav {
  /* Пункт меню */
  /* Основное выпадающее меню */
  /* Субменю второго уровня */
  /* Наведение на первый уровень */
  /* Наведение на пункт с дочерним меню */
  /* Пункты в выпадающих списках */
  /* Если есть каретка — раздвигаем текст и стрелку */
}
.nav__list {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.nav__list > .nav__item > a:hover {
  padding-left: 0;
}
.nav__item {
  position: relative;
}
.nav__item a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--black);
  transition: all 0.2s ease;
}
.nav__item a:hover {
  padding-left: 0.625rem;
  color: var(--hover);
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.625rem);
  left: calc(100% - 2.125rem);
  width: 21.375rem;
  max-height: calc(100vh - 4.5625rem); /* лимит высоты для скролла */
  overflow-y: auto;
  background: #fff;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  border-radius: 0.625rem;
  padding-block: 1.5625rem;
  padding-inline: 1.875rem;
  display: none; /* скрыто по умолчанию */
  z-index: 1000;
}
.nav__sub-dropdown {
  position: fixed; /* фиксированное меню */
  display: none;
  width: 100%;
  width: 21.375rem;
  max-height: 18.75rem;
  overflow-y: auto;
  background: #fff;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.625rem;
  padding-block: 1.5625rem;
  padding-inline: 1.875rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  z-index: 1100;
}
.nav__item--has-dropdown:hover > .nav__dropdown {
  display: block;
}
.nav__item--has-children:hover > .nav__sub-dropdown {
  display: block;
}
.nav__dropdown a, .nav__sub-dropdown a {
  letter-spacing: -0.01em;
  font-size: 0.8125rem;
  padding-block: 0.5rem;
}
.nav__item--has-children > a, .nav__item--has-dropdown > a {
  justify-content: space-between;
}

/* каретка */
.nav__item--has-dropdown .nav__caret {
  transition: transform 0.3s ease;
}

/* состояние открытого меню */
.nav__item--has-dropdown.is-open .nav__caret {
  transform: rotate(180deg);
}

/* =============================================================================================================================
   Offcanvas (мобильное меню)
================================================================================================================================ */
.offcanvas {
  display: none;
  position: fixed;
  top: 0;
  right: -105%;
  width: 100%;
  max-width: 24.375rem;
  height: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: -0.125rem 0 0.625rem rgba(0, 0, 0, 0.05);
  transition: right 0.3s ease;
  overflow: hidden;
  /* Активное состояние (открытое) */
  /* Внутренний контейнер */
  /* Скролл-контейнер */
  /* Кнопка закрытия */
  /* Список меню */
  /* Телеграм-блок (или любой CTA) */
  /* =========================
        Аккордеонные пункты
     ========================== */
  /* Активное подменю */
  /* Ссылка внутри пункта */
  /* Каретка для аккордеона */
  /* Поворот каретки при открытии */
}
.offcanvas.active {
  right: 0;
}
.offcanvas__inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.offcanvas__overflow {
  flex: 1;
  overflow-y: auto;
}
.offcanvas__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.offcanvas__close:hover {
  color: var(--hover);
}
.offcanvas__menu {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.offcanvas__telegram {
  margin-block: 3.125rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.offcanvas__item--has-children {
  position: relative;
}
.offcanvas__sub {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-left: 0.9375rem;
  transition: max-height 0.3s ease;
}
.offcanvas__item a {
  display: block;
  color: var(--black);
  transition: color 0.3s ease;
}
.offcanvas__item a:hover {
  color: var(--hover);
}
.offcanvas__item--open .offcanvas__sub {
  max-height: 31.25rem;
  padding-top: 0.3125rem;
}
.offcanvas__link {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
}
.offcanvas__caret {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.3s ease;
}
.offcanvas__item--open .offcanvas__caret {
  transform: rotate(180deg);
}

/* =========================
   Адаптивное отображение
========================= */
.search-block {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #f4f4f4;
  padding-bottom: 2.5rem;
  box-shadow: 0 0.375rem 0.5rem -0.375rem rgba(0, 0, 0, 0.15);
  /* =========================
      Верхний ряд: форма
   ========================== */
  /* =========================
      Нижний ряд: теги
   ========================== */
}
.search-block__wrap {
  position: relative;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 59.375rem;
  width: 100%;
}
.search-block__top {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  margin-bottom: 0.625rem;
  /* input + кнопка search */
  /* Крестик clear */
}
.search-block__top .search-block__input-wrapper {
  flex: 1;
  width: 100%;
  max-width: 54.875rem;
  height: 2.625rem;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0.625rem;
  padding-left: 1.25rem;
  padding-right: 0;
  padding-block: 0.625rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease, border 0.2s ease;
}
.search-block__top .search-block__input-wrapper.focus {
  /* искусственный фокус */
  border: 0.0625rem solid rgba(0, 0, 0, 0.5);
}
.search-block__top .search-block__input-wrapper input:-webkit-autofill,
.search-block__top .search-block__input-wrapper input:-webkit-autofill:hover,
.search-block__top .search-block__input-wrapper input:-webkit-autofill:focus,
.search-block__top .search-block__input-wrapper input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 62.5rem #ffffff inset !important;
  -webkit-text-fill-color: #000000 !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}
.search-block__top .search-block__input-wrapper .search-block__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  background: var(--white);
}
.search-block__top .search-block__input-wrapper .search-block__button {
  background: none;
  border: none;
  width: 3.375rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.4;
  transition: var(--transition);
}
.search-block__top .search-block__input-wrapper .search-block__button svg {
  width: 1.125rem;
  height: 1.125rem;
}
.search-block__top .search-block__input-wrapper .search-block__button:hover {
  opacity: 1;
}
.search-block__top .search-block__clear {
  width: 1.375rem;
  height: 1.375rem;
  background: none;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.search-block__top .search-block__clear svg {
  width: 1rem;
  height: 1rem;
}
.search-block__top .search-block__clear:hover {
  opacity: 0.8;
}
.search-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
}
.search-block__tag {
  font-size: 0.6875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid #000;
  color: #000;
  opacity: 0.5;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.search-block__tag:hover, .search-block__tag.active {
  opacity: 0.8;
}

/* =========================
   Анимация появления формы поиска
========================= */
#search-form {
  display: none;
}

#search-form.active {
  display: block;
  animation: searchFormOpen 0.3s ease forwards;
  max-height: 31.25rem;
}

@keyframes searchFormOpen {
  0% {
    max-height: 0;
    opacity: 0;
  }
  100% {
    max-height: 31.25rem;
    opacity: 1;
  }
}
/*===========================================================
 * Скрываем нативный селект (используется Core)
 * ===========================================================*/
.town-native {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ===========================================================
 * Десктопный кастомный селект
 * ===========================================================*/
.town-desktop {
  position: relative;
  cursor: pointer;
}
.town-desktop__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 0.625rem;
  padding: 1.5rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
  list-style: none;
  opacity: 0;
  transform: translateY(0.625rem);
  pointer-events: none;
  transition: 0.2s ease;
  min-width: 6.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  /* Крестик закрытия */
}
.town-desktop__dropdown__close {
  display: none;
  position: absolute;
  top: 0;
  right: 0.5rem;
  width: 0.5625rem;
  height: 0.5625rem;
  cursor: pointer;
  transition: fill 0.2s ease;
  color: rgba(0, 0, 0, 0.5);
}
.town-desktop__dropdown__close svg {
  width: 0.5625rem;
  height: 0.5625rem;
}
.town-desktop__dropdown__close:hover svg {
  color: rgb(0, 0, 0);
}
.town-desktop__dropdown li {
  cursor: pointer;
  transition: background 0.15s ease;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  white-space: nowrap;
  color: black;
}
.town-desktop__dropdown li:hover {
  color: rgba(0, 0, 0, 0.5);
}
.town-desktop:hover .town-desktop__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 370px){
  .header__burger {
    margin-left: 2.1875rem;
  }
}
@media (min-width: 375px){
  .recommended__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
  .recommended__arrow svg {
    width: 0.4375rem;
    height: 0.8125rem;
  }
}
@media (min-width: 440px){
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-gallery__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
  .product-gallery__arrow svg {
    width: 0.4375rem;
    height: 0.8125rem;
  }
  .btn--catalog {
    border-radius: 1.0625rem;
    font-size: 0.875rem;
    height: 2.875rem;
  }
  .btn--new {
    border-radius: 0.8125rem;
    font-size: 0.875rem;
    height: 2.875rem;
  }
  .btn--cart {
    height: 3.625rem;
  }
  .new-products .product-card__content {
    padding-top: 0.625rem;
  }
  .new-products .product-card__button {
    margin-top: 0.9375rem;
  }
  .catalog .product-card__title {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  .catalog .product-card__price {
    font-size: 0.875rem;
  }
  .catalog .product-card__content {
    padding-top: 0.625rem;
  }
  .catalog .product-card__button {
    margin-top: 0.9375rem;
  }
  .trust-card__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 441px){
  .footer__copyright {
    font-size: 0.625rem;
  }
  .footer__info {
    font-size: 0.625rem;
  }
}
@media (min-width: 576px){
  .typography h1 {
    font-size: 2.25rem;
  }
  .typography h2 {
    font-size: 1.875rem;
  }
  .typography h3 {
    font-size: 1.375rem;
  }
  .typography h4 {
    font-size: 1.25rem;
  }
  .typography h5 {
    font-size: 1rem;
  }
  .typography p,
  .typography li {
    font-size: 1.0625rem;
  }
  .typography blockquote {
    padding: 1.25rem 1.5rem;
  }
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .footer__top {
    gap: 3.75rem;
  }
  .footer__title {
    margin-bottom: 0;
  }
  .footer__subtitle {
    display: block;
  }
  .product__title {
    font-size: 1.875rem;
  }
  .product__layout {
    gap: 4.0625rem;
    padding-bottom: 0;
  }
  .product__layout--info {
    width: 100%;
    margin-inline: 0;
  }
  .catalog {
    background: white;
  }
  .catalog__title {
    margin-bottom: 1.5625rem;
    display: none;
  }
  .catalog__sorts-group {
    margin-bottom: 0.9375rem;
  }
  .categories__title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }
  .categories__title--categories {
    display: none;
  }
  .highlights__grid {
    gap: 1.25rem;
  }
  .highlights__gridgroup .highlights-card {
    aspect-ratio: initial;
    height: 19.375rem;
  }
  .highlights-card {
    padding: 1.25rem;
  }
  .highlights-card__title {
    font-size: 1.75rem;
  }
  .highlights-card__button {
    right: 0.9375rem;
    width: 3.125rem;
    height: 3.125rem;
  }
  .highlights-card__button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .new-products__title {
    font-size: 1.875rem;
  }
  .home-promos {
    padding-top: 0.625rem;
    padding-bottom: 3.125rem;
  }
  .trust__title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }
  .trust__description {
    margin-bottom: 2.8125rem;
    font-size: 1rem;
    max-width: 48.25rem;
  }
  .page-content {
    padding-top: 0.9375rem;
  }
  .product-gallery__container {
    gap: 0.625rem;
  }
  .product-gallery__thumb {
    border-radius: 1rem;
  }
  .product-info {
    padding-bottom: 4.0625rem;
  }
  .product-info__section--color {
    margin-bottom: 1.75rem;
  }
  .product-info__section--memory {
    margin-bottom: 1.0625rem;
  }
  .product-info__section--sim {
    margin-bottom: 3.75rem;
  }
  .product-info__price-badge {
    height: 1.5625rem;
    font-size: 0.875rem;
  }
  .product-info__quantity {
    height: 3.375rem;
    width: 13.6875rem;
  }
  .recommended__title {
    font-size: 1.875rem;
  }
  .recommended__nav {
    display: none;
  }
  .product-tabs {
    padding-top: 0;
    padding-bottom: 1.5625rem;
  }
  .product-tabs__nav {
    margin-bottom: 1.5625rem;
  }
  .product-tabs__btn {
    font-size: 1rem;
  }
  .product-tabs__pane h3 {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
  }
  .product-tabs__pane p {
    font-size: 1rem;
    margin-bottom: 1.125rem;
  }
  .product-tabs__pane ul li {
    font-size: 1rem;
  }
  .breadcrumbs__item {
    font-size: 1rem;
  }
  .btn--tg {
    height: 3.6875rem;
  }
  .btn--recommended_dark {
    font-size: 0.9375rem;
  }
  .btn--recommended_dark {
    border-radius: 1rem;
    height: 2.75rem;
  }
  .btn--recommended_white {
    font-size: 0.9375rem;
  }
  .btn--recommended_white {
    border-radius: 1rem;
    height: 2.75rem;
  }
  .categories-card {
    aspect-ratio: 600/274;
  }
  .categories-card__title {
    font-size: 1.75rem;
  }
  .categories-card__button {
    right: 0.9375rem;
    width: 3.125rem;
    height: 3.125rem;
  }
  .categories-card__button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .new-products .product-card__title {
    font-size: 0.5rem;
  }
  .new-products .product-card__price {
    font-size: 0.6875rem;
  }
  .promo-card {
    border-radius: 1.25rem;
    padding-inline: 0.9375rem;
  }
  .promo-card__title {
    font-size: 1.75rem;
  }
  .promo-card__price {
    font-size: 1rem;
  }
  .promo-card--large, .promo-card--top, .promo-card--bottom {
    padding-top: 0.9375rem;
  }
  .promo-card--large .promo-card__button {
    top: 0.9375rem;
  }
  .promo-card--top .promo-card__button {
    top: 0.9375rem;
  }
  .promo-card--bottom .promo-card__button {
    top: 0.9375rem;
  }
  .promo-card__button {
    right: 0.9375rem;
    width: 3.125rem;
    height: 3.125rem;
  }
  .promo-card__button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .promo-card__label {
    background: transparent;
    color: var(--white);
    font-size: 1.1875rem;
    height: 2.75rem;
  }
  .promo-card__label img {
    width: 1.1875rem;
    height: 1.1875rem;
  }
  .recommended-card__title {
    font-size: 0.75rem;
  }
  .recommended-card__price {
    display: block;
    font-size: 0.9375rem;
  }
  .recommended-card__buttons {
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
  .trust-card {
    aspect-ratio: 43/28;
    border-radius: 1.25rem;
  }
  .trust-card__number {
    font-size: 1.875rem;
  }
  .trust-card__text {
    font-size: 1rem;
  }
  .cart-check__label {
    margin-bottom: 1.25rem;
  }
  .cart-check__text {
    font-size: 1rem;
  }
  .cart-check__text--approval {
    font-size: 0.75rem;
  }
  .cart-modal-overlay {
    padding: 4.6875rem 0.9375rem;
  }
  .cart-modal {
    padding: 1.5625rem;
  }
  .cart-modal__header {
    margin-bottom: 1.0625rem;
  }
  .cart-modal__title {
    font-size: 1.875rem;
  }
  .cart-modal__close {
    width: 2.0625rem;
    height: 2.0625rem;
  }
  .cart-modal__close svg {
    width: 0.875rem;
    height: 0.875rem;
  }
  .cart-check__label--card {
    top: 1.0625rem;
  }
  .cart-card {
    padding-block: 0.9375rem;
    padding-inline: 0.9375rem;
  }
  .cart-card__row {
    gap: 1rem;
  }
  .cart-card__inner {
    gap: 0.9375rem;
  }
  .cart-card__image {
    border-radius: 1rem;
    width: 7.125rem;
    height: 7.125rem;
  }
  .cart-card__title {
    padding-right: 15%;
    font-size: 1rem;
  }
  .cart-card__options li {
    font-size: 1rem;
  }
  .cart-card__counter button, .cart-card__remove {
    width: 1.25rem;
    height: 1.25rem;
  }
  .cart-card__counter button svg, .cart-card__remove svg {
    width: 0.5rem;
    height: 0.5rem;
  }
  .cart-card__counter {
    gap: 0.5rem;
  }
  .cart-card__counter span {
    color: #000;
    font-size: 0.75rem;
  }
  .cart-card__price {
    font-size: 1.125rem;
  }
  .cart-modal__total--top {
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }
  .cart-modal__total--bottom {
    margin-top: 0;
    margin-bottom: 0.9375rem;
    font-size: 1rem;
  }
  .cart-modal__description {
    font-size: 1rem;
    margin-bottom: 1.875rem;
  }
  .cart-modal__form input[type=text],
  .cart-modal__form input[type=tel] {
    height: 4.5rem;
    font-size: 1rem;
  }
  .cart-modal__form-inputs {
    margin-bottom: 0;
    gap: 0.3125rem;
  }
  .cart-modal__form-input {
    height: 4.5rem;
  }
  .cart-radio__title {
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
  }
  .cart-additional__title {
    margin-bottom: 1.25rem;
    padding-top: 0;
    font-size: 1.875rem;
  }
  .cart-additional__card-title {
    font-size: 0.875rem;
  }
  .cart-additional__card-price {
    font-size: 1.125rem;
  }
}
@media (min-width: 640px){
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .recommended__arrow {
    width: 1.625rem;
    height: 1.625rem;
  }
  .recommended__arrow svg {
    width: 0.25rem;
    height: 0.5rem;
  }
}
@media (min-width: 768px){
  .typography h1,
  .typography h2,
  .typography h3,
  .typography h4,
  .typography h5,
  .typography h6 {
    text-align: center;
  }
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .footer {
    padding-top: 2.8125rem;
    padding-bottom: 2.8125rem;
  }
  .footer__subtitle {
    width: 100%;
  }
  .footer__menu {
    width: initial;
  }
  .footer .max-md-hide {
    display: flex;
  }
  .footer .min-md-width-50 {
    width: initial;
  }
  .product__layout {
    padding-top: 1.25rem;
    padding-bottom: 1.875rem;
  }
  .categories--catalog {
    padding-top: 3.125rem;
  }
  .categories__title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .highlights__gridgroup {
    gap: 1.25rem;
    flex-direction: row;
  }
  .highlights__gridgroup .highlights-card {
    height: 13.9375rem;
  }
  .highlights-img--desktop {
    display: block;
  }
  .highlights-img--mobile {
    display: none;
  }
  .highlights-card {
    padding: 1.5625rem;
  }
  .map__box:hover iframe {
    filter: grayscale(0%);
  }
  .new-products__header {
    padding-bottom: 0;
    margin-bottom: 1.25rem;
  }
  .new-products__title {
    font-size: 2.75rem;
  }
  .new-products__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
  .new-products .icon--slider-angle-left {
    width: 0.75rem;
    height: 1.5rem;
  }
  .new-products .icon--slider-angle-right {
    width: 0.75rem;
    height: 1.5rem;
  }
  .home-promos__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 3fr 2fr;
    grid-template-areas: "large top" "large bottom";
    height: 31.25rem;
  }
  .home-promos__grid .promo-card {
    aspect-ratio: initial;
  }
  .trust__title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }
  .trust__description {
    font-size: 1.625rem;
    max-width: 60.75rem;
  }
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
  }
  .product-gallery__arrow--prev {
    left: 1.25rem;
  }
  .product-gallery__arrow--next {
    right: 1.25rem;
  }
  .product-info {
    padding-bottom: 1.25rem;
  }
  .product-info__title {
    font-size: 1rem;
  }
  .product-info__price-new, .product-info__price-old {
    font-size: 1.875rem;
  }
  .recommended__arrow--prev {
    left: 1.25rem;
  }
  .recommended__arrow--next {
    right: 1.25rem;
  }
  .product-tabs {
    padding-top: 1.875rem;
  }
  .product-tabs__nav {
    gap: 1.25rem;
    border-bottom: none;
  }
  .product-tabs__btn.is-active::before {
    content: none;
  }
  .product-tabs__btn.is-active {
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
  }
  .product-tabs__btn {
    flex: 1;
    margin-left: 0;
    height: 4.5625rem;
    text-align: center;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    border-radius: 1.25rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.2);
    background: #fff;
    transition: background 0.2s ease;
  }
  .product-tabs__btn:first-child {
    width: auto;
  }
  .product-tabs__btn:last-child {
    flex: 1;
    padding-right: 0;
  }
  .product-tabs__btn.is-active {
    background: transparent;
  }
  .breadcrumbs {
    padding: 1.875rem 0;
  }
  .btn {
    border-radius: 1.25rem;
    height: 3.375rem;
  }
  .categories-card {
    border-radius: 1.0625rem;
    aspect-ratio: 500/348;
  }
  .product-card__image-wrapper {
    border-radius: 1.25rem;
  }
  .new-products .product-card__title {
    font-size: 1rem;
    margin-bottom: 0.9375rem;
  }
  .new-products .product-card__price {
    font-size: 1.25rem;
  }
  .new-products .product-card__content {
    padding-top: 1.25rem;
  }
  .new-products .product-card__button {
    margin-top: 1.5rem;
  }
  .recommended-card__image-wrapper {
    border-radius: 1.25rem;
  }
  .recommended-card__title {
    font-size: 0.8125rem;
  }
  .recommended-card__price {
    font-size: 1rem;
  }
  .cart-check__label {
    margin-bottom: 1.5625rem;
  }
  .cart-modal-overlay {
    padding: 4.6875rem 1.25rem;
  }
  .cart-modal {
    border-radius: 1.25rem;
    padding: 2.5rem;
  }
  .cart-modal__header {
    margin-bottom: 1.5625rem;
  }
  .cart-modal__title {
    font-size: 2rem;
  }
  .cart-modal__close {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cart-modal__close svg {
    width: 1.125rem;
    height: 1.125rem;
  }
  .cart-counter--desktop {
    display: flex;
  }
  .cart-check__label--card {
    top: initial;
    z-index: initial;
    position: relative;
  }
  .cart-card__wrapper {
    gap: 0.625rem;
  }
  .cart-card {
    padding-inline: 0.625rem;
    padding-block: 0.625rem;
  }
  .cart-card__row {
    gap: 0.625rem;
  }
  .cart-card__inner {
    flex-direction: row;
  }
  .cart-card__info {
    justify-content: start;
  }
  .cart-card__image {
    width: 8.375rem;
    height: 8.375rem;
  }
  .cart-card__title {
    font-size: 1.125rem;
  }
  .cart-card__options li {
    font-size: 0.875rem;
  }
  .cart-card__actions {
    display: flex;
    align-self: initial;
    margin-inline: initial;
    margin-bottom: 0;
  }
  .cart-card__remove--md {
    display: flex;
  }
  .cart-card__remove--xs {
    display: none;
  }
  .cart-modal__total--top {
    padding-top: 1.25rem;
    margin-bottom: 1.875rem;
    font-size: 1.125rem;
  }
  .cart-modal__total--bottom {
    padding-top: 0;
    font-size: 1.25rem;
  }
  .cart-modal__description {
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
  }
  .cart-modal__form input[type=text],
  .cart-modal__form input[type=tel] {
    font-size: 1.125rem;
  }
  .cart-modal__form-inputs {
    gap: 1.25rem;
  }
  .cart-additional__title {
    margin-bottom: 1.875rem;
    font-size: 2rem;
  }
  .cart-additional__card-add svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .cart-additional__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
  .cart-additional .icon--slider-angle-left {
    width: 0.75rem;
    height: 1.5rem;
  }
  .cart-additional .icon--slider-angle-right {
    width: 0.75rem;
    height: 1.5rem;
  }
}
@media (min-width: 820px){
  .product-info__price {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}
@media (min-width: 992px){
  html {
    scrollbar-gutter: stable;
  }
  .typography h1 {
    font-size: 3rem;
  }
  .typography h2 {
    font-size: 2.25rem;
  }
  .typography h3 {
    font-size: 1.625rem;
  }
  .typography h4 {
    font-size: 1.375rem;
  }
  .typography h5 {
    font-size: 1.25rem;
  }
  .typography p,
  .typography li {
    font-size: 1.125rem;
  }
  .typography body {
    line-height: 1.6;
  }
  .typography blockquote {
    padding: 1.5rem 2rem;
  }
  .catalog__sidebar {
    display: block;
    position: static;
    width: 18.3125rem;
    height: auto;
  }
  .catalog__layout {
    flex-direction: row;
    gap: 1.25rem;
  }
  .catalog__content {
    flex: 1;
  }
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  .footer::after {
    content: "";
    width: 25rem;
    left: 35%;
  }
  .footer__top {
    flex-direction: row;
  }
  .footer__left {
    width: 30%;
  }
  .footer__left {
    justify-content: space-between;
  }
  .footer__menu--bigger li a {
    font-size: 1.25rem;
  }
  .footer__requisites-mobile {
    display: none;
  }
  .footer__requisites-desktop {
    display: block;
    padding-bottom: 1.25rem;
  }
  .footer__copyright {
    display: block;
    padding-bottom: 2.1875rem;
  }
  .header {
    z-index: 1000;
  }
  .product__layout {
    gap: 1.25rem;
  }
  .product__layout {
    flex-direction: row;
  }
  .product__layout--gallery {
    width: 50%;
  }
  .product__layout--info {
    width: 50%;
  }
  .catalog {
    background-color: transparent;
  }
  .catalog__sorts-group {
    justify-content: start;
    margin-bottom: 0;
    gap: 1.25rem;
    padding: 1.25rem 0;
    z-index: 500;
  }
  .highlights-card__title {
    font-size: 1.625rem;
  }
  .highlights-card__button {
    width: 2.6875rem;
    height: 2.6875rem;
  }
  .highlights-card__button svg {
    width: 1.0625rem;
    height: 1.0625rem;
  }
  .home-promos__grid {
    height: 37.5rem;
  }
  .product-gallery__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
  .product-gallery__arrow svg {
    width: 0.4375rem;
    height: 0.8125rem;
  }
  .product-info {
    padding: 1.875rem;
  }
  .product-info__section--sim {
    margin-bottom: 2.1875rem;
  }
  .product-info__quantity {
    width: 7.125rem;
  }
  .recommended__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
  .recommended__arrow svg {
    width: 0.4375rem;
    height: 0.8125rem;
  }
  .categories-card img {
    inset-block-start: 0%;
    inset-inline-start: 0%;
    -o-object-fit: cover;
       object-fit: cover;
    block-size: 100%;
    inline-size: 100%;
  }
  .categories-card__button {
    width: 2.6875rem;
    height: 2.6875rem;
  }
  .categories-card__button svg {
    width: 1.0625rem;
    height: 1.0625rem;
  }
  .promo-card__title {
    font-size: 1.875rem;
  }
  .promo-card__title--main {
    font-size: 2.8125rem;
  }
  .promo-card__price {
    font-size: 1.5rem;
  }
  .promo-card__price--main {
    font-size: 1.875rem;
  }
  .promo-card__button {
    width: 2.6875rem;
    height: 2.6875rem;
  }
  .promo-card__button svg {
    width: 1.0625rem;
    height: 1.0625rem;
  }
  .promo-card__label {
    font-size: 1.25rem;
    height: 2.8125rem;
  }
  .promo-card__label img {
    width: 1.3125rem;
    height: 1.3125rem;
  }
  .recommended-card__price {
    font-size: 1.125rem;
  }
  .filter-toggle,
  .filter-sorting {
    display: none;
  }
  .filter-c {
    display: none;
  }
  .sidebar {
    position: sticky;
    top: 3.375rem;
  }
  .sort-desktop--catalog {
    display: inline-block;
  }
}
@media (min-width: 992px) and (min-width: 1680px){
  .catalog__sidebar {
    width: 21.25rem;
  }
}
@media (min-width: 1200px){
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: 2.8125rem;
    padding-left: 2.8125rem;
  }
  .header__right {
    gap: 1.5625rem;
  }
  .header__location {
    margin-right: 1.5625rem;
  }
  .highlights__grid {
    flex-direction: row;
  }
  .highlights__gridgroup {
    width: 50%;
  }
  .new-products__header {
    margin-bottom: 2.5rem;
  }
  .new-products__title {
    font-size: 3.4375rem;
  }
  .new-products__slider {
    overflow: hidden;
  }
  .home-promos {
    padding-top: 1.25rem;
    padding-bottom: 4.6875rem;
  }
  .home-promos__grid {
    height: 45.375rem;
  }
  .trust__title {
    font-size: 3.4375rem;
    margin-bottom: 1.875rem;
  }
  .product-gallery__container {
    gap: 0.9375rem;
  }
  .product-info__quantity {
    width: 13.6875rem;
  }
  .recommended__title {
    display: block;
    font-weight: 600;
    font-size: 3.4375rem;
  }
  .btn--recommended_dark {
    font-size: 1rem;
  }
  .btn--recommended_dark {
    height: 2.875rem;
  }
  .btn--recommended_white {
    font-size: 1rem;
  }
  .btn--recommended_white {
    height: 2.875rem;
  }
  .promo-card__title--main {
    font-size: 3.4375rem;
  }
  .search-block__top {
    gap: 2.8125rem;
    margin-bottom: 0.9375rem;
  }
  .search-block__top .search-block__input-wrapper {
    height: 3.375rem;
  }
  .search-block__top .search-block__input-wrapper .search-block__input {
    font-size: 1rem;
  }
  .search-block__top .search-block__input-wrapper .search-block__button svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .search-block__top .search-block__clear svg {
    width: 1.375rem;
    height: 1.375rem;
  }
  .search-block__tags {
    gap: 0.625rem;
  }
  .search-block__tag {
    font-size: 0.75rem;
  }
}
@media (min-width: 1400px){
  .wrapper {
    padding-top: 6.5rem;
  }
  .typography h5 {
    font-size: 2rem;
  }
  .icon--cart {
    width: 1.5rem;
    height: 1.5rem;
  }
  .icon--header-search {
    width: 1.5rem;
    height: 1.5rem;
  }
  .icon--header-marker {
    width: 1.3125rem;
    height: 1.3125rem;
  }
  .products__grid {
    gap: 1.5625rem 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: 3.125rem;
    padding-left: 3.125rem;
  }
  .footer {
    padding-bottom: 2.1875rem;
  }
  .footer::after {
    content: "";
    width: 41.875rem;
    left: 41.5%;
  }
  .footer__top {
    gap: 0;
  }
  .footer__left {
    width: 50%;
  }
  .footer__logo {
    width: 22.4375rem;
    height: 9.375rem;
    margin-bottom: 2.1875rem;
  }
  .footer__basetitle {
    gap: 1.875rem;
  }
  .footer__title {
    font-size: 3.125rem;
  }
  .footer__subtitle {
    max-width: initial;
  }
  .footer__menu .title-lg-hidden {
    display: none;
  }
  .footer__menu-title {
    margin-bottom: 1.25rem;
  }
  .footer__requisites {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.5625rem;
  }
  .footer__copyright {
    padding-bottom: 3.75rem;
    font-size: 0.625rem;
  }
  .footer__info {
    font-size: 0.75rem;
  }
  .header {
    height: 6.4375rem;
  }
  .header__logo {
    width: 12.875rem;
    height: 5.1875rem;
  }
  .header__icon-btn {
    font-size: 1.25rem;
  }
  .product__title {
    display: none;
    font-weight: 600;
    font-size: 3.125rem;
  }
  .product__layout {
    gap: 0.9375rem;
  }
  .catalog__title {
    display: block;
    font-weight: 600;
    font-size: 3.125rem;
  }
  .categories--home {
    padding-top: 4.6875rem;
    padding-bottom: 4.6875rem;
  }
  .categories__title {
    font-size: 3.4375rem;
    margin-bottom: 2.5rem;
  }
  .categories__title--categories {
    display: block;
    font-weight: 600;
    font-size: 3.125rem;
  }
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .categories-bottom-spaces {
    margin-bottom: 4.6875rem;
  }
  .highlights {
    padding-top: 0.25rem;
    background: var(--white);
    padding-bottom: 1.875rem;
  }
  .highlights-card {
    padding: 1.875rem;
    border-radius: 1.25rem;
  }
  .map {
    padding-top: 2.5rem;
    padding-bottom: 2.8125rem;
  }
  .map__title {
    font-size: 3.4375rem;
    max-width: 60.75rem;
  }
  .map__box {
    border-radius: 1.25rem;
  }
  .home-promos__grid {
    height: 55.875rem;
  }
  .trust {
    padding-top: 4.6875rem;
    padding-bottom: 5.625rem;
  }
  .trust__description {
    margin-bottom: 3.75rem;
    font-size: 2rem;
  }
  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .page-content {
    padding-top: 4.0625rem;
  }
  .product-gallery__container {
    flex-direction: row;
  }
  .product-gallery__thumbs {
    order: 1;
    padding-block: 0.625rem;
  }
  .product-gallery__main {
    order: 2;
  }
  .product-gallery__main {
    height: 100%;
    height: 0;
    width: 85%;
  }
  .product-gallery__thumbs {
    width: 15%;
  }
  .product-gallery__arrow {
    width: 2.875rem;
    height: 2.875rem;
  }
  .product-gallery__arrow svg {
    width: 0.4375rem;
    height: 0.8125rem;
  }
  .product-gallery__arrow--prev {
    left: 1.5625rem;
  }
  .product-gallery__arrow--next {
    right: 1.5625rem;
  }
  .product-info {
    padding-top: 2.5rem;
  }
  .product-info__wrapper {
    max-width: 30.75rem;
  }
  .product-info__title {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
  .product-info__section--color {
    margin-bottom: 1.5625rem;
  }
  .product-info__section--memory {
    margin-bottom: 1.6875rem;
  }
  .product-info__section--sim {
    margin-bottom: 1.5625rem;
  }
  .product-info__price {
    gap: 1.25rem;
  }
  .product-info__price-new, .product-info__price-old {
    font-size: 2.5rem;
  }
  .product-info__price-current {
    gap: 0.625rem;
    margin-left: 1.25rem;
  }
  .product-info__price-badge {
    height: 2.5rem;
    font-size: 1.25rem;
  }
  .product-info__quantity {
    height: 3.625rem;
    width: 14.125rem;
    padding: 1.0625rem;
  }
  .product-info__quantity .icon--count-minus,
  .product-info__quantity .icon--count-plus {
    width: 1.5rem;
    height: 1.5rem;
  }
  .product-info__request-btn {
    height: 3.625rem;
  }
  .recommended__arrow {
    width: 2.875rem;
    height: 2.875rem;
  }
  .recommended__arrow--prev {
    left: 1.5625rem;
  }
  .recommended__arrow--next {
    right: 1.5625rem;
  }
  .product-tabs__pane h3 {
    font-size: 1.75rem;
    margin-bottom: 0.9375rem;
  }
  .product-tabs__pane p {
    font-size: 1.25rem;
    margin-bottom: 1.375rem;
  }
  .product-tabs__pane ul li {
    font-size: 1.25rem;
  }
  .btn__icon {
    right: 0;
    height: 100%;
  }
  .btn__icon img,
  .btn__icon svg {
    aspect-ratio: 1/1;
    height: 100%;
    width: auto;
  }
  .btn--info {
    font-size: 1.125rem;
    height: 3.625rem;
  }
  .btn--catalog {
    font-size: 0.9375rem;
    height: 2.875rem;
  }
  .btn--new {
    border-radius: 1.0625rem;
    font-size: 0.9375rem;
    height: 2.875rem;
  }
  .categories-card__title {
    font-size: 1.875rem;
  }
  .catalog .product-card__title {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
  .catalog .product-card__price {
    font-size: 1rem;
  }
  .catalog .product-card__content {
    padding-top: 0.9375rem;
  }
  .catalog .product-card__button {
    margin-top: 1.25rem;
  }
  .promo-card {
    padding-inline: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .promo-card--large {
    padding-top: 1.875rem;
  }
  .promo-card--large .promo-card__button {
    top: 3.75rem;
  }
  .promo-card--top {
    padding-top: 3.125rem;
  }
  .promo-card--top .promo-card__button {
    top: 3.125rem;
  }
  .promo-card--bottom {
    padding-top: 1.25rem;
  }
  .promo-card--bottom .promo-card__button {
    top: 1.25rem;
  }
  .recommended-card__title {
    font-size: 0.875rem;
    margin-bottom: 0.9375rem;
  }
  .recommended-card__buttons {
    margin-top: 0.9375rem;
  }
  .trust-card__header {
    margin-bottom: 1.5625rem;
  }
  .trust-card__number {
    font-size: 1.6875rem;
  }
  .trust-card__text {
    font-size: 0.8125rem;
  }
  .sidebar {
    top: 6.5rem;
  }
  .nav__list {
    gap: 1.5625rem;
  }
  .nav__item a {
    font-size: 1.25rem;
  }
  .nav__dropdown a, .nav__sub-dropdown a {
    font-size: 0.875rem;
    padding-block: 0.625rem;
  }
}
@media (min-width: 1680px){
  .footer::after {
    width: 54.375rem;
    content: "";
  }
  .footer__copyright {
    padding-bottom: 3.125rem;
  }
  .footer__info {
    max-width: 17.5rem;
  }
  .product__title {
    padding-top: 0;
    margin-bottom: 1.875rem;
    display: block;
  }
  .product__layout {
    gap: 1.25rem;
    padding-top: 0;
    padding-bottom: 3.75rem;
  }
  .catalog {
    padding-bottom: 9.375rem;
  }
  .catalog__sorts-group {
    padding: 1.4375rem 0;
  }
  .categories--catalog {
    padding-top: 2.5rem;
    padding-bottom: 9.375rem;
  }
  .categories--categories {
    padding-bottom: 9.375rem;
  }
  .highlights__gridgroup .highlights-card {
    height: 16.0625rem;
  }
  .highlights-card__title {
    font-size: 1.875rem;
  }
  .highlights-card__button {
    right: 1.875rem;
    width: 3.125rem;
    height: 3.125rem;
  }
  .highlights-card__button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .home-promos__grid {
    height: 64.5625rem;
  }
  .page-content {
    padding-top: 3.125rem;
    padding-bottom: 9.375rem;
  }
  .product-gallery__thumbs {
    padding-block: 0;
  }
  .product-gallery__arrow {
    width: 3.25rem;
    height: 3.25rem;
  }
  .product-gallery__arrow svg {
    width: 0.5rem;
    height: 0.9375rem;
  }
  .product-gallery__arrow--prev {
    left: 1.875rem;
  }
  .product-gallery__arrow--next {
    right: 1.875rem;
  }
  .product-info {
    padding: 2.5rem;
  }
  .product-info__section--color {
    margin-bottom: 1.5625rem;
  }
  .product-info__section--memory {
    margin-bottom: 1.875rem;
  }
  .product-info__section--sim {
    margin-bottom: 3.3125rem;
  }
  .product-info__price {
    margin-bottom: 3.125rem;
  }
  .product-info__color-list {
    gap: 0.625rem;
  }
  .product-info__color-swatch {
    width: 2.5rem;
    height: 2.5rem;
  }
  .recommended {
    padding: 4.6875rem 0 9.375rem;
  }
  .recommended__arrow {
    width: 3.25rem;
    height: 3.25rem;
  }
  .recommended__arrow svg {
    width: 0.5rem;
    height: 0.9375rem;
  }
  .recommended__arrow--prev {
    left: 1.875rem;
  }
  .recommended__arrow--next {
    right: 1.875rem;
  }
  .product-tabs {
    padding-top: 3.75rem;
    padding-bottom: 4.6875rem;
  }
  .product-tabs__btn {
    font-size: 1.125rem;
  }
  .btn--catalog {
    border-radius: 1.25rem;
    font-size: 1.125rem;
    height: 3.375rem;
  }
  .btn--new {
    border-radius: 1.25rem;
    font-size: 1.125rem;
    height: 3.375rem;
  }
  .btn--recommended_dark {
    font-size: 1.125rem;
  }
  .btn--recommended_dark {
    height: 3.375rem;
  }
  .btn--recommended_white {
    font-size: 1.125rem;
  }
  .btn--recommended_white {
    height: 3.375rem;
  }
  .categories-card {
    border-radius: 1.25rem;
    aspect-ratio: 580/404;
  }
  .categories-card__title {
    font-size: 2rem;
  }
  .categories-card__button {
    right: 1.875rem;
    width: 3.125rem;
    height: 3.125rem;
  }
  .categories-card__button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .new-products .product-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
  .new-products .product-card__price {
    font-size: 1.5rem;
  }
  .new-products .product-card__content {
    padding-top: 1.5625rem;
  }
  .new-products .product-card__button {
    margin-top: 1.5625rem;
  }
  .catalog .product-card__price {
    font-size: 1.125rem;
  }
  .promo-card__title {
    font-size: 3.125rem;
    margin-bottom: 0.9375rem;
  }
  .promo-card__title--main {
    font-size: 4.375rem;
  }
  .promo-card__price {
    font-size: 1.875rem;
  }
  .promo-card__price--main {
    font-size: 2.25rem;
  }
  .promo-card__button {
    right: 1.875rem;
    width: 3.125rem;
    height: 3.125rem;
  }
  .promo-card__button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .promo-card__label {
    font-size: 1.5rem;
    height: 3.25rem;
  }
  .promo-card__label img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .recommended-card__content {
    padding-top: 1.25rem;
  }
  .trust-card__title {
    font-size: 2rem;
  }
  .trust-card__number {
    font-size: 2rem;
  }
  .trust-card__text {
    font-size: 1rem;
  }
  .filter-c-label--parent {
    font-size: 1.5rem;
  }
  .icon--filter-c {
    width: 1.25rem;
    height: 1.25rem;
  }
  .filter-s-label--parent {
    font-size: 1.5rem;
  }
  .icon--filter-s {
    width: 1.25rem;
    height: 1.25rem;
  }
  .icon--caret-s {
    width: 0.875rem;
    height: 0.5rem;
  }
}
@media (max-width: 1120px){
  .header__nav {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .offcanvas {
    display: block;
  }
}
@media (any-hover: hover){
  .scrollbar-none::-webkit-scrollbar-thumb:hover {
    background-color: transparent;
  }
}
/*# sourceMappingURL=main.min.css.map */
.product-info__price-old {
    text-decoration: line-through;
    opacity: .5;
}