/*
Theme Name: Kadence Child
Template: kadence
Version: 1.0
*/

/* ── Toestelkaart ── */
.site-main .eshop-toestel {
  display: flex !important;
  align-items: stretch;
  margin-bottom: 24px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.site-main .eshop-toestel-foto {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  text-align: center;
  background: #fafafa;
  border-right: 1px solid #e3e3e3;
}

.site-main .eshop-toestel-foto img {
  max-width: 150px !important;
  height: auto;
  display: block;
  margin: 0 0 12px;
}

.site-main .eshop-toestel-foto h1,
.site-main .eshop-toestel-foto h2 {
  font-size: 15px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #222 !important;
  line-height: 1.35 !important;
}

/* ── Prijzen ── */
.site-main .eshop-toestel-prijzen { flex: 1; }

.site-main ul.eshop-prijzen {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}


.site-main ul.eshop-prijzen li::marker { content: none; }
.site-main ul.eshop-prijzen li:nth-child(even) { background: #fafafa; }
.site-main ul.eshop-prijzen li:last-child { border-bottom: 0; }

.site-main ul.eshop-prijzen li {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  gap: 16px;
  padding: 7px 20px !important;
  margin: 0 !important;
  border-bottom: 1px solid #f0f0f0;
  list-style: none !important;
}

.site-main ul.eshop-prijzen span {
  font-size: 14px;
  color: #333;
}

.site-main ul.eshop-prijzen strong {
  color: #222 !important;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* ── Merktegels ── */
.site-main .eshop-merken {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.site-main .eshop-merk {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 32px 24px 26px;
  text-align: center;
  text-decoration: none !important;
  color: inherit !important;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.site-main .eshop-merk:hover {
  border-color: #EB1C26;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.site-main .eshop-merk img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 20px;
}

.site-main .eshop-merk span {
  display: block;
  font-weight: 600;
  font-size: 17px;
  margin-top: auto;
}

/* ── Overig ── */
.site-main .eshop-merk-omschrijving {
  margin-bottom: 28px;
  color: #555;
  font-size: 16px;
}

.site-main .eshop-inhoud { margin-top: 30px; }

/* ── Mobiel ── */
@media (max-width: 768px) {
  .site-main .eshop-toestel { flex-direction: column; }
  .site-main .eshop-toestel-foto {
    flex: 1 1 auto;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #e3e3e3;
    padding: 20px;
  }
  .site-main .eshop-toestel-foto img { max-width: 120px !important; }
  .site-main ul.eshop-prijzen li { padding: 8px 15px !important; }
  .site-main ul.eshop-prijzen span,
  .site-main ul.eshop-prijzen strong { font-size: 13px; }
  .site-main .eshop-merken {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
  }
  .site-main .eshop-merk { padding: 20px 14px 18px; }
  .site-main .eshop-merk img { height: 90px; margin-bottom: 14px; }
  .site-main .eshop-merk span { font-size: 15px; }
}