.page-product {
  background: #f9f9f9;
}

.page-product .site-footer {
  background: var(--bg-soft);
}

.product-main {
  padding: 39px 0 80px;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.1504px;
  color: #1a1a1a;
}

.product-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.product-breadcrumbs a:hover,
.product-breadcrumbs a:focus-visible {
  color: var(--accent);
}

.product-breadcrumbs-category {
  color: #2b2727;
}

.product-breadcrumbs-current {
  color: var(--accent);
}

.product-mobile-intro {
  display: none;
}

.product-loading-shell {
  display: none;
}

html.js .page-product--loading .product-loading-shell {
  display: block;
}

html.js .page-product--loading .product-page-content {
  display: none;
}

.product-loading-layout {
  display: grid;
  grid-template-columns: minmax(0, 634px) minmax(0, 502px);
  gap: 64px;
  align-items: start;
  justify-content: space-between;
}

.product-loading-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 634px;
}

.product-loading-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe5ef;
  background: #eff1f4;
}

.product-loading-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 48%, transparent 100%);
  transform: translateX(-100%);
  animation: product-loading-shimmer 1.8s ease-in-out infinite;
}

.product-loading-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  background: url("assets/images/image-loading.svg") center / contain no-repeat;
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

.product-loading-box--main {
  border-radius: 24px;
  aspect-ratio: 634 / 396;
}

.product-loading-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.product-loading-box--thumb {
  border-radius: 20px;
  aspect-ratio: 176 / 110;
}

.product-loading-box--thumb::after {
  width: 44px;
  height: 44px;
}

.product-loading-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 502px;
  padding-top: 18px;
}

.product-loading-line,
.product-loading-button,
.product-loading-card__button,
.product-loading-chip {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ebf0;
}

.product-loading-line::before,
.product-loading-button::before,
.product-loading-card__button::before,
.product-loading-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.72) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: product-loading-shimmer 1.8s ease-in-out infinite;
}

.product-loading-line--title {
  width: 169px;
  height: 12px;
  border-radius: 7px;
  background: #a7b0bc;
}

.product-loading-line--subtitle {
  width: 227px;
  height: 9px;
}

.product-loading-line--subtitle-short {
  width: 191px;
  height: 9px;
}

.product-loading-specs {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 20px rgba(53, 65, 83, 0.04);
}

.product-loading-spec-card {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 0 18px;
}

.product-loading-spec-card + .product-loading-spec-card {
  border-top: 1px solid #f2f4f7;
}

.product-loading-chip {
  width: 24px;
  height: 24px;
  border-radius: 9px;
}

.product-loading-line--card-left,
.product-loading-line--card-right {
  width: 59px;
  height: 8px;
}

.product-loading-line--card-right {
  justify-self: end;
}

.product-loading-prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.product-loading-price-row {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 16px;
}

.product-loading-line--price-left,
.product-loading-line--price-right {
  width: 34px;
  height: 7px;
}

.product-loading-line--price-left.short,
.product-loading-line--price-right.short {
  width: 24px;
}

.product-loading-line--price-center {
  width: 100%;
  max-width: 159px;
  height: 2px;
  justify-self: center;
}

.product-loading-button {
  width: 100%;
  height: 34px;
  margin-top: 8px;
  border-radius: 8px;
}

.product-loading-related {
  margin-top: 34px;
}

.product-loading-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 378px));
  gap: 20px;
}

.product-loading-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(43, 39, 39, 0.08);
}

.product-loading-box--card {
  border: none;
  border-radius: 0;
  aspect-ratio: 378 / 240;
}

.product-loading-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 12px 10px;
}

.product-loading-line--card-title {
  width: 78%;
  height: 8px;
}

.product-loading-line--card-text {
  width: 57%;
  height: 7px;
}

.product-loading-line--card-text.short {
  width: 48%;
}

.product-loading-card__button {
  width: 100%;
  height: 34px;
  margin-top: 12px;
  border-radius: 8px;
}

@keyframes product-loading-shimmer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 634px) minmax(0, 502px);
  gap: 64px;
  align-items: start;
  justify-content: space-between;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 634px;
}

.product-gallery__main {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #d2d9e6;
  border-radius: 32px;
  overflow: hidden;
  background: #e8eaef;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  aspect-ratio: 634 / 396;
}

