*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #111;
    --white: #fff;
    --gray-light: #f5f5f5;
    --gray-mid: #e0e0e0;
    --gray-text: #888;
    --header-h: 60px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--white);
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
  }

header, .slide img.img-horizontal {
  visibility: hidden;
}

  /* ─── HEADER ─── */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding: 0 16px;
	margin: 0 auto;
  }

  .header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo img {
    height: 24px;
    width: auto;
    display: block;
    /* PNG белый фон — инвертируем если нужно тёмный */
  }
  @media (min-width: 768px) {
    .logo img { height: 30px; }
  }

  .header-icons {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .header-icons a {
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: opacity 0.2s;
  }
  .header-icons a:hover { opacity: 0.5; }

  .header-icons svg {
    width: 22px;
    height: 22px;
    stroke: var(--black);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ─── SEARCH OVERLAY ─── */
  .search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--gray-mid);
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding: 0 16px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
    pointer-events: none;
  }
  .search-overlay.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .search-overlay-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .search-overlay svg {
    width: 18px; height: 18px;
    stroke: var(--gray-text);
    fill: none; stroke-width: 1.5; stroke-linecap: round;
    flex-shrink: 0;
  }
  .search-overlay input {
    border: none; outline: none;
    width: 100%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--black);
    background: transparent;
    letter-spacing: 0.04em;
  }
  .search-overlay input::placeholder { color: var(--gray-text); }
  .search-close {
    background: none; border: none; cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    padding: 4px 8px;
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity 0.2s;
    display: flex; align-items: center; gap: 6px;
    flex-shrink: 0;
  }
  .search-close:hover { opacity: 1; }
  .search-close svg { width: 14px; height: 14px; stroke: var(--black); fill: none; stroke-width: 2; }

  /* ─── MENU DRAWER ─── */
  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
  }
  .menu-overlay.open { pointer-events: all; }

  .menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
  }
  .menu-overlay.open .menu-backdrop { background: rgba(0,0,0,0.35); }

  .menu-drawer {
    position: absolute;
    top: 0; left: 0;
    width: min(480px, 100vw);
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
  }
  .menu-overlay.open .menu-drawer { transform: translateX(0); }

  /* ─── Общий хедер меню ─── */
  .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: var(--header-h);
    border-bottom: 1px solid var(--gray-mid);
    flex-shrink: 0;
    gap: 12px;
  }
  .menu-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--gray-text);
    min-width: 0;
    flex: 1;
  }
  .menu-breadcrumb .back-btn {
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; gap: 4px;
    color: var(--gray-text);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 0;
    white-space: nowrap;
    transition: color 0.2s;
  }
  .menu-breadcrumb .back-btn:hover { color: var(--black); }
  .menu-breadcrumb .back-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }
  .menu-breadcrumb .crumb-sep { opacity: 0.4; }
  .menu-breadcrumb .crumb-current { color: var(--black); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  .menu-close-btn {
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    padding: 6px 0;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }
  .menu-close-btn:hover { opacity: 0.5; }
  .menu-close-btn svg { width: 16px; height: 16px; stroke: var(--black); fill: none; stroke-width: 1.8; }

  /* ─── Панели ─── */
  .menu-panels {
    flex: 1;
    display: flex;
    overflow: hidden;
    position: relative;
  }
  .menu-panel {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow-y: auto;
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    background: var(--white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
  }
  .menu-panel.active { transform: translateX(0); }
  .menu-panel.prev   { transform: translateX(-30%); }

  /* ─── Пункты меню ─── */
  .menu-nav { padding: 8px 0; flex: 1; }

  .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 58px;
    border-bottom: 1px solid var(--gray-mid);
    text-decoration: none;
    color: var(--black);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.15s;
    background: none;
    border-left: none; border-right: none; border-top: none;
    width: 100%;
    cursor: pointer;
    text-align: left;
  }
  .menu-item:hover { background: var(--gray-light); }
  .menu-item svg { width: 14px; height: 14px; stroke: var(--black); fill: none; stroke-width: 1.8; opacity: 0.4; flex-shrink: 0; }
  .menu-item.highlight {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
  }
  .menu-item.see-all {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--gray-text);
  }

  .menu-footer {
    padding: 24px 28px;
    border-top: 1px solid var(--gray-mid);
    flex-shrink: 0;
  }
  .menu-footer a {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-text);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
  }
  .menu-footer a:hover { color: var(--black); }

  /* ─── SLIDE CAPTION (overlay on each slide) ─── */
  .slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: clamp(24px, 5vw, 56px) clamp(20px, 5vw, 60px) clamp(32px, 6vw, 64px);
    background: linear-gradient(to top,
      rgba(0,0,0,0.52) 0%,
      rgba(0,0,0,0.18) 55%,
      transparent 100%);
    color: #fff;
    pointer-events: none;
  }
  .slide-caption .slide-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
  }
  .slide-caption .slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 6vw, 56px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    color: #fff;
    display: block;
    letter-spacing: 0.03em;
    margin-bottom: clamp(14px, 3vw, 24px);
  }
  .slide-caption .slide-btn {
    display: inline-block;
    pointer-events: all;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 10px 24px;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    backdrop-filter: blur(2px);
  }
  .slide-caption .slide-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
  }

  /* Remove old slider-intro */
  .slider-intro { display: none; }

  /* Slider section */
  .slider-section {
    position: relative;
    overflow: hidden;

  width: 100%;
  margin: 0 auto;
  }

  .slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  /* Mobile: vertical images */
  .slide img.img-vertical {
    display: block;
    width: 100%;
    height: 131vw;
    max-height: 700px;
    object-fit: cover;
    object-position: top center;
  }
  .slide img.img-horizontal {
    display: none;
  }

  @media (min-width: 768px) {
    .slide img.img-vertical  { display: none; }
    .slide img.img-horizontal {
        display: block;
        /* width: 100%; */
        height: 600px;
        margin: 0 auto;
	  /*
      height: 70vw;
      max-height: 780px;
      object-fit: cover;
      object-position: center top;
	  */
    }
  }

  /* Placeholder when no image */
  .slide-placeholder {
    width: 100%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75vw;
    max-height: 560px;
    color: var(--gray-text);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  @media (min-width: 768px) {
    .slide-placeholder {
      height: 65vw;
      max-height: 680px;
    }
  }

  /* Slider nav dots */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 14px 0 10px;
    background: var(--white);
	opacity: 0;
	display: none;
  }
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-mid);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
  }
  .dot.active {
    background: var(--black);
    transform: scale(1.3);
  }

  /* Slider arrows */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.85);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
	opacity: 0;
  }
  .slider-arrow:hover { background: var(--white); }
  .slider-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--black);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }

  /* ─── FIX HORIZONTAL SCROLL ─── */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* ─── SECTION SPACING ─── */
  .section-gap {
    height: clamp(48px, 8vw, 96px);
  }
  .section-gap-sm {
    height: clamp(24px, 4vw, 48px);
  }

  /* ─── SECTION LABEL (small eyebrow text) ─── */
  .section-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 10px;
  }

  /* ─── SECTION HEADING ─── */
  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    color: var(--black);
    letter-spacing: 0.02em;
  }
  .section-heading.serif {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 4.5vw, 40px);
    font-weight: 300;
    letter-spacing: 0.04em;
    font-style: italic;
  }

  /* ─── SLIDER INTRO (above slider) ─── */
  .slider-intro {
    padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 60px) clamp(20px, 3vw, 36px);
    max-width: 1400px;
    margin: 0 auto;
  }

  /* ─── TEXT BLOCK ─── */
  .text-block {
    padding: clamp(20px, 7vw, 20px) clamp(24px, 8vw, 60px);
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .text-block p {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.75;
    color: #444;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-top: 16px;
  }
  .text-block .divider {
    width: 40px;
    height: 1px;
    background: var(--gray-mid);
    margin: 20px auto 0;
  }

  /* ─── PHOTO BLOCK TITLE overlay ─── */
  .block-photo {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  /* Вертикальное — на мобиле, целиком без обрезки */
  .block-photo.tall img.img-vertical {
    display: block;
    width: 100%;
    height: auto;
  }
  /* Горизонтальное — на десктопе, целиком без обрезки */
  .block-photo.tall img.img-horizontal {
    display: none;
    width: 100%;
    height: auto;
  }
  @media (min-width: 768px) {
    .block-photo.tall img.img-vertical   { display: none; }
    .block-photo.tall img.img-horizontal { display: block; max-height: 650px; object-fit: cover; object-position: top center;}
  }

  /* Подпись под фото (не поверх — чтобы не перекрывать фигуру) */
.block-photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: clamp(20px, 4vw, 48px) clamp(20px, 5vw, 60px);
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    color: #fff;
  }
  .block-photo-caption .section-label { color: rgba(255,255,255,0.7); }
  .block-photo-caption .section-heading { color: #fff; }

  /* ─── ДВА ФОТО РЯДОМ ─── */
  .duo-photos {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: clamp(6px, 1.5vw, 12px);
    padding: 0 clamp(12px, 3vw, 40px);
	
  }
  
@media (min-width: 768px) {
  .duo-photos {
    display: grid;
  }	
}
  
  
  .duo-photos a {
    display: block;
    overflow: hidden;
    /*aspect-ratio: 3 / 4;*/
    background: var(--gray-light);
	margin-bottom: 10px;
  }
  .duo-photos img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
  }
  .duo-photos a:hover img { transform: scale(1.04); }

  /* ─── GRID SECTION wrapper ─── */
  .grid-section {
    padding: 0 clamp(12px, 3vw, 40px);
  }
  .grid-section-head {
    padding: clamp(20px, 3vw, 40px) 0 clamp(16px, 2vw, 28px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }
  .grid-section-head a.see-all {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  .grid-section-head a.see-all:hover { opacity: 0.5; }

  /* ─── BLOCK: 2×2 grid ─── */
  .block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(6px, 1.5vw, 14px);
  }
  .block-grid a {
    display: block;
    overflow: hidden;
    /*aspect-ratio: 3 / 4;*/
    background: var(--gray-light);
    border-radius: 2px;
  }
  .block-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
  }
  .block-grid a:hover img { transform: scale(1.04); }

  /* ─── SPACING ─── */
  .spacer { height: 2px; }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid var(--gray-mid);
    padding: 32px 16px;
    text-align: center;
  }
  footer .foot-logo {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
  }
  footer .foot-logo img {
    height: 40px;
    width: auto;
    opacity: 0.85;
  }
  footer p {
    font-size: 12px;
    color: var(--gray-text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
.noneTPL {
   text-align: center;
   font-size: 18px;
   margin-bottom: 20px;
}	

/* ══════════════════════════════════════
   ХЛЕБНЫЕ КРОШКИ (раздел + карточка)
   ══════════════════════════════════════ */
.breadcrumbs {
  padding: 14px clamp(12px, 3vw, 32px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gray-text);
}
.breadcrumbs a { color: var(--gray-text); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--black); }
.breadcrumbs .sep { opacity: 0.45; }
.breadcrumbs .current { color: var(--black); font-weight: 500; }


/* ══════════════════════════════════════
   КАТАЛОГ — страница раздела
   ══════════════════════════════════════ */

/* Заголовок */
.catalog-header {
  padding: clamp(20px, 4vw, 48px) clamp(12px, 3vw, 32px);
  text-align: center;
}
.catalog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 4.5vw, 40px);
    font-weight: 300;
    letter-spacing: 0.04em;
    font-style: italic;
}
.catalog-count {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  display: block;
  padding-bottom: 4px;
}

