:root {
  --bg: oklch(97% 0.012 260);
  --bg-alt: oklch(93% 0.018 260);
  --dark: oklch(13% 0.055 258);
  --dark-2: oklch(17% 0.055 258);
  --text: #111110;
  --muted: #888880;
  --orange: #FF5500;
  --orange-h: #E04A00;
  --border: oklch(87% 0.022 260);
  --radius: 4px;
}


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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

.iskra-page {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  position: relative;
}


.navbar-iskra {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}

.navbar-iskra.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo-bolt {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .7;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.nav-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: .02em;
}

.nav-sub {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-telegram {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2AABEE;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-telegram svg {
    display: block;
}
.nav-telegram:hover {
    background: #229ED9;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(42, 171, 238, .35);
}
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 10px;
  transition: transform .2s, opacity .2s;
}

.nav-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(8, 15, 36, .12);
  padding: 18px 20px 22px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 16, .08);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
}

.mobile-menu a.active {
  color: var(--orange);
}

@media all and (max-width: 640px) {
  .mobile-menu a {
    justify-content: flex-start;
  }
}

.mobile-menu-contacts {
  padding-top: 14px;
  display: grid;
  gap: 4px;
}

.mobile-menu .mobile-menu-contacts a {
  border-bottom: 0;
  padding: 4px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}
.mobile-menu-telegram svg {
    flex-shrink: 0;
}
.mobile-menu-telegram img {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}
.mobile-menu-telegram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #2AABEE;
}
.mobile-menu-max {
    color: var(--text);
}
.hero {
  min-height: 75vh;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, oklch(13% 0.055 258 / 0.9) 18%, oklch(13% 0.055 258 / 0) 55%),
    linear-gradient(to top, oklch(13% 0.055 258 / 0.95) 0%, transparent 35%);
  z-index: 1;
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: #1a1a18;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, .015) 40px,
      rgba(255, 255, 255, .015) 80px);
}

.hero-img-label {
  font-family: 'Barlow', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 96px;
  padding-top: 120px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 68px);
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--orange);
}

.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary-iskra {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}

.btn-primary-iskra:hover {
  background: var(--orange-h);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost-iskra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: color .2s;
}

.btn-ghost-iskra:hover {
  color: #fff;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 0;
}

.hero-stat {
  flex: 1;
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hero-stat-num sup {
  font-size: 20px;
  color: var(--orange);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .86);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}


.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-size: clamp(36px, 4vw, 64px);
}


.about {
  padding: 120px 0;
  background: var(--bg-alt);
}

.about-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 160px;
  line-height: 1;
  color: var(--bg-alt);
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 0;
  user-select: none;
  letter-spacing: -.04em;
  pointer-events: none;
}

.about-left {
  position: relative;
}

.about-lead {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  padding-top: 17px !important;
}

.about-lead em {
  font-style: normal;
  color: var(--orange);
}

.about-text {
  font-size: 16px;
  color: #555550;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  margin-right: 8px;
  margin-bottom: 8px;
  box-shadow: 0 8px 24px rgba(8, 15, 36, .04);
  transition: color .2s, border-color .2s, box-shadow .2s, transform .2s;
}

.about-pill:hover {
  color: var(--orange);
  border-color: rgba(255, 85, 0, .35);
  box-shadow: 0 14px 34px rgba(255, 85, 0, .12);
  transform: translateY(-2px);
}

.about-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}


.products {
  padding: 120px 0;
  background: var(--bg-alt);
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.25, .8, .25, 1), box-shadow .3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
}

.product-card:hover .product-img-placeholder {
  background: #1A1A18;
}

.product-img-placeholder {
  height: 300px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .3s;
  overflow: hidden;
}

.product-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 20px,
      rgba(0, 0, 0, .03) 20px,
      rgba(0, 0, 0, .03) 40px);
}

.product-img-label {
  font-family: 'Barlow', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}

.product-card:hover .product-img-label {
  color: rgba(255, 255, 255, .3);
}

.product-body {
  padding: 28px 28px 32px;
}

.product-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 4px;
}

.product-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444440;
}

.product-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.product-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.product-link:hover {
  gap: 12px;
  color: var(--orange);
}

.product-card.featured {
  border: 2px solid var(--orange);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  z-index: 2;
}


.approach {
  padding: 80px 0;
  background: var(--dark);
  color: #fff;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}

.approach-item {
  background: var(--dark-2);
  padding: 36px 28px;
  transition: background .3s;
}

.approach-item:hover {
  background: #222220;
}

.approach-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 20px;
}

.approach-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 85, 0, .12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.approach-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.approach-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

.approach-header {
  margin-bottom: 0;
}

.approach-header .section-title {
  color: #fff;
}

.approach-header .section-eyebrow {
  color: var(--orange);
}


.materials {
  padding: 120px 0;
  background: linear-gradient(180deg, oklch(90% 0.03 260) 0%, oklch(88% 0.035 260) 100%);
  border-bottom: 1px solid rgba(8, 15, 36, .08);
}

.material-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.material-track:active {
  cursor: grabbing;
}

.material-card {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(8, 15, 36, .08);
  transition: transform .3s, box-shadow .3s;
}

.material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(8, 15, 36, .12);
}

.material-swatch {
  width: 100%;
  height: 160px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}

.material-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.material-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 4px,
      rgba(0, 0, 0, .04) 4px,
      rgba(0, 0, 0, .04) 8px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 4px,
      rgba(0, 0, 0, .04) 4px,
      rgba(0, 0, 0, .04) 8px);
}

.material-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.material-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 2px;
}

.material-prop {
  font-size: 12px;
  color: var(--muted);
}

.material-desc {
  font-size: 12px;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}

.material-use {
  font-size: 12px;
  color: var(--orange);
  line-height: 1.6;
  margin-top: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.materials-carousel {
  position: relative;
  padding: 8px 56px 42px;
}

.iskra-sport-detail-page .materials-carousel {
  max-width: none;
  padding: 8px 56px 42px;
}

.materials-carousel .sport-products-manual-viewport,
.iskra-sport-detail-page .materials-carousel .sport-products-manual-viewport {
  overflow: hidden;
  padding: 6px 2px 10px;
  border-radius: 0;
}

.materials-carousel .sport-products-manual-track,
.iskra-sport-detail-page .materials-carousel .sport-products-manual-track {
  display: flex;
  gap: 16px;
  transition: transform .35s ease;
  will-change: transform;
  align-items: stretch;
}

.materials-carousel .sport-products-carousel-item,
.iskra-sport-detail-page .materials-carousel .sport-products-manual-track .sport-products-carousel-item {
  width: calc((100% - 48px) / 4);
  flex-shrink: 0;
  display: flex;
  height: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.materials-carousel .material-card {
  width: 100%;
  height: 100%;
  box-shadow: none;
}

.materials-carousel .material-card:hover {
  transform: none;
  box-shadow: none;
}

.materials-carousel .sport-products-arrow,
.iskra-sport-detail-page .materials-carousel .sport-products-arrow {
  position: absolute;
  top: calc(50% - 16px);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transform: translateY(-50%);
  box-shadow: 0 14px 30px rgba(255, 85, 0, .22);
  transition: background .2s, transform .2s;
}

.materials-carousel .sport-products-arrow:hover,
.iskra-sport-detail-page .materials-carousel .sport-products-arrow:hover {
  background: var(--orange-h);
  transform: translateY(-50%) scale(1.05);
}

.materials-carousel .sport-products-arrow-prev,
.iskra-sport-detail-page .materials-carousel .sport-products-arrow-prev {
  left: 0;
}

.materials-carousel .sport-products-arrow-next,
.iskra-sport-detail-page .materials-carousel .sport-products-arrow-next {
  right: 0;
}

.materials-carousel .sport-products-dots,
.iskra-sport-detail-page .materials-carousel .sport-products-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.materials-carousel .sport-products-dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: rgba(8, 15, 36, .22);
  cursor: pointer;
  padding: 0;
}

.materials-carousel .sport-products-dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

@media (max-width: 991.98px) {
  .materials-carousel .sport-products-carousel-item,
  .iskra-sport-detail-page .materials-carousel .sport-products-manual-track .sport-products-carousel-item {
    width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 575.98px) {
  .materials-carousel,
  .iskra-sport-detail-page .materials-carousel {
    padding: 8px 48px 42px;
  }

  .materials-carousel .sport-products-carousel-item,
  .iskra-sport-detail-page .materials-carousel .sport-products-manual-track .sport-products-carousel-item {
    width: 100%;
  }
}


.form-section {
  padding: 120px 0;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.form-section .row {
  column-gap: 48px;
}

.form-section .col-lg-6 {
  flex: 0 0 calc(50% - 24px);
  max-width: calc(50% - 24px);
}

.form-section .col-lg-5.offset-lg-1 {
  flex: 0 0 calc(41.666667% - 24px);
  max-width: calc(41.666667% - 24px);
  margin-left: 8.333333%;
}

.form-title {
  font-size: clamp(32px, 3.8vw, 56px);
  max-width: 720px;
  color: #fff;
  margin-bottom: 16px;
  overflow-wrap: normal;
  word-break: normal;
}

.form-title span {
  color: var(--orange);
}

.form-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 0;
}

.meta-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.meta-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.form-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
}

.form-control-iskra {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  margin-bottom: 16px;
}

.form-control-iskra:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, .1);
}

