/* ═══ CATEGORY LANDING PAGES ═══ */
/* ═══════════════════════════════════════════════════════
   CATEGORY LANDING PAGES  (template-category-landing.php)
═══════════════════════════════════════════════════════ */

/* ── Hero ── */
/* ── Info Cards (replaces text wall) ── */
.mf-clp-infocards { padding: 64px 0; background: var(--mf-bg); }
.mf-clp-infocards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.mf-clp-infocards__item {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color .25s, transform .2s;
}
.mf-clp-infocards__item:hover {
  border-color: rgba(207,175,112,.3);
  transform: translateY(-2px);
}
.mf-clp-infocards__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(207,175,112,.1);
  font-size: 13px; font-weight: 900;
  color: var(--mf-gold);
  margin-bottom: 16px;
}
.mf-clp-infocards__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--mf-text);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.mf-clp-infocards__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mf-muted);
  margin: 0;
}
.mf-clp-infocards__desc strong {
  color: var(--mf-text);
  font-weight: 700;
}

/* ── USPs ── */
.mf-clp-usps { background: var(--mf-bg); padding: 64px 0; }


/* ── Info Section ── */
.mf-clp-info { padding: 80px 0; background: var(--mf-bg); }
.mf-clp-info__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.mf-clp-info__body {
  margin-top: 20px;
}
.mf-clp-info__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mf-muted);
  margin: 0 0 14px;
}
.mf-clp-info__body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--mf-text);
  margin: 28px 0 12px;
}
.mf-clp-info__body ul,
.mf-clp-info__body ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.mf-clp-info__body li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mf-muted);
  margin-bottom: 6px;
}
.mf-clp-info__body li strong {
  color: var(--mf-text);
}
.mf-clp-info__actions { margin-top: 24px; }
.mf-clp-info__card {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.mf-clp-info__card-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(207,175,112,.1);
  margin-bottom: 16px;
}
.mf-clp-info__card-icon svg { color: var(--mf-gold); }
.mf-clp-info__card-stat {
  font-size: 36px; font-weight: 900;
  color: var(--mf-text);
  line-height: 1;
}
.mf-clp-info__card-label {
  font-size: 14px; color: var(--mf-muted); margin-top: 4px;
}
.mf-clp-info__card-makes {
  margin-top: 16px;
  font-size: 13px; font-weight: 700; color: var(--mf-gold);
  text-transform: uppercase; letter-spacing: .04em;
}

/* ── Modellsuche ── */
.mf-clp-modelsearch {
  padding: 64px 0;
  background: var(--mf-bg);
}
.mf-clp-modelsearch__card {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 20px;
  padding: 48px 40px;
}
.mf-clp-modelsearch__header {
  text-align: center;
  margin-bottom: 32px;
}
.mf-clp-modelsearch__sub {
  font-size: 15px;
  color: var(--mf-muted);
  margin-top: 8px;
  line-height: 1.6;
}
.mf-clp-modelsearch__form {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.mf-clp-modelsearch__field {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mf-clp-modelsearch__field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--mf-muted);
}
.mf-clp-modelsearch__select {
  appearance: none;
  background: var(--mf-bg);
  border: 1px solid var(--mf-line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px; /* 16px minimum prevents iOS auto-zoom on focus */
  font-weight: 600;
  color: var(--mf-text);
  cursor: pointer;
  transition: border-color .2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.mf-clp-modelsearch__select:focus {
  outline: none;
  border-color: var(--mf-gold);
}
.mf-clp-modelsearch__select:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.mf-clp-modelsearch__form .mfh-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  white-space: nowrap;
}
.mf-clp-modelsearch__results {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--mf-line);
}
.mf-clp-modelsearch__results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.mf-clp-modelsearch__product {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--mf-bg);
  border: 1px solid var(--mf-line);
  border-radius: 12px;
  padding: 14px;
  text-decoration: none;
  transition: border-color .2s, transform .15s;
}
.mf-clp-modelsearch__product:hover {
  border-color: var(--mf-gold);
  transform: translateY(-2px);
}
.mf-clp-modelsearch__product img {
  width: 56px; height: 56px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--mf-surface);
  flex-shrink: 0;
}
.mf-clp-modelsearch__product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.mf-clp-modelsearch__product-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--mf-text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mf-clp-modelsearch__product-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--mf-gold);
}
.mf-clp-modelsearch__results-empty {
  text-align: center;
  padding: 24px;
}
.mf-clp-modelsearch__results-empty p {
  font-size: 14px;
  color: var(--mf-muted);
}
.mf-clp-modelsearch__results-empty a {
  color: var(--mf-gold);
  text-decoration: underline;
}

