.mtc-fuel-widget {
  position: relative;
  margin: 34px 0;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(94, 231, 255, 0.25);
  background:
    radial-gradient(circle at top right, rgba(255, 95, 210, 0.14), transparent 32%),
    radial-gradient(circle at top left, rgba(94, 231, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(11, 17, 28, 0.94), rgba(8, 11, 18, 0.98));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 0 24px rgba(94, 231, 255, 0.14),
    0 0 36px rgba(255, 95, 210, 0.09);
  overflow: hidden;
}

.mtc-fuel-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  opacity: 0.45;
}

.mtc-fuel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.mtc-fuel-kicker {
  color: var(--mtc-accent);
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mtc-fuel-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
  color: #f5fbff;
  text-shadow: 0 0 16px rgba(94,231,255,0.18);
}

.mtc-fuel-subtitle {
  margin: 8px 0 0;
  color: rgba(222, 236, 246, 0.75);
}

.mtc-fuel-badges,
.mtc-fuel-meta,
.mtc-fuel-actions,
.mtc-fuel-selects,
.mtc-fuel-chip-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mtc-badge,
.mtc-chip,
.mtc-fuel-selects select {
  border: 1px solid rgba(94, 231, 255, 0.22);
  background: rgba(9, 18, 28, 0.8);
  color: #e7f8ff;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
}

.mtc-fuel-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.mtc-chip {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mtc-chip:hover,
.mtc-chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(255,95,210,.5);
  box-shadow: 0 0 16px rgba(255,95,210,.18), 0 0 18px rgba(94,231,255,.13);
}

.mtc-fuel-selects label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(226, 236, 244, 0.82);
  font-size: 13px;
}

.mtc-fuel-selects select {
  appearance: none;
}

.mtc-fuel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.mtc-fuel-card {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(14, 21, 34, 0.95), rgba(10, 14, 22, 0.98));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset;
}

.mtc-fuel-card.is-best {
  border-color: rgba(94,231,255,.34);
  box-shadow: 0 0 18px rgba(94,231,255,.18), 0 0 26px rgba(255,95,210,.08);
}

.mtc-fuel-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.mtc-fuel-card h3 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 1.08rem;
}

.mtc-fuel-rank {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mtc-accent);
}

.mtc-fuel-price-wrap {
  text-align: right;
}

.mtc-fuel-price {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.mtc-fuel-unit {
  color: rgba(220,230,240,.7);
  font-size: 12px;
  margin-top: 3px;
}

.mtc-fuel-meta {
  margin: 12px 0 10px;
  font-size: 13px;
  color: rgba(223,234,244,.78);
}

.mtc-fuel-meta .is-open { color: #83ffbb; }
.mtc-fuel-meta .is-closed { color: #ff9cab; }

.mtc-fuel-address {
  color: #eaf7ff;
  font-size: 14px;
  margin-bottom: 4px;
}

.mtc-fuel-address.small {
  color: rgba(222,236,246,.72);
  font-size: 13px;
}

.mtc-fuel-actions { margin-top: 14px; }

.mtc-fuel-actions a,
.mtc-fuel-footer a {
  color: var(--mtc-accent);
  text-decoration: none;
}

.mtc-fuel-actions a:hover,
.mtc-fuel-footer a:hover {
  text-decoration: underline;
}

.mtc-fuel-footer,
.mtc-fuel-error {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(222,236,246,.72);
  font-size: 13px;
}

.mtc-fuel-error {
  padding: 16px 0 0;
}

@media (max-width: 720px) {
  .mtc-fuel-widget {
    padding: 18px;
    border-radius: 18px;
  }

  .mtc-fuel-head,
  .mtc-fuel-toolbar {
    flex-direction: column;
  }

  .mtc-fuel-selects label {
    width: 100%;
    justify-content: space-between;
  }
}

.mtc-fuel-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1 1 320px;
}

.mtc-fuel-search input {
  min-width: 220px;
  flex: 1 1 220px;
  border: 1px solid rgba(94, 231, 255, 0.22);
  background: rgba(9, 18, 28, 0.8);
  color: #e7f8ff;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  outline: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset;
}

.mtc-fuel-search input::placeholder {
  color: rgba(222,236,246,.55);
}

.mtc-fuel-search input:focus {
  border-color: rgba(255,95,210,.45);
  box-shadow: 0 0 0 1px rgba(255,95,210,.18), 0 0 16px rgba(255,95,210,.14);
}

.mtc-fuel-search-btn {
  border: 1px solid rgba(255, 95, 210, 0.35);
  background: linear-gradient(180deg, rgba(33, 12, 43, 0.95), rgba(18, 10, 28, 0.95));
  color: #fff;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mtc-fuel-search-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,95,210,.55);
  box-shadow: 0 0 16px rgba(255,95,210,.18), 0 0 18px rgba(94,231,255,.10);
}

.mtc-fuel-notice {
  margin: -4px 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 191, 102, 0.25);
  background: rgba(41, 28, 11, 0.55);
  color: #ffd7a1;
  font-size: 13px;
}

@media (max-width: 720px) {
  .mtc-fuel-search {
    width: 100%;
  }

  .mtc-fuel-search input,
  .mtc-fuel-search-btn {
    width: 100%;
  }
}

.mtc-fuel-toolbar--enhanced {
  display: block;
}

.mtc-fuel-search-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.mtc-fuel-search-row {
  display: block;
}

.mtc-fuel-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(94, 231, 255, 0.14);
  background: linear-gradient(180deg, rgba(10, 17, 27, 0.88), rgba(8, 13, 22, 0.96));
  box-shadow: 0 0 18px rgba(94, 231, 255, 0.08);
}