/* Сетка */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 0 0 32px;
  background: var(--white);
}
@media (min-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0 0 48px;
  }
}

/* Карточка товара */
.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--black);
  position: relative;
}
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  /*aspect-ratio: 3 / 4;*/
  touch-action: pan-y;
}
.product-card__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s ease;
  will-change: transform;
}
.product-card__img {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  /*object-fit: cover;
  object-position: center top;*/
}
/*
@media (hover: hover) {
  .product-card:hover .product-card__track {
    transform: translateX(-100%);
  }
}
*/
.product-card__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  pointer-events: none;
}
.product-card__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
}
.product-card__dot.active { background: #fff; }
@media (hover: hover) {
  .product-card__dots { display: none; }
}
.product-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 3px 7px;
  pointer-events: none;
}
.product-card__info {
  padding: clamp(12px, 2vw, 20px) 10px clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 768px) {
  .product-card__info { padding: clamp(14px, 2vw, 20px) 10px clamp(20px, 3vw, 28px); }
}
.product-card__name {
  font-family: 'Jost', sans-serif;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__price {
  font-family: 'Jost', sans-serif;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--black);
}
.product-card__price-old {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--gray-text);
  text-decoration: line-through;
}
.product-card__price.sale { color: #b00; }

/* Пагинация */
.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: clamp(32px, 5vw, 64px) 16px;
  border-top: 1px solid var(--gray-mid);
}
.catalog-pagination a,
.catalog-pagination span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s;
  border: 1px solid transparent;
}
.catalog-pagination a:hover { background: var(--gray-light); }
.catalog-pagination .active { border-color: var(--black); font-weight: 500; }
.catalog-pagination .arrow svg { width: 16px; height: 16px; stroke: var(--black); fill: none; stroke-width: 1.8; }
.catalog-pagination .arrow.disabled svg { stroke: var(--gray-mid); }
.catalog-pagination .arrow.disabled { pointer-events: none; }


