/* ==========================================================================
   ROKODIL — pages.css
   Точные стили главной страницы по Figma node 5:205
   Контент: x=261..1659 (1398px), страницы 1920px
   ========================================================================== */

.page-container {
  max-width: 1398px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   1. HERO-ЭКРАН (5:3131, 1920×882)
   ========================================================================== */
.hero-screen {
  position: relative;
  height: 882px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('../img/banners/hero-bg.png') center/cover no-repeat;
}
.hero-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.12) 100%);
  z-index: 0;
}
.hero-screen__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}
.hero-screen__subtitle { font-size: 16px; line-height: 26px; color: #fff; margin-bottom: 14px; }
.hero-screen__title { font-family: var(--font-display); font-weight: 500; font-size: 64px; line-height: 72px; color: #fff; margin-bottom: 50px; }
.hero-screen__search {
  display: flex; align-items: center; gap: 6px;
  width: 800px; max-width: 100%; height: 64px;
  background: #fff; border-radius: 12px; padding: 6px 6px 6px 24px; margin-bottom: 32px;
}
.hero-screen__search input { flex: 1; border: none; background: transparent; font-size: 16px; color: #252B2B; }
.hero-screen__search input:focus { outline: none; }
.hero-screen__search input::placeholder { color: #868686; }
.hero-screen__search-btn {
  display: flex; align-items: center; gap: 8px; height: 52px; padding: 0 24px;
  background: #006C66; color: #fff; border-radius: 8px; font-size: 16px; font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,108,102,0.24), 0 4px 4px rgba(0,0,0,0.15); transition: background 0.2s;
}
.hero-screen__search-btn:hover { background: #057F72; }
.hero-screen__tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-screen__tag {
  display: flex; align-items: center; height: 40px; padding: 0 14px;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-radius: 999px; font-size: 14px; font-weight: 500; color: #fff; transition: background 0.2s;
}
.hero-screen__tag:hover { background: rgba(255,255,255,0.25); }
.hero-screen__progress {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px; z-index: 1;
}
.hero-screen__progress span { width: 35px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; cursor: pointer; }
.hero-screen__progress span.is-active { background: #fff; }
@media (max-width: 768px) {
  .hero-screen { height: 636px; padding: 24px 16px; }
  .hero-screen__subtitle { font-size: 14px; line-height: 20px; margin-bottom: 12px; }
  .hero-screen__title { font-size: 36px; line-height: 40px; font-weight: 500; margin-bottom: 24px; }
  .hero-screen__search { height: 48px; border-radius: 4px; padding: 4px 4px 4px 16px; margin-bottom: 16px; }
  .hero-screen__search input { font-size: 12px; }
  .hero-screen__search-btn { height: 40px; padding: 0 16px; font-size: 14px; border-radius: 4px; }
  .hero-screen__tags { display: flex; gap: 8px; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 8px; width: 100%; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .hero-screen__tags::-webkit-scrollbar { display: none; }
  .hero-screen__tag { height: 34px; padding: 0 14px; font-size: 13px; font-weight: 500; background: #FFFFFF; color: #252B2B; border: 1px solid #E3E5E6; border-radius: 4px; white-space: nowrap; flex-shrink: 0; }
}

/* ==========================================================================
   2. ПОЧЕМУ ВЫБИРАЮТ ROKODIL (84:5990, 1892×987)
   ========================================================================== */
.why-us { padding: 80px 0; }
.why-us__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 237px; margin-bottom: 56px; }
.why-us__title { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 64px; color: #252B2B; flex-shrink: 0; }
.why-us__title span { text-transform: lowercase; }
.why-us__subtitle { font-size: 18px; line-height: 30px; color: #979E9F; max-width: 616px; padding-top: 12px; }

.why-us__grid {
  display: grid;
  grid-template-columns: 1.54fr 1fr 1.54fr;
  grid-template-rows: 540px 238px;
  grid-template-areas: "protection testing warranty" "service service warranty";
  gap: 14px;
}
.why-card--protection {
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 20, 22, 0.3) 40%, rgba(0, 8, 10, 0.92) 100%), url('../img/banners/card-protection.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.why-card--testing { grid-area: testing; }
.why-card--warranty {
  grid-area: warranty;
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 108, 102, 0.25) 40%, rgba(0, 48, 44, 0.95) 100%), url('../img/banners/card-warranty.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.why-service { grid-area: service; }

.why-card {
  position: relative; border-radius: 4px; overflow: hidden; color: #fff;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.why-card--protection {
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 20, 22, 0.3) 40%, rgba(0, 8, 10, 0.92) 100%), url('../img/banners/card-protection.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.why-card--warranty {
  grid-area: warranty;
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 108, 102, 0.25) 40%, rgba(0, 48, 44, 0.95) 100%), url('../img/banners/card-warranty.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.why-card__scrim { position: absolute; z-index: 1; border-radius: 0; }
.why-card--protection .why-card__scrim {
  left: 0; right: 0; bottom: 0; height: 216px;
  background: linear-gradient(to top, rgba(1, 30, 30, 0.85) 0%, rgba(1, 50, 50, 0.3) 50%, transparent 100%);
}
.why-card--warranty .why-card__scrim {
  left: -20px; right: -20px; bottom: 0; height: 202px;
  background: linear-gradient(to top, rgba(0, 70, 66, 0.95) 0%, rgba(18, 97, 93, 0.4) 50%, transparent 100%);
}

.why-card__caption { position: absolute; z-index: 2; }
.why-card--protection .why-card__caption { left: 190px; right: 40px; bottom: 46px; text-align: left; }
.why-card--warranty .why-card__caption { left: 56px; right: 56px; bottom: 46px; }
.why-card__title { font-family: var(--font-display); font-weight: 500; font-size: 32px; line-height: 46px; margin-bottom: 20px; }
.why-card__desc { font-size: 16px; line-height: 26px; }
.why-card--protection .why-card__desc { max-width: 374px; margin: 0; }
.why-card--warranty .why-card__desc { max-width: 389px; }

.why-card--testing { background: linear-gradient(180deg, #00181A 0%, #000203 42%, #000002 100%); display: flex; flex-direction: column; }
.why-card__testing-top { padding: 80px 43px 24px; position: relative; z-index: 2; }
.why-card--testing .why-card__desc { color: rgba(255,255,255,0.6); }
.why-card__testing-photo { margin-top: auto; height: 304px; background: url('../img/banners/card-testing-photo.png') center/cover no-repeat; }

.why-service { background: #F7F7F7; border-radius: 4px; position: relative; overflow: hidden; }
.why-service__info { position: absolute; left: 190px; top: 60px; max-width: 448px; z-index: 2; }
.why-service__title { font-family: var(--font-display); font-weight: 500; font-size: 32px; line-height: 46px; color: #252B2B; margin-bottom: 20px; }
.why-service__desc { font-size: 16px; line-height: 26px; color: #555B5C; }
.why-service__map {
  position: absolute;
  right: -10px;
  top: -52px;
  width: 580px;
  height: 320px;
  background: url('../img/banners/map-russia.png') center right / contain no-repeat;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .why-us__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; grid-template-areas: "protection testing" "warranty warranty" "service service"; }
  .why-card--warranty {
  grid-area: warranty;
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 108, 102, 0.25) 40%, rgba(0, 48, 44, 0.95) 100%), url('../img/banners/card-warranty.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
  .why-us__head { flex-direction: column; gap: 16px; }
}
@media (max-width: 768px) {
  .why-us { padding: 48px 0; }
  .why-us__head { flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .why-us__title { font-size: 32px; line-height: 38px; }
  .why-us__subtitle { font-size: 14px; line-height: 20px; padding-top: 0; }
  .why-us__grid { grid-template-columns: 1fr; grid-template-areas: "protection" "testing" "warranty" "service"; gap: 16px; }
  .why-card { min-height: 420px; height: 420px; border-radius: 8px; }
  .why-card--protection .why-card__caption { left: 24px; right: 24px; bottom: 32px; }
  .why-card--warranty .why-card__caption { left: 24px; right: 24px; bottom: 32px; }
  .why-card__title { font-size: 26px; line-height: 34px; margin-bottom: 12px; }
  .why-card__desc { font-size: 14px; line-height: 20px; }
  .why-card__testing-top { padding: 32px 24px 16px; }
  .why-card__testing-photo { height: 220px; }
  .why-service { min-height: 420px; height: 420px; border-radius: 8px; }
  .why-service__info { position: relative; left: 0; top: 0; padding: 32px 24px; max-width: 100%; z-index: 2; }
  .why-service__title { font-size: 26px; line-height: 34px; color: #252B2B; margin-bottom: 12px; }
  .why-service__desc { font-size: 14px; line-height: 20px; }
  .why-service__map { position: absolute; right: -20px; bottom: -20px; top: auto; width: 100%; height: 220px; background: url('../img/banners/map-russia.png') center right / contain no-repeat; z-index: 1; opacity: 0.7; pointer-events: none; }
}

/* ==========================================================================
   3. ТЕХНОЛОГИИ (5:805, 1920×1224, фон #121212)
   ========================================================================== */
.technologies { position: relative; background: #121212; color: #fff; overflow: hidden; }
.technologies__skin {
  position: absolute; left: 0; top: 0; width: 55%; max-width: 1056px; height: 100%;
  background: url('../img/banners/tech-pattern.png') left center/cover no-repeat; opacity: 0.4; z-index: 0;
}
.technologies__inner { position: relative; z-index: 1; max-width: 1398px; margin: 0 auto; padding: 132px 32px; }
.technologies__head {
  display: grid;
  grid-template-columns: 810px 1fr;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 80px;
}
.technologies__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  background: linear-gradient(166deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 810px;
  width: 100%;
}
.technologies__subtitle {
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 574px;
  width: 100%;
  padding-top: 10px;
}
.technologies__grid { display: grid; grid-template-columns: 810px 1fr; gap: 14px; align-items: start; }

.tech-slider {
  position: relative; width: 810px; height: 700px; border-radius: 4px; overflow: hidden;
  background: linear-gradient(180deg, #DFDDDC 0%, #DFDDDC 100%); cursor: ew-resize; user-select: none;
}
.tech-slider__after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.tech-slider__before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; overflow: hidden; clip-path: inset(0 50% 0 0); }
.tech-slider__before img { width: 810px; height: 700px; object-fit: cover; }
.tech-slider__label { position: absolute; top: 36px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 999px; font-size: 14px; font-weight: 500; color: #fff; z-index: 4; }
.tech-slider__label--before { left: 36px; width: 74px; background: rgba(0,0,0,0.6); }
.tech-slider__label--after { right: 36px; width: 81px; background: rgba(255,255,255,0.2); }
.tech-slider__handle { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; background: #fff; box-shadow: 0 4px 6px -4px rgba(0,0,0,0.2), 0 10px 15px -3px rgba(0,0,0,0.15); z-index: 3; transform: translateX(-50%); }
.tech-slider__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 12.5px 15.6px -9.4px rgba(0,0,0,0.3), 0 31.25px 39px -7.8px rgba(0,0,0,0.3);
}

.tech-info { background: #303030; border-radius: 4px; padding: 50px; height: 700px; display: flex; flex-direction: column; }
.tech-info__num { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #252B2B; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-bottom: 78px; }
.tech-info__category { display: inline-flex; align-items: center; height: 40px; padding: 0 12px; border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; font-size: 14px; color: #fff; width: fit-content; margin-bottom: 24px; }
.tech-info__title { font-family: var(--font-display); font-weight: 500; font-size: 40px; line-height: 56px; margin-bottom: 24px; }
.tech-info__text { font-size: 16px; line-height: 26px; color: rgba(255,255,255,0.6); }
.tech-info__progress { margin-top: auto; height: 2px; background: rgba(255,255,255,0.15); border-radius: 1px; position: relative; }
.tech-info__progress::after { content: ''; position: absolute; height: 100%; width: 33%; background: #fff; border-radius: 1px; }

@media (max-width: 1400px) {
  .technologies__grid { grid-template-columns: 1fr; }
  .tech-slider { width: 100%; height: 560px; }
  .tech-slider__before img { width: 100%; height: 560px; }
  .tech-info { height: auto; min-height: 400px; }
}
@media (max-width: 768px) {
  .technologies__inner { padding: 48px 16px; }
  .technologies__head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .technologies__title { font-size: 32px; line-height: 38px; max-width: 100%; }
  .technologies__subtitle { font-size: 14px; line-height: 20px; padding-top: 0; }
  .technologies__grid { grid-template-columns: 1fr; gap: 16px; }
  .tech-slider { width: 100%; height: 300px; border-radius: 8px; }
  .tech-slider__before img { width: 100%; height: 300px; }
  .tech-info { height: auto; padding: 24px; border-radius: 8px; }
  .tech-info__num { width: 32px; height: 32px; margin-bottom: 24px; font-size: 13px; }
  .tech-info__category { height: 30px; padding: 0 10px; font-size: 12px; margin-bottom: 16px; }
  .tech-info__title { font-size: 24px; line-height: 32px; margin-bottom: 16px; }
  .tech-info__text { font-size: 14px; line-height: 22px; }
}

/* ==========================================================================
   4. ФЛАГМАН (5:703, 1920×870)
   ========================================================================== */
.flagman { position: relative; background: #fff; }
.flagman__head { display: flex; align-items: center; gap: 0; padding-top: 48px; margin-bottom: 32px; flex-wrap: wrap; }
.flagman__title { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 64px; color: #252B2B; margin-right: auto; }
.flagman__tabs { display: flex; align-items: center; gap: 8px; }
.flagman__tab { display: flex; align-items: center; height: 42px; padding: 0 24px; background: #F5F5F5; border-radius: 999px; font-size: 16px; font-weight: 500; color: #979E9F; transition: color 0.2s; }
.flagman__tab.is-active { color: #252B2B; }
.flagman__tab:hover { color: #252B2B; }

.flagman__banner {
  position: relative; background: url('../img/banners/flagman-bg.png') center/cover no-repeat;
  border-radius: 4px; overflow: hidden; display: grid; grid-template-columns: 680px 1fr; gap: 26px;
  padding: 85px 32px; min-height: 680px; align-items: center;
}
.flagman__product { display: flex; justify-content: center; }
.flagman__product img { max-width: 100%; max-height: 590px; object-fit: contain; }
.flagman__info { max-width: 520px; }
.flagman__badges { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.flagman__name {
  font-family: var(--font-display); font-weight: 500; font-size: 48px; line-height: 56px;
  background: linear-gradient(90deg, #252B2B 0%, #7D9191 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px;
}
.flagman__desc { font-size: 16px; line-height: 26px; color: #555B5C; margin-bottom: 24px; }
.flagman__price-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 20px 60px rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.hotspot__tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #FFFFFF;
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  width: max-content;
  max-width: 260px;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  text-align: left;
}
.hotspot__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #FFFFFF transparent transparent transparent;
}
.hotspot:hover .hotspot__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hotspot__tooltip-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #252B2B;
  margin-bottom: 4px;
}
.hotspot__tooltip-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #555B5C;
}

.flagman__price-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.flagman__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #252B2B;
}
.flagman__price-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn--cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 180px;
  height: 48px;
  background: var(--color-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
}
.btn--cart:hover {
  background: var(--color-primary-dark);
}
.btn-fav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #F7F7F7;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-fav:hover {
  background: #EAEAEA;
}
.flagman__old-price { font-size: 16px; color: #979E9F; text-decoration: line-through; margin-left: 8px; }

@media (max-width: 1024px) { .flagman__banner { grid-template-columns: 1fr; } .flagman__product { order: -1; } .flagman__product img { max-height: 400px; } }
@media (max-width: 768px) {
  .flagman { padding: 48px 0; }
  .flagman__head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .flagman__title { font-size: 32px; line-height: 38px; }
  .flagman__tabs { display: flex !important; gap: 8px; overflow-x: auto; width: 100%; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .flagman__tabs::-webkit-scrollbar { display: none; }
  .flagman__tab { font-size: 14px; height: 36px; padding: 0 16px; white-space: nowrap; flex-shrink: 0; }
  .flagman__banner { grid-template-columns: 1fr; padding: 32px 16px; min-height: auto; border-radius: 8px; gap: 20px; }
  .flagman__name { font-size: 32px; line-height: 38px; margin-bottom: 12px; }
  .flagman__desc { font-size: 14px; line-height: 20px; margin-bottom: 16px; }
  .flagman__price-card { padding: 16px; border-radius: 8px; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; }
  .flagman__price { font-size: 20px; line-height: 24px; }
}
.flagman__pagination { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 6px; }
.flagman__dot { width: 6px; height: 6px; border-radius: 3px; background: #E3E5E6; cursor: pointer; }
.flagman__dot--active { width: 28px; background: #252B2B; }
.flagman__arrows { position: absolute; bottom: 31px; right: 0; display: flex; gap: 20px; }
.flagman__arrow { background: none; border: none; padding: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* ==========================================================================
   5. ХИТЫ ПРОДАЖ (5:525, 1398×782)
   ========================================================================== */
.best-sellers { padding: 80px 0; }
.best-sellers__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 46px; }
.best-sellers__title { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 72px; color: #242627; }
.best-sellers__nav { display: flex; gap: 8px; }

.product-card { position: relative; background: #fff; border: 1px solid #F5F5F5; border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 20px 60px rgba(0,0,0,0.12); border-color: transparent; }
.product-card__media { position: relative; aspect-ratio: 1; background: #fff; display: flex; align-items: center; justify-content: center; }
.product-card__media img { width: 249px; height: 249px; object-fit: contain; }
.product-card__actions { position: absolute; top: 16px; right: 16px; display: flex; flex-direction: column; gap: 8px; z-index: 2; }
.product-card__body { padding: 0 16px 16px; display: flex; flex-direction: column; flex: 1; }
.product-card__art { font-size: 12px; color: #979E9F; line-height: 15px; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid #F3F3F3; border-bottom: 1px solid #F3F3F3; }
.product-card__title { font-size: 15px; font-weight: 400; line-height: 26px; color: #252B2B; margin: 8px 0; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__title a:hover { color: #006C66; }
/* .product-card__divider removed — replaced by .product-card__meta borders */
.product-card__price { font-size: 20px; font-weight: 600; line-height: 26px; color: #252B2B; margin-top: auto; }
.product-card__footer { display: flex; gap: 8px; margin-top: 16px; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .best-sellers { padding: 48px 0; }
  .best-sellers__head { margin-bottom: 24px; }
  .best-sellers__title { font-size: 32px; line-height: 38px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
}

.dots-pagination { display: flex; justify-content: center; gap: 14px; margin-top: 32px; }
.dots-pagination span { width: 6px; height: 6px; border-radius: 50%; background: #E3E5E6; cursor: pointer; }
.dots-pagination span.is-active { width: 28px; border-radius: 3px; background: #006C66; }

.nav-arrows { display: flex; gap: 8px; }
.nav-arrow { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: #252B2B; transition: opacity 0.2s; }
.nav-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.nav-arrow:hover:not(:disabled) { color: #006C66; }

/* ==========================================================================
   6. АКЦИИ (5:433, 1920×870)
   ========================================================================== */
.promo-section { padding: 80px 0; }
.promo-section__head { display: flex; align-items: center; gap: 0; margin-bottom: 32px; flex-wrap: wrap; }
.promo-section__title { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 64px; color: #252B2B; margin-right: auto; }
.promo-section__tabs { display: flex; gap: 8px; }

.promo-banner {
  position: relative; background: url('../img/banners/promo-bg.png') center/cover no-repeat;
  border-radius: 4px; overflow: hidden; display: grid; grid-template-columns: 680px 1fr; gap: 26px;
  padding: 85px 32px; min-height: 680px; align-items: center;
}
.promo-banner__product { position: relative; width: 680px; display: flex; justify-content: center; align-items: center; }
.promo-banner__product img { max-width: 646px; width: 100%; height: auto; object-fit: contain; display: block; }
.promo-banner__info { max-width: 600px; }
.promo-banner__name { font-family: var(--font-display); font-weight: 500; font-size: 48px; line-height: 56px; background: linear-gradient(90deg, #252B2B 0%, #7D9191 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; }
.promo-banner__desc { font-size: 16px; line-height: 26px; color: #555B5C; margin-bottom: 24px; }
.promo-banner__card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 20px 60px rgba(0,0,0,0.12); max-width: 692px; }

@media (max-width: 1024px) { .promo-banner { grid-template-columns: 1fr; } .promo-banner__product { order: -1; } }
@media (max-width: 768px) {
  .promo-section { padding: 48px 0; }
  .promo-section__head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .promo-section__title { font-size: 32px; line-height: 38px; }
  .promo-section__tabs { display: flex !important; gap: 8px; overflow-x: auto; width: 100%; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .promo-section__tabs::-webkit-scrollbar { display: none; }
  .promo-section__tab { font-size: 14px; height: 36px; padding: 0 16px; white-space: nowrap; flex-shrink: 0; }
  .promo-banner { grid-template-columns: 1fr; padding: 32px 16px; min-height: auto; border-radius: 8px; gap: 20px; }
  .promo-banner__product { width: 100%; }
  .promo-banner__name { font-size: 32px; line-height: 38px; margin-bottom: 12px; }
  .promo-banner__desc { font-size: 14px; line-height: 20px; margin-bottom: 16px; }
  .promo-banner__card { padding: 16px; border-radius: 8px; width: 100%; }
}
.promo-banner__pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.promo-banner__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #D4D4D4;
  flex-shrink: 0;
}
.promo-banner__dot--active {
  width: 28px;
  background: #252B2B;
}
.promo-banner__arrows {
  position: absolute;
  bottom: 31px;
  right: 0;
  display: flex;
  gap: 20px;
  z-index: 5;
}
.promo-banner__arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   7. ОТЗЫВЫ (5:327, 1659×732)
   ========================================================================== */
.reviews { padding: 80px 0; }
.reviews__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 40px; gap: 24px; }
.reviews__head-left { display: flex; flex-direction: column; gap: 16px; }
.reviews__caption {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #006C66;
}
.reviews__caption-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #006C66;
  position: relative;
  flex-shrink: 0;
}
.reviews__caption-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.reviews__title { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 64px; color: #252B2B; max-width: 626px; }
.reviews__title span { color: #006C66; }
.reviews__head-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.reviews__stats { display: flex; align-items: center; gap: 16px; }
.reviews__avatars { display: flex; }
.reviews__avatar { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #fff; background: #9D9D9D; margin-left: -12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-weight: 600; font-size: 16px; color: #fff; }
.reviews__avatar:first-child { margin-left: 0; }
.reviews__stats-text { display: flex; flex-direction: column; gap: 0; }
.reviews__stats-text strong { font-family: var(--font-body); font-size: 18px; font-weight: 600; line-height: 26px; color: #252B2B; }
.reviews__stats-text span { font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 26px; color: #252B2B; }
.reviews__btn { width: 200px; height: 48px; font-family: var(--font-body); font-size: 16px; font-weight: 400; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.review-card { display: flex; flex-direction: column; gap: 14px; }
.review-card__product {
  background: #F9F9F9;
  border-radius: 4px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  height: 94px;
  box-sizing: border-box;
}
.review-card__product-img { width: 64px; height: 64px; border-radius: 4px; background: #fff; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.review-card__product-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.review-card__product-info { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.review-card__product-label { font-family: var(--font-body); font-size: 13px; font-weight: 400; line-height: 20px; color: #979E9F; }
.review-card__product-name { font-family: var(--font-body); font-size: 13px; font-weight: 500; line-height: 20px; color: #252B2B; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.review-card__product-rating { display: flex; gap: 1px; flex-shrink: 0; }

.review-card__review {
  background: #F9F9F9;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.review-card__quote { line-height: 0; }
.review-card__text { font-family: var(--font-body); font-size: 14px; font-weight: 400; line-height: 23px; color: #252B2B; flex: 1; }
.review-card__photos { display: flex; gap: 10px; }
.review-card__photo { width: 58px; height: 58px; border-radius: 3px; background: #E0E0E0; flex-shrink: 0; }
.review-card__photo--more { background: #252B2B; display: flex; align-items: center; justify-content: center; }
.review-card__photo--more span { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: #fff; }
.review-card__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: auto; }
.review-card__user { display: flex; align-items: center; gap: 14px; }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: #9D9D9D; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-weight: 600; font-size: 20px; color: #fff; flex-shrink: 0; }
.review-card__user-info { display: flex; flex-direction: column; gap: 4px; }
.review-card__user-name { font-family: var(--font-body); font-size: 16px; font-weight: 600; line-height: 20px; color: #252B2B; white-space: nowrap; }
.review-card__user-name-row svg, .review-card__user-info svg { display: inline-block; vertical-align: middle; flex-shrink: 0; width: 20px; height: 20px; }
.review-card__user-date { font-family: var(--font-body); font-size: 12px; font-weight: 400; line-height: 16px; color: #979E9F; }
.review-card__source { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.review-card__user-info { display: flex; flex-direction: column; gap: 4px; }
.review-card__user-name-row { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.review-card__source-logo { height: 22px; width: auto; object-fit: contain; }
.reviews__pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.reviews__dot { width: 6px; height: 6px; border-radius: 3px; background: #E3E5E6; flex-shrink: 0; }
.reviews__dot--active { width: 28px; background: #252B2B; }

@media (max-width: 768px) {
  .reviews { padding: 48px 0; }
  .reviews__head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .reviews__title { font-size: 32px; line-height: 38px; max-width: 100%; }
  .reviews__head-right { align-items: flex-start; }
  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card__product { padding: 12px 16px; gap: 12px; height: auto; }
  .review-card__review { padding: 16px; }
}

/* ==========================================================================
   8. ЖУРНАЛ ROKODIL (40:253, 1398×698)
   ========================================================================== */
.journal { padding: 80px 0; }
.journal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 52px; }
.journal__title { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 64px; color: #252B2B; }
.journal__grid { display: grid; grid-template-columns: 692px 1fr 1fr; gap: 14px; align-items: start; }

.journal-card--large { position: relative; border-radius: 4px; overflow: hidden; min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; padding: 40px; background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../img/banners/journal-large.png') center/cover no-repeat; }
.journal-card--large .journal-card__tag { display: inline-flex; align-items: center; height: 40px; padding: 0 16px; background: rgba(255,255,255,0.14); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border-radius: 999px; font-size: 14px; color: #fff; width: fit-content; margin-bottom: 16px; }
.journal-card--large .journal-card__title { font-size: 24px; font-weight: 600; line-height: 36px; color: #fff; }

.journal-card--small { border-radius: 4px; overflow: hidden; background: #fff; }
.journal-card--small .journal-card__img { aspect-ratio: 339/240; overflow: hidden; }
.journal-card--small .journal-card__img img { width: 100%; height: 100%; object-fit: cover; }
.journal-card--small .journal-card__body { padding: 16px 10px; }
.journal-card__meta { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.journal-card__small-tag { display: inline-flex; align-items: center; height: 34px; padding: 0 12px; border: 1px solid #E3E5E6; border-radius: 999px; font-size: 12px; color: #252B2B; flex-shrink: 0; }
.journal-card--small .journal-card__title { font-family: var(--font-body); font-size: 16px; font-weight: 600; line-height: 24px; color: #252B2B; margin-bottom: 16px; }
.journal-card__excerpt { font-family: var(--font-body); font-size: 14px; font-weight: 400; line-height: 20px; color: #979E9F; margin-bottom: 16px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.journal-card__date { display: flex; align-items: center; gap: 4px; }
.journal-card__date span { font-family: var(--font-body); font-size: 12px; font-weight: 400; line-height: 16px; color: #979E9F; }
.journal-card__read { font-family: var(--font-body); font-size: 14px; font-weight: 500; line-height: 20px; color: #006C66; }

.journal__bottom { position: relative; height: 62px; margin-top: 0; }
.journal__pagination { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 6px; }
.journal__arrows { position: absolute; bottom: 38px; right: 0; display: flex; gap: 20px; }
.journal__arrow { background: none; border: none; padding: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; }

@media (max-width: 1100px) { .journal__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .journal { padding: 48px 0; }
  .journal__head { margin-bottom: 24px; }
  .journal__title { font-size: 32px; line-height: 38px; }
  .journal__grid { grid-template-columns: 1fr; gap: 16px; }
  .journal-card--large { padding: 24px; min-height: 320px; }
}

/* ==========================================================================
   9. ПОДПИСКА НА РАССЫЛКУ (5:263, 1920×562, фон #000)
   ========================================================================== */
.newsletter-section { background: #000; }
.newsletter {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  background: #000;
  min-height: 562px;
}
.newsletter__bg {
  position: relative;
  width: 880px;
  height: 495px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.newsletter__bg img { width: 100%; height: 100%; object-fit: cover; }
.newsletter__content {
  flex: 1;
  max-width: 699px;
  color: #fff;
}
.newsletter__title { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 64px; margin-bottom: 30px; }
.newsletter__subtitle { font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 26px; color: rgba(255,255,255,0.6); margin-bottom: 46px; }
.newsletter__form {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 64px;
  max-width: 653px;
  width: 100%;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 12px;
  padding-right: 6px;
  box-sizing: border-box;
}
.newsletter__input-wrap { flex: 1; position: relative; height: 100%; }
.newsletter__input { width: 100%; height: 100%; padding: 0 24px 0 52px; border: none; background: transparent; font-family: var(--font-body); font-size: 16px; border-radius: 12px; }
.newsletter__input::placeholder { color: #979E9F; }
.newsletter__input:focus { outline: none; }
.newsletter__mail-icon { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); color: #979E9F; }
.newsletter__btn { display: flex; align-items: center; justify-content: center; width: 170px; height: 52px; flex-shrink: 0; background: #006C66; color: #fff; border: none; border-radius: 8px; font-family: var(--font-body); font-size: 16px; font-weight: 500; cursor: pointer; box-shadow: 0 4px 12px rgba(0,108,102,0.24); transition: background 0.2s; }
.newsletter__btn:hover { background: #057F72; }
.newsletter__consents { display: flex; flex-direction: column; gap: 8px; }
.newsletter__consents .checkbox { color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 12px; font-weight: 400; line-height: 15px; }
.newsletter__consents .checkbox a { color: #fff; text-decoration: underline; }

@media (max-width: 768px) {
  .newsletter { min-height: auto; padding: 48px 16px; flex-direction: column; align-items: flex-start; }
  .newsletter__bg { display: none; }
  .newsletter__content { max-width: 100%; }
  .newsletter__title { font-size: 28px; line-height: 34px; margin-bottom: 16px; }
  .newsletter__subtitle { font-size: 14px; line-height: 20px; margin-bottom: 24px; }
  .newsletter__form { flex-direction: column; height: auto; background: transparent; padding: 0; gap: 12px; margin-bottom: 20px; border-radius: 0; }
  .newsletter__input-wrap { width: 100%; height: 48px; background: #fff; border-radius: 4px; }
  .newsletter__input { border-radius: 4px; font-size: 14px; padding: 0 16px 0 44px; }
  .newsletter__mail-icon { left: 16px; }
  .newsletter__btn { width: 100%; height: 48px; border-radius: 4px; font-size: 15px; }
}

/* ==========================================================================
   ОБЩИЕ: badge, stock-status, rating, кнопка
   ========================================================================== */
.badge { display: inline-flex; align-items: center; gap: 4px; height: 32px; padding: 0 10px; font-size: 14px; font-weight: 500; line-height: 32px; border-radius: 999px; }
.badge--green { background: #81A554; color: #fff; }
.badge--dark { background: #252B2B; color: #fff; }

.stock-status { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; }
.stock-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.stock-status--in::before { background: #81A554; }
.stock-status--in { color: #81A554; }
.stock-status--low::before { background: #E8A317; }
.stock-status--low { color: #E8A317; }
.stock-status--out::before { background: #979E9F; }
.stock-status--out { color: #979E9F; }

.rating { display: inline-flex; align-items: center; gap: 4px; }
.rating__stars { display: inline-flex; gap: 2px; }
.rating__star { width: 16px; height: 16px; color: #E8A317; }
.rating__star--empty { color: #E3E5E6; }
.rating__count { font-size: 12px; color: #979E9F; line-height: 18px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 16px; line-height: 20px; font-weight: 400; text-align: center; border-radius: 4px; transition: background 0.2s, opacity 0.2s, box-shadow 0.2s; white-space: nowrap; cursor: pointer; border: none; }
.btn--primary { background: #006C66; color: #fff; padding: 14px 24px; }
.btn--primary:hover { background: #057F72; }
.btn--primary:active { background: #00594E; }
.btn--primary:disabled { opacity: 0.3; cursor: not-allowed; }
.btn--secondary { background: #F5F5F5; color: #252B2B; padding: 10px 20px; font-size: 14px; font-weight: 500; }
.btn--secondary:hover { background: #FCFCFC; box-shadow: 0 0 0 1px #D5D5D5; }

.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #F9F9F9; color: #252B2B; transition: background 0.2s, color 0.2s; }
.icon-btn:hover { background: #F1F1F1; color: #006C66; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination__btn { min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-size: 14px; font-weight: 500; color: #252B2B; border: 1px solid transparent; transition: all 0.2s; }
.pagination__btn:hover { background: #F9F9F9; }
.pagination__btn.is-active { background: #006C66; color: #fff; }
.pagination__btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ==========================================================================
   КАТАЛОГ, КАРТОЧКА ТОВАРА, КОРЗИНА
   ========================================================================== */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding-bottom: 64px; }
.filters { background: #fff; position: sticky; top: calc(var(--header-height) + 20px); align-self: start; }
.filters__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #E3E5E6; }
.filters__title { font-size: 18px; font-weight: 600; }
.filters__reset { font-size: 13px; color: #C60100; }
.filter-group { border-bottom: 1px solid #F3F3F3; padding: 16px 0; }
.filter-group__head { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 14px; font-weight: 600; padding: 8px 0; }
.filter-group__arrow { transition: transform 0.2s; }
.filter-group.is-collapsed .filter-group__arrow { transform: rotate(-90deg); }
.filter-group.is-collapsed .filter-group__body { display: none; }
.filter-group__body { display: flex; flex-direction: column; gap: 12px; padding: 8px 0; }
.filter-range__values { display: flex; justify-content: space-between; margin-bottom: 12px; }
.filter-range__input { width: 48%; padding: 8px 12px; border: 1px solid #E3E5E6; border-radius: 4px; font-size: 13px; }
.range-slider { position: relative; height: 4px; background: #E3E5E6; border-radius: 2px; margin: 16px 0; }
.range-slider__track { position: absolute; height: 100%; background: #006C66; border-radius: 2px; }
.range-slider__handle { position: absolute; width: 16px; height: 16px; background: #fff; border: 2px solid #006C66; border-radius: 50%; top: 50%; transform: translate(-50%, -50%); cursor: pointer; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.catalog-toolbar__count { font-size: 14px; color: #979E9F; }
.catalog-toolbar__count strong { color: #252B2B; font-weight: 600; }
.catalog-toolbar__right { display: flex; align-items: center; gap: 16px; }
.filters-toggle { display: none; width: 100%; padding: 14px; margin-bottom: 16px; background: #F5F5F5; border-radius: 4px; font-weight: 500; font-size: 14px; align-items: center; justify-content: center; gap: 8px; }
@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; top: 0; left: 0; width: 320px; max-width: 100%; height: 100vh; z-index: 300; padding: 24px; overflow-y: auto; transform: translateX(-100%); transition: transform 0.3s ease; }
  .filters.is-open { transform: translateX(0); }
  .filters-toggle { display: flex; }
}

.product-page { padding-bottom: 64px; }
.product-main { display: grid; grid-template-columns: 770px 1fr; gap: 48px; margin-bottom: 64px; align-items: start; }
.product-gallery__main { width: 770px; height: 770px; background: #F9F9F9; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; }
.product-gallery__main img { max-width: 85%; max-height: 85%; object-fit: contain; }
.product-gallery__rotate-badge { position: absolute; bottom: 24px; right: 24px; display: flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, 0.9); border-radius: 20px; padding: 6px 12px; font-size: 13px; font-weight: 500; color: var(--color-dark); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
.product-gallery__media-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.product-gallery__media-tab { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 16px; border-radius: 17px; background: #F5F5F5; font-size: 14px; font-weight: 500; color: #555B5C; border: none; cursor: pointer; transition: background-color 0.2s, color 0.2s; }
.product-gallery__media-tab.is-active, .product-gallery__media-tab:hover { background: var(--color-dark); color: #FFFFFF; }
.product-gallery__thumbs { display: flex; gap: 12px; overflow-x: auto; }
.product-gallery__thumb { width: 80px; height: 80px; border-radius: 4px; background: #F9F9F9; border: 2px solid transparent; overflow: hidden; cursor: pointer; transition: border-color 0.2s; flex-shrink: 0; }
.product-gallery__thumb.is-active { border-color: var(--color-primary); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.product-info { display: flex; flex-direction: column; }
.product-info__badges { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.badge--hit { background: #C60100; color: #FFFFFF; border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }
.badge--red { background: #252B2B; color: #FFFFFF; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 600; }

.product-info__title { font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 48px; color: var(--color-dark); margin-bottom: 8px; }
.product-info__subtitle { font-size: 16px; line-height: 26px; color: #555B5C; margin-bottom: 20px; }

.product-info__meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.badge--green-light { background: rgba(98, 169, 136, 0.12); color: #166534; border: none; border-radius: 999px; padding: 4px 12px; font-size: 14px; font-weight: 500; line-height: 16px; display: inline-flex; align-items: center; gap: 6px; }
.product-info__sku-pill { border: 1px solid #E3E5E6; border-radius: 4px; padding: 6px 12px; font-size: 14px; color: #555B5C; background: #FFFFFF; }
.product-info__rating-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--color-dark); }
.product-info__reviews-pill { border: 1px solid #E3E5E6; border-radius: 4px; padding: 6px 12px; font-size: 14px; color: #006C66; text-decoration: none; font-weight: 500; background: #FFFFFF; }

.product-info__price-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.product-info__price-wrap { display: flex; align-items: baseline; gap: 12px; }
.product-info__price { font-family: var(--font-display); font-size: 40px; font-weight: 600; line-height: 44px; color: var(--color-dark); }
.product-info__old-price { font-size: 18px; line-height: 24px; color: #979E9F; text-decoration: line-through; }
.product-info__fav-compare { display: flex; align-items: center; gap: 16px; }

.product-info__purchase-row { display: flex; gap: 16px; margin-bottom: 12px; }
.product-info__cart-btn { flex: 1; height: 52px; font-size: 16px; font-weight: 500; background: #006C66; color: #FFFFFF; border-radius: 4px; border: none; }
.product-info__one-click-btn { width: 100%; height: 52px; font-size: 16px; font-weight: 500; background: #F5F5F5; color: var(--color-dark); border-radius: 4px; border: none; margin-bottom: 24px; }
.product-info__one-click-btn:hover { background: #EBEBEB; }

.product-info__trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.product-info__trust-item { display: flex; align-items: flex-start; gap: 16px; }
.product-info__trust-icon { width: 46px; height: 46px; border-radius: 50%; background: #252B2B; display: flex; align-items: center; justify-content: center; color: #FFFFFF; flex-shrink: 0; }
.product-info__trust-text { display: flex; flex-direction: column; gap: 4px; }
.product-info__trust-text strong { font-size: 16px; font-weight: 600; line-height: 22px; color: var(--color-dark); }
.product-info__trust-text span { font-size: 13px; line-height: 18px; color: #555B5C; }

.product-info__ai-banner { position: relative; background: linear-gradient(135deg, #003B37 0%, #00544E 100%); border-radius: 8px; padding: 32px; color: #FFFFFF; display: flex; align-items: center; justify-content: space-between; min-height: 180px; overflow: hidden; }
.product-info__ai-content { display: flex; flex-direction: column; gap: 16px; z-index: 2; max-width: 280px; }
.product-info__ai-title { font-family: var(--font-display); font-size: 28px; font-weight: 500; line-height: 32px; color: #FFFFFF; }
.product-info__ai-btn { height: 48px; padding: 0 24px; font-size: 15px; font-weight: 500; background: #FFFFFF; color: var(--color-dark); border-radius: 4px; border: none; cursor: pointer; white-space: nowrap; }
.product-info__ai-btn:hover { background: #F5F5F5; }
.product-info__ai-img { position: absolute; right: 0; bottom: 0; width: 220px; height: 100%; display: flex; align-items: flex-end; justify-content: flex-end; z-index: 1; pointer-events: none; }
.product-info__ai-img img { max-height: 110%; object-fit: contain; }
@media (max-width: 1200px) {
  .product-main { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery__main { width: 100%; height: auto; aspect-ratio: 1; }
}
.product-tabs__nav { display: flex; gap: 0; border-bottom: 1px solid #E3E5E6; margin-bottom: 32px; overflow-x: auto; }
.product-tab { padding: 16px 24px; font-size: 16px; font-weight: 500; color: #979E9F; white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.product-tab:hover { color: #252B2B; }
.product-tab.is-active { color: #006C66; border-color: #006C66; }
.product-tab-panel { display: none; }
.product-tab-panel.is-active { display: block; }
.product-specs { max-width: 1045px; }
.product-specs__title { font-family: var(--font-display); font-size: 32px; font-weight: 500; line-height: 46px; color: var(--color-dark); margin-bottom: 24px; }
.product-specs__list { display: flex; flex-direction: column; gap: 16px; }
.product-specs__item { display: flex; align-items: baseline; gap: 8px; font-size: 15px; line-height: 24px; }
.product-specs__name { color: #979E9F; flex-shrink: 0; }
.product-specs__dots { flex: 1; border-bottom: 1px dotted #979E9F; margin-bottom: 4px; min-width: 20px; }
.product-specs__value { color: var(--color-dark); font-weight: 400; flex-shrink: 0; text-align: right; }
.product-specs__more { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 16px; font-weight: 500; color: var(--color-primary); background: none; border: none; padding: 0; cursor: pointer; transition: opacity 0.2s ease; }
.product-specs__more svg { transition: transform 0.2s ease; }
.product-specs__more.is-expanded svg { transform: rotate(180deg); }
.product-specs__item.is-hidden { display: none; }
/* Блок Инструкция по Figma (нода 82:834) */
.product-manual { max-width: 1045px; }
.product-manual__title { font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 46px; color: var(--color-dark); margin-bottom: 32px; }
.product-manual__grid { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 40px; align-items: start; }
.product-manual__divider { background: #F5F5F5; width: 1px; height: 100%; min-height: 280px; }
.product-manual__file-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.product-manual__file-icon { width: 64px; height: 64px; background: rgba(0, 108, 102, 0.08); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--color-primary); flex-shrink: 0; }
.product-manual__file-titles { display: flex; flex-direction: column; gap: 4px; }
.product-manual__file-name { font-size: 22px; font-weight: 700; line-height: 28px; color: var(--color-dark); }
.product-manual__file-sub { font-size: 16px; line-height: 26px; color: #555B5C; }
.product-manual__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding: 12px 0; }
.product-manual__meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; line-height: 20px; color: #555B5C; }
.product-manual__meta-sep { width: 1px; height: 24px; background: #F5F5F5; }
.product-manual__badge { border: 1px solid #555B5C; border-radius: 4px; padding: 0 4px; font-size: 11px; font-weight: 600; line-height: 16px; text-transform: uppercase; }
.product-manual__actions { display: flex; gap: 16px; margin-bottom: 24px; }
.product-manual__btn { height: 48px; padding: 0 24px; border-radius: 4px; font-size: 16px; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; transition: opacity 0.2s ease, background-color 0.2s ease; }
.product-manual__btn--primary { background: var(--color-primary); color: #FFFFFF; }
.product-manual__btn--primary:hover { opacity: 0.9; }
.product-manual__btn--secondary { background: #F5F5F5; color: var(--color-dark); }
.product-manual__btn--secondary:hover { background: #EBEBEB; }
.product-manual__notice { display: flex; align-items: center; gap: 8px; font-size: 14px; line-height: 20px; color: #979E9F; }
.product-manual__notice svg { flex-shrink: 0; color: #979E9F; }
.product-manual__list-title { font-size: 18px; font-weight: 600; line-height: 26px; color: var(--color-dark); margin-bottom: 20px; }
.product-manual__list { display: flex; flex-direction: column; gap: 16px; }
.product-manual__list-item { display: flex; align-items: center; gap: 12px; font-size: 14px; line-height: 20px; color: var(--color-dark); }
.product-manual__check-icon { width: 20px; height: 20px; border-radius: 50%; background: #81A554; color: #FFFFFF; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
@media (max-width: 768px) { .product-manual__grid { grid-template-columns: 1fr; gap: 32px; } .product-manual__divider { display: none; } .product-manual__actions { flex-direction: column; } }
/* Блок Видео по Figma (нода 82:426) */
.product-video { max-width: 1045px; }
.product-video__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.product-video__title { font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 46px; color: var(--color-dark); }
.product-video__arrows { display: flex; gap: 12px; }
.product-video__arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #E3E5E6; background: #FFFFFF; color: var(--color-dark); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease; }
.product-video__arrow:hover { border-color: var(--color-primary); color: var(--color-primary); }
.product-video__card { position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 547px; border-radius: 8px; overflow: hidden; margin-bottom: 24px; background: #111111; }
.product-video__thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-video__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 70%); pointer-events: none; }
.product-video__info { position: absolute; top: 32px; left: 32px; right: 32px; color: #FFFFFF; z-index: 2; }
.product-video__name { font-size: 24px; font-weight: 600; line-height: 36px; color: #FFFFFF; margin-bottom: 8px; }
.product-video__desc { font-size: 16px; line-height: 26px; color: rgba(255, 255, 255, 0.9); max-width: 814px; }
.product-video__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 255, 255, 0.9); color: #111111; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); transition: transform 0.2s ease, background-color 0.2s ease; z-index: 3; }
.product-video__play svg { margin-left: 3px; }
.product-video__play:hover { transform: translate(-50%, -50%) scale(1.1); background: #FFFFFF; }
.product-video__duration { position: absolute; bottom: 24px; left: 32px; background: rgba(35, 35, 37, 0.8); border-radius: 4px; padding: 4px 8px; font-size: 14px; font-weight: 500; line-height: 16px; color: #FFFFFF; z-index: 2; }
.product-video__pagination { display: flex; justify-content: center; align-items: center; gap: 8px; }
.product-video__dot { width: 6px; height: 6px; border-radius: 50%; background: #E3E5E6; transition: width 0.2s ease, background-color 0.2s ease, border-radius 0.2s ease; }
.product-video__dot.is-active { width: 28px; border-radius: 3px; background: #9B9B9B; }
@media (max-width: 768px) {
  .product-video__info { top: 16px; left: 16px; right: 16px; }
  .product-video__name { font-size: 18px; line-height: 26px; }
  .product-video__desc { font-size: 13px; line-height: 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-video__duration { bottom: 16px; left: 16px; }
  .product-video__play { width: 48px; height: 48px; }
}
/* Блок Отзывы по Figma (нода 82:558) */
.reviews-block { max-width: 1045px; }
.reviews-block__title { font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 46px; color: var(--color-dark); margin-bottom: 24px; }
.reviews-summary { display: flex; align-items: center; justify-content: space-between; gap: 32px; background: #F8F9FA; border-radius: 8px; padding: 24px 32px; margin-bottom: 32px; }
.reviews-summary__left { display: flex; align-items: center; gap: 16px; }
.reviews-summary__score { font-size: 48px; font-weight: 700; line-height: 48px; color: var(--color-dark); }
.reviews-summary__rating { display: flex; flex-direction: column; gap: 4px; }
.reviews-summary__stars { display: flex; gap: 4px; }
.reviews-summary__count { font-size: 14px; color: #555B5C; }
.reviews-summary__center { display: flex; flex-direction: column; gap: 8px; }
.reviews-summary__badge { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--color-dark); }
.reviews-summary__badge svg { flex-shrink: 0; }
.reviews-photos { margin-bottom: 32px; }
.reviews-photos__title { font-size: 18px; font-weight: 700; line-height: 26px; color: var(--color-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.reviews-photos__count { color: #979E9F; font-weight: 700; }
.reviews-photos__list { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.reviews-photos__thumb { width: 64px; height: 64px; border-radius: 4px; overflow: hidden; flex-shrink: 0; background: #F5F5F5; }
.reviews-photos__thumb img { width: 100%; height: 100%; object-fit: cover; }
.reviews-photos__thumb--icon { display: flex; align-items: center; justify-content: center; color: #555B5C; }
.reviews-sort { display: flex; justify-content: flex-end; align-items: center; gap: 12px; margin-bottom: 24px; }
.reviews-sort__label { font-size: 14px; color: #979E9F; }
.reviews-sort__select { display: flex; align-items: center; gap: 12px; background: #F5F5F5; border-radius: 4px; padding: 10px 16px; font-size: 14px; color: var(--color-dark); cursor: pointer; }
.reviews-list { display: flex; flex-direction: column; }
.review-item { display: grid; grid-template-columns: 180px 1fr; gap: 34px; padding: 32px 0; border-bottom: 1px solid #F5F5F5; align-items: start; }
.review-item__side { display: flex; flex-direction: column; gap: 12px; }
.review-item__stars { display: flex; gap: 3px; }
.review-item__date { font-size: 13px; line-height: 21px; color: #979E9F; }
.review-item__main { display: flex; flex-direction: column; gap: 16px; }
.review-item__user { display: flex; align-items: center; gap: 14px; }
.review-item__avatar { width: 42px; height: 42px; border-radius: 50%; background: #9E9E9E; color: #FFFFFF; font-size: 20px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-item__user-info { display: flex; flex-direction: column; gap: 2px; }
.review-item__name-row { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.review-item__name { font-size: 16px; font-weight: 600; line-height: 20px; color: var(--color-dark); white-space: nowrap; }
.review-item__name-row svg { flex-shrink: 0; width: 20px; height: 20px; }
.review-item__verified { font-size: 12px; line-height: 16px; color: #979E9F; }
.review-item__content { font-size: 14px; line-height: 23px; color: var(--color-dark); }
.review-item__photos { display: flex; gap: 8px; }
.review-item__photos img { width: 64px; height: 64px; border-radius: 5px; object-fit: cover; }
.review-item__source { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 12px; border: 1px solid #F5F5F5; border-radius: 4px; font-size: 14px; line-height: 20px; color: #555B5C; width: fit-content; }
.review-item__source strong { font-weight: 500; color: var(--color-dark); }
@media (max-width: 768px) {
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 20px; }
  .reviews-summary__btn { width: 100%; }
  .review-item { grid-template-columns: 1fr; gap: 16px; }
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) { background: #F3F3F3; }
.specs-table td { padding: 12px 16px; font-size: 14px; line-height: 26px; }
.specs-table td:first-child { color: #555B5C; width: 40%; }
@media (max-width: 768px) { .product-main { grid-template-columns: 1fr; } .product-info__title { font-size: 24px; } }

.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding-bottom: 64px; align-items: start; }
.cart-items { background: #fff; }
.cart-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 24px; padding: 24px 0; border-bottom: 1px solid #F3F3F3; align-items: center; }
.cart-item__img { width: 96px; height: 96px; background: #F9F9F9; border-radius: 4px; overflow: hidden; }
.cart-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.cart-item__info { display: flex; flex-direction: column; gap: 4px; }
.cart-item__title { font-size: 16px; font-weight: 500; }
.cart-item__art { font-size: 13px; color: #979E9F; }
.cart-item__controls { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.cart-item__price { font-size: 18px; font-weight: 600; text-align: right; }
.cart-item__remove { color: #979E9F; display: flex; align-items: center; gap: 6px; font-size: 13px; }
.cart-item__remove:hover { color: #C60100; }
.order-summary { background: #fff; border: 1px solid #E3E5E6; border-radius: 12px; padding: 24px; position: sticky; top: calc(var(--header-height) + 20px); }
.order-summary__title { font-size: 20px; font-weight: 600; font-family: var(--font-display); margin-bottom: 24px; }
.order-summary__row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.order-summary__row--total { font-size: 20px; font-weight: 700; font-family: var(--font-display); padding-top: 16px; border-top: 1px solid #F3F3F3; margin-top: 16px; margin-bottom: 24px; }
.order-summary__checkout-btn { width: 100%; padding: 16px; margin-bottom: 12px; }
.checkout-form { background: #fff; }
.checkout-form__section { padding: 32px 0; border-bottom: 1px solid #F3F3F3; }
.checkout-form__section-title { font-size: 20px; font-weight: 600; margin-bottom: 24px; }
.checkout-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-form__grid .field--full { grid-column: 1 / -1; }
.delivery-option, .payment-option { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 1px solid #E3E5E6; border-radius: 4px; cursor: pointer; transition: border-color 0.2s; }
.delivery-option:hover, .payment-option:hover { border-color: #006C66; }
.delivery-option__info, .payment-option__info { flex: 1; }
.delivery-option__title, .payment-option__title { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.delivery-option__desc, .payment-option__desc { font-size: 13px; color: #555B5C; }
.delivery-option__price, .payment-option__note { font-size: 14px; font-weight: 600; color: #006C66; }
@media (max-width: 1024px) { .cart-layout { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .cart-item { grid-template-columns: 80px 1fr; } .cart-item__price { grid-column: 2; text-align: left; } .checkout-form__grid { grid-template-columns: 1fr; } }

/* ---------- Hotspots ---------- */
.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotspot__btn {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sticky);
  z-index: 2;
  transition: transform 0.2s;
}
.hotspot:hover .hotspot__btn {
  transform: scale(1.2);
}
.hotspot__pulse {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: hotspot-pulse 2s infinite;
  z-index: 1;
}
@keyframes hotspot-pulse {
  0% {
    transform: scale(0.45);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}


.flagman__specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  margin: 24px 0;
}
.flagman__spec {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flagman__spec-icon {
  color: var(--color-primary);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.flagman__spec-val {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-dark);
}
.flagman__spec-label {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 16px;
}
.flagman__spec-divider {
  width: 1px;
  height: 44px;
  background: var(--color-border);
}

.promo-timer {
  margin-bottom: 20px;
}
.promo-timer__label {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.promo-timer__units {
  display: flex;
  align-items: center;
  gap: 12px;
}
.promo-timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promo-timer__val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
  color: var(--color-dark);
  background: var(--color-bg-light);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  min-width: 60px;
  text-align: center;
}
.promo-timer__desc {
  font-size: 11px;
  color: var(--color-gray);
  margin-top: 4px;
}
.promo-timer__colon {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 38px;
  margin-top: -16px;
}
.promo-banner__special-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ========== Layout Full-Width Banners Overrides ========== */

.flagman__banner {
  background: url('../img/banners/flagman-bg.png') center/cover no-repeat;
  width: 100%;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  grid-template-columns: none;
  gap: 0;
}
.flagman__banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 26px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 85px 16px;
  box-sizing: border-box;
}

.promo-banner {
  background: url('../img/banners/promo-bg.png') center/cover no-repeat;
  width: 100%;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  grid-template-columns: none;
  gap: 0;
}
.promo-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 26px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 85px 16px;
  box-sizing: border-box;
}

.why-us__grid-wrapper {
  max-width: 1892px;
  margin: 0 auto;
  padding: 0 14px;
  width: 100%;
  box-sizing: border-box;
}
.why-us__grid {
  display: grid;
  grid-template-columns: 1.54fr 1fr 1.54fr;
  grid-template-rows: 540px 238px;
  grid-template-areas: "protection testing warranty" "service service warranty";
  gap: 14px;
  width: 100%;
}

.newsletter-section {
  background: #000;
  padding: 0;
}
.newsletter {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  background: #000;
  min-height: 562px;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 46px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 67px 40px 0 34px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .flagman__banner-inner {
    grid-template-columns: 1fr;
    padding: 48px 16px;
  }
  .promo-banner-inner {
    grid-template-columns: 1fr;
    padding: 48px 16px;
  }
  .newsletter-inner {
  display: flex;
  align-items: center;
  gap: 46px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 67px 40px 0 34px;
  box-sizing: border-box;
}
}

/* ---------- Hit Badge ---------- */
.badge--hit {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  background: #C60100;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
}

.badge--novinka {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 16px;
  background: #81A554;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
}
.badge--hit-red {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  background: #C60100;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
}

.why-card__scrim { display: none !important; }

.flagman__badges .badge,
.promo-banner__badges .badge {
  position: relative !important;
  top: auto !important;
  left: auto !important;
}

/* ---------- Promo Special Price Card (Node 5:463) ---------- */
.promo-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 692px;
  box-sizing: border-box;
}
.promo-card__timer-col {
  flex: 1;
}
.promo-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #252B2B;
  margin-bottom: 4px;
}
.promo-card__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #555B5C;
  display: block;
  margin-bottom: 16px;
}
.promo-card__divider {
  width: 1px;
  height: 140px;
  background: #EAEAEA;
  flex-shrink: 0;
}
.promo-card__action-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promo-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-card__prices {
  display: flex;
  flex-direction: column;
}
.promo-card__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #252B2B;
}
.promo-card__old-price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #979E9F;
  text-decoration: line-through;
}
.promo-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn--promo-cart {
  width: 100% !important;
}
.btn--secondary-grey {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background: #F7F7F7;
  color: #252B2B;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.2s;
}
.btn--secondary-grey:hover {
  background: #EAEAEA;
}

.newsletter-section {
  position: relative;
  background: #000;
  overflow: hidden;
}
.newsletter {
  position: relative;
  z-index: 1;
}
.newsletter__blur {
  position: absolute;
  left: 445px;
  top: 184px;
  width: 1456px;
  height: 642px;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: color-dodge;
}
.newsletter__blur img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.newsletter__content {
  position: relative;
  z-index: 3;
}

.journal-card--large {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%), url('../img/banners/journal-large.png') center/cover no-repeat;
}

.journal-card--large .journal-card__tag {
  position: absolute;
  left: 40px;
  top: 352px;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #ffffff;
  z-index: 2;
}

.journal-card--large .journal-card__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 142px;
  padding: 30px 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.25) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  z-index: 1;
}

.journal-card--large .journal-card__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #ffffff;
  margin: 0;
}

.section-head__divider {
  display: inline-block;
  width: 1px;
  height: 62px;
  background: #E3E5E6;
  flex-shrink: 0;
}
.flagman__head,
.promo-section__head {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.flagman__title,
.promo-section__title {
  margin-right: 0;
}

/* ===== CATALOG PAGE ===== */

/* Catalog Hero (Title + Breadcrumbs) */
.catalog-hero {
  text-align: center;
  padding: 100px 0 48px;
}
.catalog-hero .breadcrumbs {
  justify-content: center;
  margin-bottom: 40px;
}
.catalog-hero .breadcrumbs a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: #252B2B;
  text-decoration: none;
}
.catalog-hero .breadcrumbs__sep {
  color: #979E9F;
  font-size: 13px;
}
.catalog-hero .breadcrumbs__current {
  font-family: var(--font-body);
  font-size: 13px;
  color: #979E9F;
}
.catalog-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 72px;
  color: #252B2B;
  margin: 0;
}

/* Quick Filters */
.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.quick-filter {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  background: #F5F5F5;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #555B5C;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.quick-filter:hover {
  background: #EAEAEA;
}
.quick-filter--active {
  background: #252B2B;
  color: #fff;
}
.quick-filter--active:hover {
  background: #252B2B;
}

/* Catalog Layout - override */
.catalog-layout {
  grid-template-columns: 300px 1fr;
  gap: 32px;
}

/* Products Grid - 3 columns (catalog page only) */
.catalog-layout .products-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Show More Button */
.catalog-showmore {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.catalog-showmore__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 24px;
  background: #006C66;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
}
.catalog-showmore__btn:hover {
  background: #057F72;
}
.catalog-showmore__btn svg {
  animation: spin 1s linear infinite;
}

/* SEO Section */
.seo-section {
  padding: 80px 0;
}
.seo-section__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #252B2B;
  margin-bottom: 24px;
}
.seo-section__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: #555B5C;
  margin-bottom: 16px;
}
.seo-section__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #006C66;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.seo-section__toggle:hover {
  text-decoration: underline;
}

/* Why Cards (catalog page) */
.why-cards {
  padding: 80px 0;
  background: #fff;
}
.why-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.why-cards__card {
  padding: 28px;
  background: #F9F9F9;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.why-cards__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.why-cards__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #252B2B;
}
.why-cards__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  color: #979E9F;
}

@media (max-width: 1100px) {
  .catalog-layout .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cards__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .catalog-hero__title { font-size: 40px; line-height: 48px; }
  .catalog-layout .products-grid { grid-template-columns: 1fr; }
  .why-cards__grid { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
}