/* ── So funktioniert's ── */
.mf-clp-steps {
  padding: 64px 0;
  background: var(--mf-bg);
}
.mf-clp-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}
.mf-clp-steps__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--mf-line), var(--mf-gold) 50%, var(--mf-line));
  z-index: 0;
}
.mf-clp-steps__item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.mf-clp-steps__number {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mf-gold), hsl(38, 60%, 55%));
  color: #000;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(207,175,112,.3);
}
.mf-clp-steps__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--mf-text);
  margin: 0 0 8px;
}
.mf-clp-steps__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mf-muted);
  margin: 0;
}

/* ── Gesetzliche Grundlagen ── */
.mf-clp-legal {
  padding: 64px 0;
  background: var(--mf-bg);
}
.mf-clp-legal__card {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 20px;
  padding: 48px 40px;
}
.mf-clp-legal__intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mf-muted);
  margin: 16px 0 28px;
}
.mf-clp-legal__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -8px;
  padding: 0 8px;
}
.mf-clp-legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.mf-clp-legal__table thead th {
  background: rgba(207,175,112,.08);
  color: var(--mf-gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--mf-line);
  white-space: nowrap;
}
.mf-clp-legal__table tbody td {
  padding: 12px 16px;
  color: var(--mf-text);
  border-bottom: 1px solid var(--mf-line);
  vertical-align: top;
}
.mf-clp-legal__table tbody tr:last-child td {
  border-bottom: none;
}
.mf-clp-legal__table tbody tr:hover {
  background: rgba(207,175,112,.03);
}
.mf-clp-legal__table tbody td strong {
  color: var(--mf-gold);
  font-weight: 800;
}
.mf-clp-legal__footnote {
  font-size: 12px;
  color: var(--mf-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* ── Hersteller Grid ── */
.mf-clp-makes { padding: 64px 0; background: var(--mf-bg); }
.mf-clp-makes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 36px;
}
.mf-clp-makes__item {
  display: flex;
  align-items: center; justify-content: center;
  padding: 14px 12px;
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 10px;
  font-size: 13px; font-weight: 700;
  color: var(--mf-text);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.mf-clp-makes__item:hover {
  border-color: var(--mf-gold);
  background: rgba(207,175,112,.06);
  color: var(--mf-gold);
}

/* ── Products ── */
.mf-clp-products { padding: 64px 0; background: var(--mf-bg); }

/* ── Trust ── */
.mf-clp-trust { padding: 64px 0; background: var(--mf-bg); }
.mf-clp-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mf-clp-trust__item {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}
.mf-clp-trust__item h4 {
  margin: 14px 0 8px;
  font-size: 16px; font-weight: 800;
  color: var(--mf-text);
}
.mf-clp-trust__item p {
  margin: 0;
  font-size: 13px; line-height: 1.6;
  color: var(--mf-muted);
}

/* ── CTA ── */
.mf-clp-cta { padding: 80px 0; background: var(--mf-bg); }
.mf-clp-cta__card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1108 100%);
  border: none;
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mf-clp-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(179,144,71,.18), transparent 60%);
  pointer-events: none;
}
.mf-clp-cta__card .mfh-kicker { color: var(--mf-gold); }
.mf-clp-cta__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  margin: 12px 0;
}
.mf-clp-cta__copy {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin: 0 0 28px;
  line-height: 1.6;
}