/* ══════════════════════════════════════
   СТРАНИЦА ТОВАРА — карточка
   ══════════════════════════════════════ */

.product-page { display: block; }
@media (min-width: 900px) {
  .product-page {
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-template-rows: auto 1fr;
    align-items: start;
    gap: 0 clamp(32px, 4vw, 64px);
    padding: 0 clamp(16px, 3vw, 48px);
  }
  .product-breadcrumbs { grid-column: 1 / -1; }
  .product-gallery     { grid-column: 1; grid-row: 2; }
  .product-info        { grid-column: 2; grid-row: 2; position: sticky; top: calc(var(--header-h) + 20px); }
}

/* Галерея — мобил слайдер */
.product-gallery__slider {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
  width: 100%;
}
/*
.product-gallery__track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
  touch-action: pan-y; 
}
*/
.swiper-slide {

  background: #f0f0f0;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
/*
.product-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 0;
  opacity: 0;
}
.product-gallery__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.product-gallery__dot.active {
  background: var(--black);
  transform: scale(1.3);
}
*/
/* Галерея — десктоп плитка */
.product-gallery__grid { display: none; }
@media (min-width: 900px) {
  .product-gallery__slider { display: none !important; }
  .product-gallery__dots   { display: none; }
  .product-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 6px;
  }
  .product-gallery__grid-item {
    /*aspect-ratio: 3 / 4;*/
    overflow: hidden;
    background: #f0f0f0;
    cursor: zoom-in;
  }
  .product-gallery__grid-item img {
    display: block;
    width: 100%; height: 100%;
    /*object-fit: cover;
    object-position: top center;*/
    transition: transform 0.5s ease;
  }
  .product-gallery__grid-item:hover img { transform: scale(1.03); }
}

