.apps-detail-page {
  background: #f8f9fb;
}

.apps-detail-hero {
  background: #0b0b09;
  padding-top: 55px;
  padding-bottom: 34px;
}

.apps-detail-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 14px;
  text-decoration: none;
}

.apps-detail-hero__crumb {
  text-decoration: none;
}

.apps-detail-hero__crumb--home,
.apps-detail-hero__crumb--category {
  color: rgba(255, 255, 255, 0.7);
}

.apps-detail-hero__crumb--current {
  color: #9fcc2e;
}

.apps-detail-hero__breadcrumbs a:hover {
  color: #9fcc2e;
}

.apps-detail-hero__card {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  min-height: 155px;
  padding: 29px 32px;
}

.apps-detail-hero__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.apps-detail-hero__logo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  overflow: hidden;
}

.apps-detail-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apps-detail-hero__title-group h1 {
  margin: 0;
  color: #0c2340;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.6px;
}

.apps-detail-hero__title-group p {
  margin: 4px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 18px;
}

.apps-detail-hero__category-inline {
  color: #1e4377;
}

.apps-detail-hero__meta {
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.apps-detail-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0c2340;
  font-size: 13px;
  line-height: 17px;
}

.apps-detail-hero__rating i {
  color: #f5a623;
  font-size: 14px;
}

.apps-detail-hero__rating span {
  color: #94a3b8;
}

.apps-detail-hero__tags {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 12px;
  flex-wrap: wrap;
}

.apps-detail-hero .apps-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26.9px;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
}

.apps-detail-hero .apps-chip--popular {
  background: #ccfbf1;
  color: #115e56;
}

.apps-detail-hero .apps-chip--recommended {
  background: #ffedd5;
  color: #9a3412;
}

.apps-detail-hero .apps-chip--neutral {
  background: #f1f1ee;
  color: #3a3d33;
}

.apps-detail-tabs {
  position: sticky;
  top: 80px;
  z-index: 20;
  min-height: 55px;
  background: #fff;
  border-top: 1px solid #e5e9ee;
  border-bottom: 1px solid #e5e9ee;
}

.apps-detail-tabs__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 55px;
}

.apps-detail-tabs__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 55px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.apps-detail-tabs__link:hover,
.apps-detail-tabs__link.is-active {
  color: #0c2340;
}

.apps-detail-tabs__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 3px;
  background: #9fcc2e;
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.apps-detail-tabs__link.is-active::after,
.apps-detail-tabs__link:hover::after {
  transform: scaleX(1.5);
}

.apps-detail-content {
  padding: 48px 0 80px;
}

.apps-detail-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.apps-detail-block {
  scroll-margin-top: 162px;
}

.apps-detail-block + .apps-detail-block {
  margin-top: 48px;
}

.apps-detail-block__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #20221b;
}

.apps-detail-block__title--screenshots,
.apps-detail-block__title--video {
  margin-top: 48px;
}

.apps-detail-block__text {
  margin: 15px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
}

.apps-detail-screenshots {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.apps-detail-screenshot {
  display: block;
  border: 1px solid rgba(32, 34, 27, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.apps-detail-screenshot img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.apps-detail-features {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.apps-detail-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 78px;
  padding: 17px;
  border: 1px solid #e5e9ee;
  border-radius: 12px;
  background: #fff;
}

.apps-detail-feature-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #000;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: bold;
}

.apps-detail-feature-card p {
  margin: 0;
  padding-top: 3px;
  font-size: 14px;
  line-height: 20px;
  color: #0c2340;
}

.apps-detail-video {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(32, 34, 27, 0.12);
  overflow: hidden;
  background: #f6f7f2;
}

.apps-detail-video iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.apps-detail-reviews-summary {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 140px minmax(0, 530px);
  justify-content: flex-start;
  gap: 18px;
  padding: 25px;
  border: 1px solid #e5e9ee;
  border-radius: 14px;
  background: #fcfaf9;
}

.apps-detail-reviews-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.apps-detail-reviews-summary__score strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  color: #0c2340;
}

.apps-detail-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
  color: #f4b328;
}

.apps-detail-stars i {
  font-size: 13px;
}

.apps-detail-reviews-summary__score .apps-detail-stars {
  margin-top: 4px;
  gap: 1px;
  color: #f5a623;
}