.form-control-iskra::placeholder {
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .form-section .row {
    column-gap: 0;
  }

  .form-section .col-lg-6,
  .form-section .col-lg-5.offset-lg-1 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .form-title {
    font-size: clamp(28px, 8.4vw, 48px);
  }
}

@media (max-width: 575.98px) {
  .form-title {
    font-size: clamp(26px, 8vw, 34px);
  }
}

@media (max-width: 767.98px) {
  .navbar-inner {
    height: 64px;
    gap: 12px;
  }

  .nav-logo img {
    height: 38px !important;
  }

  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 0;
  }

  .hero-content {
    padding: 0 0 44px;
  }

  .hero-title {
    font-size: clamp(46px, 16vw, 72px);
    max-width: 100%;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-actions,
  .btn-primary-iskra {
    width: 100%;
  }

  .btn-primary-iskra {
    justify-content: center;
  }

  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat {
    min-height: 124px;
    padding: 24px 14px;
  }

  .hero-stat:nth-child(2) {
    border-right: 0;
  }

  .hero-stat-num {
    font-size: 48px;
  }

  .hero-stat-label {
    font-size: 14px;
    line-height: 1.35;
  }

  .about {
    padding: 72px 0;
  }

  .about-num {
    display: none;
  }

  .about-lead {
    padding-top: 0 !important;
    font-size: clamp(38px, 12vw, 54px);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .about-text {
    font-size: 18px;
    line-height: 1.55;
  }

  .about-pill {
    max-width: 100%;
    white-space: normal;
  }

  .sports,
  .approach,
  .materials,
  .photo-strip,
  .form-section,
  .clients-section {
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-title {
    font-size: clamp(40px, 13vw, 58px);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-menu-columns {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}


.footer {
  background: #080F24;
  padding: 48px 0 32px;
  color: rgba(255, 255, 255, .4);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 360px) minmax(320px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .06em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
}

.footer-menu-columns {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 44px;
  align-items: start;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}

.footer-links a {
  font-size: 13px;
  color: #fff;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contacts {
  margin-top: 0;
  display: grid;
  gap: 6px;
  text-align: right;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .55);
}

.footer-contact-item span {
  color: #fff;
  font-weight: 600;
}
.footer-telegram-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, .75);
  transition: color .2s;
}
.footer-telegram {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2AABEE;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.footer-contact-item a:hover {
  color: var(--orange);
}
@media (max-width: 991.98px) {
    .footer-telegram-row {
        justify-content: flex-start;
    }
}
@media (max-width: 767.98px) {
    .footer-telegram-row {
        justify-content: flex-start;
    }
}
.footer-tech-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-powered {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  text-align: left;
}

.footer-powered a {
  color: #fff;
  font-weight: 600;
  transition: color .2s;
}

.footer-powered a:hover {
  color: var(--orange);
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-info {
    grid-column: 1 / -1;
  }

  .footer-contacts {
    text-align: left;
  }

  .footer-tech-row {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contacts {
    text-align: left;
  }
}


.orange-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 24px 0;
}


.text-orange {
  color: var(--orange);
}

.bg-dark-iskra {
  background: var(--dark);
}

.sports {
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}

.sports-eyebrow {
  justify-content: center;
}

.sports-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.sports-lead {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.sports-grid {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}

.sport-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  position: relative;
  outline: none;
}

.sport-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(8, 15, 36, .08);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.sport-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, transparent, rgba(255, 85, 0, .75), transparent 35%);
  opacity: 0;
  transform: rotate(-70deg) scale(.9);
  transition: opacity .25s, transform .35s;
  z-index: -1;
}

.sport-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.25, .8, .25, 1), filter .25s;
}

.sport-circle-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(8, 15, 36, .58);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .25s, transform .25s;
}

.sport-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  position: relative;
  transition: color .2s, transform .25s;
}

.sport-name::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width .25s;
}

.sport-item:hover,
.sport-item:focus {
  color: var(--text);
  text-decoration: none;
}

.sport-item:hover .sport-circle,
.sport-item:focus .sport-circle {
  border-color: var(--orange);
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 22px 56px rgba(255, 85, 0, .22), 0 18px 40px rgba(8, 15, 36, .12);
}

.sport-item:hover .sport-circle::before,
.sport-item:focus .sport-circle::before {
  opacity: 1;
  transform: rotate(30deg) scale(1);
}

.sport-item:hover .sport-circle img,
.sport-item:focus .sport-circle img {
  transform: scale(1.12);
  filter: saturate(1.12) contrast(1.04);
}

.sport-item:hover .sport-circle-overlay,
.sport-item:focus .sport-circle-overlay {
  opacity: 1;
  transform: scale(1);
}

.sport-item:hover .sport-name,
.sport-item:focus .sport-name {
  color: var(--orange);
  transform: translateY(2px);
}

.sport-item:hover .sport-name::after,
.sport-item:focus .sport-name::after {
  width: 100%;
}


.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-drop-menu {
  position: fixed;
  top: -9999px;
  left: -9999px;
  background: #fff;
  border-top: 3px solid #FF5500;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .13);
  min-width: 200px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  z-index: 9999;
}

.nav-drop-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drop-menu a {
  display: block;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #111110;
  border-bottom: 1px solid #E4E2DC;
  transition: background .12s, color .12s, padding-left .12s;
}

.nav-drop-menu a:last-child {
  border-bottom: none;
}

.nav-drop-menu a:hover {
  background: oklch(93% 0.018 260);
  color: #FF5500;
  padding-left: 28px;
}

.nav-drop-menu a.drop-active {
  color: #FF5500;
}

.nav-drop-menu.is-open .nav-drop-trigger svg {
  transform: rotate(180deg);
}


.material-track::-webkit-scrollbar {
  height: 4px;
}

.material-track::-webkit-scrollbar-track {
  background: transparent;
}

.material-track::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.photo-strip {
  width: 100%;
  overflow: hidden;
  background: var(--bg, oklch(97% 0.012 260));
  margin: 0;
  padding: 0;
  line-height: 0;
}

.photo-strip-track {
  display: flex;
  width: max-content;
  animation: photo-strip-scroll 50s linear infinite;
}

.photo-strip-track:hover {
  animation-play-state: paused;
}