/* ═══ REVIEWS LANDING PAGE ═══ */
/* ═══════════════════════════════════════════════
   REVIEWS LANDING PAGE
═══════════════════════════════════════════════ */
.mf-reviews-stats { padding: 32px 0 48px; position: relative; z-index: 2; }
.mf-reviews-stats__card {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.mf-reviews-stats__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 140px;
}
.mf-reviews-stats__big {
  font-size: 56px;
  font-weight: 800;
  color: var(--mf-text);
  line-height: 1;
  letter-spacing: -.03em;
}
.mf-reviews-stats__stars { display: flex; gap: 2px; }
.mf-reviews-stats__count { font-size: 13px; color: var(--mf-muted); font-weight: 600; }
.mf-reviews-stats__right { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mf-reviews-stats__bar-row { display: flex; align-items: center; gap: 10px; }
.mf-reviews-stats__bar-label { width: 28px; font-size: 13px; font-weight: 700; color: var(--mf-text); text-align: right; }
.mf-reviews-stats__bar-track {
  flex: 1; height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
}
.mf-reviews-stats__bar-fill { height: 100%; background: var(--mf-gold); border-radius: 4px; transition: width .6s ease; }
.mf-reviews-stats__bar-count { width: 28px; font-size: 12px; color: var(--mf-muted); }

.mf-reviews-list { padding: 0 0 64px; }
.mf-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.mf-review-card {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mf-review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.mf-review-card__header { display: flex; align-items: center; gap: 12px; }
.mf-review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-weight: 800; font-size: 14px;
  letter-spacing: .02em; text-transform: uppercase;
}
.mf-review-card__meta { flex: 1; min-width: 0; }
.mf-review-card__name {
  display: block; font-size: 14px; font-weight: 700; color: var(--mf-text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mf-review-card__date { display: block; font-size: 11px; color: var(--mf-muted); margin-top: 1px; }
.mf-review-card__badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--mf-gold);
  background: rgba(179,144,71,.08); padding: 3px 8px;
  border-radius: 6px; white-space: nowrap; flex-shrink: 0;
}
.mf-review-card__stars { display: flex; gap: 2px; }
.mf-review-card__text {
  font-size: 14px; line-height: 1.6; color: var(--mf-text); opacity: .85; margin: 0;
}
.mf-review-card__text.is-clamped {
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.mf-review-card__expand {
  background: none; border: none; padding: 0; margin-top: 4px;
  font-size: 13px; font-weight: 700; color: var(--mf-gold);
  cursor: pointer; transition: opacity .15s;
}
.mf-review-card__expand:hover { opacity: .7; }
.mf-review-card__product {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--mf-muted); text-decoration: none;
  padding-top: 8px; border-top: 1px solid var(--mf-line);
  margin-top: auto; transition: color .15s;
}
.mf-review-card__product:hover { color: var(--mf-gold); }
.mf-reviews-more { text-align: center; margin-top: 32px; }

@media (max-width: 1024px) { .mf-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .mf-reviews-grid { grid-template-columns: 1fr; }
  .mf-reviews-stats__card { flex-direction: column; padding: 24px 20px; gap: 24px; }
  .mf-reviews-stats__left { flex-direction: row; align-items: center; gap: 16px; }
  .mf-reviews-stats__big { font-size: 40px; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mf-clp-infocards__grid { grid-template-columns: 1fr; }
  .mf-clp-infocards__item { padding: 24px 20px; }
  .mf-clp-info__grid { grid-template-columns: 1fr; gap: 32px; }
  .mf-clp-info__card { position: static; }
  .mf-clp-trust__grid { grid-template-columns: 1fr; }
  .mf-clp-makes__grid { grid-template-columns: repeat(2, 1fr); }
  .mf-clp-cta__card { padding: 36px 20px; }
  .mf-clp-modelsearch__card { padding: 28px 20px; }
  .mf-clp-modelsearch__form { flex-direction: column; }
  .mf-clp-modelsearch__results-grid { grid-template-columns: 1fr; }
  .mf-clp-steps__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mf-clp-steps__grid::before { display: none; }
  .mf-clp-legal__card { padding: 28px 20px; }
  .mf-clp-legal__table { font-size: 12px; }
  .mf-clp-legal__table thead th,
  .mf-clp-legal__table tbody td { padding: 8px 10px; }
}


/* ═══ MY ACCOUNT PAGE ═══ */
/* ═══════════════════════════════════════════════════
   MY ACCOUNT PAGE
═══════════════════════════════════════════════════ */

/* Section wrapper */
.mf-account-section {
  padding: 40px 0 80px;
  background: var(--mf-bg);
}

/* Logout button in hero */
.mfh-account-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mf-muted);
  text-decoration: none;
  border: 1px solid var(--mf-line);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}
