.skeleton-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: shimmer 1.5s infinite linear;
}

.sh-header, .sh-header-small {
  display: flex;
  gap: 8px;
  margin: 20px;
}
.sh-code, .sh-code-small {
  width: 80px;
  height: 16px;
  background: #eee;
  border-radius: 4px;
}
.sh-name {
  width: 200px;
  height: 24px;
  background: #eee;
  border-radius: 4px;
}
.sh-name-small {
  width: 150px;
  height: 20px;
  background: #eee;
  border-radius: 4px;
}

.sh-top-section {
  display: flex;
  gap: 24px;
}
.sh-images {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sh-thumb {
  width: 80px;
  height: 60px;
  background: #eee;
  border-radius: 4px;
}
.sh-main-image {
  width: calc(100% - 96px);
  height: 200px;
  background: #eee;
  border-radius: 4px;
}
.sh-video {
  width: 35%;
  height: 200px;
  background: #eee;
  border-radius: 4px;
}

.sh-description {
  width: calc(100% - 40px);
  height: 80px;
  background: #eee;
  border-radius: 4px;
  margin: 0 20px;
}

.sh-additional {
  width: calc(100% - 40px);
  height: 40px;
  background: #eee;
  border-radius: 4px;
  margin: 0 20px;
}

@keyframes shimmer {
  0% { background-position: -500px 0; }
  100% { background-position: 500px 0; }
}
