/* mifw.pro cihaz spec karti */
.spec-card .spec-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.spec-card .spec-head h2 { margin: 0; }
.spec-brand {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: .22rem .6rem;
  border: 1px solid rgba(127, 127, 127, .4);
  border-radius: 999px;
  opacity: .75;
}
.spec-card { font-size: .95rem; }
.spec-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.1rem;
}
.spec-chip {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .7rem;
  border-radius: 10px;
  background: rgba(120, 130, 150, .08);
  border: 1px solid rgba(120, 130, 150, .16);
  min-width: 118px;
  flex: 1 1 118px;
}
.chip-ic {
  flex: none;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 7px;
  background: rgba(120, 130, 150, .14);
}
.chip-ic svg { width: 16px; height: 16px; opacity: .82; }
.chip-txt { display: flex; flex-direction: column; gap: .08rem; min-width: 0; }
.spec-chip .k {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: .55;
}
.spec-chip .v {
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.2;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0 1.5rem;
}
.spec-row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: .8rem;
  padding: .48rem 0;
  border-bottom: 1px solid rgba(120, 130, 150, .13);
}
.spec-label {
  font-size: .68rem;
  opacity: .58;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding-top: .1rem;
}
.spec-value {
  font-size: .84rem;
  line-height: 1.35;
}
.spec-note {
  margin-top: 1.1rem;
  font-size: .74rem;
  opacity: .5;
}
@media (max-width: 520px) {
  .spec-row { grid-template-columns: 1fr; gap: .1rem; padding: .5rem 0; }
  .spec-label { font-size: .72rem; }
}

/* Reviews & Videos */
.review-overview {
  font-size: .98rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  max-width: 68ch;
}
.proscons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}
.pc-col h3 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 .5rem;
}
.pc-col.pros h3 { color: #1b9e4b; }
.pc-col.cons h3 { color: #d1495b; }
.pc-col ul { margin: 0; padding-left: 1.1rem; }
.pc-col li { font-size: .9rem; line-height: 1.5; margin-bottom: .25rem; }
.review-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: rgba(127, 127, 127, .1);
}
.review-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: .25rem;
}
.rev-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.15rem;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none !important;
  color: inherit;
  border: 1px solid rgba(120, 130, 150, .3);
  background: rgba(120, 130, 150, .08);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.rev-btn:hover {
  background: rgba(120, 130, 150, .18);
  border-color: rgba(120, 130, 150, .55);
  transform: translateY(-1px);
}
.review-note { margin-top: 1rem; font-size: .74rem; opacity: .5; }

/* FAQ */
.device-faq .faq-item {
  border-bottom: 1px solid rgba(127, 127, 127, .16);
  padding: .2rem 0;
}
.device-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.device-faq summary::after { content: "+"; font-size: 1.2rem; opacity: .5; }
.device-faq details[open] summary::after { content: "\2013"; }
.device-faq summary::-webkit-details-marker { display: none; }
.device-faq .faq-item p {
  margin: 0 0 .9rem;
  font-size: .9rem;
  line-height: 1.55;
  opacity: .85;
}