.mfh-account-logout .material-symbols-rounded { font-size: 16px; }
.mfh-account-logout:hover { color: #ef4444; border-color: rgba(239,68,68,0.3); }

/* Bento grid: sidebar nav | content */
.mf-account-grid {
  /* Outer wrapper — no grid here, the .woocommerce child handles it */
}
.woocommerce-account .mf-account-grid .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: grid !important;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

/* ── Account Navigation Sidebar ── */
.woocommerce-MyAccount-navigation {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 12px;
  padding: 8px;
  position: sticky;
  top: 100px;
  float: none !important;
  width: auto !important;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.woocommerce-MyAccount-navigation li { margin: 0; }
.woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mf-muted);
  text-decoration: none;
  transition: all 0.15s ease;
}
.woocommerce-MyAccount-navigation li a:hover {
  background: rgba(207,175,112,.08);
  color: var(--mf-text);
}
.woocommerce-MyAccount-navigation li.is-active a {
  color: var(--mf-gold);
  background: rgba(207,175,112,.1);
  font-weight: 700;
}
/* Logout */
.woocommerce-MyAccount-navigation li.wc-item-login-out {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--mf-line);
}
.woocommerce-MyAccount-navigation li.wc-item-login-out a { color: var(--mf-muted); }
.woocommerce-MyAccount-navigation li.wc-item-login-out a:hover { color: #ef4444; background: rgba(239,68,68,0.06); }

/* ── Account Content Card ── */
.woocommerce-MyAccount-content {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: 12px;
  padding: 32px 36px;
  min-height: 300px;
  float: none !important;
  width: 100% !important;
}

/* Notices full width */
.mf-account-grid .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
}
/* Kill WC clearfix */
.mf-account-grid .woocommerce::before,
.mf-account-grid .woocommerce::after { display: none !important; }

/* ── Dashboard content enrichment ── */
.woocommerce-MyAccount-content > p:first-child {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mf-muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mf-line);
  margin-bottom: 24px;
}
.woocommerce-MyAccount-content > p:first-child a {
  color: var(--mf-gold);
  font-weight: 600;
  text-decoration: none;
}
.woocommerce-MyAccount-content > p:first-child a:hover {
  text-decoration: underline;
}

/* ── Account select/textarea styling ── */
.woocommerce-MyAccount-content select {
  width: 100%;
  padding: 14px 18px;
  background: var(--mf-bg);
  border: 1px solid var(--mf-line);
  border-radius: 8px;
  color: var(--mf-text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.woocommerce-MyAccount-content fieldset {
  border: 1px solid var(--mf-line);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}
.woocommerce-MyAccount-content fieldset legend {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mf-gold);
  padding: 0 8px;
}

/* ── Edit Address Form ── */
.woocommerce-address-fields .form-row {
  margin-bottom: 16px;
}
.woocommerce-address-fields label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mf-muted);
  margin-bottom: 6px;
}
.woocommerce-address-fields .form-row-first,
.woocommerce-address-fields .form-row-last {
  float: none !important;
  width: 100% !important;
}
.woocommerce-address-fields .woocommerce-input-wrapper {
  display: block;
}

/* ── Account Content Typography ── */
.woocommerce-MyAccount-content p {
  color: var(--mf-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--mf-text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.woocommerce-MyAccount-content table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-MyAccount-content table th,
.woocommerce-MyAccount-content table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--mf-line);
  font-size: 13px;
  color: var(--mf-text);
  text-align: left;
}
.woocommerce-MyAccount-content table th {
  font-weight: 700;
  color: var(--mf-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--mf-line);
  color: var(--mf-text);
  text-decoration: none;
  transition: all 0.15s;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a:hover {
  border-color: var(--mf-gold);
  color: var(--mf-gold);
}

/* Address blocks */
.woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.woocommerce-Addresses::before,
.woocommerce-Addresses::after { display: none !important; }
.woocommerce-Address {
  background: var(--mf-bg);
  border: 1px solid var(--mf-line);
  border-radius: 10px;
  padding: 20px 24px;
}
.woocommerce-Address address { color: var(--mf-muted); font-size: 14px; line-height: 1.7; font-style: normal; }

/* ── Login / Register form on My Account (not logged in) ── */
.woocommerce-account:not(.logged-in) .mf-account-section { padding: 48px 0 80px; }
.woocommerce-account:not(.logged-in) .mf-account-grid .woocommerce { grid-template-columns: 1fr; max-width: 480px; }
.woocommerce-account:not(.logged-in) .woocommerce-MyAccount-navigation { display: none; }
.woocommerce-account:not(.logged-in) .woocommerce-MyAccount-content { padding: 36px 40px; }

/* WC form in account */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.woocommerce-account .woocommerce-form__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mf-muted);
  margin-bottom: 6px;
}
.woocommerce-account .woocommerce-Input,
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"] {
  width: 100% !important;
  padding: 14px 18px !important;
  background: var(--mf-bg) !important;
  border: 1px solid var(--mf-line) !important;
  border-radius: 8px !important;
  color: var(--mf-text) !important;
  font-size: 14px !important;
  font-family: inherit !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  box-sizing: border-box !important;
}
.woocommerce-account input:focus { border-color: var(--mf-gold) !important; }
.woocommerce-account .woocommerce-button,
.woocommerce-account button[type="submit"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px !important;
  background: var(--mf-gold) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s !important;
  margin-top: 8px;
}
.woocommerce-account button[type="submit"]:hover { background: var(--mf-gold-dark) !important; }
.woocommerce-account .lost_password a { color: var(--mf-muted); font-size: 13px; text-decoration: none; }
.woocommerce-account .lost_password a:hover { color: var(--mf-gold); }

