/* ===== ІСНУЮЧІ СТИЛІ ===== */

@media screen and (max-width: 640px) {
  .t997__header-wrapper {
    padding: 200px 0 100px !important;
  }

  .t997__buttons,
  .t995__buttons {
    display: inline-flex;
    align-items: normal;
    flex-wrap: wrap;
    gap: 12px;
    flex-direction: column;
    width: 100%;
  }

  .t-store__cell-img-wrapper {
    overflow: hidden;
  }
}

@media screen and (max-width: 960px) {
  .t-container {
    max-width: 95%;
  }
}

html,
body {
  overscroll-behavior-x: contain;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

/* ===== MOLLE PRODUCT CARD ===== */

.molle-card,
.molle-card * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.molle-card {
  background: #050505;
  color: #f2f2f2;
  font-family: var(--t-text-font), Arial, sans-serif;
  padding: 120px 28px 90px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.molle-card__wrap {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 64px;
  align-items: start;
}

.molle-gallery {
  position: sticky;
  top: 110px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.molle-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0b0b0b;
  border: 1px solid #ffffff14;
  overflow: hidden;
}

.molle-gallery__main::before,
.molle-gallery__main::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  z-index: 2;
  pointer-events: none;
}

.molle-gallery__main::before {
  top: 28px;
  left: 28px;
  border-top: 2px solid #ffffff55;
  border-left: 2px solid #ffffff55;
}

.molle-gallery__main::after {
  right: 28px;
  bottom: 28px;
  border-right: 2px solid #ffffff55;
  border-bottom: 2px solid #ffffff55;
}

.molle-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .25s ease, transform .35s ease;
}

.molle-gallery__main img.is-changing {
  opacity: .25;
  transform: scale(1.015);
}

.molle-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.molle-gallery__thumb {
  width: 82px;
  height: 82px;
  min-width: 82px;
  border: 1px solid #ffffff18;
  background: #111;
  padding: 0;
  cursor: pointer;
  opacity: .55;
  transition: .22s ease;
}

.molle-gallery__thumb:hover,
.molle-gallery__thumb.is-active {
  opacity: 1;
  border-color: #cf2e2e;
}

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

.molle-info {
  padding-top: 6px;
}

.molle-eyebrow {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9f9f9f;
  font-weight: 900;
  margin-bottom: 24px;
}

.molle-title {
  font-family: var(--t-headline-font), Arial, sans-serif;
  font-size: clamp(56px, 6vw, 96px);
  line-height: .88;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
  max-width: 640px;
}

.molle-price {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: #cf2e2e;
  margin-bottom: 28px;
}

.molle-lead {
  max-width: 620px;
  font-size: 22px;
  line-height: 1.45;
  color: #cfcfcf;
  font-weight: 800;
  margin-bottom: 34px;
}

.molle-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.molle-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid #ffffff2b;
  background: #ffffff08;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .4px;
  transition: .24s ease;
}

.molle-btn--primary {
  background: #cf2e2e;
  border-color: #cf2e2e;
}

.molle-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505 !important;
  transform: translateY(-2px);
}

.molle-specs {
  border-top: 1px solid #ffffff18;
  padding-top: 28px;
  display: grid;
  gap: 16px;
}

.molle-spec {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: #bfbfbf;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.molle-spec span {
  color: #cf2e2e;
}