.photo-strip-track img {
  height: 150px;
  width: auto;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes photo-strip-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.clients-section {
  padding: 72px 0 64px;
  background: #fff;
  overflow: hidden;
  border-top: 1px solid var(--border, oklch(87% 0.022 260));
}

.clients-head {
  text-align: center;
  margin-bottom: 48px;
}

.clients-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange, #FF5500);
  margin-bottom: 12px;
  font-family: 'Barlow', sans-serif;
}

.clients-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange, #FF5500);
}

.clients-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange, #FF5500);
}

.clients-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 46px);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text, #111110);
}

.clients-title span {
  color: var(--orange, #FF5500);
}


.clients-track-wrap {
  position: relative;

  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: clients-scroll 32s linear infinite;
  will-change: transform;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.clients-logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border, oklch(87% 0.022 260));
  transition: background .2s;
}

.clients-logo-item:hover {
  background: #fff;
}

.clients-logo-item img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}


.iskra-production-page h1,
.iskra-production-page h2,
.iskra-production-page h3,
.iskra-production-page h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.iskra-production-page a {
  text-decoration: none;
  color: inherit;
}

.iskra-production-page .navbar-iskra {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}

.iskra-production-page .navbar-iskra.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
}

.iskra-production-page .navbar-inner {
  display: flex;
  align-items: stretch;
  height: 64px;
  gap: 48px;
}

.iskra-production-page .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.iskra-production-page .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: stretch;
  align-items: center;
}

.iskra-production-page .nav-links a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .7;
  transition: opacity .2s;
}

.iskra-production-page .nav-links a:hover,
.iskra-production-page .nav-links a.active {
  opacity: 1;
}

.iskra-production-page .nav-links a.active {
  color: var(--orange);
}

.iskra-production-page .nav-cta {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.iskra-production-page .nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.iskra-production-page .nav-sub {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.iskra-production-page .prod-hero {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
}

.iskra-production-page .prod-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.iskra-production-page .prod-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.iskra-production-page .prod-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, oklch(13% 0.055 258 / 0.92) 40%, oklch(13% 0.055 258 / 0.3) 100%),
    linear-gradient(to top, oklch(13% 0.055 258 / 0.95) 0%, transparent 40%);
  z-index: 1;
}

.iskra-production-page .prod-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
}

.iskra-production-page .prod-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.iskra-production-page .prod-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.iskra-production-page .prod-hero-title {
  font-size: clamp(44px, 6vw, 88px);
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}

.iskra-production-page .prod-hero-title span {
  color: var(--orange);
}

.iskra-production-page .prod-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.iskra-production-page .prod-hero-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 340px;
}

.iskra-production-page .prod-hero-img {
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iskra-production-page .prod-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iskra-production-page .prod-hero-img-placeholder {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.iskra-production-page .prod-hero-img.tall {
  grid-row: 1 / 3;
}

.iskra-production-page .prod-hero-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 340px;
}

.iskra-production-page .prod-hero-images-grid .img-main {
  grid-row: 1 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark-2);
}

.iskra-production-page .prod-hero-images-grid .img-main img,
.iskra-production-page .prod-hero-images-grid .img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iskra-production-page .prod-hero-images-grid .img-sm {
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iskra-production-page .hero-badge-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 56px;
}

.iskra-production-page .hero-badge-item {
  flex: 1;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.iskra-production-page .hero-badge-item:last-child {
  border-right: none;
}

.iskra-production-page .hero-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}

.iskra-production-page .hero-badge-num sup {
  font-size: 18px;
  color: var(--orange);
}

.iskra-production-page .hero-badge-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.iskra-production-page .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.iskra-production-page .section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.iskra-production-page .section-title {
  font-size: clamp(32px, 3.5vw, 56px);
}

.iskra-production-page .cycle {
  padding: 100px 0;
  background: var(--bg);
}

.iskra-production-page .cycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin-top: 56px;
}

.iskra-production-page .cycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.iskra-production-page .cycle-item {
  background: var(--bg-alt);
  padding: 36px 32px;
  border-radius: 8px;
  transition: background .25s;
}

.iskra-production-page .cycle-item:hover {
  background: #fff;
}

.iskra-production-page .cycle-icon {
  width: 48px;
  height: 48px;
  background: oklch(90% 0.025 260);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.iskra-production-page .cycle-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.iskra-production-page .cycle-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.iskra-production-page .journey {
  padding: 80px 0;
  background: var(--dark);
  color: #fff;
}

.iskra-production-page .journey .section-eyebrow {
  color: var(--orange);
}

.iskra-production-page .journey-lead {
  color: rgba(255, 255, 255, .4);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 4px;
}

.iskra-production-page .journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}

.iskra-production-page .journey-step {
  position: relative;
  background: var(--dark-2);
  border-radius: 0;
  padding: 36px 28px;
  transition: background .3s;
}

.iskra-production-page .journey-step:hover {
  background: #222220;
}

.iskra-production-page .journey-step-num {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  margin-bottom: 20px;
}

.iskra-production-page .journey-step-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.iskra-production-page .journey-step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
}

.iskra-production-page .journey-connector {
  display: none;
}

@media (max-width: 991.98px) {
  .iskra-production-page .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .iskra-production-page .journey-steps {
    grid-template-columns: 1fr;
  }
}

.iskra-production-page .quality {
  padding: 100px 0;
  background: var(--dark);
  color: #fff;
}

.iskra-production-page .quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.iskra-production-page .quality-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: none;
}

.iskra-production-page .quality-item:hover {
  background: transparent;
}

.iskra-production-page .quality-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}

.iskra-production-page .quality-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #fff;
}

.iskra-production-page .quality-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
}

.iskra-production-page .cta-footer {
  background: var(--dark);
  padding: 80px 0;
}

.iskra-production-page .cta-footer-title {
  font-size: clamp(32px, 4vw, 60px);
  color: #fff;
  line-height: 1.05;
}

.iskra-production-page .cta-footer-title span {
  color: var(--orange);
}

.iskra-production-page .cta-footer-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
}

.iskra-production-page .cta-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.iskra-production-page .cta-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.iskra-production-page .cta-meta-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.iskra-production-page .cta-meta-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.iskra-production-page .footer {
  background: #080F24;
  padding: 40px 0 28px;
  color: rgba(255, 255, 255, .4);
}

.iskra-production-page .footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.iskra-production-page .footer-copy {
  font-size: 12px;
}

.iskra-production-page .footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.iskra-production-page .footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.iskra-production-page .footer-links a:hover {
  color: #fff;
}

.iskra-production-page .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.iskra-production-page .nav-drop-menu {
  position: fixed;
  top: -9999px;
  left: -9999px;
  background: #fff;
  border-top: 3px solid #FF5500;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .13);
  min-width: 200px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  z-index: 9999;
}

.iskra-production-page .nav-drop-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.iskra-production-page .nav-drop-menu a {
  display: block;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #111110;
  border-bottom: 1px solid #E4E2DC;
  transition: background .12s, color .12s, padding-left .12s;
}

.iskra-production-page .nav-drop-menu a:last-child {
  border-bottom: none;
}

.iskra-production-page .nav-drop-menu a:hover {
  background: oklch(93% 0.018 260);
  color: #FF5500;
  padding-left: 28px;
}

.iskra-production-page .nav-drop-menu a.drop-active {
  color: #FF5500;
}

.iskra-production-page .nav-drop-menu.is-open .nav-drop-trigger svg {
  transform: rotate(180deg);
}

.iskra-production-page .btn-primary-iskra {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}

.iskra-production-page .btn-primary-iskra:hover {
  background: var(--orange-h);
  color: #fff;
  transform: translateY(-1px);
}