/* Notices */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
  background: var(--mf-surface) !important;
  border: 1px solid var(--mf-line) !important;
  border-left: 3px solid var(--mf-gold) !important;
  border-radius: 8px !important;
  padding: 14px 18px !important;
  font-size: 14px;
  color: var(--mf-text);
  margin-bottom: 20px;
  list-style: none;
}
.woocommerce-account .woocommerce-error { border-left-color: #ef4444 !important; }
.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-error::before { display: none !important; }

/* Responsive */
@media (max-width: 768px) {
  .woocommerce-account .mf-account-grid .woocommerce:has(.woocommerce-MyAccount-navigation) { grid-template-columns: 1fr !important; }
  .woocommerce-MyAccount-navigation { position: static; }
  .woocommerce-MyAccount-navigation ul { flex-direction: row; flex-wrap: wrap; }
  .woocommerce-MyAccount-navigation li a { padding: 7px 12px; font-size: 12px; }
  .woocommerce-Addresses { grid-template-columns: 1fr; }
  .woocommerce-MyAccount-content { padding: 24px 20px; }
  .woocommerce-account:not(.logged-in) .mf-account-grid .woocommerce { max-width: 100%; }
}

/*
 * Homepage / Header / Fahrzeug-Filter responsive hardening
 * Ziel: 1024 / 768 / 390 / 320
 */
@media (max-width: 1024px) {
  .mf-container { width: min(calc(100% - 32px), var(--mf-wrap)); }

  .mf-header__inner { gap: 16px; }
  .mf-header__logo { width: 160px; }

  .mfh-hero__bento,
  .mfh-showcase__grid,
  .mfh-faq__grid,
  .mfh-grid,
  .mfh-cat-grid,
  .mfh-cat-grid--4,
  .mfh-shop .products,
  .mfh-cat-mega__cards,
  .mfh-sec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mfh-hero {
    padding-top: 30px;
  }

  .mfh-hero__text { padding: 28px 24px; }

  .mfh-hero__main-card {
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    min-height: 360px;
  }

  .mfh-hero__image {
    min-height: 360px;
  }

  .mfh-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }

  .mfh-hero__actions .mfh-btn { min-height: 50px; }

  .mfh-side-card { min-height: 120px; }

  .mfh-arc-vehicle-filter,
  .mfh-csd {
    max-width: 100%;
  }

  .mfh-csd__panel { max-height: 280px; overflow: auto; }
  .mfh-csd__list { max-height: 230px; overflow: auto; }
}

/* ── iOS Zoom Prevention: font-size ≥ 16px on inputs ── */
.mfh-csd__search {
  font-size: 16px !important; /* Prevents iOS auto-zoom on focus */
}

