/* TAXI4D content panels: scoped to the article, FAQ and information area. */
.catalog-product-view .page-main .taxi-overview {
  width: 100%;
  max-width: 100%;
  margin: 36px 0 24px;
  clear: both;
  box-sizing: border-box;
}
.catalog-product-view .page-main .taxi-overview > .value {
  width: 100%;
  max-width: none;
  padding: 0;
}
.taxi-overview .taxi-article,
.taxi-overview .taxi-faq-panel,
.taxi-overview .rb-premium-box.taxi-info-panel {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0;
  padding: 32px;
  border: 1px solid #3989ed;
  border-radius: 20px !important;
  background: linear-gradient(145deg, #07172e, #102c50);
  box-shadow: 0 10px 30px rgba(8, 35, 75, .16), inset 0 0 40px rgba(37, 99, 235, .08);
  overflow: hidden;
  text-align: left;
}
.taxi-overview .taxi-article::before,
.taxi-overview .taxi-faq-panel::before,
.taxi-overview .taxi-info-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2563eb, #7dd3fc, #0284c7, transparent);
  pointer-events: none;
}
.taxi-overview .taxi-article h2,
.taxi-overview .taxi-faq-panel h2,
.taxi-overview .taxi-info-panel h2 {
  margin: 0 0 24px;
  color: #fff !important;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  letter-spacing: .02em;
}
.taxi-overview .taxi-article h3 {
  margin: 28px 0 12px;
  padding-left: 14px;
  border-left: 3px solid #38bdf8;
  color: #cce8ff !important;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}
.taxi-overview .taxi-article p {
  margin: 0 0 16px;
  color: #e0ebfa !important;
  font-size: 16px;
  line-height: 1.85;
  text-align: left;
  overflow-wrap: anywhere;
}
.taxi-overview .taxi-article p:last-child { margin-bottom: 0; }
.taxi-overview .taxi-article a {
  color: #7dd3fc !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.taxi-overview .taxi-faq-list { display: grid; gap: 12px; }
.taxi-overview .taxi-faq-item {
  margin: 0;
  border: 1px solid rgba(96, 165, 250, .5);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(2, 12, 28, .5);
}
.taxi-overview .taxi-faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  box-sizing: border-box;
  padding: 14px 16px;
  background: linear-gradient(135deg, #2563eb, #0284c7);
  color: #fff;
  cursor: pointer;
  list-style: none;
  text-align: left;
  transition: filter .2s ease;
}
.taxi-overview .taxi-faq-item > summary::-webkit-details-marker { display: none; }
.taxi-overview .taxi-faq-item > summary:hover { filter: brightness(1.08); }
.taxi-overview .taxi-faq-item > summary:focus-visible {
  outline: 3px solid #bae6fd;
  outline-offset: -4px;
}
.taxi-overview .taxi-faq-question { font-size: 15px; font-weight: 650; line-height: 1.55; }
.taxi-overview .taxi-faq-number { margin-right: 4px; color: #dbeafe; }
.taxi-overview .taxi-faq-icon {
  position: relative;
  flex: 0 0 28px;
  height: 28px;
  border: 1px solid rgba(186, 230, 253, .6);
  border-radius: 8px;
  background: rgba(4, 24, 59, .35);
}
.taxi-overview .taxi-faq-icon::before,
.taxi-overview .taxi-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.taxi-overview .taxi-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s ease; }
.taxi-overview .taxi-faq-item[open] .taxi-faq-icon::after { transform: translate(-50%, -50%); }
.taxi-overview .taxi-faq-answer { padding: 16px 18px; }
.taxi-overview .taxi-faq-answer p {
  margin: 0;
  color: #d4e5f8 !important;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  overflow-wrap: anywhere;
}
.taxi-overview .taxi-info-panel .rb-premium-table { background: rgba(3, 14, 31, .6); }
.taxi-overview .taxi-info-panel .rb-premium-table tr:hover { transform: none; }
@media (max-width: 600px) {
  .catalog-product-view .page-main .taxi-overview { margin-top: 24px; }
  .taxi-overview .taxi-article,
  .taxi-overview .taxi-faq-panel,
  .taxi-overview .rb-premium-box.taxi-info-panel { padding: 22px 16px; border-radius: 16px !important; }
  .taxi-overview .taxi-article h3 { font-size: 17px; }
  .taxi-overview .taxi-article p { font-size: 15px; }
  .taxi-overview .taxi-faq-item > summary { gap: 10px; padding: 12px; }
  .taxi-overview .taxi-faq-question { font-size: 14px; }
  .taxi-overview .taxi-faq-answer { padding: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .taxi-overview .taxi-faq-item > summary,
  .taxi-overview .taxi-faq-icon::after { transition: none; }
}