.product-gallery__main:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.product-gallery__main.is-loading::before,
.product-thumb.is-loading::before,
.product-card__media.is-loading::before,
.product-gallery__main.is-missing::before,
.product-thumb.is-missing::before,
.product-card__media.is-missing::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.product-gallery__main.is-loading::before,
.product-thumb.is-loading::before,
.product-card__media.is-loading::before {
  background-image: url("assets/images/image-loading.svg");
}

.product-gallery__main.is-missing::before,
.product-thumb.is-missing::before,
.product-card__media.is-missing::before {
  background-image: url("assets/images/image-absent.svg");
}

.product-gallery__main.is-loading img,
.product-thumb.is-loading img,
.product-card__media.is-loading img,
.product-gallery__main.is-missing img,
.product-thumb.is-missing img,
.product-card__media.is-missing img {
  opacity: 0;
}

.product-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-stock-banner {
  position: absolute;
  left: 23px;
  right: 23px;
  bottom: 23px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 101px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(43, 39, 39, 0.12);
  backdrop-filter: blur(6px);
}

.product-stock-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #f03;
}

.product-stock-banner__icon span {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.product-stock-banner__icon span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 2px;
  height: 10px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
}

.product-stock-banner__icon span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.product-stock-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.product-stock-banner__text strong {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.53px;
  color: #2b2727;
}

.product-stock-banner__text span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.15px;
  color: #6a7282;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 195px));
  gap: 24px;
  width: 100%;
  max-width: 633px;
}

.product-gallery--single .product-gallery__thumbs {
  display: none;
}

.product-thumb {
  position: relative;
  padding: 0;
  margin: 0;
  border: 1px solid #d2d9e6;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  aspect-ratio: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb:hover,
.product-thumb:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.product-thumb.is-active {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(230, 126, 34, 0.2);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 502px;
}

.product-title {
  margin: 0;
  font-size: 35px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -2.05px;
  color: #2b2727;
}

.product-subtitle {
  margin: -4px 0 4px;
  max-width: 450px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #6a7282;
}

.product-specs-wrap {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-spec-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-height: auto;
  padding: 16px 24px;
  background: #f8f9fa;
  border-radius: 16px;
}

.product-spec-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  max-width: 42%;
  min-width: 0;
  padding-top: 6px;
}

.product-spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
  color: var(--accent);
}

.product-spec-icon svg {
  width: 18px;
  height: 18px;
}

.product-spec-label {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-soft);
}

.product-spec-value {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.44px;
  color: #2b2727;
  flex: 1 1 0;
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-block-title {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2b2727;
}

.product-thickness {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 243px));
  gap: 16px;
}

.product-thickness-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 12px 26px;
  margin: 0;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.product-thickness-option:hover,
.product-thickness-option:focus-visible {
  outline: none;
  border-color: var(--accent);
}

.product-thickness-option.is-selected {
  background: #fff5ed;
  border-color: var(--accent);
}

.product-thickness-option__label {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-soft);
}

.product-thickness-option__value {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0.07px;
  color: #1a1a1a;
}

.product-prices {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-price-row {
  display: flex;
  align-items: center;
  min-height: 32px;
  gap: 12px;
}

.product-price-label {
  flex-shrink: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2b2727;
}

.product-price-leader {
  flex: 1;
  min-width: 24px;
  height: 0;
  margin-bottom: 4px;
  border-bottom: 1px dotted #d1d5db;
}

.product-price-value {
  flex-shrink: 0;
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  letter-spacing: 0.07px;
  color: #2b2727;
}

.product-price-value span {
  font-size: 15px;
  line-height: 16px;
  font-weight: 700;
  color: var(--text-soft);
}

.product-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 61px;
  margin: 0;
  padding: 12px 21px;
  border: none;
  border-radius: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

.product-order-btn:hover,
.product-order-btn:focus-visible {
  background: #de6800;
  outline: none;
}

.product-order-btn:active {
  background: #f47301;
}

.product-related {
  margin-top: 60px;
}

.product-related__title {
  margin: 0 0 32px;
  font-size: 35px;
  line-height: 52.8px;
  font-weight: 700;
  letter-spacing: -0.7px;
  color: #2b2727;
}

.product-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 378px));
  gap: 33px;
  justify-content: space-between;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 32px;
  box-shadow: 0 4px 32.9px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 378px;
  width: 100%;
}

