@keyframes app-boot-shell-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.app-boot-shell {
  box-sizing: border-box;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  font-family: Inter, system-ui, sans-serif;
}

.app-boot-shell *,
.app-boot-shell *::before,
.app-boot-shell *::after {
  box-sizing: border-box;
}

.app-boot-shell__block {
  border-radius: 10px;
  background: linear-gradient(90deg, #ececec 0%, #f5f5f5 45%, #ececec 90%);
  background-size: 200% 100%;
  animation: app-boot-shell-shimmer 1.25s ease-in-out infinite;
}

.app-boot-shell__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(20px, 4vw, 40px);
  flex-shrink: 0;
}

.app-boot-shell__logo {
  width: clamp(120px, 22vw, 200px);
  height: 40px;
  border-radius: 10px;
}

.app-boot-shell__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.app-boot-shell__pill {
  width: 72px;
  height: 28px;
  border-radius: 999px;
}

.app-boot-shell__pill--wide {
  width: 96px;
}

.app-boot-shell__icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.app-boot-shell__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.app-boot-shell__main {
  flex: 1;
  width: 100%;
  padding: 20px;
  padding-bottom: 48px;
}

.app-boot-shell__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: clamp(12px, 3vw, 40px) clamp(10px, 2vw, 20px);
  margin-bottom: clamp(24px, 4vw, 48px);
}

.app-boot-shell__hero-title {
  width: min(100%, 720px);
  height: clamp(36px, 8vw, 72px);
  border-radius: 12px;
}

.app-boot-shell__hero-image {
  width: min(100%, 500px);
  aspect-ratio: 5 / 3;
  max-height: min(40vh, 320px);
  border-radius: 12px;
}

.app-boot-shell__section {
  margin-bottom: clamp(32px, 5vw, 60px);
}

.app-boot-shell__section-title {
  width: min(100%, 280px);
  height: 28px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.app-boot-shell__section-title--narrow {
  width: min(100%, 200px);
}

.app-boot-shell__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-boot-shell__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.app-boot-shell__card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0;
}

.app-boot-shell__card-line {
  width: 100%;
  height: 14px;
  border-radius: 6px;
}

.app-boot-shell__card-line--short {
  width: 75%;
}

.app-boot-shell__card-line--price {
  width: 40%;
  height: 16px;
}

.app-boot-shell__footer {
  margin-top: auto;
  padding: 32px clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.app-boot-shell__footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-boot-shell__footer-line {
  height: 14px;
  border-radius: 6px;
}

.app-boot-shell__footer-line--mid {
  width: 70%;
}

.app-boot-shell__footer-line--long {
  width: 90%;
}

.app-boot-shell__footer-line--short {
  width: 45%;
}

@media (max-width: 1023px) {
  .app-boot-shell__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .app-boot-shell__main {
    padding: 10px 10px 20px;
  }

  .app-boot-shell__section-title {
    height: 22px;
    margin-bottom: 12px;
  }
}

@media (max-width: 799px) {
  .app-boot-shell__nav {
    display: none;
  }

  .app-boot-shell__icons {
    margin-left: auto;
  }
}