/* ── Mobile Bottom-Sheet for CSD dropdowns ── */
@media (max-width: 768px) {
  body > .mfh-csd__panel {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    max-height: 55dvh !important;
    border-radius: 18px 18px 0 0 !important;
    box-shadow: 0 -8px 40px rgba(0,0,0,.22) !important;
    z-index: 999999 !important;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.32,.72,0,1);
    overflow: hidden;
  }
  /* Only when JS sets display:block → make it flex + slide up */
  body > .mfh-csd__panel[style*="display: block"],
  body > .mfh-csd__panel[style*="display:block"] {
    display: flex !important;
    transform: translateY(0);
  }

  /* Backdrop */
  .mfh-csd-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 999998;
    animation: mfFadeIn .2s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
  @keyframes mfFadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  /* Drag handle */
  body > .mfh-csd__panel::before {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: rgba(160,160,160,.5);
    border-radius: 2px;
    margin: 10px auto 4px;
    flex-shrink: 0;
  }

  /* Search input in sheet */
  body > .mfh-csd__panel .mfh-csd__search-wrap {
    padding: 10px 16px 12px;
    border-bottom: 1px solid var(--mf-line, #e5e7eb);
    position: sticky;
    top: 0;
    background: var(--mf-surface, #fff);
    z-index: 2;
    flex-shrink: 0;
  }
  body > .mfh-csd__panel .mfh-csd__search {
    font-size: 16px !important;
    padding: 8px 0;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--mf-text, #111);
  }

  /* List items bigger for touch */
  body > .mfh-csd__panel .mfh-csd__list {
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    flex: 1;
    min-height: 0;
    padding-bottom: calc(env(safe-area-inset-bottom, 16px) + 12px);
  }
  body > .mfh-csd__panel .mfh-csd__opt {
    padding: 13px 18px;
    font-size: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,.04);
    -webkit-tap-highlight-color: transparent;
  }
  body > .mfh-csd__panel .mfh-csd__opt:active {
    background: rgba(0,0,0,.06);
  }
  body > .mfh-csd__panel .mfh-csd__opt.is-selected {
    background: rgba(179,144,71,.08);
    color: var(--mf-gold);
    font-weight: 700;
  }
  body > .mfh-csd__panel .mfh-csd__opt.is-selected::after {
    content: '✓';
    margin-left: auto;
    font-weight: 700;
    color: var(--mf-gold);
  }
}