.molle-trust {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid #ffffff14;
  background: linear-gradient(135deg, #ffffff08, #ffffff02);
  color: #bdbdbd;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}

.molle-trust strong {
  color: #fff;
}

@media (max-width: 980px) {
  .molle-card {
    padding: 96px 24px 72px;
  }
  .molle-card__wrap {
    grid-template-columns: 1fr !important;
    gap: 42px;
  }
  .molle-gallery {
    position: relative;
    top: auto;
  }
  .molle-title {
    font-size: clamp(54px, 10vw, 82px);
  }
}

@media (max-width: 560px) {
  .molle-card {
    padding: 116px 20px 58px;
  }
  .molle-card__wrap {
    gap: 34px;
  }
  .molle-gallery__main::before,
  .molle-gallery__main::after {
    width: 54px;
    height: 54px;
  }
  .molle-gallery__main::before {
    top: 16px;
    left: 16px;
  }
  .molle-gallery__main::after {
    right: 16px;
    bottom: 16px;
  }
  .molle-gallery__thumb {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }
  .molle-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .molle-title {
    font-size: 54px;
    line-height: .88;
    margin-bottom: 22px;
  }
  .molle-price {
    font-size: 28px;
  }
  .molle-lead {
    font-size: 18px;
  }
  .molle-actions {
    gap: 10px;
  }
  .molle-btn {
    width: 100%;
    min-height: 54px;
    font-size: 14px;
  }
  .molle-spec {
    font-size: 16px;
  }
}

/* ===== MOLLE FAQ ===== */

.molle-faq {
  padding: 110px 28px;
  background: #050505;
  color: #f2f2f2;
}

.molle-faq__wrap {
  max-width: 1360px;
  margin: 0 auto;
}

.molle-faq__title {
  font-size: clamp(42px, 5vw, 72px);
  line-height: .9;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 52px;
}

.molle-faq__grid {
  display: grid;
  gap: 18px;
}

.molle-faq__item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  transition: .25s ease;
}

.molle-faq__item:hover {
  border-color: rgba(207,46,46,.35);
  transform: translateY(-2px);
}

.molle-faq__question {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: #ffffff;
}

.molle-faq__answer {
  font-size: 22px;
  line-height: 1.5;
  color: #c8c8c8;
  font-weight: 700;
}

.molle-faq__answer strong {
  color: #ffffff;
}

@media (max-width: 900px) {
  .molle-faq__item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
  .molle-faq__question {
    font-size: 22px;
  }
  .molle-faq__answer {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .molle-faq {
    padding: 72px 18px;
  }
  .molle-faq__title {
    font-size: 44px;
    margin-bottom: 36px;
  }
  .molle-faq__item {
    padding: 20px;
  }
  .molle-faq__question {
    font-size: 20px;
  }
  .molle-faq__answer {
    font-size: 16px;
    line-height: 1.45;
  }
}

/* ===== MOLLE FINAL CTA ===== */

.molle-final-cta__buttons {
  display: flex;
  justify-content: center;
}

.molle-final-btn {
  min-height: 68px;
  padding: 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cf2e2e;
  background: #cf2e2e;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  transition: .25s ease;
}

.molle-final-btn:hover {
  background: #ffffff;
  color: #050505;
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .molle-final-btn {
    width: 100%;
    min-height: 60px;
    font-size: 17px;
    padding: 0 20px;
  }
}

/* ===== MOLLE STACK BLOCK ===== */

.molle-stack,
.molle-stack * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.molle-stack {
  position: relative;
  color: #f2f2f2;
  font-family: var(--t-text-font), Arial, sans-serif;
  padding: 96px 28px;
  overflow: hidden;
}

.molle-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.04), transparent 42%);
  pointer-events: none;
}

.molle-stack__wrap {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.molle-stack__eyebrow {
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: #9f9f9f;
  font-weight: 900;
  margin-bottom: 18px;
}

.molle-stack__title {
  font-family: var(--t-headline-font), Arial, sans-serif;
  font-size: clamp(48px, 6vw, 92px);
  line-height: .86;
  text-transform: uppercase;
  color: #fff;
  max-width: 560px;
}

.molle-stack__title span {
  color: #cf2e2e;
}

.molle-stack__card {
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(15,15,15,.88), rgba(8,8,8,.92));
  backdrop-filter: blur(4px);
  padding: 34px;
}

.molle-stack__item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.molle-stack__item:last-of-type {
  border-bottom: none;
}

.molle-stack__name {
  color: #f2f2f2;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
}

.molle-stack__price {
  color: #9f9f9f;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.molle-stack__bonus {
  color: #cf2e2e;
}