/* Лайтбокс */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img-wrap {
  max-width: 90vw; max-height: 92vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__img {
  display: block;
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  user-select: none;
  transition: opacity 0.2s ease;
}
.lightbox__close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  background: none; border: none; cursor: pointer;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__close svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; }
.lightbox__arrow {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__arrow:hover { background: rgba(255,255,255,0.18); }
.lightbox__arrow svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; }
.lightbox__arrow.prev { left: 16px; }
.lightbox__arrow.next { right: 16px; }
.lightbox__counter {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

/* Инфо о товаре */
.product-info {
  padding: clamp(20px, 4vw, 32px) clamp(12px, 3vw, 0px);
}
@media (min-width: 900px) {
  .product-info { padding: 0 0 40px; }
}
.product-info__title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.product-info__price {
  font-family: 'Jost', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.product-info__price-old {
  font-size: 14px;
  color: var(--gray-text);
  text-decoration: line-through;
  margin-left: 8px;
}

/* Размеры */
.product-sizes__label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 10px;
  display: block;
}
.product-sizes__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.product-sizes__btn {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  width: 44px; height: 44px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.product-sizes__btn:hover { border-color: var(--black); }
.product-sizes__btn.active { border-color: var(--black); background: var(--black); color: var(--white); }
.product-sizes__btn.unavailable { color: var(--gray-mid); cursor: default; position: relative; }
.product-sizes__btn.unavailable::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 130%; height: 1px;
  background: var(--gray-mid);
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* Кнопка корзины */
.product-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 32px;
}
.product-add-btn:hover { opacity: 0.85; }

/* Аккордеон */
.accordion { border-top: 1px solid var(--gray-mid); }
.accordion__item { border-bottom: 1px solid var(--gray-mid); }
.accordion__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none; border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-align: left;
  gap: 12px;
}
.accordion__icon {
  width: 16px; height: 16px;
  position: relative;
  flex-shrink: 0;
}
.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.accordion__icon::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion__icon::after  { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion__item.open .accordion__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.accordion__body-inner {
  padding: 0 0 20px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  letter-spacing: 0.02em;
}

/* Похожие товары */
.related {
  padding: clamp(32px, 5vw, 64px) 0;
  border-top: 1px solid var(--gray-mid);
  overflow: hidden;
}
.related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 3vw, 48px) 20px;
}
.related__title {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.related__arrows { display: flex; gap: 8px; }
.related__arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-mid);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.related__arrow:hover { border-color: var(--black); }
.related__arrow svg { width: 14px; height: 14px; stroke: var(--black); fill: none; stroke-width: 1.8; }
.related__track-wrap { overflow: hidden; padding: 0 clamp(12px, 3vw, 48px); }
.related__track {
  display: flex;
  gap: 6px;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.related__card { flex: 0 0 calc(50% - 3px); text-decoration: none; color: var(--black); }
@media (min-width: 600px) { .related__card { flex: 0 0 calc(33.333% - 4px); } }
@media (min-width: 900px) { .related__card { flex: 0 0 calc(25% - 5px); } }
.related__card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 10px;
}
.related__card-img img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.related__card:hover .related__card-img img { transform: scale(1.04); }
.related__card-name {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related__card-price {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--black);
}



/* ══════════════════════════════════════
   ТЕКСТОВАЯ СТРАНИЦА
   ══════════════════════════════════════ */

/* Обёртка */
.text-page {
  padding: clamp(24px, 4vw, 18px) clamp(16px, 5vw, 18px);
}
.text-page__inner {
  max-width: 860px;
  margin: 0 auto;
}

/* ─── Заголовки ─── */
.text-page__inner h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 clamp(20px, 3vw, 36px);
  color: var(--black);
}
.text-page__inner h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: clamp(32px, 5vw, 56px) 0 clamp(12px, 2vw, 20px);
  color: var(--black);
}
.text-page__inner h3 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  margin: clamp(24px, 4vw, 40px) 0 clamp(10px, 1.5vw, 16px);
  color: var(--black);
}
.text-page__inner h4 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: clamp(20px, 3vw, 32px) 0 8px;
  color: var(--black);
}
.text-page__inner h5 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  margin: clamp(16px, 2.5vw, 28px) 0 8px;
  color: var(--black);
}
.text-page__inner h6 {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  margin: clamp(12px, 2vw, 20px) 0 6px;
  color: var(--gray-text);
}

/* ─── Параграф ─── */
.text-page__inner p {
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #333;
  margin: 0 0 clamp(14px, 2vw, 20px);
}

/* ─── Ссылки внутри текста ─── */
.text-page__inner a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.text-page__inner a:hover { opacity: 0.55; }

/* ─── Жирный / курсив ─── */
.text-page__inner strong, .text-page__inner b { font-weight: 400; }
.text-page__inner em, .text-page__inner i { font-style: italic; }

/* ─── Маркированный список ─── */
.text-page__inner ul {
  margin: 0 0 clamp(14px, 2vw, 20px);
  padding-left: clamp(18px, 3vw, 28px);
  list-style: none;
}
.text-page__inner ul li {
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  color: #333;
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}
.text-page__inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
}

/* ─── Нумерованный список ─── */
.text-page__inner ol {
  margin: 0 0 clamp(14px, 2vw, 20px);
  padding-left: clamp(18px, 3vw, 28px);
  list-style: none;
  counter-reset: ol-counter;
}
.text-page__inner ol li {
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  color: #333;
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  counter-increment: ol-counter;
}
.text-page__inner ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  font-weight: 500;
  color: var(--black);
  font-size: 13px;
}

/* ─── Вложенные списки ─── */
.text-page__inner ul ul,
.text-page__inner ol ol,
.text-page__inner ul ol,
.text-page__inner ol ul {
  margin: 6px 0 6px;
}
.text-page__inner ul ul li::before {
  width: 4px; height: 4px;
  background: none;
  border: 1px solid var(--black);
}

/* ─── Цитата blockquote ─── */
.text-page__inner blockquote {
  margin: clamp(24px, 4vw, 40px) 0;
  padding: clamp(16px, 3vw, 28px) clamp(20px, 4vw, 36px);
  border-left: 2px solid var(--black);
  background: var(--gray-light);
}
.text-page__inner blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  margin: 0;
}

/* ─── Горизонтальная линия ─── */
.text-page__inner hr {
  border: none;
  border-top: 1px solid var(--gray-mid);
  margin: clamp(28px, 5vw, 48px) 0;
}

/* ─── Код ─── */
.text-page__inner code {
  font-family: monospace;
  font-size: 13px;
  background: var(--gray-light);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--black);
}
.text-page__inner pre {
  background: var(--gray-light);
  padding: 16px 20px;
  overflow-x: auto;
  margin: 0 0 20px;
  border-radius: 2px;
}
.text-page__inner pre code {
  background: none;
  padding: 0;
}