.mtc-fuel-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  border: 1px solid rgba(94, 231, 255, 0.18);
  background: rgba(7, 18, 29, 0.9);
  color: var(--mtc-accent);
  font-size: 18px;
}

.mtc-fuel-search-wrap input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(9, 18, 28, 0.84);
  color: #f4fbff;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
}

.mtc-fuel-search-wrap input[type="text"]:focus,
.mtc-radius-input:focus,
.mtc-fuel-selects select:focus {
  border-color: rgba(255,95,210,.48);
  box-shadow: 0 0 0 2px rgba(255,95,210,.12), 0 0 18px rgba(94,231,255,.12);
}

.mtc-fuel-search-btn,
.mtc-fuel-apply-btn,
.mtc-place-chip {
  border: 1px solid rgba(94, 231, 255, 0.2);
  background: linear-gradient(180deg, rgba(10, 21, 34, 0.96), rgba(8, 15, 26, 0.98));
  color: #f1f9ff;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mtc-fuel-search-btn:hover,
.mtc-fuel-apply-btn:hover,
.mtc-place-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255,95,210,.45);
  box-shadow: 0 0 18px rgba(255,95,210,.14), 0 0 18px rgba(94,231,255,.1);
}

.mtc-fuel-quickplaces {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mtc-place-chip {
  border-radius: 999px;
  padding: 10px 14px;
}

.mtc-place-chip.is-active {
  border-color: rgba(255,95,210,.55);
  box-shadow: 0 0 18px rgba(255,95,210,.14), 0 0 18px rgba(94,231,255,.12);
}

.mtc-fuel-config-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mtc-fuel-config-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(14, 21, 34, 0.82), rgba(10, 15, 24, 0.9));
}

.mtc-config-label {
  color: rgba(226, 236, 244, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.mtc-radius-input {
  width: 88px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(94, 231, 255, 0.2);
  background: rgba(9, 18, 28, 0.84);
  color: #e7f8ff;
  padding: 0 10px;
}

.mtc-fuel-message {
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,95,210,.25);
  background: rgba(34, 9, 25, 0.45);
  color: #ffe6f3;
  padding: 12px 14px;
}

.mtc-fuel-card-kicker {
  color: rgba(94, 231, 255, 0.72);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}

.mtc-fuel-price {
  white-space: nowrap;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  text-shadow: 0 0 16px rgba(94,231,255,.16);
}

.mtc-fuel-info {
  margin-top: 12px;
  color: rgba(226, 236, 244, 0.8);
  line-height: 1.55;
}

.mtc-fuel-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.mtc-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(94, 231, 255, 0.16);
  background: rgba(7, 18, 29, 0.9);
  color: #e8f8ff;
  font-size: 13px;
}

.mtc-pill.is-open {
  border-color: rgba(94, 231, 255, 0.26);
}

.mtc-pill.is-closed {
  border-color: rgba(255,95,210,.32);
  color: #ffd8f0;
}

