/* ===================================================
   FitnessKiezen — Product detail pagina's
   product/*.html
   =================================================== */

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  padding: 32px 0 60px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-detail-img {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}
.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-detail-info .product-category {
  margin-bottom: 0;
}
.product-detail-info h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-detail-info .price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 8px;
}
.product-detail-info .desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.product-detail-info .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

/* ===== PRICE ROW ===== */
.price-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--dark);
}
.price-old {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* ===== SPECS TABEL ===== */
.specs-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.specs-table {
  margin-top: 16px;
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid var(--border);
}
.specs-table th,
.specs-table td {
  text-align: left;
  padding: 10px 0;
  font-size: 0.85rem;
}
.specs-table th {
  font-weight: 600;
  color: var(--dark);
  width: 40%;
}
.specs-table td {
  color: var(--text-light);
}

/* ===== PRIJS VERGELIJKING ===== */
.price-compare {
  margin-top: 20px;
}
.price-compare h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.shop-row {
  display: grid;
  grid-template-columns: 1fr 100px 150px;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.shop-row:last-child { border-bottom: none; }
.shop-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
}
.shop-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  text-align: right;
  padding-right: 4px;
}
.shop-row .btn-sm {
  font-size: 0.75rem;
  padding: 6px 14px;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
.affiliate-disclosure {
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.affiliate-disclosure a {
  color: var(--primary);
  font-weight: 500;
}
.price-compare-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
  padding-top: 8px;
  font-style: italic;
}

/* ===== RATING ROW ===== */
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 4px 0 8px;
}
.product-rating-row strong { color: var(--dark); }

/* ===== KORTE SPECS IN RECHTERKOLOM ===== */
.product-key-specs {
  margin: 8px 0 0;
}
.specs-table-compact {
  margin-top: 0;
}
.specs-table-compact th,
.specs-table-compact td {
  padding: 7px 0;
  font-size: 0.83rem;
}

/* ===== BESCHRIJVING & SPECS SECTIES (onder hoofdgrid) ===== */
.product-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.product-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}
.product-desc-full {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 780px;
}
.product-desc-full p  { margin: 0 0 12px; }
.product-desc-full h2,
.product-desc-full h3 { font-size: 1rem; font-weight: 700; margin: 18px 0 6px; color: var(--dark); }
.product-desc-full ul { margin: 0 0 12px; padding-left: 20px; }
.product-desc-full li { margin-bottom: 4px; }
.product-desc-full strong,
.product-desc-full b  { color: var(--dark); }

/* ===== SCORE BADGE ===== */
.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.08);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 8px;
  margin: 8px 0;
}

/* ===== REVIEW SECTIE: PROS/CONS / VOOR WIE / OORDEEL ===== */
.product-review {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-col,
.cons-col {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.pros-title,
.cons-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros-title { color: var(--accent-dark); }
.pros-title::before { content: '✓'; font-size: 1rem; color: var(--accent); }

.cons-title { color: #B91C1C; }
.cons-title::before { content: '✕'; font-size: 0.9rem; color: #EF4444; }

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pros-list li,
.cons-list li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  top: 2px;
}

.cons-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-size: 0.75rem;
  top: 2px;
}

.for-who-block {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.for-who-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.for-who-block p {
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.verdict-block {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.verdict-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.verdict-block p {
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

/* ===== GERELATEERDE PRODUCTEN ===== */
.related-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.related-section h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE (product) ===== */
@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-img { height: 300px; }
}
@media (max-width: 768px) {
  .product-detail-img { height: 260px; font-size: 3rem; }
  .shop-row { grid-template-columns: 1fr 90px 130px; gap: 8px; }
}
@media (max-width: 480px) {
  .product-detail-img { height: 200px; font-size: 2.5rem; }
  .product-detail-info h1 { font-size: 1.3rem; }
  .price-big { font-size: 1.4rem; }
  .shop-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .shop-price { text-align: right; font-size: 0.9rem; }
  .shop-row .btn-sm { grid-column: 1 / -1; text-align: center; width: 100%; }
  .score-badge { font-size: 0.78rem; padding: 5px 10px; }
}