/* ─── Таблица ─── */
.text-page__inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 clamp(14px, 2vw, 24px);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
}
.text-page__inner th {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 10px 14px;
  border-bottom: 2px solid var(--black);
  text-align: left;
  color: var(--black);
}
.text-page__inner td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-mid);
  color: #333;
  font-weight: 300;
  line-height: 1.5;
}
.text-page__inner tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════
   ФУТЕР — ссылки
   ══════════════════════════════════════ */
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 16px 0 12px;
}
.foot-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-nav a:hover { color: var(--black); }

.foot-copy {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* ══════════════════════════════════════
   СТРАНИЦА КОНТАКТОВ — contacts.css
   ══════════════════════════════════════ */

/* ─── Заголовок ─── */
.contacts-hero {
  padding: clamp(32px, 6vw, 72px) clamp(16px, 5vw, 80px) clamp(20px, 4vw, 48px);
  text-align: center;
  border-bottom: 1px solid var(--gray-mid);
}
.contacts-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 4.5vw, 40px);
    font-weight: 300;
    letter-spacing: 0.04em;
    font-style: italic;
  margin-bottom: 10px;
}
.contacts-hero__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--gray-text);
  letter-spacing: 0.02em;
}

/* ─── Инфо-карточки ─── */
.contacts-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray-mid);
}
@media (min-width: 768px) {
  .contacts-info { grid-template-columns: repeat(2, 1fr); }
}

.contacts-info__card {
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px);
  border-right: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.contacts-info__card:last-child { border-right: none; }
@media (min-width: 768px) {
  .contacts-info__card { border-bottom: none; }
  .contacts-info__card:nth-child(2) { border-right: 1px solid var(--gray-mid); }
}
@media (max-width: 767px) {
  .contacts-info__card:nth-child(even) { border-right: none; }
}

.contacts-info__icon {
  width: 28px; height: 28px;
  margin-bottom: 4px;
}
.contacts-info__icon svg {
  width: 100%; height: 100%;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contacts-info__label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.contacts-info__value {
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  line-height: 1.4;
  transition: opacity 0.2s;
}
a.contacts-info__value:hover { opacity: 0.55; }
.contacts-info__value-sub {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.4;
}

/* ─── Соцсети ─── */
.contacts-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(20px, 3vw, 32px) 16px;
  border-bottom: 1px solid var(--gray-mid);
}
.contacts-social__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s;
}
.contacts-social__link:hover { opacity: 0.5; }
.contacts-social__link svg {
  width: 18px; height: 18px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── Основной блок: форма + карта ─── */
.contacts-main {

  grid-template-columns: 1fr;
  min-height: 500px;
}
@media (min-width: 768px) {
  .contacts-main {
    
  }
}

/* ─── Форма ─── */
.contacts-form-wrap {
  padding: clamp(32px, 5vw, 64px) clamp(20px, 5vw, 64px);
  border-right: 1px solid var(--gray-mid);
}
@media (max-width: 767px) {
  .contacts-form-wrap { border-right: none; border-bottom: 1px solid var(--gray-mid); }
}
.contacts-form-wrap__title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--black);
}
.contacts-form-wrap__desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Поля формы */
.cform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cform__field { display: flex; flex-direction: column; gap: 6px; }
.cform__field--full { grid-column: 1 / -1; }

.cform__label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.cform__input {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-mid);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  border-radius: 0;
}
.cform__input:focus { border-color: var(--black); }
.cform__input::placeholder { color: var(--gray-text); }
.cform__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.cform__submit {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}
.cform__submit:hover { opacity: 0.8; }
.cform__success {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  line-height: 1.6;
  padding: 20px 0;
  grid-column: 1 / -1;
}

/* ─── Карта ─── */
.contacts-map {
  min-height: 400px;
  background: var(--gray-light);
  position: relative;
}
@media (min-width: 768px) {
  .contacts-map { min-height: 560px; }
}
.contacts-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}



/* ─── Radio-размеры ─── */
.product-sizes__item {
  display: block;
  cursor: pointer;
}
.product-sizes__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.product-sizes__radio:checked + .product-sizes__btn {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.product-sizes__radio:checked + .product-sizes__btn.unavailable {
  background: none;
  color: var(--gray-mid);
  border-color: var(--gray-mid);
}





/* ══════════════════════════════════════
   КОРЗИНА — cart.css
   ══════════════════════════════════════ */

/* ─── Заголовок страницы ─── */
.cart-hero {
  padding: clamp(24px, 4vw, 48px) clamp(16px, 5vw, 64px) clamp(16px, 3vw, 32px);
  border-bottom: 1px solid var(--gray-mid);
}
.cart-hero__title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--black);
}

/* ─── Обёртка ─── */
.cart-wrap {
  padding: clamp(24px, 4vw, 48px) clamp(16px, 5vw, 64px);
}

/* Убираем стандартные стили Shopkeeper */
.shop-cart { all: unset; display: block; }
.shop-cart-head { display: none; }
.shop-cart fieldset { border: none; padding: 0; margin: 0; }

/* ══════════════════════════════════════
   ШАПКА СПИСКА
   ══════════════════════════════════════ */
.cart-list-head {
  display: none; /* на мобиле скрыта */
}
@media (min-width: 768px) {
  .cart-list-head {
    display: flex;
    align-items: center;
    padding: 0 0 12px;
    border-bottom: 2px solid var(--black);
    margin-bottom: 0;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-text);
  }
  .cart-list-head__item  { flex: 1; }
  .cart-list-head__price { width: 140px; text-align: right; }
  .cart-list-head__qty   { width: 130px; text-align: center; }
  .cart-list-head__del   { width: 80px; text-align: right; }
}

/* Ссылка очистить */
#butEmptyCart {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
#butEmptyCart:hover { color: var(--black); border-color: var(--black); }