.apps-detail-reviews-summary__score p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 16px;
  color: #64748b;
}

.apps-detail-reviews-summary__bars {
  display: grid;
  gap: 8px;
}

.apps-detail-rating-bar {
  display: grid;
  grid-template-columns: 10px 10px minmax(0, 1fr) 34px;
  align-items: center;
  column-gap: 0;
  font-size: 12px;
  color: #475569;
}

.apps-detail-rating-bar__label {
  text-align: right;
}

.apps-detail-rating-bar i {
  color: #f5a623;
  font-size: 10px;
  line-height: 1;
  justify-self: center;
  margin-left: 10px;
  margin-right: 7px;
}

.apps-detail-rating-bar__track {
  height: 5px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-left: 10px;
}

.apps-detail-rating-bar__fill {
  height: 100%;
  border-radius: inherit;
  background: #f5a623;
}

.apps-detail-rating-bar__value {
  color: #64748b;
  text-align: right;
  padding-left: 20px;
}

.apps-detail-reviews-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.apps-detail-reviews-empty {
  margin-top: 16px;
  box-sizing: border-box;
  min-height: 111px;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  background: #fcfaf9;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
}

.apps-detail-reviews-empty__icon {
  width: 44px;
  height: 44px;
  border: 1px solid #e5e9ee;
  border-radius: 4px;
  background: #ffffff;
  color: #0b0b09;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apps-detail-reviews-empty__icon i {
  font-size: 22px;
  line-height: 1;
}

.apps-detail-reviews-empty__copy {
  min-width: 0;
}

.apps-detail-reviews-empty__title {
  margin: 0;
  color: #0c2340;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}

.apps-detail-reviews-empty__text {
  margin: 4px 0 0;
  color: #475569;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.apps-detail-review-card.is-hidden {
  display: none;
}

.apps-detail-reviews__more {
  width: 100%;
  margin-top: 16px;
  min-height: 43px;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  background: #fff;
  color: #0c2340;
  font-family: "Albert Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.apps-detail-reviews__more i {
  font-size: 15px;
  transform: translateY(1px);
}

.apps-detail-review-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  padding: 21px;
  border: 1px solid #e5e9ee;
  border-radius: 12px;
  background: #fff;
}

.apps-detail-review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #0c2340;
  font-size: 14px;
  font-weight: 600;
  font-family: "Albert Sans", sans-serif;
  text-transform: uppercase;
}

.apps-detail-review-card__head {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: flex-start;
}

.apps-detail-review-card__title-group {
  flex: 1 1 auto;
  min-width: 0;
}

.apps-detail-review-card__title {
  margin: 0;
  font-family: "Albert Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  color: #0c2340;
}

.apps-detail-review-card__meta-line {
  margin: 2px 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.apps-detail-review-card__store {
  font-size: 14px;
  line-height: 18px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.apps-detail-review-card__dot,
.apps-detail-review-card__meta-inline {
  font-size: 12px;
  color: #64748b;
  font-weight: 400;
}

.apps-detail-review-card .apps-detail-stars {
  margin-top: 0;
  margin-left: auto;
  white-space: nowrap;
}

.apps-detail-review-card__body {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 22px;
  color: #0c2340;
}

.apps-detail-content__aside {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 154px;
}

.apps-detail-side-card {
  padding: 19px;
  border-radius: 14px;
  border: 1px solid #e5e9ee;
  background: #fff;
}

.apps-detail-side-card h3 {
  margin: 0;
  font-size: 11px;
  line-height: 13px;
  font-weight: 600;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  color: #64748b;
}

.apps-detail-side-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.apps-detail-side-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 17px;
  color: #0c2340;
}

.apps-detail-side-card li i {
  margin-top: 1px;
  color: #64748b;
  font-size: 14px;
}

.apps-detail-side-card a {
  color: #0c2340;
  text-decoration: none;
}

.apps-detail-side-card a:hover {
  color: #1e4377;
}

.apps-detail-side-card__chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.apps-detail-side-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26.9px;
  padding: 0 10px;
  border-radius: 8px;
  border: 0;
  background: #f1f5f9;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: #475569;
}

.apps-detail-side-card--permissions {
  border-radius: 8px;
}

.apps-detail-related {
  padding: 64px 0 60px;
  background: #f6f4ef !important;
}