.product-card__media {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
  background: #f3f4f6;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 17px 17px 0;
  flex: 1;
}

.product-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.48px;
  color: #2b2727;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 8px;
}

.product-card__row {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: baseline;
  font-size: 14px;
  line-height: 16.5px;
  letter-spacing: 0.0645px;
}

.product-card__row dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-soft);
}

.product-card__row dd {
  margin: 0;
  font-weight: 700;
  color: #1a1a1a;
  flex: 1;
  min-width: 0;
}

.product-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 34px);
  margin: 16px 17px 17px;
  min-height: 58px;
  padding: 12px 21px;
  border-radius: 22px;
  background: #2c2626;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-sans);
  text-decoration: none;
  transition: background-color 0.22s ease;
}

.product-card__action:hover,
.product-card__action:focus-visible {
  background: #de6800;
  outline: none;
}

.product-card__action:active {
  background: #f47301;
}

.product-card__action svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.product-card__action:hover svg,
.product-card__action:focus-visible svg {
  transform: translateX(3px);
}

.product-card__action:active svg {
  transform: translateX(1px);
}

@media (max-width: 1240px) {
  .product-loading-layout,
  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .product-loading-gallery,
  .product-gallery,
  .product-info {
    max-width: none;
  }

  .product-loading-thumbs,
  .product-gallery__thumbs {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
  }

  .product-loading-related__grid,
  .product-related__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .product-loading-card,
  .product-card {
    max-width: none;
  }
}