.iskra-contacts-page h1,
.iskra-contacts-page h2,
.iskra-contacts-page h3,
.iskra-contacts-page h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.iskra-contacts-page a {
  text-decoration: none;
  color: inherit;
}

.iskra-contacts-page .navbar-iskra {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}

.iskra-contacts-page .navbar-iskra.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
}

.iskra-contacts-page .navbar-inner {
  display: flex;
  align-items: stretch;
  height: 64px;
  gap: 48px;
}

.iskra-contacts-page .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.iskra-contacts-page .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: stretch;
}

.iskra-contacts-page .nav-links>li>a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .7;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}

.iskra-contacts-page .nav-links>li>a:hover,
.iskra-contacts-page .nav-links>li>a.active {
  opacity: 1;
  color: var(--orange);
}

.iskra-contacts-page .nav-cta {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.iskra-contacts-page .nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.iskra-contacts-page .nav-sub {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.iskra-contacts-page .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.iskra-contacts-page .nav-drop-menu {
  position: fixed;
  top: -9999px;
  left: -9999px;
  background: #fff;
  border-top: 3px solid #FF5500;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .13);
  min-width: 200px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  z-index: 9999;
}

.iskra-contacts-page .nav-drop-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.iskra-contacts-page .nav-drop-menu a {
  display: block;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #111110;
  border-bottom: 1px solid #E4E2DC;
  transition: background .12s, color .12s, padding-left .12s;
}

.iskra-contacts-page .nav-drop-menu a:last-child {
  border-bottom: none;
}

.iskra-contacts-page .nav-drop-menu a:hover {
  background: oklch(93% 0.018 260);
  color: #FF5500;
  padding-left: 28px;
}

.iskra-contacts-page .nav-drop-menu a.drop-active {
  color: #FF5500;
}

.iskra-contacts-page .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.iskra-contacts-page .section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.iskra-contacts-page .contact-hero {
  background: var(--dark);
  padding: 80px 0 72px;
}

.iskra-contacts-page .hero-title {
  font-size: clamp(44px, 6vw, 84px);
  color: #fff;
  line-height: 1;
}

.iskra-contacts-page .hero-title span {
  color: var(--orange);
}

.iskra-contacts-page .hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 480px;
}

.iskra-contacts-page .form-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
}

.iskra-contacts-page .form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
}

.iskra-contacts-page .form-control-iskra {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  margin-bottom: 16px;
}

.iskra-contacts-page .form-control-iskra:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, .1);
}

.iskra-contacts-page .form-control-iskra::placeholder {
  color: var(--muted);
}

.iskra-contacts-page select.form-control-iskra {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.iskra-contacts-page textarea.form-control-iskra {
  resize: vertical;
  min-height: 100px;
}

.iskra-contacts-page .btn-primary-iskra {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  font-size: 17px;
}

.iskra-contacts-page .btn-primary-iskra:hover {
  background: var(--orange-h);
  transform: translateY(-1px);
}

.iskra-contacts-page .contacts-section {
  padding: 80px 0;
  background: var(--bg);
}

.iskra-contacts-page .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.iskra-contacts-page .contact-item:first-child {
  border-top: 1px solid var(--border);
}

.iskra-contacts-page .contact-icon {
  width: 48px;
  height: 48px;
  background: oklch(90% 0.025 260);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iskra-contacts-page .contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.iskra-contacts-page .contact-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  line-height: 1.2;
}

.iskra-contacts-page .contact-value a {
  color: var(--text);
  transition: color .2s;
}

.iskra-contacts-page .contact-value a:hover {
  color: var(--orange);
}

.iskra-contacts-page .contact-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.iskra-contacts-page .map-section {
  padding: 0 0 80px;
  background: var(--bg);
}

.iskra-contacts-page .map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.iskra-contacts-page .map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0, 0, 0, .02) 20px, rgba(0, 0, 0, .02) 40px);
}

.iskra-contacts-page .map-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.iskra-contacts-page .social-section {
  padding: 64px 0;
  background: var(--bg-alt);
}

.iskra-contacts-page .social-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}

.iskra-contacts-page .social-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.iskra-contacts-page .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iskra-contacts-page .social-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.iskra-contacts-page .social-handle {
  font-size: 13px;
  color: var(--muted);
}


.iskra-about-page {
  background: var(--bg);
}

.iskra-about-page .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.iskra-about-page .section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.about-page-hero {
  padding: 96px 0 72px;
  background: var(--dark);
  color: #fff;
}

.about-page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(48px, 5.8vw, 88px);
  line-height: .95;
  color: #fff;
  margin: 0;
}

.about-page-title-line,
.about-page-title span {
  display: block;
}

.about-page-title-line {
  white-space: nowrap;
}

.about-page-title span,
.about-page-section-title span {
  color: var(--orange);
}

.about-page-title .about-page-title-line {
  color: #fff;
}

.about-page-lead {
  color: rgba(255, 255, 255, .62);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.about-page-intro,
.about-page-partnership,
.about-page-expo,
.about-page-today {
  padding: 90px 0;
}

.about-page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 64px;
  align-items: center;
}

.about-page-copy p,
.about-page-text,
.about-page-expo-head p,
.about-page-today-inner p,
.about-page-guest p {
  color: #555550;
  font-size: 16px;
  line-height: 1.78;
}

.about-page-copy p:not(:last-child) {
  margin-bottom: 22px;
}

.about-page-photo,
.about-page-guest-img {
  overflow: hidden;
  background: var(--bg-alt);
}

.about-page-photo {
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(8, 15, 36, .1);
}

.about-page-photo img,
.about-page-guest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page-photo img {
  aspect-ratio: 4 / 3;
}

.about-page-partnership {
  background: var(--bg-alt);
}

.about-page-partnership .col-lg-5 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.about-page-partnership .col-lg-7 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.about-page-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  margin: 0;
  color: var(--text);
}

.about-page-partnership-title {
  font-size: clamp(38px, 5vw, 72px);
}

.about-page-expo {
  background: var(--bg);
}

.about-page-expo-head {
  max-width: 860px;
  margin-bottom: 44px;
}

.about-page-expo-head p {
  margin-top: 18px;
}

.about-page-expo-title {
  font-size: clamp(34px, 4.8vw, 68px);
  white-space: nowrap;
}

.about-page-guests {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-page-guest {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(8, 15, 36, .06);
}

.about-page-guest-img {
  height: 500px;
}

.about-page-guest-body {
  padding: 28px;
}

.about-page-guest h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--text);
}

.about-page-guest-role {
  color: var(--orange) !important;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-page-guest p:last-child {
  margin-bottom: 0;
}

.about-page-today {
  background: var(--dark);
  color: #fff;
}

.about-page-today-inner {
  max-width: 900px;
}

.about-page-today .about-page-section-title {
  color: #fff;
}

.about-page-today-inner p {
  color: rgba(255, 255, 255, .58);
  margin-top: 22px;
}

.about-page-slogan {
  margin-top: 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 991.98px) {

  .about-page-partnership .col-lg-5,
  .about-page-partnership .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-page-intro-grid,
  .about-page-guests {
    grid-template-columns: 1fr;
  }

  .about-page-guest-img {
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .about-page-expo-title {
    white-space: normal;
  }

  .about-page-hero,
  .about-page-intro,
  .about-page-partnership,
  .about-page-expo,
  .about-page-today {
    padding: 64px 0;
  }

  .about-page-guest-img {
    height: 260px;
  }

  .about-page-guest-body {
    padding: 22px;
  }
}

.iskra-contacts-page .footer {
  background: #080F24;
  padding: 40px 0 28px;
  color: rgba(255, 255, 255, .4);
}

.iskra-contacts-page .footer-copy {
  font-size: 12px;
  margin-top: 6px;
}

.iskra-contacts-page .footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.iskra-contacts-page .footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.iskra-contacts-page .footer-links a:hover {
  color: #fff;
}

.iskra-production-page .container,
.iskra-contacts-page .container {
  padding-right: 15px;
  padding-left: 15px;
}

.iskra-production-page .row,
.iskra-contacts-page .row {
  margin-right: -15px;
  margin-left: -15px;
}

.iskra-production-page [class*="col-"],
.iskra-contacts-page [class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
}


.iskra-sport-detail-page .sport-detail-hero {
  min-height: 70vh;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}

.iskra-sport-detail-page .sport-detail-hero-img {
  position: absolute;
  inset: 0;
}

.iskra-sport-detail-page .sport-detail-hero-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.iskra-sport-detail-page .sport-detail-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.iskra-sport-detail-page .sport-detail-hero-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, oklch(13% 0.055 258 / 0.92) 32%, oklch(13% 0.055 258 / 0.1) 70%),
    linear-gradient(to top, oklch(13% 0.055 258 / 0.9) 0%, transparent 30%);
  z-index: 1;
}