.apps-detail-related__container {
  position: relative;
}

.apps-detail-related__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.apps-detail-related__title {
  margin: 0;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 37px;
  letter-spacing: -0.02em;
  color: #0c2340;
}

.apps-detail-related__subtitle {
  margin: 6px 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 21px;
  color: #475569;
}

.apps-detail-related__carousel {
  margin-top: 28px;
}

.apps-detail-related__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding: 1px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
}

.apps-detail-related__track::-webkit-scrollbar {
  display: none;
}

.apps-detail-related-card {
  min-height: 316px;
  display: block;
  padding: 21px;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
}

.apps-detail-related-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Albert Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.apps-detail-related-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apps-detail-related-card__logo--0 {
  background: #ffe01b;
  color: #241c15;
}

.apps-detail-related-card__logo--1 {
  background: #000;
  color: #fff;
}

.apps-detail-related-card__logo--2 {
  background: #7c3aed;
  color: #fff;
}

.apps-detail-related-card__logo--3 {
  background: #0ea5a8;
  color: #fff;
}

.apps-detail-related-card__logo--4 {
  background: #1e4377;
  color: #fff;
}

.apps-detail-related-card h3 {
  margin: 12px 0 0;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #0c2340;
}

.apps-detail-related-card__author {
  margin: 3px 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 17px;
  color: #64748b;
}

.apps-detail-related-card__description {
  margin: 29px 0 0;
  min-height: 40px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #475569;
}

.apps-detail-related-card__meta {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.apps-detail-related-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "DM Sans", sans-serif;
}

.apps-detail-related-card__rating i {
  font-size: 14px;
  color: #f5a623;
}

.apps-detail-related-card__rating strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 17px;
  color: #475569;
}

.apps-detail-related-card__rating em {
  font-style: normal;
  font-size: 13px;
  line-height: 17px;
  color: #94a3b8;
}

.apps-detail-related-card__installs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #64748b;
}

.apps-detail-related-card__installs-icon {
  width: 11px;
  height: 11px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  transform: translateY(1px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11' fill='none'%3E%3Cpath d='M5.5 1.5V6.2' stroke='%2364758B' stroke-width='1.1' stroke-linecap='round'/%3E%3Cpath d='M3.7 4.9L5.5 6.7L7.3 4.9' stroke='%2364758B' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 9H9' stroke='%2364758B' stroke-width='1.1' stroke-linecap='round'/%3E%3C/svg%3E");
}

.apps-detail-related-card__chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.apps-detail-related-card .apps-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26.9px;
  border-radius: 8px;
  padding: 3px 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
}

.apps-detail-related-card .apps-chip--popular {
  background: #ccfbf1;
  color: #115e56;
}

.apps-detail-related-card .apps-chip--recommended {
  background: #ffedd5;
  color: #9a3412;
}

.apps-detail-related-card .apps-chip--neutral {
  background: #f1f1ee;
  color: #3a3d33;
}

.apps-detail-related__controls {
  display: flex;
  gap: 8px;
}

.apps-detail-related__control {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e9ee;
  background: #fff;
  color: #0c2340;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.apps-detail-related__control i {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 1279px) {
  .apps-detail-related__track {
    grid-auto-columns: calc((100% - 40px) / 3);
  }
}

.apps-detail-related__control--prev i {
  transform: rotate(180deg);
}

.apps-detail-related__control:disabled {
  opacity: 0.4;
  cursor: default;
}

@media (max-width: 1024px) {
  .apps-detail-content {
    padding: 42px 0 74px;
  }

  .apps-detail-content__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .apps-detail-content__aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .apps-detail-block__title {
    font-size: 30px;
  }

  .apps-detail-video iframe {
    min-height: 320px;
  }

  .apps-detail-related {
    padding: 50px 0;
  }

  .apps-detail-related__title {
    font-size: 30px;
    line-height: 33px;
  }

  .apps-detail-related__head {
    align-items: center;
  }

  .apps-detail-related__track {
    grid-auto-columns: minmax(260px, 46vw);
    gap: 14px;
  }

  .apps-detail-related__controls {
    display: none;
  }
}