/* ══════════════════════════════════════
   СТРОКА ТОВАРА
   ══════════════════════════════════════ */
.cart-item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 24px);
  padding: clamp(16px, 3vw, 24px) 0;
  border-bottom: 1px solid var(--gray-mid);
}

/* Фото */
.cart-item__img-wrap {
  flex-shrink: 0;
  width: clamp(70px, 12vw, 110px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0;
  display: block;
}
.cart-item__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.cart-item__img-wrap:hover .cart-item__img { transform: scale(1.04); }

/* Название + параметры */
.cart-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item__name {
  font-family: 'Jost', sans-serif;
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  line-height: 1.35;
  transition: opacity 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item__name:hover { opacity: 0.55; }
.cart-item__params {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-text);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Цена */
.cart-item__price {
  font-family: 'Jost', sans-serif;
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 400;
  color: var(--black);
  white-space: nowrap;
  width: 140px;
  text-align: right;
  flex-shrink: 0;
}

/* Количество — кнопки +/- */
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  width: 130px;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item__qty-btn {
  width: 32px;
  height: 36px;
  background: none;
  border: 1px solid var(--gray-mid);
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.15s;
  line-height: 1;
  padding: 0;
  user-select: none;
}
.cart-item__qty-btn:hover { border-color: var(--black); background: var(--gray-light); }
.cart-item__qty-input {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-left: none;
  border-right: none;
  width: 44px;
  height: 36px;
  text-align: center;
  outline: none;
  border-radius: 0;
  appearance: none;
  -moz-appearance: textfield;
}
.cart-item__qty-input:focus { border-color: var(--black); border-left: 1px solid var(--black); border-right: 1px solid var(--black); }

/* Кнопка удалить */
.cart-item__del {
  width: 80px;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s;
}
.cart-item__del:hover { color: var(--black); }
.cart-item__del svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* ─── Мобил: прячем цену и кнопку удалить ─── */
@media (max-width: 560px) {
  .cart-item__price { display: none; }
  .cart-item__qty   { width: auto; }
  .cart-item__del   { width: auto; }
}

/* ══════════════════════════════════════
   ПОДВАЛ КОРЗИНЫ
   ══════════════════════════════════════ */
.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: clamp(20px, 4vw, 36px) 0 0;
}
.cart-footer__total {
  font-family: 'Jost', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
}
.cart-footer__total strong {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  margin-left: 4px;
}

/* Кнопка оформить заказ */
.cart-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(24px, 4vw, 40px);
  height: 52px;
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.cart-footer__btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-footer__btn:hover { opacity: 0.82; }

@media (max-width: 560px) {
  .cart-footer { flex-direction: column; align-items: flex-start; }
  .cart-footer__btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════
   ПУСТАЯ КОРЗИНА
   ══════════════════════════════════════ */
#cartInner.empty {
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
}
#cartEmpty {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(20px, 3vw, 28px) !important;
  font-style: italic;
  font-weight: 300;
  color: var(--gray-text);
  text-align: center !important;
}

/* ─── Noscript ─── */
.shop-cart noscript fieldset { border: none; padding: 8px 0; }
.shop-cart noscript input[type="submit"] {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--gray-mid);
  color: var(--black);
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 0;
  transition: border-color 0.2s;
}
.shop-cart noscript input[type="submit"]:hover { border-color: var(--black); }




.cart_info table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
	font-family: 'Jost', sans-serif;
}


.cart_info table th {
    padding: 20px;
    color: #4b4b4b;
    font-family: 'Jost', sans-serif;
	font-weight: 500;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.cart_info table td {
    padding: 15px;
    table-layout: fixed;
    color: #4b4b4b;
    font: 300 16px Roboto;
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid #d7d7d7;
	font-family: 'Jost', sans-serif;
}

.cart_info .table_box {
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
}

@media (max-width: 560px) {
  .cart_info .table_box {overflow: scroll;}
}

.cart_info .table_box .image img {
	width: 120px;
}

.cart_info table td + td {
    border-left: 1px solid #d7d7d7;
}

.cart_info table th + th {
    border-left: 1px solid #d7d7d7;
}

.cart_info table .url a {
	font-family: 'Jost', sans-serif;
	color: #000;
	text-decoration: none;
	font-size: 20px;
}

.cart_info table .shk-count {
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
}


/* ─── Итого ─── */
.cart_total {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px) 0 clamp(16px, 2vw, 24px);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-text);
  justify-content: flex-start;
}
.cart_total .price {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}
.cart_total .currency {
  font-size: 0.7em;
  font-weight: 400;
  margin-left: 2px;
}

/* ─── Кнопки ─── */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: clamp(24px, 4vw, 40px);
  justify-content: flex-start;
}

/* Оформить заказ — чёрная */
.checkout_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 clamp(24px, 4vw, 40px);
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
.checkout_link:hover { opacity: 0.8; }

/* Продолжить покупки — контурная */
.continue_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 clamp(24px, 4vw, 40px);
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gray-mid);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s;
}
.continue_link:hover { border-color: var(--black); }

.cart_total,
.buttons {
  justify-content: flex-end;
}

/* Мобил — кнопки во всю ширину */
@media (max-width: 560px) {
  .checkout_link,
  .continue_link { width: 100%; }
}


/* ══════════════════════════════════════
   ФОРМА ЗАКАЗА — перезапись
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   ФОРМА ОФОРМЛЕНИЯ ЗАКАЗА
   ══════════════════════════════════════ */

.block_title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  padding: clamp(20px, 3vw, 36px) 0 clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--gray-mid);
  margin-bottom: clamp(20px, 3vw, 32px);
}