.iskra-sport-detail-page .sport-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
}

.iskra-sport-detail-page .sport-detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.iskra-sport-detail-page .sport-detail-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.iskra-sport-detail-page .sport-detail-title {
  font-size: clamp(44px, 6vw, 84px);
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}

.iskra-sport-detail-page .sport-detail-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.iskra-sport-detail-page .sport-detail-features {
  padding: 80px 0;
  background: var(--bg);
}

.iskra-sport-detail-page .sport-detail-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
}

.iskra-sport-detail-page .sport-detail-section-title span {
  color: var(--orange);
}

.iskra-sport-detail-page .sport-detail-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.iskra-sport-detail-page .sport-detail-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}

.iskra-sport-detail-page .sport-detail-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.iskra-sport-detail-page .sport-detail-image-card {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-alt);
}

.iskra-sport-detail-page .sport-detail-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iskra-sport-detail-page .sport-detail-products {
  padding: 80px 0;
  background: var(--bg-alt);
}

.iskra-sport-detail-page .sport-detail-product-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  position: relative;
}

.iskra-sport-detail-page .sport-detail-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
}

.iskra-sport-detail-page .sport-detail-product-card.featured {
  border: 2px solid var(--orange);
}

.iskra-sport-detail-page .sport-detail-product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  z-index: 2;
}

.iskra-sport-detail-page .sport-detail-product-img {
  height: 420px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.iskra-sport-detail-page .sport-detail-product-img.dark {
  background: var(--dark);
}

.iskra-sport-detail-page .sport-detail-product-img span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.iskra-sport-detail-page .sport-detail-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .35s;
}

.iskra-sport-detail-page .sport-detail-product-card:hover .sport-detail-product-img img {
  transform: none;
}

.iskra-sport-detail-page .sport-products-carousel-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.iskra-sport-detail-page .sport-products-carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: sport-products-carousel-scroll 46s linear infinite;
}

.iskra-sport-detail-page .sport-products-carousel-track:hover {
  animation-play-state: paused;
}

.iskra-sport-detail-page .sport-products-manual-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 64px 42px;
}

.iskra-sport-detail-page .sport-products-manual-viewport {
  overflow: hidden;
  border-radius: 14px;
}

.iskra-sport-detail-page .sport-products-manual-track {
  display: flex;
  gap: 22px;
  transition: transform .35s ease;
  will-change: transform;
}

.iskra-sport-detail-page .sport-products-carousel-item {
  width: 320px;
  height: 420px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(8, 15, 36, .08);
}

.iskra-sport-detail-page .sport-products-manual-track .sport-products-carousel-item {
  width: calc((100% - 44px) / 3);
  box-shadow: 0 18px 44px rgba(8, 15, 36, .08);
  border-radius: 12px;
}

.iskra-sport-detail-page .sport-package-carousel {
  max-width: none;
}

.iskra-sport-detail-page .sport-package-carousel .sport-products-manual-track .sport-products-carousel-item {
  width: calc((100% - 66px) / 4);
}

.iskra-sport-detail-page .sport-package-carousel .sport-products-manual-viewport {
  border-radius: 0;
}

.iskra-sport-detail-page .sport-products-manual-track .sport-package-carousel-item {
  height: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(8, 15, 36, .08);
}

.iskra-sport-detail-page .sport-package-carousel .sport-detail-product-img {
  height: 440px;
  padding: 12px 10px 0;
  background: #fff;
  border-radius: 0;
  box-sizing: border-box;
}

.iskra-sport-detail-page .sport-package-carousel .sport-detail-product-img.dark {
  background: #fff;
}

.iskra-sport-detail-page .sport-package-carousel .sport-products-carousel-item img,
.iskra-sport-detail-page .sport-package-carousel .sport-detail-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}


.iskra-sport-detail-page .sport-products-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.iskra-sport-detail-page .sport-products-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transform: translateY(-50%);
  box-shadow: 0 14px 30px rgba(255, 85, 0, .22);
  transition: background .2s, transform .2s;
}

.iskra-sport-detail-page .sport-products-arrow:hover {
  background: var(--orange-h);
  transform: translateY(-50%) scale(1.05);
}

.iskra-sport-detail-page .sport-products-arrow-prev {
  left: 0;
}

.iskra-sport-detail-page .sport-products-arrow-next {
  right: 0;
}

.iskra-sport-detail-page .sport-products-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.iskra-sport-detail-page .sport-products-dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: rgba(8, 15, 36, .22);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.iskra-sport-detail-page .sport-products-dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

@media (max-width: 991.98px) {
  .iskra-sport-detail-page .sport-products-manual-track .sport-products-carousel-item {
    width: calc((100% - 22px) / 2);
  }

  .iskra-sport-detail-page .sport-package-carousel .sport-products-manual-track .sport-products-carousel-item {
    width: calc((100% - 22px) / 2);
  }
}

@media (max-width: 575.98px) {
  .iskra-sport-detail-page .sport-products-manual-carousel {
    padding: 0 52px 42px;
  }

  .iskra-sport-detail-page .sport-products-manual-track .sport-products-carousel-item {
    width: 100%;
  }

  .iskra-sport-detail-page .sport-package-carousel .sport-products-manual-track .sport-products-carousel-item {
    width: 100%;
  }
}

@keyframes sport-products-carousel-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.iskra-sport-detail-page .sport-detail-products-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.iskra-sport-detail-page .sport-detail-product-img.dark span {
  color: rgba(255, 255, 255, .25);
}

.iskra-sport-detail-page .sport-detail-product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 22px;
}

.iskra-sport-detail-page .sport-detail-product-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  min-width: 180px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .04em;
  padding: 10px 28px;
  border-radius: 999px;
}

.iskra-sport-detail-page .sport-detail-product-price + .sport-detail-product-link {
  margin-top: 12px;
  align-self: center;
}


.iskra-sport-detail-page .sport-detail-product-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.iskra-sport-detail-page .sport-detail-product-tier.orange {
  color: var(--orange);
}

.iskra-sport-detail-page .sport-detail-product-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.42;
  margin-bottom: 12px;
}

.iskra-sport-detail-page .sport-detail-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.iskra-sport-detail-page .sport-detail-product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: #444;
}

.iskra-sport-detail-page .sport-detail-product-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.iskra-sport-detail-page .sport-detail-product-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: gap .2s;
  margin-top: auto;
}

.iskra-sport-detail-page .sport-detail-product-link:hover {
  gap: 12px;
  color: var(--orange);
  text-decoration: none;
}

.iskra-sport-detail-page .sport-detail-product-card.js-open-iskra-lead-modal {
  cursor: pointer;
}

.iskra-sport-detail-page .sport-products-carousel-item.js-open-iskra-lead-modal {
  cursor: pointer;
}


.hockey-jersey-section {
  padding: 88px 0 110px;
  background: #eef1f5;
}