@media (max-width: 991px) {
  .apps-detail-hero {
    padding-top: 44px;
  }

  .apps-detail-hero__card {
    min-height: 0;
    padding: 20px;
  }

  .apps-detail-hero__brand {
    align-items: flex-start;
  }

  .apps-detail-hero__title-group h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .apps-detail-hero__title-group p {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 767px) {
  .apps-detail-page .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .apps-detail-hero {
    padding-top: 20px;
    padding-bottom: 26px;
  }

  .apps-detail-hero__breadcrumbs {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 17px;
    gap: 6px;
  }

  .apps-detail-hero__card {
    border-radius: 8px;
    padding: 23px;
    min-height: 229px;
  }

  .apps-detail-hero__brand {
    gap: 14px;
  }

  .apps-detail-hero__logo {
    width: 72px;
    height: 72px;
    border-radius: 10px;
  }

  .apps-detail-hero__title-group h1 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }

  .apps-detail-hero__title-group p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 18px;
    color: #475569;
  }

  .apps-detail-hero__meta {
    margin-top: 12px;
    row-gap: 8px;
  }

  .apps-detail-hero__rating {
    font-size: 13px;
    line-height: 17px;
    gap: 3px;
  }

  .apps-detail-hero .apps-chip {
    min-height: 24px;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
  }

  .apps-detail-tabs {
    top: 60px;
    min-height: 55px;
  }

  .apps-detail-tabs__nav {
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .apps-detail-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .apps-detail-content {
    padding: 40px 0 60px;
  }

  .apps-detail-block {
    scroll-margin-top: 130px;
  }

  .apps-detail-block + .apps-detail-block {
    margin-top: 40px;
  }

  .apps-detail-block__title {
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -0.03em;
    color: #0c2340;
  }

  .apps-detail-block__text {
    margin-top: 12px;
    font-size: 15px;
    line-height: 25px;
  }

  .apps-detail-screenshots {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .apps-detail-screenshot img {
    min-height: 178px;
  }

  .apps-detail-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .apps-detail-feature-card {
    min-height: 78px;
    border-radius: 8px;
    padding: 17px;
    gap: 12px;
  }

  .apps-detail-feature-card__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .apps-detail-feature-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .apps-detail-video iframe {
    min-height: 196px;
  }

  .apps-detail-reviews-summary {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
    border-radius: 8px;
    background: #f7fafc;
  }

  .apps-detail-reviews-summary__score strong {
    font-size: 40px;
    line-height: 40px;
  }

  .apps-detail-reviews-summary__score p {
    font-size: 12px;
    line-height: 16px;
  }

  .apps-detail-rating-bar {
    grid-template-columns: 10px 10px minmax(0, 1fr) 30px;
  }

  .apps-detail-rating-bar__track {
    height: 6px;
  }

  .apps-detail-content__aside {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 8px;
  }

  .apps-detail-side-card {
    border-radius: 8px;
    padding: 18px;
  }

  .apps-detail-side-card ul {
    gap: 8px;
  }

  .apps-detail-side-card__chips {
    gap: 6px;
  }

  .apps-detail-side-chip {
    min-height: 24px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
  }

  .apps-detail-hero__brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .apps-detail-review-card {
    border-radius: 8px;
    padding: 21px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .apps-detail-review-card__title {
    font-size: 15px;
    line-height: 18px;
  }

  .apps-detail-review-card__body {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }

  .apps-detail-related {
    padding: 62px 0 64px;
  }

  .apps-detail-related__title {
    font-size: 26px;
    line-height: 29px;
    letter-spacing: -0.02em;
  }

  .apps-detail-related__subtitle {
    margin-top: 6px;
    font-size: 16px;
    line-height: 21px;
  }

  .apps-detail-related__carousel {
    margin-top: 16px;
  }

  .apps-detail-related__track {
    grid-auto-columns: minmax(260px, 80vw);
    gap: 12px;
    padding-bottom: 2px;
  }

  .apps-detail-related-card {
    min-height: 314px;
    padding: 21px;
    border-radius: 8px;
  }

  .apps-detail-related-card h3 {
    font-size: 17px;
    line-height: 20px;
  }

  .apps-detail-related-card__description {
    margin-top: 27px;
    font-size: 14px;
    line-height: 20px;
  }

  .apps-detail-related__controls {
    display: none;
  }

  .apps-detail-reviews__more {
    min-height: 40px;
  }

  .apps-detail-reviews-empty {
    padding: 18px;
    column-gap: 14px;
  }
}
