/* =========================
   Download Kategorien – Cards
========================= */

.dl-categories{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:20px;
  margin-top:20px;
}

.dl-category-card{
  display:block;
  padding:20px;
  border:1px solid #e5e5e5;
  background:#fff;
  text-decoration:none;
  color:#111;
  transition:all .2s ease;
  position:relative;
}

.dl-category-card:hover{
  border-color:#e30613;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  transform:translateY(-2px);
}

.dl-category-title{
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:6px;
}

.dl-category-sub{
  font-size:.9rem;
  color:#777;
}

/* Downloadliste */
.dl-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:20px;
}

@media(max-width:1000px){
  .dl-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
  .dl-grid{grid-template-columns:1fr;}
}

.dl-card{
  background:#fff;
  border-radius:6px;
  padding:14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.dl-image{
  height:200px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.dl-image img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.dl-noimg{
  font-size:.9rem;
  color:#888;
}

.dl-title{
  margin-top:12px;
  font-weight:600;
  text-align:center;
}

.dl-actions{
  margin-top:14px;
  text-align:center;
}

.btn-download{
  display:inline-block;
  padding:8px 16px;
  background:#c00;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:4px;
}
.btn-download:hover{
  background:#a00;
}

/* ===== Detail-Layout ===== */
.dl-detail{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}

/* ===== Bilder ===== */
.dl-image-main{
  background:#fff;
  border:1px solid #ddd;
  padding:10px;
  text-align:center;
}

.dl-image-main img{
  max-width:100%;
  max-height:480px;
  object-fit:contain;
}

/* Thumbnails */
.dl-thumbs{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.dl-thumbs img{
  width:90px;
  height:90px;
  object-fit:cover;
  cursor:pointer;
  border:2px solid #ccc;
  transition:border-color .15s;
}

.dl-thumbs img:hover{
  border-color:#c00;
}

.dl-thumbs img.is-active{
  border-color:#c00;
}

/* Rechte Spalte */
.dl-downloads{
  background:#fff;
  border:1px solid #ddd;
  padding:20px;
  border-radius:4px;
}

.dl-downloads h3{
  margin-top:0;
  margin-bottom:15px;
  font-size:1.1rem;
}

/* Download-Buttons */
.dl-platform{
  display:block;
  background:#c00;
  color:#fff;
  text-align:center;
  padding:12px;
  margin-bottom:10px;
  text-decoration:none;
  font-weight:700;
  border-radius:3px;
}

.dl-platform:hover{
  background:#a00;
}

/* Plattformfarben (optional) */
.dl-makerworld{ background:#2ecc71; }
.dl-printables{ background:#1abc9c; }
.dl-cults3d{ background:#8e44ad; }
.dl-makeronline{ background:#27ae60; }

.dl-back{
  display:inline-block;
  margin-bottom:15px;
  color:#c00;
  font-weight:600;
  text-decoration:none;
}

.dl-back:hover{
  text-decoration:underline;
}

.dl-meta{
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid #ddd;
}

.dl-description{
  margin-bottom:10px;
  line-height:1.5;
}

.dl-created{
  font-size:0.9rem;
  color:#666;
}