/* ─── Секции ─── */
.shopOrderForm .section {
  margin-bottom: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--gray-mid);
}

.shopOrderForm .title {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 14px;
}

/* ─── Сетка полей ─── */
.shopOrderForm .columns.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
@media (max-width: 560px) {
  .shopOrderForm .columns.row { grid-template-columns: 1fr; }
}

/* ─── Поле ─── */
.shopOrderForm .field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Лейбл */
.shopOrderForm .label {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
  order: -1;
}

/* ─── Input ─── */
.shopOrderForm .input {
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--black) !important;
  background: var(--white) !important;
  border: 1px solid var(--gray-mid) !important;
  border-radius: 0 !important;
  padding: 10px 12px !important;
  width: 100% !important;
  height: 42px !important;
  outline: none !important;
  appearance: none !important;
  transition: border-color 0.2s !important;
}
.shopOrderForm .input:focus {
  border-color: var(--black) !important;
}

/* ─── Textarea ─── */
.shopOrderForm .textarea {
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--black) !important;
  background: var(--white) !important;
  border: 1px solid var(--gray-mid) !important;
  border-radius: 0 !important;
  padding: 10px 12px !important;
  width: 100% !important;
  min-height: 90px !important;
  resize: vertical !important;
  line-height: 1.5 !important;
  outline: none !important;
  transition: border-color 0.2s !important;
}
.shopOrderForm .textarea:focus {
  border-color: var(--black) !important;
}

/* ─── Доставка — radio кружочки ─── */
.shopOrderForm .cols.row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 32px;
}
.shopOrderForm .col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shopOrderForm input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.shopOrderForm input[type="radio"] + label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  padding: 3px 0;
  border: none;
  background: none;
  user-select: none;
  line-height: 1;
}
.shopOrderForm input[type="radio"]:checked + label {
  font-weight: 500;
}
.shopOrderForm input[type="radio"] + label .check {
  display: flex;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--gray-mid);
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  background: var(--white);
}
.shopOrderForm input[type="radio"] + label .check svg { display: none; }
.shopOrderForm input[type="radio"]:checked + label .check {
  border: 5px solid var(--black);
}

/* ─── Чекбоксы ─── */
.shopOrderForm .row- {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shopOrderForm input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.shopOrderForm input[type="checkbox"] + label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.55;
}
.shopOrderForm .check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gray-mid);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: border-color 0.2s, background 0.2s;
  background: var(--white);
}
.shopOrderForm input[type="checkbox"]:checked + label .check {
  background: var(--black);
  border-color: var(--black);
}
.shopOrderForm input[type="checkbox"]:checked + label .check::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
}
.shopOrderForm input[type="checkbox"] + label .check svg { display: none; }

.shopOrderForm input[type="checkbox"] + label a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.shopOrderForm input[type="checkbox"] + label a:hover { opacity: 0.55; }

/* ─── Кнопка отправить ─── */
.shopOrderForm .submit {
  padding-top: clamp(16px, 2vw, 24px);
}
.shopOrderForm .submit_btn {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: none;
  height: 50px;
  padding: 0 clamp(32px, 5vw, 60px);
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shopOrderForm .submit_btn:hover { opacity: 0.82; }

@media (max-width: 560px) {
  .shopOrderForm .submit_btn { width: 100%; }
}


/* ══════════════════════════════════════
   СТРАНИЦА ПОИСКА
   ══════════════════════════════════════ */

/* ─── Форма поиска ─── */
.search_forma {
  display: flex;
  gap: 0;
  align-items: flex-end;
  margin-bottom: clamp(32px, 5vw, 56px);
  border-bottom: 2px solid var(--black);
  padding-bottom: 0;
}
.search_forma .line {
  flex: 1;
}
.search_forma .field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.search_forma .label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 6px;
}
.search_forma .input {
  font-family: 'Jost', sans-serif !important;
  font-size: clamp(16px, 3vw, 22px) !important;
  font-weight: 300 !important;
  color: var(--black) !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  padding: 8px 0 10px !important;
  width: 100% !important;
  border-radius: 0 !important;
  appearance: none !important;
}
.search_forma .input::placeholder {
  color: var(--gray-mid) !important;
}
.search_forma .submit {
  padding: 0;
  flex-shrink: 0;
}
.search_forma .submit_btn {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: none;
  height: 44px;
  padding: 0 clamp(20px, 3vw, 36px);
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  margin-bottom: 2px;
}
.search_forma .submit_btn:hover { opacity: 0.8; }

/* ─── Результаты evoSearch ─── */
.evoSearch_ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.evoSearch_ol li {
  padding: clamp(16px, 3vw, 24px) 0;
  border-bottom: 1px solid var(--gray-mid);
}
.evoSearch_ol li:first-child {
  border-top: 1px solid var(--gray-mid);
}

/* Заголовок результата */
.evoSearch_ol li a {
  font-family: 'Jost', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}
.evoSearch_ol li a:hover { opacity: 0.55; }

/* Описание */
.evoSearch_ol li p,
.evoSearch_ol li span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Выделение совпадения */
.evoSearch_ol li b,
.evoSearch_ol li strong {
  font-weight: 600;
  color: var(--black);
  background: #f5f5f5;
  padding: 0 2px;
}

/* Статистика поиска */
.evoSearch_stat {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray-text);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Пусто */
.evoSearch_empty {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: var(--gray-text);
  padding: clamp(32px, 5vw, 56px) 0;
  text-align: center;
}