.mtc-fuel-empty {
  grid-column: 1 / -1;
  padding: 20px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.1);
  background: rgba(8, 14, 24, 0.72);
  color: rgba(226, 236, 244, 0.82);
  display: grid;
  gap: 8px;
}

.mtc-fuel-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(226, 236, 244, 0.68);
  font-size: 13px;
}

@media (max-width: 900px) {
  .mtc-fuel-config-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .mtc-fuel-search-wrap {
    flex-wrap: wrap;
  }

  .mtc-fuel-search-wrap input[type="text"] {
    width: 100%;
  }

  .mtc-fuel-search-btn {
    width: 100%;
  }

  .mtc-fuel-bottom {
    flex-direction: column;
  }
}

.mtc-fuel-nearby-btn {
  border: 1px solid rgba(94, 231, 255, 0.2);
  background: linear-gradient(180deg, rgba(9, 27, 42, 0.96), rgba(8, 15, 26, 0.98));
  color: #f1f9ff;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mtc-fuel-nearby-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(94,231,255,.48);
  box-shadow: 0 0 18px rgba(94,231,255,.16), 0 0 18px rgba(255,95,210,.08);
}

.mtc-fuel-nearby-btn:disabled {
  opacity: .7;
  cursor: wait;
}

.mtc-fuel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.mtc-fuel-stats--empty {
  grid-template-columns: 1fr;
}

.mtc-stat-card {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(94,231,255,.12);
  background:
    radial-gradient(circle at top right, rgba(94,231,255,.10), transparent 34%),
    linear-gradient(180deg, rgba(14, 21, 34, 0.86), rgba(10, 15, 24, 0.92));
}

.mtc-stat-card span {
  display: block;
  color: rgba(226,236,244,.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.mtc-stat-card strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.1;
  text-shadow: 0 0 16px rgba(94,231,255,.14);
}

.mtc-stat-card em {
  display: block;
  margin-top: 6px;
  color: rgba(226,236,244,.68);
  font-style: normal;
  font-size: 13px;
}

.mtc-fuel-card.is-worst {
  border-color: rgba(255,95,210,.25);
}

@media (max-width: 820px) {
  .mtc-fuel-stats {
    grid-template-columns: 1fr;
  }

  .mtc-fuel-nearby-btn {
    width: 100%;
  }
}

/* =========================================================
   v1.3.5: Einklapp-Design
   ========================================================= */

.mtc-fuel-widget--collapsible {
  overflow: hidden;
}

.mtc-fuel-widget--collapsible .mtc-fuel-toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100%;
  border: 0 !important;
  outline: 0;
  padding: 0 !important;
  margin: 0 0 18px !important;
  background: transparent !important;
  color: inherit !important;
  cursor: pointer;
  text-align: left;
  font: inherit;
  box-shadow: none !important;
}

.mtc-fuel-widget--collapsible .mtc-fuel-toggle:hover,
.mtc-fuel-widget--collapsible .mtc-fuel-toggle:focus {
  background: transparent !important;
}

.mtc-fuel-widget--collapsible .mtc-fuel-head-main {
  display: block;
}

.mtc-fuel-widget--collapsible .mtc-fuel-title {
  display: block;
}

.mtc-fuel-widget--collapsible .mtc-fuel-subtitle {
  display: block;
}

.mtc-fuel-widget--collapsible .mtc-fuel-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(94, 231, 255, 0.22);
  background: rgba(9, 18, 28, 0.8);
  color: #e7f8ff;
  font-weight: 900;
  transition: transform .18s ease;
}

.mtc-fuel-widget--collapsible.is-open .mtc-fuel-chevron {
  transform: rotate(180deg);
}

.mtc-fuel-widget--collapsible.is-closed .mtc-fuel-toggle {
  margin-bottom: 0 !important;
}

.mtc-fuel-widget--collapsible.is-closed .mtc-fuel-body {
  display: none !important;
}

.mtc-fuel-widget--collapsible.is-closed {
  margin-bottom: 18px;
}

.mtc-fuel-widget--collapsible.is-closed .mtc-fuel-badges {
  align-items: center;
}

html.mtc-balanced-lite .mtc-fuel-widget--collapsible .mtc-fuel-chevron {
  transition: none;
}

@media (max-width: 720px) {
  .mtc-fuel-widget--collapsible .mtc-fuel-toggle {
    align-items: stretch;
  }

  .mtc-fuel-widget--collapsible .mtc-fuel-badges {
    margin-top: 12px;
  }
}