.hockey-jersey-heading {
  margin-bottom: 36px;
}

.hockey-jersey-heading .section-eyebrow {
  color: var(--orange);
}

.hockey-jersey-heading .sport-detail-section-title {
  margin: 0;
}

.hockey-jersey-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 18px;
  align-items: stretch;
  padding-bottom: 22px;
}

.hockey-jersey-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  padding: 18px 18px 36px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}

.hockey-jersey-card:hover,
.hockey-jersey-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, .14);
  outline: none;
}

.hockey-jersey-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  margin-bottom: 16px;
  padding: 8px 6px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.hockey-jersey-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  max-width: 210px;
}

.hockey-jersey-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
}

.hockey-jersey-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hockey-jersey-card-features li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.35;
  color: #444;
}

.hockey-jersey-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 7px;
  height: 7px;
  background: var(--orange);
  transform: rotate(45deg);
}

.hockey-jersey-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 28px;
}

.hockey-jersey-size {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 28px);
  max-width: 180px;
  transform: translate(-50%, 50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(232, 90, 36, .28);
  transition: background .2s;
}

.hockey-jersey-card:hover .hockey-jersey-size,
.hockey-jersey-card:focus-within .hockey-jersey-size {
  background: var(--orange-h);
}

@media (max-width: 1199.98px) {
  .hockey-jersey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .hockey-jersey-section {
    padding: 64px 0 72px;
  }

  .hockey-jersey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .hockey-jersey-card {
    padding: 14px 14px 32px;
    border-radius: 14px;
  }

  .hockey-jersey-card-title {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .hockey-jersey-grid {
    grid-template-columns: 1fr;
  }
}

.hockey-gear-section {
  padding: 88px 0 96px;
  background: #101522;
}

.hockey-gear-section .section-eyebrow {
  color: var(--orange);
}

.hockey-gear-section .sport-detail-section-title {
  color: #fff;
}

.hockey-gear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding-bottom: 26px;
}

.hockey-gear-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 22px 22px 48px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.hockey-gear-card:hover,
.hockey-gear-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .38);
  outline: none;
}

.hockey-gear-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  height: 32px;
}

.hockey-gear-card-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.hockey-gear-card-visuals:has(.hockey-gear-card-visual:only-child) {
  grid-template-columns: 1fr;
}

.hockey-gear-card-visuals:has(.hockey-gear-card-visual:only-child) .hockey-gear-card-visual {
  height: 280px;
}

.hockey-gear-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.hockey-gear-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hockey-gear-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 16px;
}

.hockey-gear-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hockey-gear-card-features li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.45;
  color: #333;
}

.hockey-gear-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  background: var(--orange);
  transform: rotate(45deg);
}

.hockey-gear-brand {
  color: var(--orange);
  font-weight: 700;
}

.hockey-gear-sizes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap .2s;
}

.hockey-gear-sizes svg {
  display: block;
  flex-shrink: 0;
}

.hockey-gear-card:hover .hockey-gear-sizes,
.hockey-gear-card:focus-within .hockey-gear-sizes {
  gap: 12px;
}

.hockey-gear-price {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  max-width: 260px;
  transform: translate(-50%, 50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(232, 90, 36, .28);
  transition: background .2s;
}

.hockey-gear-card:hover .hockey-gear-price,
.hockey-gear-card:focus-within .hockey-gear-price {
  background: var(--orange-h);
}

@media (max-width: 991.98px) {
  .hockey-gear-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .hockey-gear-section {
    padding: 64px 0 80px;
  }

  .hockey-gear-card {
    padding: 16px 16px 44px;
    border-radius: 20px;
  }

  .hockey-gear-card-visual {
    height: 160px;
  }

  .hockey-gear-card-title {
    font-size: 26px;
  }

  .hockey-gear-price {
    width: calc(100% - 32px);
    max-width: none;
    font-size: 18px;
  }
}

.hockey-accessories-section {
  padding: 24px 0 110px;
  background: #101522;
}

.hockey-accessories-section .section-eyebrow {
  color: var(--orange);
}

.hockey-accessories-section .sport-detail-section-title {
  color: #fff;
}

.hockey-accessories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.38fr;
  gap: 28px;
  align-items: stretch;
}

.hockey-accessories-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform .3s;
}

.hockey-accessories-card:hover,
.hockey-accessories-card:focus {
  transform: translateY(-6px);
  outline: none;
}

.hockey-accessories-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.hockey-accessories-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hockey-accessories-card.is-wide .hockey-accessories-visual {
  aspect-ratio: auto;
  flex: 1 1 0;
  width: calc(100% - 10px);
  min-height: 0;
  padding: 0;
  align-self: stretch;
}

.hockey-accessories-card.is-wide .hockey-accessories-visual img {
  object-fit: cover;
  object-position: center;
}

.hockey-accessories-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 22px 0 0;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .hockey-accessories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .hockey-accessories-card.is-wide {
    grid-column: 1 / -1;
  }

  .hockey-accessories-card.is-wide .hockey-accessories-visual {
    aspect-ratio: 2.05 / 1;
    flex: 0 0 auto;
    width: calc(100% - 10px);
  }
}

@media (max-width: 575.98px) {
  .hockey-accessories-section {
    padding: 8px 0 80px;
  }

  .hockey-accessories-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .hockey-accessories-title {
    font-size: 24px;
  }
}

.hockey-merch-section {
  padding: 72px 0 0;
  background: #eef1f5;
  overflow: hidden;
}

.hockey-merch-section .section-eyebrow {
  color: var(--orange);
}

.hockey-merch-section .sport-detail-section-title {
  color: var(--text);
}

.hockey-merch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
  gap: 24px 32px;
  align-items: end;
}

.hockey-merch-copy {
  padding-bottom: 48px;
}

.hockey-merch-copy .hockey-jersey-heading {
  margin-bottom: 32px;
}

.hockey-merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  max-width: 920px;
}

.hockey-merch-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, .14);
}

.hockey-merch-col .hockey-merch-cat + .hockey-merch-list + .hockey-merch-cat {
  margin-top: 32px;
}

.hockey-merch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hockey-merch-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.4;
  color: #222;
}

.hockey-merch-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #222;
}

.hockey-merch-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
}

.hockey-merch-visual img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 991.98px) {
  .hockey-merch-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hockey-merch-visual img {
    max-height: 520px;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .hockey-merch-section {
    padding: 56px 0 0;
  }

  .hockey-merch-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 520px;
  }

  .hockey-merch-visual img {
    max-height: 420px;
  }
}

.football-line-section {
  padding: 72px 0 28px;
  background: #dde4f0;
}

.football-line-section + .football-line-section {
  padding-top: 12px;
}

.football-line-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 28px 36px;
  align-items: start;
}

.football-line-visual,
.football-suit-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.football-line-photo,
.football-suit-photo {
  position: relative;
  width: 100%;
}

.football-line-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  background: #fff;
  object-fit: cover;
}

.football-suit-photo {
  overflow: hidden;
  border-radius: 28px;
  width: 100%;
  height: 525px;
  background: #d7dde8;
}

.football-suit-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  background: transparent;
}

.football-price-btn {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: none;
  padding: 11px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(232, 90, 36, .28);
  pointer-events: none;
}

.football-size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  margin-top: 10px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 17px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(232, 90, 36, .24);
  cursor: pointer;
}

.football-size-btn:hover,
.football-size-btn:focus {
  background: var(--orange-h);
  outline: none;
}

.football-line-card {
  background: #fdfdfd;
  border-radius: 28px;
  padding: 26px 28px 28px;
}

.football-line-lead {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #232d46;
  margin: 0 0 16px;
}

.football-line-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.football-line-features li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: #232d46;
}

.football-line-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.football-line-note {
  font-size: 15px;
  line-height: 1.55;
  color: #232d46;
  margin: 0;
}

