.product-container{
    margin: 10px auto;
    max-width: 1200px;
}

.product-meta {
  background: #f2f2f2;
  padding: 1rem;
  margin: 1rem 0;
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  font-size: 0.95rem;
}

.product-meta p {
  margin: 0.25rem 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cover-image img {
  width: 100%;
  max-height: 600px;
  object-fit: fill;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.product-description {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.product-description h1, .product-description h2, .product-description h3 {
  margin-top: 1.5rem;
}

.product-downloads {
  margin: 2rem 0;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.download-btn {
  background-color: var(--green);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

.download-btn:hover {
  background-color: #7b971a;
}

.download-btn.source-modrinth {
  background-color: #00af5c;
}

.download-btn.source-curseforge {
  background-color: #f16436;
}

.download-btn.source-direct {
  background-color: #2a2a2a;
}

.product-gallery {
  margin-top: 3rem;
}

.product-gallery h3 {
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
