.lg-detail {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Hero */
.detail-hero h1 {
  font-size: 32px;
  font-weight: 700;
}
.detail-brand {
  margin-top: 4px;
  color: #777;
}
.detail-desc {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 80%;
}
.detail-tags span {
  display: inline-block;
  padding: 4px 8px;
  margin-right: 6px;
  margin-top: 10px;
  background: #eee;
  border-radius: 4px;
  font-size: 13px;
}

/* Gallery */
.detail-gallery {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.detail-main-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}
.detail-main-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.detail-thumbs {
  width: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-thumb {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.detail-thumb:hover {
  opacity: 0.7;
}

/* Bottom */
.detail-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-actions a {
  margin-left: 10px;
}