@media (max-width: 960px) {
  .product-loading-layout,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-loading-info,
  .product-info {
    max-width: none;
  }

  .product-thickness {
    grid-template-columns: 1fr 1fr;
  }

  .product-loading-related__grid,
  .product-related__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-loading-card,
  .product-card {
    max-width: 420px;
  }

  .product-stock-banner {
    gap: 16px;
    min-height: 88px;
  }

  .product-stock-banner__text strong {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .product-loading-layout {
    gap: 28px;
  }

  .product-loading-thumbs {
    gap: 12px;
  }

  .product-loading-info {
    padding-top: 0;
  }

  .product-loading-spec-card {
    gap: 12px;
    padding: 0 14px;
  }

  .product-loading-price-row {
    grid-template-columns: 24px 1fr 24px;
    gap: 12px;
  }

  .product-loading-line--price-left,
  .product-loading-line--price-right {
    width: 24px;
  }

  .product-loading-line--price-left.short,
  .product-loading-line--price-right.short {
    width: 18px;
  }

  .product-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .product-related__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .product-thickness {
    grid-template-columns: 1fr;
  }

  .product-spec-row {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .product-spec-left {
    max-width: none;
    width: 100%;
    padding-top: 0;
  }

  .product-spec-value {
    flex: 1 1 100%;
    width: 100%;
    text-align: left;
  }

  .product-stock-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 14px;
    min-height: 0;
    padding: 14px;
  }

  .product-stock-banner__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .product-stock-banner__icon span {
    width: 20px;
    height: 20px;
  }

  .product-stock-banner__text strong {
    font-size: 18px;
  }

  .product-stock-banner__text span {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 600px) {
  .page-product {
    background: #fbfbfb;
  }

  .page-product .site-header {
    border-bottom: 2px solid #e9e9e9;
    background: #fefefe;
    backdrop-filter: none;
  }

  .page-product .header-inner {
    min-height: 74px;
    padding: 12px 0;
    align-items: center;
  }

  .page-product .brand {
    gap: 6.236px;
    margin-left: 0;
  }

  .page-product .brand-logo {
    width: 40.091px;
    height: 40.091px;
    flex: 0 0 40.091px;
  }

  .page-product .brand-copy {
    gap: 0;
  }

  .page-product .brand-copy strong {
    font-size: 15.145px;
    letter-spacing: -0.7573px;
  }

  .page-product .brand-copy small {
    font-size: 9.8px;
    line-height: 1.25;
    letter-spacing: -0.098px;
  }

  .product-main {
    padding: 14px 0 30px;
  }

  .product-breadcrumbs {
    max-width: 269px;
    margin-bottom: 23px;
  }

  .product-breadcrumbs-catalog,
  .product-breadcrumbs-catalog-separator {
    display: none;
  }

  .product-mobile-intro {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 357px;
  }

  .product-mobile-intro__title {
    margin: 0;
    font-size: 25px;
    line-height: normal;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2b2727;
  }

  .product-mobile-intro__subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: -0.36px;
    color: #6a7282;
  }

  .product-layout {
    gap: 24px;
  }

  .product-gallery {
    gap: 13.5px;
  }

  .product-gallery__main {
    border-width: 0.563px;
    border-radius: 18px;
    aspect-ratio: 357 / 222;
    box-shadow: none;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 110px));
    gap: 13.5px;
    max-width: 357px;
  }

  .product-thumb {
    border-width: 0.563px;
    border-radius: 18px;
  }

  .product-info {
    gap: 16px;
  }

  .product-title,
  .product-subtitle {
    display: none;
  }

  .product-specs-wrap {
    border-radius: 24px;
    padding: 9px;
    gap: 4px;
  }

  .product-spec-row {
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    min-height: 73px;
    padding: 16px 24px;
  }

  .product-spec-left {
    width: auto;
    max-width: none;
    gap: 16px;
    padding-top: 0;
  }

  .product-spec-label {
    font-size: 16px;
    line-height: 16px;
  }

  .product-spec-value {
    flex: 0 0 auto;
    width: auto;
    text-align: right;
  }

  .product-block-title {
    margin-bottom: 16px;
  }

  .product-thickness {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-thickness-option {
    min-height: 68px;
    border-radius: 16px;
  }

  .product-prices {
    gap: 16px;
  }

  .product-price-row {
    gap: 18px;
    min-height: 32px;
  }

  .product-price-leader {
    margin-bottom: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .product-price-value {
    font-size: 24px;
    line-height: 32px;
  }

  .product-price-value span {
    font-size: 15px;
    line-height: 16px;
  }

  .product-order-btn {
    min-height: 68px;
    border-radius: 16px;
  }

  .product-related {
    margin-top: 50px;
  }

  .product-related__title {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: normal;
    letter-spacing: -0.48px;
  }

  .product-related__grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-right: 18px;
    margin-right: -18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-related__grid::-webkit-scrollbar {
    display: none;
  }

  .product-related__grid > * {
    flex: 0 0 357px;
    scroll-snap-align: start;
  }

  .product-card {
    max-width: 357px;
  }

  .product-card__media {
    height: 240px;
  }

  .product-card__title {
    line-height: normal;
  }

  .product-card__action {
    width: calc(100% - 34px);
    margin: 16px 17px 17px;
    border-radius: 14px;
  }

  .page-product .mobile-slider-controls {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
  }

  .page-product .mobile-slider-control {
    position: relative;
    width: 62px;
    height: 62px;
    padding: 0;
    border: 1px solid #d7dbe1;
    border-radius: 50%;
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .page-product .mobile-slider-control::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 15px;
  }

  .page-product .mobile-slider-control--prev::before {
    background-image: url("assets/arrow-left.svg");
  }

  .page-product .mobile-slider-control--next::before {
    background-image: url("assets/arrow-right.svg");
  }

  .page-product .mobile-slider-control:disabled {
    opacity: 0.45;
  }

  .page-product .site-footer {
    padding: 30px 0 23px;
    background: #f8f9fa;
  }

  .page-product .footer-grid {
    grid-template-columns: 136px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 20px;
  }

  .page-product .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    row-gap: 13px;
  }

  .page-product .footer-brand-text {
    max-width: 357px;
    line-height: 18px;
  }

  .page-product .footer-column[aria-label="Продукция"] {
    display: none;
  }

  .page-product .footer-heading {
    font-size: 12px;
    line-height: 16px;
  }

  .page-product .footer-column {
    gap: 12px;
  }

  .page-product .footer-links {
    gap: 9px;
  }

  .page-product .footer-contacts-stack {
    gap: 14px;
  }

  .page-product .footer-contact {
    gap: 16px;
  }

  .page-product .footer-column-contacts {
    min-width: 0;
  }

  .page-product .footer-links a,
  .page-product .footer-contact-primary,
  .page-product .footer-contact:not(:has(.footer-contact-body)) strong {
    font-size: 14px;
    line-height: 20px;
  }

  .page-product .footer-contact-meta,
  .page-product .footer-contact:not(:has(.footer-contact-body)) small {
    font-size: 12px;
    line-height: 14.286px;
  }

  .page-product .site-footer .socials-contacts {
    display: grid;
    grid-template-columns: repeat(4, 38.737px);
    justify-content: start;
    gap: 9.684px;
    width: max-content;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-loading-box::before,
  .product-loading-line::before,
  .product-loading-button::before,
  .product-loading-card__button::before,
  .product-loading-chip::before,
  .product-thumb,
  .product-thickness-option,
  .product-order-btn,
  .product-card__action,
  .product-card__action svg {
    transition: none;
  }

  .product-loading-box::before,
  .product-loading-line::before,
  .product-loading-button::before,
  .product-loading-card__button::before,
  .product-loading-chip::before {
    animation: none;
  }
}

body.product-lightbox-open {
  overflow: hidden;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.product-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.product-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.product-lightbox__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 44px 24px 52px;
  box-sizing: border-box;
  pointer-events: none;
}

.product-lightbox__close,
.product-lightbox__frame,
.product-lightbox__nav,
.product-lightbox__thumbs {
  pointer-events: auto;
}

.product-lightbox__close {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1.5px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease;
}

.product-lightbox__close:hover,
.product-lightbox__close:focus-visible {
  transform: scale(1.04);
  outline: none;
}

.product-lightbox__close svg {
  width: 36px;
  height: 36px;
}

.product-lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.product-lightbox__frame {
  width: min(666px, 70vw);
  height: min(666px, 70vw);
  max-width: 666px;
  max-height: 666px;
  padding: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-lightbox__frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.product-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97px;
  height: 97px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.15s ease;
}

.product-lightbox__nav:hover,
.product-lightbox__nav:focus-visible {
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

.product-lightbox__nav svg {
  width: 48px;
  height: 96px;
}

.product-lightbox__nav--prev {
  left: max(24px, calc(50vw - min(333px, 35vw) - 150px));
}

.product-lightbox__nav--next {
  right: max(24px, calc(50vw - min(333px, 35vw) - 150px));
}

.product-lightbox__thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 28px;
  padding-top: 0;
}

.product-lightbox__thumb {
  position: relative;
  width: 124px;
  height: 124px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d2d9e6;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-lightbox__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-lightbox__thumb:hover,
.product-lightbox__thumb:focus-visible {
  border-color: #fff;
  outline: none;
}

.product-lightbox__thumb.is-active {
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .product-lightbox__content {
    padding: 0;
  }

  .product-lightbox__backdrop {
    backdrop-filter: blur(5.7px);
  }

  .product-lightbox__stage {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .product-lightbox__frame {
    width: min(357px, calc(100vw - 36px));
    height: min(357px, calc(100vw - 36px));
    margin: auto;
    background: transparent;
  }

  .product-lightbox__nav {
    top: auto;
    bottom: 79px;
    width: 62px;
    height: 62px;
    border: 1px solid #d7dbe1;
    background: #fff;
    color: #1a1a1a;
    filter: none;
    transform: none;
  }

  .product-lightbox__nav svg {
    display: none;
  }

  .product-lightbox__nav--prev {
    left: calc(50% - 78px);
  }

  .product-lightbox__nav--next {
    right: calc(50% - 78px);
  }

  .product-lightbox__nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 15px;
  }

  .product-lightbox__nav--prev::before {
    background-image: url("assets/arrow-left.svg");
  }

  .product-lightbox__nav--next::before {
    background-image: url("assets/arrow-right.svg");
  }

  .product-lightbox__nav:hover,
  .product-lightbox__nav:focus-visible {
    transform: scale(1.06);
  }

  .product-lightbox__close {
    width: 45px;
    height: 45px;
    top: 83px;
    right: 18px;
    border-width: 0.938px;
    box-shadow: none;
  }

  .product-lightbox__close svg {
    width: 22.5px;
    height: 22.5px;
  }

  .product-lightbox__thumbs {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-lightbox {
    transition: none;
  }

  .product-lightbox__close,
  .product-lightbox__nav {
    transition: none;
  }
}