.molle-stack__total {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.molle-stack__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.molle-stack__row:last-child {
  margin-bottom: 0;
}

.molle-stack__label {
  color: #9f9f9f;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.molle-stack__value {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.molle-stack__value--red {
  color: #cf2e2e;
}

@media (max-width: 900px) {
  .molle-stack {
    padding: 72px 24px;
  }
  .molle-stack__wrap {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .molle-stack {
    padding: 64px 18px;
  }
  .molle-stack__title {
    font-size: 52px;
  }
  .molle-stack__card {
    padding: 24px 20px;
  }
  .molle-stack__item {
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
  }
  .molle-stack__name {
    font-size: 16px;
  }
  .molle-stack__price {
    font-size: 14px;
  }
  .molle-stack__value {
    font-size: 20px;
  }
}

/* ===== RECORD BACKGROUNDS ===== */

#rec2281358893,
#rec2281358893.t-rec {
  background-color: transparent !important;
  background-image:
    linear-gradient(rgba(10,10,10,.65), rgba(10,10,10,.75)),
    url('https://optim.tildacdn.one/tild3634-3239-4266-b838-666134646339/-/format/webp/molle-panel-makro-la.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

#rec2281358893 .t396__artboard,
#rec2281358893 .t396__carrier {
  background: transparent !important;
}

#rec2281358893 .molle-stack {
  background: transparent !important;
}

#rec2279194733,
#rec2279194733.t-rec {
  background-color: transparent !important;
  background-image:
    linear-gradient(
      rgba(240,238,234,.55),
      rgba(232,229,224,.65)
    ),
    url('https://optim.tildacdn.one/tild6630-3537-4236-b839-376465626432/-/format/webp/molle-panel-tsyfrovy.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

#rec2279194733 .t396__artboard,
#rec2279194733 .t396__carrier {
  background: transparent !important;
}

#rec2279194733 .molle-pain {
  background: transparent !important;
}

/* ===== MOLLE PAIN BLOCK — LIGHT VERSION ===== */

.molle-pain,
.molle-pain * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.molle-pain {
  position: relative;
  color: #111111;
  font-family: var(--t-text-font), Arial, sans-serif;
  padding: 96px 28px;
  overflow: hidden;
}

.molle-pain__wrap {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: end;
}

.molle-pain__eyebrow {
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: #777777;
  font-weight: 900;
  margin-bottom: 18px;
}

.molle-pain__title {
  font-family: var(--t-headline-font), Arial, sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  line-height: .86;
  text-transform: uppercase;
  color: #111111;
  max-width: 620px;
}

.molle-pain__title span {
  color: #cf2e2e;
}

.molle-pain__text {
  border-left: 2px solid rgba(0,0,0,.15);
  padding-left: 34px;
  max-width: 680px;
}

.molle-pain__text p {
  color: #444444;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.28;
  font-weight: 900;
  margin-bottom: 26px;
}

.molle-pain__text p:last-child {
  margin-bottom: 0;
}

.molle-pain__danger {
  color: #111111 !important;
}

.molle-pain__danger strong {
  color: #cf2e2e;
}

@media (max-width: 900px) {
  .molle-pain {
    padding: 72px 24px;
  }
  .molle-pain__wrap {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }
  .molle-pain__text {
    padding-left: 24px;
  }
}

@media (max-width: 560px) {
  .molle-pain {
    padding: 64px 18px;
  }
  .molle-pain__title {
    font-size: 52px;
  }
  .molle-pain__text {
    padding-left: 18px;
  }
  .molle-pain__text p {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 22px;
  }
}

/* ===== MOLLE CTA BLOCK ===== */

.cta-block,
.cta-block * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cta-block {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 60px;
}

.cta-block__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.tildacdn.one/tild3832-6365-4139-a631-656663346162/molle-panel-pidhotov.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}

.cta-block__bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, #050505 0%, transparent 100%);
  z-index: 1;
}

.cta-block__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #050505 0%, transparent 100%);
  z-index: 1;
}

.cta-block__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.cta-block__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0;
  font-family: var(--t-headline-font), Arial, sans-serif;
}

.cta-block__phone {
  margin-top: 24px;
  font-size: 18px;
  color: #aaaaaa;
  letter-spacing: 1px;
}

.cta-block__phone a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-block__phone a:hover { color: #ffffff; }

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form__field {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--t-text-font), Arial, sans-serif;
}

.cta-form__field::placeholder { color: rgba(255,255,255,0.4); }
.cta-form__field:focus { border-bottom-color: #cf2e2e; }

.cta-form__btn {
  background: #cf2e2e;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--t-text-font), Arial, sans-serif;
  margin-top: 8px;
}

.cta-form__btn:hover { background: #aa1a00; }

@media (max-width: 768px) {
  .cta-block { padding: 60px 24px; }
  .cta-block__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-block__title { font-size: 36px; }
}