.inddet-page {
  padding-top: 0;
  background: #ffffff;
}

.inddet-hero {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 600px;
  padding-top: 72px;
  overflow: hidden;
}

.inddet-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inddet-hero__bg img,
.inddet-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.inddet-hero__bg img {
  object-fit: cover;
  object-position: center center;
}

.inddet-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.inddet-hero__main {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.inddet-hero__content {
  max-width: 640px;
  color: #ffffff;
}

.inddet-hero__label {
  margin: 0 0 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

.inddet-hero__title {
  margin: 0;
  font-size: 48px;
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.inddet-products {
  background: #ffffff;
  padding: 80px 0 96px;
}

.inddet-products__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.inddet-products__intro {
  margin: 0 0 40px;
  color: #0070d5;
  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 28px;
}

.inddet-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.inddet-products__card {
  border: 1px solid #e8e8e8;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 24px 24px 28px;
  box-sizing: border-box;
}

.inddet-products__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #ffffff;
}

.inddet-products__media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.inddet-products__name {
  margin: 0;
  color: #0070d5;
  font-size: 18px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.inddet-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.inddet-pager__page,
.inddet-pager__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 50%;
  background: #f1f1f1;
  color: #000000;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.inddet-pager__page.is-active {
  background: #0070d5;
  color: #ffffff;
}

.inddet-pager__page:hover:not(.is-active),
.inddet-pager__next:hover:not(:disabled) {
  background: #0070d5;
  color: #ffffff;
}

.inddet-pager__next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 1200px) {
  .inddet-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .inddet-hero__title {
    font-size: 32px;
  }
  .inddet-products {
    padding: 64px 0 80px;
  }
  .inddet-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inddet-products__intro {
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .inddet-hero {
    height: 480px;
  }
  .inddet-hero__label {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .inddet-hero__title {
    font-size: 26px;
  }
  .inddet-hero__main,
  .inddet-products__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .inddet-products__intro {
    font-size: 16px;
  }
  .inddet-products {
    padding: 48px 0 64px;
  }
  .inddet-products__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .inddet-products__media {
    height: 180px;
  }
  .inddet-products__name {
    font-size: 17px;
  }
  .inddet-pager {
    gap: 8px;
  }
  .inddet-pager__page,
  .inddet-pager__next {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .inddet-hero {
    height: 31.875vw;
    padding-top: 3.825vw;
  }
  .inddet-hero__main {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .inddet-hero__content {
    max-width: 34vw;
  }
  .inddet-hero__label {
    margin: 0 0 1.0625vw;
    font-size: 1.0625vw;
  }
  .inddet-hero__title {
    font-size: 2.55vw;
  }
  .inddet-products {
    padding: 4.25vw 0 5.1vw;
  }
  .inddet-products__inner {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .inddet-products__intro {
    margin: 0 0 2.125vw;
    font-size: 0.85vw;
    line-height: 1.4875vw;
  }
  .inddet-products__grid {
    gap: 1.275vw;
    margin-bottom: 2.55vw;
  }
  .inddet-products__card {
    border-width: 0.05312vw;
    box-shadow: 0 0.2125vw 0.85vw rgba(0, 0, 0, 0.06);
    padding: 1.275vw 1.275vw 1.4875vw;
  }
  .inddet-products__media {
    height: 10.625vw;
    margin-bottom: 1.0625vw;
  }
  .inddet-products__name {
    font-size: 0.95625vw;
  }
  .inddet-pager {
    gap: 0.6375vw;
  }
  .inddet-pager__page,
  .inddet-pager__next {
    min-width: 2.125vw;
    height: 2.125vw;
    padding: 0 0.6375vw;
    font-size: 0.79688vw;
  }
}