@media (max-width: 768px) {
  .mf-container { width: min(calc(100% - 22px), var(--mf-wrap)); }

  /* Header-Icons: schon bei 980px gehandhabt, hier nur Hamburger-Button-Styling */
  .mf-menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--mf-line);
  }

  .mf-header__inner { justify-content: space-between; min-height: 60px; gap: 10px; }
  .mf-header__logo { width: 150px; }
  .mf-topbar__inner { justify-content: center; text-align: center; }
  .mf-topbar__inner span:first-child { display: none; }

  .mfh-hero { padding-top: 24px; overflow-x: hidden; }
  .mfh-hero__bento { gap: 14px; }
  .mfh-hero__bento,
  .mfh-hero__main-card {
    grid-template-columns: 1fr;
  }
  .mfh-hero__sidebar {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .mfh-hero__image {
    min-height: 250px;
  }
  .mfh-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
  }
  .mfh-hero__actions .mfh-btn {
    width: 100%;
    justify-self: stretch;
    min-height: 52px;
  }
  .mfh-side-card {
    padding: 16px;
  }
  .mfh-kicker { min-height: 36px; padding: 0 14px; font-size: 12px; }
  .mfh-hero__title { font-size: clamp(36px, 9vw, 52px); line-height: 1.06; }

  .mfh-sec-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .mfh-sec-title { font-size: clamp(24px, 7vw, 34px); line-height: 1.1; }
  .mfh-grid:not(.mfh-products-grid),
  .mfh-grid--3,
  .mfh-arc-vehicle-filter,
  .mfh-trust__grid,
  .mfh-products,
  .mfh-faq__grid,
  .mfh-showcase__grid,
  .mfh-shop-hero__inner,
  .mf-pdp-content__grid,
  .mfh-shop-hero {
    grid-template-columns: 1fr !important;
  }

  .mfh-tab-panel,
  .mfh-pdp-content__grid {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .mfh-tab {
    padding: 0 12px;
    height: 40px;
    font-size: 13px;
  }

  .mfh-cat-slider .mfh-cat-card {
    width: auto;
  }

  .mfh-card,
  .mfh-featured-card,
  .mfh-cat-card,
  .mfh-tech-card {
    width: 100%;
    min-width: 0;
  }

  .mfh-cat-mega__cards,
  .mfh-mega__grid,
  .mfh-info-dropdown__inner {
    grid-template-columns: 1fr;
  }

  .mfh-csd__trigger,
  .mfh-arc-vf .mfh-btn,
  .mfh-side-card,
  .mfh-cat-card,
  .mfh-tech-card {
    width: 100%;
    min-height: 44px;
  }

  .mfh-faq__card,
  .mfh-cta__card,
  .mfh-showcase__copy,
  .mfh-sec-head {
    padding-left: 0;
    padding-right: 0;
  }

  .mfh-faq__card { padding: 28px 18px; }
  .mfh-cta__card { padding: 36px 20px; }

  ul.products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .mf-shell,
  .mfh-arc-vf,
  .mfh-shop-hero,
  .mfh-card__body,
  .mfh-faq__list,
  .mfh-faq__item,
  .mfh-arc-vehicle-filter {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .mf-container,
  .mfh-arc-vf {
    width: min(calc(100% - 16px), var(--mf-wrap));
  }

  .mfh-side-card {
    padding: 16px !important;
  }

  .mfh-side-card__name,
  .mfh-side-card__sub {
    white-space: normal;
  }

  .mfh-btn { min-height: 50px; padding-inline: 18px; }
  .mfh-hero__copy,
  .mfh-showcase__copy,
  .mfh-cat-card__sub,
  .mfh-card__price,
  .mfh-faq__a p,
  .mfh-cta__copy {
    font-size: 14px;
  }

  .mfh-hero__slide img,
  .mfh-showcase__img--main,
  .mfh-showcase__img--sub {
    width: 100%;
    height: auto;
  }

  .mfh-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
}

@media (max-width: 360px) {
  .mf-container { width: 100%; padding-left: 8px; padding-right: 8px; }
  .mf-header__logo { width: 130px; }
  .mfh-kicker { font-size: 11px; }
  .mfh-sec-title { font-size: 30px; }
  .mfh-hero__actions .mfh-btn {
    min-height: 50px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  /* Touch-friendly min-sizes */
  .mf-menu-toggle,
  .mf-cart-trigger {
    min-height: 44px;
    min-width: 44px;
  }
  .mf-cart-popover {
    right: 0;
    left: auto;
    min-width: min(360px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }
}

@media (max-width: 768px) { .mfh-feats { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .mfh-feats { grid-template-columns: 1fr; } }

@media (max-width: 768px) { .mfh-pdp-grid { grid-template-columns: 1fr; } }

@media (max-width: 480px) {
  .mfh-faq__card { padding: 24px 16px; }
  .mfh-cta__card { padding: 32px 16px; }
  .mfh-cta__title { font-size: clamp(28px, 8vw, 36px); }
}

/* Sidebar: 1 Card pro Zeile auf Mobile — wird bereits in 768px Block gehandhabt */

@media (max-width: 640px) {
  .mfh-hero__trust { gap: 6px; }
  .mfh-trust-pill { font-size: 10px; padding: 3px 8px; }
}

@media (max-width: 768px) { .mfh-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .mfh-cat-grid { grid-template-columns: 1fr; } }

@media (max-width: 640px) {
  .mfh-tab-panel .mfh-grid,
  .mfh-tab-panel .mfh-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
}

/* ── Cart VIN editor ── */
.mfh-cart-vin-edit-wrapper {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mfh-cart-vin-edit-wrapper label {
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--mf-muted) !important;
}
.mfh-cart-vin-edit-field {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 280px;
  width: 100%;
}
.mfh-cart-vin-input {
  width: 100% !important;
  background: var(--mf-bg) !important;
  border: 1px solid var(--mf-line) !important;
  border-radius: 6px !important;
  padding: 8px 32px 8px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--mf-gold) !important;
  font-family: inherit !important;
  text-transform: uppercase;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box !important;
}
.mfh-cart-vin-input:focus {
  border-color: var(--mf-gold) !important;
  box-shadow: 0 0 0 2px rgba(179, 144, 71, 0.15) !important;
  outline: none !important;
}
.mfh-cart-vin-clear {
  position: absolute;
  right: 10px;
  background: none !important;
  border: none !important;
  color: var(--mf-muted) !important;
  font-size: 12px !important;
  cursor: pointer;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
  height: 20px;
  width: 20px;
}
.mfh-cart-vin-clear:hover {
  color: var(--mf-text) !important;
}


/* ═══ THANK YOU PAGE ═══ */
/* ═══════════════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════════════ */

.mf-thankyou-wrap {
  padding: 48px 0 80px;
}

/* ── Success Banner ── */
.mf-thankyou-success {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--mf-surface);
  border: 1px solid var(--mf-line-strong);
  border-radius: var(--mf-radius);
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: var(--mf-shadow);
}
.mf-thankyou-success__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(179,144,71,0.1);
  border: 1px solid rgba(179,144,71,0.25);
  color: var(--mf-gold);
}
.mf-thankyou-success__title {
  margin: 0 0 6px;
  font-size: clamp(22px,3vw,28px);
  font-weight: 850;
  color: var(--mf-text);
}
.mf-thankyou-success__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--mf-text-2);
  line-height: 1.6;
}