.football-line-note strong,
.football-line-features strong {
  font-weight: 700;
}

.football-fabrics {
  margin-top: 22px;
}

.football-line-order {
  margin-top: 20px;
}

.football-suit-fabrics {
  margin-top: 8px;
}

.football-line-fabrics-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #232d46;
  margin: 0 0 14px;
}

.football-fabric-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.football-fabric {
  margin: 0;
  width: 148px;
  display: flex;
  flex-direction: column;
}

.football-fabric img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: cover;
  background: #fff;
}

.football-fabric figcaption {
  order: -1;
  margin: 0;
  height: 52px;
  box-sizing: border-box;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-top-right-radius: 14px;
}

.football-suit-section {
  padding: 28px 0 88px;
  background: #dde4f0;
}

.football-suit-layout {
  display: grid;
  grid-template-columns: minmax(260px, 44%) minmax(0, 1fr);
  gap: 24px 22px;
  align-items: start;
}

.football-suit-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.football-suit-caption {
  margin-top: 10px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #232d46;
}

.football-suit-visual .football-size-btn {
  margin-top: 10px;
}

.football-suit-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.football-suit-fabrics .football-fabric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.football-suit-fabrics .football-fabric {
  width: auto;
}

.football-suit-fabrics .football-fabric img {
  height: 96px;
}

.football-suit-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-transform: none;
  color: #232d46;
  margin: 0 0 14px;
}

.football-suit-copy .football-line-features {
  margin: 0;
}

.iskra-sport-detail-page-football .hockey-gear-card-visuals:has(.hockey-gear-card-visual:only-child) .hockey-gear-card-visual {
  height: 220px;
  background: #fff;
}

.iskra-sport-detail-page-football .hockey-gear-card-visual img {
  background: #fff;
}

.iskra-sport-detail-page-football .hockey-gear-price {
  text-transform: none;
}

@media (max-width: 1199.98px) {
  .football-fabric {
    width: 128px;
  }
}

@media (max-width: 991.98px) {
  .football-line-layout,
  .football-suit-layout {
    grid-template-columns: 1fr;
  }

  .football-line-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .football-suit-photos {
    max-width: 640px;
    margin: 0 auto;
  }

  .football-suit-photo {
    height: 480px;
  }
}

@media (max-width: 767.98px) {
  .football-line-section,
  .football-suit-section {
    padding: 56px 0;
  }

  .football-suit-photos {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .football-suit-photo {
    height: 520px;
  }

  .football-suit-fabrics .football-fabric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .football-fabric {
    width: calc(50% - 7px);
  }

  .football-fabric img {
    height: 96px;
  }
}

.iskra-sport-detail-page .quality {
  padding: 100px 0;
  background: var(--dark);
  color: #fff;
}

.iskra-sport-detail-page .quality-footer-divider {
  border-bottom: 1px solid var(--orange);
}

.iskra-sport-detail-page .quality-lead {
  color: rgba(255, 255, 255, .45);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.iskra-sport-detail-page .quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.iskra-sport-detail-page .quality-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.iskra-sport-detail-page .quality-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}

.iskra-sport-detail-page .quality-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #fff;
}

.iskra-sport-detail-page .quality-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
}

.iskra-lead-modal .modal-content,
.iskra-size-modal .modal-content {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
}

.iskra-lead-modal .modal-body {
  padding: 40px;
}

.iskra-size-modal .modal-dialog {
  max-width: min(1180px, calc(100% - 32px));
}

.iskra-size-modal .modal-body {
  padding: 44px 20px 20px;
}

.iskra-size-modal-chart {
  overflow: auto;
  max-height: min(74vh, 820px);
  border-radius: 10px;
  background: #fff;
}

.iskra-size-modal .iskra-modal-close {
  top: 8px;
  right: 12px;
}

.vis-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.iskra-size-modal-chart img {
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
}

.iskra-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.iskra-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.iskra-modal-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.iskra-modal-policy {
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 0;
  text-align: center;
}

@media (max-width: 575.98px) {
  .iskra-sport-detail-page .quality {
    padding: 80px 0;
  }

  .iskra-sport-detail-page .quality-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .iskra-lead-modal .modal-body {
    padding: 32px 22px 24px;
  }

  .iskra-size-modal .modal-body {
    padding: 40px 12px 16px;
  }

  .iskra-modal-title {
    font-size: 34px;
  }

  .iskra-size-modal-chart img {
    min-width: 640px;
  }
}

.iskra-sport-detail-page .sport-detail-cta {
  background: var(--dark);
  padding: 72px 0;
}

.iskra-sport-detail-page .sport-detail-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
}

.iskra-sport-detail-page .sport-detail-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
  margin-top: 12px;
  line-height: 1.7;
}

.sport-form-types {
  padding: 96px 0;
  background: linear-gradient(180deg, #171c28 0%, #101522 100%);
  color: #fff;
}

.sport-form-types .sport-detail-section-title {
  color: #fff;
}

.sport-form-types .section-eyebrow {
  color: var(--orange);
}

.sport-form-types-lead {
  color: rgba(255, 255, 255, .55);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.design-carousel-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.sport-type-card {
  min-height: 260px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 24px 22px;
  color: var(--text);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.sport-type-card::before {
  content: '';
  position: absolute;
  inset: auto -30px -45px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 85, 0, .08);
  transition: transform .3s, opacity .3s;
}

.sport-type-card:hover {
  color: var(--text);
  text-decoration: none;
  border-color: rgba(255, 85, 0, .35);
  box-shadow: 0 24px 58px rgba(255, 85, 0, .13), 0 18px 42px rgba(8, 15, 36, .08);
  transform: translateY(-6px);
}

.sport-type-card:hover::before {
  transform: scale(1.25);
  opacity: .9;
}

.sport-type-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 18px;
}

.sport-type-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.sport-type-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.sport-type-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  position: relative;
  z-index: 1;
  padding-top: 24px;
}

.design-carousel-section {
  padding: 96px 0;
  background: var(--bg);
  overflow: hidden;
}

.design-carousel-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.design-carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: design-carousel-scroll 42s linear infinite;
}

.design-carousel-track:hover {
  animation-play-state: paused;
}

.design-carousel-item {
  width: 320px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(8, 15, 36, .07);
}