@media (max-width: 560px) {
  .search_forma {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
    gap: 10px;
  }
  .search_forma .line {
    border-bottom: 2px solid var(--black);
  }
  .search_forma .submit_btn {
    width: 100%;
    justify-content: center;
  }
}


/* ─── Модалка таблицы размеров ─── */
.size-chart-link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  margin: 0 0 18px  0;
  transition: opacity 0.2s;
}
.size-chart-link:hover { opacity: 0.55; }

.size-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.size-modal.open {
  opacity: 1;
  pointer-events: all;
}
.size-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.size-modal__box {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.size-modal__img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.size-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.size-modal__close svg {
  width: 20px; height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}

#shopCart {
	position: relative;
	height: stretch !important;
}

#shopCart span.count {
    position: absolute;
    background: #000;
    width: 14px;
    height: 14px;
    color: #fff;
    font-size: 9px;
    text-align: center;
    border-radius: 50%;
    line-height: 15px;
    font-family: arial;
    top: 5px;
    right: 1px;
}

.bl_6 {
	display: none;
}

.bl_10 {
	height: auto  !important;
}

	.bl_20 {
	  padding: 94px 20px 80px 20px;
	}

	.bl_21 {
	  padding: 94px 20px 80px 20px;
	}
	

    .bl_40 {
		padding: 35px 0;
	}
	
	.bl_45 {
		margin-top: 80px;
	}

@media (max-width: 560px) {
	.bl_2 {
	  padding: 20px 20px 45px 20px;
	}
	
	.bl_45 {
		margin-top: 0px;
	}
	
	.bl_20 {
	  padding: 20px 20px 115px 20px;
	}
	
	.bl_21 {
	  padding: 20px 20px 84px 20px;
	}
	
	.bl_3 {
	  display: none;
	}

	.bl_5 {
	  display: none; 
	}

	.bl_6 {
		display: block;
	}

	.bl_10 {
		height: 80px !important;
	}

	.duo-photos a.bl_34 {
		display: none; 
	}

	
}

.phone-icon {
  position: relative;
}
.phone-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 7px 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.phone-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: var(--black);
}
@media (hover: hover) {
  .phone-icon:hover .phone-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@media (hover: none) {
  .phone-tooltip { display: none; }
}


@media (min-width: 768px) {
	
	.block-grid {
		max-width: 1000px;  /* Задайте общую ширину блока, которая вам подходит (например, 700px-900px) */
		margin: 0 auto;    /* Центрирует всю галерею на странице */
	}
	
	
  .block-grid a {
    aspect-ratio: unset;
    /*height: 700px;*/
	width: 100%;
	margin: 0 auto;
  }
  .block-grid img {
    /*height: 700px;*/
    object-fit: fill;
    object-position: 50% 50%;
  }
  
  .duo-photos img {
    height: 840px;
  }
  
  
}




.shk-counter {
  display: flex;
  align-items: center;
  gap: 4px;
}
.shk-counter input {
  width: 40px;
  text-align: center;
  padding: 5px;
  border-radius: 2px;
  border: 1px solid #ccc;
}
.shk-minus,
.shk-plus {
  width: 27px;
  padding: 5px;
  border-radius: 2px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shk-minus:hover,
.shk-plus:hover {
  background: #f0f0f0;
}

.cart-list {
  border: 1px solid #ccc;
  font-family: 'Jost', sans-serif;
  border-radius: 10px;
  overflow: hidden;
}

.cart-header {
  display: none;
}

.cart-row {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}

.cart-row__img {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-row__img img {
  width: 100%;
  height: auto;
  display: block;
}

.cart-row__body-mobile {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-row__name a {
  font-size: 16px;
  color: inherit;
  text-decoration: none;
}

.cart-row__size {
  font-size: 13px;
  color: #888;
}

.cart-row__bottom-mobile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-row__price {
  font-size: 15px;
  font-weight: 500;
  width: 100%;
}

.cart-row__del {
  margin-left: auto;
}

.cart-row__del a {
  color: #aaa;
  display: flex;
  align-items: center;
}

.cart-row__del a:hover { color: #333; }

.cart-row__del svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

@media (min-width: 768px) {
	
  .text-block .divider {
    width: 40px;
    height: 1px;
    background: transparent;
    margin: 20px auto 0;
	display: none;
  }

  .cart-header {
    display: flex;
    border-bottom: 2px solid #eee;
    font-size: 13px;
    color: #888;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
  }

  .cart-header div {
    display: flex;
    align-items: center;
    padding: 12px 8px;
  }

  .cart-header div:nth-child(1) { flex: 0 0 120px; justify-content: center; }
  .cart-header div:nth-child(2) { flex: 1; }
  .cart-header div:nth-child(3) { flex: 0 0 150px; justify-content: center; }
  .cart-header div:nth-child(4) { flex: 0 0 130px; justify-content: center; }
  .cart-header div:nth-child(5) { flex: 0 0 120px; justify-content: center; }
  .cart-header div:nth-child(6) { flex: 0 0 50px;  justify-content: center; }

  .cart-row {
    align-items: center;
    padding: 8px 0;
    gap: 0;
  }

  .cart-row__img {
    flex: 0 0 120px;
    padding: 12px 8px;
    align-items: center;
    justify-content: center;
  }

  .cart-row__name {
    flex: 1;
    padding: 12px 8px;
  }

  .cart-row__size {
    flex: 0 0 150px;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #888;
  }

  .cart-row__counter {
    flex: 0 0 130px;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-row__price {
    flex: 0 0 120px;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
  }

  .cart-row__del {
    flex: 0 0 50px;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  .cart-row__body-mobile,
  .cart-row__bottom-mobile {
    display: contents;
  }
}