/* =====================================================
   SOLARKIVO — order.css (Produktseite)
   ===================================================== */

:root {
  --solar: var(--secondary, #f39c12);
  --solar-light: rgba(243, 156, 18, 0.08);
  --bg-card: var(--bg-white, #ffffff);
  --shadow-lg: 0 20px 40px rgba(27, 67, 50, 0.08);
}

.order-section { padding: 5rem 0; }
.order-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

/* Gallery */
.order-gallery { position: sticky; top: 90px; }
.order-main-img-wrap {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border-clr);
  box-shadow: var(--shadow-lg); position: relative;
}
.order-main-img { width: 100%; height: 420px; object-fit: cover; transition: opacity 0.3s ease; }
.order-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--solar); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px;
}
.order-thumbs { display: flex; gap: 0.7rem; margin-top: 1rem; }
.order-thumb {
  width: 80px; height: 70px; border-radius: 8px;
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition); background: none; padding: 0;
  flex-shrink: 0;
}
.order-thumb img { width: 100%; height: 100%; object-fit: cover; }
.order-thumb--active, .order-thumb:hover { border-color: var(--primary); }

/* Details */
.order-brand {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 0.5rem;
}
.order-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25; margin-bottom: 1rem;
}
.order-title span { display: block; font-size: 0.9em; color: var(--text-muted); }
.order-rating { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.5rem; }
.order-stars { color: var(--solar); font-size: 1.05rem; }
.order-rating-text { font-size: 0.85rem; color: var(--text-muted); }

/* Price block */
.order-price-block {
  background: var(--solar-light); border: 1px solid rgba(243,156,18,0.25);
  border-radius: 10px; padding: 1.4rem 1.6rem;
  margin-bottom: 1.2rem;
}
.order-price-label { display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.4rem; }
.order-price { display: block; font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.order-partner-note { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.4rem; }

/* Availability */
.order-avail {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 600; color: var(--primary);
  margin-bottom: 1.5rem;
}
.order-avail__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
}

/* Highlights */
.order-highlights { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.order-highlights li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.9rem; color: var(--text-muted);
}
.order-highlights li svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }

/* CTA */
.order-cta-btn {
  display: block; width: 100%; text-align: center;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 16px 24px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.order-cta-btn:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,67,50,0.2); }
.order-safety {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; font-size: 0.78rem; color: var(--text-muted);
  margin-top: 0.8rem;
}

/* Specs table below gallery */
.order-specs-table { margin-top: 3rem; }
.order-specs-table h2 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1.2rem; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.spec-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-clr); }
.spec-table td:first-child { font-weight: 600; color: var(--text-dark); width: 45%; }
.spec-table td:last-child { color: var(--text-muted); }
.spec-table tr:hover td { background: var(--bg-light); }

/* Trust badges */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 3rem;
}
.trust-item {
  background: var(--bg-card); border: 1px solid var(--border-clr);
  border-radius: 8px; padding: 1rem; text-align: center;
  box-shadow: var(--shadow);
}
.trust-item__icon { font-size: 1.6rem; margin-bottom: 0.4rem; }
.trust-item__label { font-size: 0.75rem; font-weight: 600; color: var(--text-dark); }
.trust-item__sub { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-gallery { position: static; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
}