/* ── Meta Pills ── */
.mf-thankyou-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.mf-thankyou-meta__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 160px;
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: var(--mf-radius-sm);
  padding: 14px 18px;
}
.mf-thankyou-meta__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--mf-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.mf-thankyou-meta__label svg { opacity: .6; }
.mf-thankyou-meta__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--mf-text);
}

/* ── 2-column grid ── */
.mf-thankyou-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 860px) {
  .mf-thankyou-grid { grid-template-columns: 1fr; }
}

/* ── Items list ── */
.mf-thankyou-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mf-thankyou-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--mf-line);
}
.mf-thankyou-item:last-child { border-bottom: none; }
.mf-thankyou-item__img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--mf-surface-2);
  border: 1px solid var(--mf-line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mf-thankyou-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mf-thankyou-item__info { flex: 1; min-width: 0; }
.mf-thankyou-item__name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mf-text);
  line-height: 1.4;
}
.mf-thankyou-item__qty {
  margin: 0;
  font-size: 12px;
  color: var(--mf-muted);
}
.mf-thankyou-item__fgn {
  margin: 5px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mf-vin-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mf-muted);
}
.mf-vin-value {
  font-size: 11px;
  font-weight: 600;
  color: var(--mf-gold);
  background: rgba(179,144,71,0.08);
  border: 1px solid rgba(179,144,71,0.2);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.mf-thankyou-item__total {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--mf-text);
  text-align: right;
}

/* ── Totals ── */
.mf-thankyou-totals {
  border-top: 1px solid var(--mf-line);
  margin-top: 4px;
  padding-top: 4px;
}
.mf-thankyou-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 13px;
  color: var(--mf-text-2);
  border-bottom: 1px solid var(--mf-line);
}
.mf-thankyou-total-row:last-child { border-bottom: none; }
.mf-thankyou-total-row.is-grand {
  font-size: 16px;
  font-weight: 800;
  color: var(--mf-text);
  padding: 14px 0 8px;
}

/* ── Sidebar ── */
.mf-thankyou-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Address ── */
.mf-thankyou-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mf-text-2);
}
.mf-thankyou-address__phone,
.mf-thankyou-address__email {
  font-size: 13px;
  color: var(--mf-muted);
}

/* ── Actions ── */
.mf-thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Failed state ── */
.mf-thankyou-failed {
  text-align: center;
  padding: 60px 24px;
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: var(--mf-radius);
}
.mf-thankyou-failed__icon { margin-bottom: 16px; }
.mf-thankyou-failed h2 { margin: 0 0 8px; font-size: 24px; font-weight: 800; color: var(--mf-text); }
.mf-thankyou-failed p { color: var(--mf-muted); margin: 0 0 24px; }
.mf-thankyou-failed__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── WooCommerce Banküberweisung-Block ── */
.woocommerce-order-details,
.woocommerce-bacs-bank-details {
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  border-radius: var(--mf-radius-sm);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.woocommerce-bacs-bank-details h2,
.woocommerce-order-details h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--mf-text);
}
.woocommerce-bacs-bank-details ul.wc-bacs-bank-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  gap: 12px;
}
.woocommerce-bacs-bank-details ul.wc-bacs-bank-details li {
  background: var(--mf-surface-2);
  border-radius: 10px;
  padding: 12px 14px;
}
.woocommerce-bacs-bank-details ul.wc-bacs-bank-details li span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--mf-muted);
  margin-bottom: 4px;
}
.woocommerce-bacs-bank-details ul.wc-bacs-bank-details li strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--mf-text);
}

/* Mobile */
@media (max-width: 640px) {
  .mf-thankyou-wrap { padding: 28px 0 60px; }
  .mf-thankyou-success { flex-direction: column; text-align: center; padding: 24px; }
  .mf-thankyou-meta__item { flex: 1 1 140px; }
  .mf-thankyou-grid { gap: 16px; }
}