.design-carousel-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.design-carousel-caption {
  padding: 16px 18px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@keyframes design-carousel-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {

  .navbar-iskra,
  .iskra-production-page .navbar-iskra,
  .iskra-contacts-page .navbar-iskra {
    overflow: visible;
  }

  .navbar-inner,
  .iskra-production-page .navbar-inner,
  .iskra-contacts-page .navbar-inner {
    height: 64px;
    gap: 12px;
  }

  .nav-cta,
  .iskra-production-page .nav-cta,
  .iskra-contacts-page .nav-cta {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .container,
  .iskra-production-page .container,
  .iskra-contacts-page .container {
    max-width: 100%;
    width: 100%;
  }

  .row,
  .iskra-production-page .row,
  .iskra-contacts-page .row {
    max-width: calc(100% + 30px);
  }

  .about-page-title-line,
  .about-page-expo-title {
    white-space: normal;
  }
}


/* ================= FAQ (SEO/GEO), добавлено 2026-08-07 ================= */
.iskra-faq {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.iskra-faq .section-title { color: var(--text); }
.iskra-faq .section-title span { color: var(--orange); }
.iskra-faq-list { border-top: 1px solid var(--border); }
.iskra-faq-item { border-bottom: 1px solid var(--border); }
.iskra-faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.iskra-faq-q::-webkit-details-marker { display: none; }
.iskra-faq-q::marker { content: ""; }
.iskra-faq-q::after {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin-top: 7px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.iskra-faq-item[open] .iskra-faq-q::after { transform: rotate(-135deg); }
.iskra-faq-a {
  padding: 0 0 26px;
  max-width: 68ch;
  color: rgba(17, 17, 16, .72);
  font-size: 16px;
  line-height: 1.65;
}
.iskra-faq-a p { margin: 0; }
@media (max-width: 767px) {
  .iskra-faq { padding: 64px 0; }
  .iskra-faq-q { padding: 20px 0; font-size: 17px; gap: 16px; }
  .iskra-faq-a { padding-bottom: 20px; font-size: 15px; }
}


/* ============== АДАПТИВ: исправления 2026-08-07 ==============
   Все баги существовали до правок SEO/GEO, проверено на замороженном эталоне.
   Ничего не переписываем — только дописываем переопределения ниже по каскаду. */

/* [1] Главная, первый экран: слово «ЗАЖИГАЕМ» вылезало за правый край
   на 20-23px при любой ширине телефона. Причина: font-size: clamp(46px, 16vw, 72px)
   — 16vw даёт 66px на экране 414px, а слово в этом кегле занимает 425px. */
@media (max-width: 767.98px) {
  .hero-title { font-size: clamp(34px, 13vw, 72px); }
}

/* [2] Главная, показатели: 4 блока стояли в один flex-ряд и не помещались,
   поэтому четвёртый («6+ видов спорта») прятали классом d-none d-md-block.
   В CSS уже было grid-template-columns: 1fr 1fr и обнуление рамки у второго —
   то есть сетка 2x2 задумывалась, но display остался flex и правило не работало. */
@media (max-width: 767.98px) {
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stat { border-right: 1px solid rgba(255, 255, 255, .08); }
  .hero-stat:nth-child(2n) { border-right: 0; }
  .hero-stat:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .08); }
}
@media (max-width: 359.98px) {
  .hero-stat { min-height: 0; padding: 20px 12px; }
  .hero-stat-num { font-size: 38px; }
  .hero-stat-label { font-size: 12px; }
}

/* [3] Производство: «Что входит в полный цикл» держал repeat(3, 1fr)
   на всех ширинах — мобильного медиазапроса для .cycle-grid не было вообще.
   Карточки уезжали за экран на 273px. */
@media (max-width: 991.98px) {
  .iskra-production-page .cycle-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}
@media (max-width: 767.98px) {
  .iskra-production-page .cycle-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
  .iskra-production-page .cycle-item { padding: 26px 22px; }
}

/* [4] Производство, первый экран: 4 показателя в один ряд, мобильного
   правила не было. Вылезало на 66px при 320px. */
@media (max-width: 767.98px) {
  .iskra-production-page .hero-badge-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .iskra-production-page .hero-badge-item {
    padding: 20px 16px;
    border-right: 1px solid rgba(255, 255, 255, .06);
  }
  .iskra-production-page .hero-badge-item:nth-child(2n) { border-right: 0; }
  .iskra-production-page .hero-badge-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
}

/* [5] Производство, «Наши гарантии»: блок скопирован со страниц видов спорта,
   но мобильное правило скопировать забыли. Для .iskra-sport-detail-page .quality-grid
   в файле есть @media (max-width: 575.98px) с одной колонкой, а для
   .iskra-production-page его нет — сетка оставалась в 2 колонки и уезжала на 175px.
   Дописываем зеркальное правило с тем же брейкпоинтом. */
@media (max-width: 575.98px) {
  .iskra-production-page .quality-grid { grid-template-columns: 1fr; gap: 0; }
}

/* [6] Контакты: карточки соцсетей идут по две в ряд (col-6). При 320px в карточку
   шириной 123px не помещались иконка 44px и текстовый блок 108px в один ряд —
   названия обрезались.
   Замерено: карточка «ВКонтакте» требует 192px, а её бокс — 123px при 320px экрана,
   158px при 390px и 150px при 768px. Обрезка держалась вплоть до 992px, где бокс
   становится 210px и всё помещается. Поэтому иконку и подпись ставим в столбик
   на всём диапазоне ниже 992px. */
@media (max-width: 991.98px) {
  .iskra-contacts-page .social-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .iskra-contacts-page .social-handle { overflow-wrap: anywhere; }
}
@media (max-width: 359.98px) {
  .iskra-contacts-page .social-item { padding: 14px 12px; gap: 8px; }
  .iskra-contacts-page .social-name { font-size: 15px; }
  .iskra-contacts-page .social-handle { font-size: 11px; }
}

.hockey-jersey-grid.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hockey-jersey-card.is-static {
  cursor: default;
  padding-bottom: 22px;
}

.hockey-jersey-card.is-static:hover,
.hockey-jersey-card.is-static:focus-within {
  transform: none;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.volleyball-fabric-note {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

.iskra-sport-detail-page-volleyball .hockey-jersey-card-visual,
.iskra-sport-detail-page-basketball .hockey-jersey-card-visual {
  height: 248px;
}

.iskra-sport-detail-page-volleyball .sport-package-carousel .volleyball-model-card,
.iskra-sport-detail-page-basketball .sport-package-carousel .volleyball-model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: visible;
  padding: 18px 10px 22px;
  cursor: pointer;
}

.iskra-sport-detail-page-volleyball .sport-package-carousel .volleyball-model-card .sport-detail-product-tier,
.iskra-sport-detail-page-basketball .sport-package-carousel .volleyball-model-card .sport-detail-product-tier {
  text-align: center;
  font-size: 22px;
  margin: 0 0 10px;
}

.iskra-sport-detail-page-volleyball .sport-package-carousel .volleyball-model-card .sport-detail-product-img,
.iskra-sport-detail-page-basketball .sport-package-carousel .volleyball-model-card .sport-detail-product-img {
  height: 420px;
  padding: 0;
  background: #fff;
}

.iskra-sport-detail-page-volleyball .sport-package-carousel .volleyball-model-card .sport-detail-product-price,
.iskra-sport-detail-page-basketball .sport-package-carousel .volleyball-model-card .sport-detail-product-price {
  margin-top: 14px;
  min-width: 160px;
  font-size: 16px;
  padding: 10px 22px;
  box-shadow: 0 10px 22px rgba(232, 90, 36, .28);
}

.iskra-sport-detail-page-volleyball .hockey-gear-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iskra-sport-detail-page-volleyball .hockey-gear-price,
.iskra-sport-detail-page-basketball .hockey-gear-price {
  text-transform: none;
}

.iskra-sport-detail-page-volleyball .hockey-gear-card-visuals:has(.hockey-gear-card-visual:only-child) .hockey-gear-card-visual,
.iskra-sport-detail-page-basketball .hockey-gear-card-visuals:has(.hockey-gear-card-visual:only-child) .hockey-gear-card-visual {
  height: 240px;
  background: #fff;
}

.iskra-sport-detail-page-volleyball .football-suit-section,
.iskra-sport-detail-page-basketball .football-suit-section {
  padding-top: 72px;
}

.iskra-sport-detail-page-basketball .hockey-gear-grid {
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 1199.98px) {
  .hockey-jersey-grid.is-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iskra-sport-detail-page-volleyball .hockey-gear-grid.is-three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .iskra-sport-detail-page-volleyball .hockey-gear-grid.is-three {
    max-width: none;
    margin: 0;
  }

  .iskra-sport-detail-page-basketball .hockey-gear-grid {
    max-width: 640px;
  }
}

@media (max-width: 767.98px) {
  .iskra-sport-detail-page-volleyball .hockey-gear-grid.is-three {
    grid-template-columns: 1fr;
  }

  .iskra-sport-detail-page-volleyball .sport-package-carousel .volleyball-model-card .sport-detail-product-img,
  .iskra-sport-detail-page-basketball .sport-package-carousel .volleyball-model-card .sport-detail-product-img {
    height: 340px;
  }
}
