/*
 * account-orders.css - Desert Greening
 * Single CSS source for WooCommerce My Account / Orders page
 * Phase 1: Layout + Overflow fix (no horizontal scroll)
 * Replaces: WC MY ACCOUNT - ORDERS TABLE block in style.css
 * Created: 2026-03-17
 */

/* ------------------------------------------------------------------ */
/* PHASE 1: Layout + Overflow                                          */
/* ------------------------------------------------------------------ */

/* Design tokens */
body.woocommerce-account{
  --ga: #618311; --dh: #072f37; --bs: #f7f8f5; --bd: #e8eae3;
  --gl: #e8f2e5; --card-radius: 14px;
  --card-shadow: 0 2px 20px rgba(7,47,55,.07);
  --vip: #6d28d9; --vip-light: #f0ebff;
  --partner: #be185d; --partner-light: #fce7f3;
  --pay: #92400e; --pay-light: #fef3c7;
}

/* Flex layout: sidebar + content side by side */
body.woocommerce-account .woocommerce {
  display: flex !important;
  gap: 24px !important;
  align-items: flex-start !important;
  max-width: 100% !important;
  overflow-x: hidden !important;   /* Phase 1: prevent horizontal overflow */
}

/* Content area: never overflow */
body.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1 !important;
  min-width: 0 !important;       /* key: prevents flex blowout */
  overflow-x: hidden !important; /* Phase 1: clip any table overflow */
}

/* ------------------------------------------------------------------ */
/* Sidebar                                                              */
/* ------------------------------------------------------------------ */

/* Nav card */
body.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 224px !important; flex-shrink: 0 !important;
  background: #fff !important; border-radius: 14px !important;
  box-shadow: 0 2px 20px rgba(7,47,55,0.07) !important;
  overflow: hidden !important;
  position: sticky !important; top: 24px !important;
  padding: 0 !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important; margin: 0 !important; padding: 0 !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0 !important; padding: 0 !important;
  list-style: none !important; border-radius: 0 !important;
}

/* Base nav item */
body.woocommerce-account .nav-item {
  display: flex !important; align-items: center !important; gap: 10px !important;
  padding: 12px 16px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px !important; font-weight: 600 !important;
  color: #5a5a5a !important; text-decoration: none !important;
  border-bottom: 1px solid #e8eae3 !important;
  border-left: none !important;
  border-radius: 0 !important;
  transition: all 0.14s !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation-link:last-child .nav-item {
  border-bottom: none !important;
}
body.woocommerce-account .nav-item:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation li:hover .nav-item {
  color: #618311 !important; background: #e8f2e5 !important;
  transform: none !important;
}

/* Active item */
body.woocommerce-account .nav-item.is-active {
  background: #e8f2e5 !important;
  border-left: 3px solid #618311 !important;
  padding-left: 13px !important;
  color: #618311 !important; font-weight: 600 !important;
}

/* Lower block: no extra separator */
body.woocommerce-account .woocommerce-MyAccount-navigation-link.dg-lower-first {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

/* Partnerprogramm */
body.woocommerce-account .nav-item--partner {
  background: #fce7f3 !important; color: #be185d !important;
}
body.woocommerce-account .nav-item--partner:hover { background: #f9cde3 !important; }

/* VIP-Bereich */
body.woocommerce-account .nav-item--vip {
  background: #f0ebff !important; color: #6d28d9 !important;
}
body.woocommerce-account .nav-item--vip:hover { background: #e2d5f8 !important; }

/* Abmelden */
body.woocommerce-account .nav-item--logout {
  color: #9a9a9a !important;
}
body.woocommerce-account .nav-item--logout:hover {
  color: #b91c1c !important; background: #fef2f2 !important;
}

/* Nav icon */
body.woocommerce-account .nav-icon {
  width: 15px !important; height: 15px !important;
  display: inline-flex !important; align-items: center !important;
  justify-content: center !important; flex-shrink: 0 !important;
}
body.woocommerce-account .nav-icon svg {
  width: 15px !important; height: 15px !important;
}

/* Hide old ::before mask-image icons */
body.woocommerce-account .woocommerce-MyAccount-navigation-link a::before {
  display: none !important;
}


/* VIP-Bereich active: use same green as other items (overrides any snippet with #8293ff) */
body.woocommerce-account .woocommerce-MyAccount-navigation-link--mitgliederbereich.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation-link--mitgliederbereich a.is-active,
body.woocommerce-account .nav-item--vip.is-active {
  background: #e8f2e5 !important;
  border-left: 3px solid #618311 !important;
  padding-left: 13px !important;
  color: #618311 !important;
  font-weight: 600 !important;
}
/* ------------------------------------------------------------------ */
/* Orders table                                                         */
/* ------------------------------------------------------------------ */
/* Card wrapper handles border-radius + shadow */
.dg-orders-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

body.woocommerce-account.logged-in .woocommerce-orders-table {
  width: 100% !important; table-layout: auto !important;
  border-collapse: collapse !important;
  max-width: 100% !important;  /* Phase 1: never wider than container */
}

/* Hide Mitgliederbereich column (added by Snippet 3092) */
[class*="mini_sha_info"] { display: none !important; }

/* Header */
body.woocommerce-account.logged-in .woocommerce-orders-table thead tr { background: #0d3f4a !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table thead th {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 10px !important;
  font-weight: 700 !important; color: rgba(255,255,255,.55) !important;
  text-transform: uppercase !important; letter-spacing: 1px !important;
  padding: 13px 22px !important; text-align: left !important;
  border: none !important; background: transparent !important; width: auto !important;
}
body.woocommerce-account.logged-in .woocommerce-orders-table thead th:last-child { text-align: right !important; }

/* Body rows */
body.woocommerce-account.logged-in .woocommerce-orders-table tbody td {
  padding: 16px 22px !important; border-bottom: 1px solid #e8eae3 !important;
  border-right: none !important; border-left: none !important; border-top: none !important;
  vertical-align: middle !important; font-size: 13px !important;
  color: #5a5a5a !important; background: #fff !important;
}
body.woocommerce-account.logged-in .woocommerce-orders-table tbody tr:last-child td { border-bottom: none !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table tbody tr:hover td { background: #fafcf9 !important; }

/* Cell-specific styles */
body.woocommerce-account.logged-in .woocommerce-orders-table__cell-order-number a {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 800 !important; font-size: 14px !important;
  color: #072f37 !important; text-decoration: none !important; display: block !important;
}
body.woocommerce-account.logged-in .woocommerce-orders-table__cell-order-number a:hover { color: #618311 !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table td .dg-order-sub {
  font-size: 11px !important; color: #9ca3af !important;
  margin-top: 2px !important; font-weight: 400 !important; display: block !important;
}
body.woocommerce-account.logged-in .woocommerce-orders-table__cell-order-date { color: #6b7280 !important; font-size: 12px !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table__cell-order-total {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 800 !important; color: #072f37 !important; font-size: 14px !important;
}
body.woocommerce-account.logged-in .woocommerce-orders-table__cell-order-actions { text-align: right !important; }

/* Status badges - high specificity to override td font-size */
body.woocommerce-account.logged-in .woocommerce-orders-table td /* Status column overflow fix */
body.woocommerce-account .woocommerce-orders-table__cell-order-status {
    overflow: hidden !important;
    max-width: 140px !important;
}

.dg-badge {
  display: inline-flex !important; align-items: center !important;
  gap: 5px !important; padding: 3px 10px !important; border-radius: 999px !important;
  font-size: 10px !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: .5px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  white-space: nowrap !important;
  background: #f3f4f6 !important; color: #6b7280 !important; /* fallback */
}
body.woocommerce-account.logged-in .woocommerce-orders-table td .dg-dot {
  width: 5px !important; height: 5px !important; border-radius: 50% !important;
  flex-shrink: 0 !important; background: currentColor !important;
  display: inline-block !important;
}
body.woocommerce-account.logged-in .woocommerce-orders-table td .dg-badge-completed  { background: #e8f2e5 !important; color: #2d6a0a !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table td .dg-badge-processing { background: #dcf0e6 !important; color: #1a6e3e !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table td .dg-badge-pending    { background: #fef9ec !important; color: #92400e !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table td .dg-badge-on-hold    { background: #fff3e0 !important; color: #c05621 !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table td .dg-badge-cancelled  { background: #fef2f2 !important; color: #b91c1c !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table td .dg-badge-failed     { background: #fef2f2 !important; color: #b91c1c !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table td .dg-badge-refunded   { background: #f3f4f6 !important; color: #6b7280 !important; }

/* Row highlights */
body.woocommerce-account.logged-in .woocommerce-orders-table tr.dg-row-pending td { background: #fffdf5 !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table tr.dg-row-pending td:first-child {
  border-left: 3px solid #fcd34d !important; padding-left: 19px !important;
}
body.woocommerce-account.logged-in .woocommerce-orders-table tr.dg-row-cancelled td { opacity: .65 !important; }

/* Action buttons - high specificity to beat WC .button styles */
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-act-group {
  display: flex !important; align-items: center !important;
  justify-content: flex-end !important; gap: 5px !important; flex-wrap: nowrap !important;
}
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-btn {
  display: inline-flex !important; align-items: center !important; gap: 5px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 11px !important; font-weight: 700 !important;
  padding: 6px 12px !important; border-radius: 7px !important;
  text-decoration: none !important; white-space: nowrap !important;
  cursor: pointer !important; border: 1.5px solid transparent !important;
  letter-spacing: .2px !important; line-height: 1 !important;
  box-shadow: none !important; text-shadow: none !important;
}
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-btn-view    { background: #1a1a1a !important; color: #fff !important; border-color: #1a1a1a !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-btn-pay     { background: #fef3c7 !important; color: #92400e !important; border-color: #fcd34d !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-btn-invoice { background: transparent !important; color: #6b7280 !important; border-color: #e8eae3 !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-btn-vip     { background: #f0ebff !important; color: #6d28d9 !important; border-color: #c4b5fd !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-btn-cancel  { background: #fff !important; color: #b91c1c !important; border-color: #fca5a5 !important; }

/* SAB document link */
body.woocommerce-account.logged-in .woocommerce-orders-table td a.woocommerce-button.button[href*="sab-document"] {
  display: inline-flex !important; align-items: center !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 11px !important; font-weight: 700 !important;
  padding: 6px 12px !important; border-radius: 7px !important;
  border: 1.5px solid #e8eae3 !important; color: #6b7280 !important;
  background: transparent !important; text-decoration: none !important;
  white-space: nowrap !important; box-shadow: none !important;
}


/* ------------------------------------------------------------------ */
/* Phase 1 Final Fix - Inline SVG icons + overflow fix                  */
/* ------------------------------------------------------------------ */

/* Suppress CSS ::before mask icons when navigation.php injects SVGs */
body.woocommerce-account .dg-nav-has-icons .woocommerce-MyAccount-navigation-link a::before {
  display: none !important;
}

/* .nav-icon SVG sizing (inline SVG from navigation.php) */
body.woocommerce-account .woocommerce-MyAccount-navigation-link a .nav-icon {
  width: 15px !important; height: 15px !important;
  flex-shrink: 0 !important; display: block !important;
  overflow: visible !important;
}

/* .dg-btn-icon SVG sizing (inline SVG from orders.php) */
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-btn-icon {
  width: 13px !important; height: 13px !important;
  flex-shrink: 0 !important; display: block !important;
  overflow: visible !important;
}

/* Fix right-edge cutoff: table-layout fixed + column width hints */
body.woocommerce-account.logged-in .woocommerce-orders-table {
  table-layout: fixed !important;
  overflow: visible !important;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  overflow-x: visible !important;
}

/* Column widths for fixed layout */
body.woocommerce-account.logged-in .woocommerce-orders-table th.woocommerce-orders-table__header-order-number  { width: 24% !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table th.woocommerce-orders-table__header-order-date    { width: 11% !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table th.woocommerce-orders-table__header-order-status  { width: 19% !important; }
body.woocommerce-account.logged-in .woocommerce-orders-table th.woocommerce-orders-table__header-order-total   { width: 14% !important; }
/* order-actions: auto (remaining ~32%) */

/* Tighter cell padding for fixed layout */
body.woocommerce-account.logged-in .woocommerce-orders-table tbody td,
body.woocommerce-account.logged-in .woocommerce-orders-table thead th {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

/* Actions column: allow wrap on small viewports */
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-act-group {
  flex-wrap: wrap !important;
  gap: 4px !important;
}

/* Compact buttons to fit in 32% column width */
body.woocommerce-account.logged-in .woocommerce-orders-table .dg-btn {
  padding: 5px 9px !important;
  font-size: 10.5px !important;
}

/* ------------------------------------------------------------------ */
/* Store Credits Page                                                  */
/* ------------------------------------------------------------------ */
.dg-store-credits-wrap {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Balance card */
.dg-credits-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(7,47,55,0.07);
  padding: 28px 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.dg-credits-balance__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 6px;
}
.dg-credits-balance__amount {
  font-size: 32px;
  font-weight: 700;
  color: #072f37;
  line-height: 1.1;
  margin-bottom: 8px;
}
.dg-credits-balance__info {
  font-size: 13px;
  color: #5a5a5a;
  max-width: 420px;
}
.dg-credits-balance__expiry {
  font-size: 12px;
  color: #92400e;
  background: #fef3c7;
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 10px;
  display: inline-block;
}
.dg-credits-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: #618311;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.15s;
  white-space: nowrap;
}
.dg-credits-btn:hover {
  background: #4a6a0d !important;
  color: #fff !important;
  transform: none !important;
}

/* Ant Design table wrapper */
.acfw-store-credit-history {
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 20px rgba(7,47,55,0.07) !important;
}
.acfw-store-credit-history .ant-table-wrapper,
.acfw-store-credit-history .ant-spin-nested-loading,
.acfw-store-credit-history .ant-spin-container,
.acfw-store-credit-history .ant-table,
.acfw-store-credit-history .ant-table-container {
  border-radius: 0 !important;
}

/* Table header */
.acfw-store-credit-history .ant-table-thead .ant-table-cell {
  background: #072f37 !important;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 12px 16px !important;
  border: none !important;
}
.acfw-store-credit-history .ant-table-thead .ant-table-cell::before {
  display: none !important;
}

/* Table body cells */
.acfw-store-credit-history .ant-table-tbody .ant-table-cell {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px !important;
  color: #5a5a5a !important;
  padding: 12px 16px !important;
  border-bottom: 1px solid #e8eae3 !important;
  background: #fff !important;
}
.acfw-store-credit-history .ant-table-tbody tr:last-child .ant-table-cell {
  border-bottom: none !important;
}
.acfw-store-credit-history .ant-table-tbody tr:hover .ant-table-cell {
  background: #f7f8f5 !important;
}

/* "No data" -> German via CSS */
.acfw-store-credit-history .ant-empty-description {
  font-size: 0 !important;
  color: transparent !important;
}
.acfw-store-credit-history .ant-empty-description::after {
  content: 'Keine Eintraege';
  font-size: 13px !important;
  color: #9ca3af !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.acfw-store-credit-history .ant-empty-image svg {
  opacity: 0.25 !important;
}

/* Page title: smaller + more top space */
.woocommerce-account .entry-title,
.woocommerce-account .page-title,
.woocommerce-account h1.entry-title {
  font-size: 22px !important;
  margin-top: 32px !important;
  margin-bottom: 24px !important;
}
/* ------------------------------------------------------------------ */
/* End Store Credits                                                   */
/* ------------------------------------------------------------------ */
/* End Store Credits                                                   */
/* ------------------------------------------------------------------ */

/* ------------------------------------------------------------------ */
/* Downloads Page + WooCommerce Info Notices                           */
/* ------------------------------------------------------------------ */

/* Hide the woocommerce-info ::before icon - causes sidebar overflow  */
.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-message::before {
  display: none !important;
}

/* Restyle woocommerce-info as DG card (Downloads empty state etc.) */
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message {
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 20px rgba(7,47,55,0.07) !important;
  border: none !important;
  border-top: none !important;
  padding: 24px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  color: #5a5a5a !important;
  margin-bottom: 24px !important;
}

/* "Produkte durchsuchen" button inside the card */
.woocommerce-account .woocommerce-info .button,
.woocommerce-account .woocommerce-message .button {
  background: #618311 !important;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  border: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.15s !important;
  flex-shrink: 0 !important;
}
.woocommerce-account .woocommerce-info .button:hover,
.woocommerce-account .woocommerce-message .button:hover {
  background: #4a6a0d !important;
  color: #fff !important;
  transform: none !important;
}

/* ------------------------------------------------------------------ */
/* End Downloads                                                       */
/* ------------------------------------------------------------------ */

/* ------------------------------------------------------------------ */
/* Payment Methods / Add Payment Method Page                           */
/* ------------------------------------------------------------------ */

/* Main payment container - DG card */
.woocommerce-account #payment.woocommerce-Payment,
.woocommerce-account .woocommerce-Payment {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 24px !important;
}

/* Payment methods list */
.woocommerce-account ul.woocommerce-PaymentMethods,
.woocommerce-account ul.payment_methods {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 20px rgba(7,47,55,0.07) !important;
  overflow: hidden !important;
}

/* Each payment method row - flex container so radio + label are on same line */
.woocommerce-account li.woocommerce-PaymentMethod {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  border: none !important;
  border-bottom: 1px solid #e8eae3 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  list-style: none !important;
}
.woocommerce-account li.woocommerce-PaymentMethod:last-child {
  border-bottom: none !important;
}

/* Radio button - left side, same line as label */
.woocommerce-account li.woocommerce-PaymentMethod input.input-radio {
  order: 1 !important;
  flex-shrink: 0 !important;
  position: static !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 0 0 20px !important;
  padding: 0 !important;
  cursor: pointer !important;
  accent-color: #618311 !important;
  float: none !important;
  vertical-align: middle !important;
}

/* Label - right of radio, flex:1 to fill remaining space */
.woocommerce-account li.woocommerce-PaymentMethod > label {
  order: 2 !important;
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 16px 20px !important;
  cursor: pointer !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #072f37 !important;
  margin: 0 !important;
  user-select: none !important;
  background: transparent !important;
}
.woocommerce-account li.woocommerce-PaymentMethod > label:hover {
  background: transparent !important;
}
.woocommerce-account li.woocommerce-PaymentMethod:hover {
  background: #f7f8f5 !important;
}

/* Payment icon */
.woocommerce-account li.woocommerce-PaymentMethod > label img {
  height: 24px !important;
  width: auto !important;
  margin: 0 !important;
}

/* PaymentBox - full width below the radio+label row */
.woocommerce-account .woocommerce-PaymentBox {
  order: 3 !important;
  flex: 0 0 100% !important;
  padding: 0 20px 20px 20px !important;
  background: #fff !important;
  border: none !important;
  border-top: 1px solid #e8eae3 !important;
  box-sizing: border-box !important;
}

/* Stripe card fields */
.woocommerce-account .woocommerce-PaymentBox .form-row {
  margin-bottom: 16px !important;
}
.woocommerce-account .woocommerce-PaymentBox label {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #5a5a5a !important;
  display: block !important;
  margin-bottom: 6px !important;
  flex: none !important;
  padding: 0 !important;
}
.woocommerce-account .woocommerce-PaymentBox input[type="text"],
.woocommerce-account .woocommerce-PaymentBox input[type="tel"],
.woocommerce-account .woocommerce-PaymentBox select {
  width: 100% !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  color: #072f37 !important;
  background: #fff !important;
  box-sizing: border-box !important;
}

/* Submit button */
.woocommerce-account #add_payment_method #place_order,
.woocommerce-account #add_payment_method .woocommerce-Button--alt,
.woocommerce-account #add_payment_method .button.alt {
  background: #618311 !important;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.woocommerce-account #add_payment_method #place_order:hover,
.woocommerce-account #add_payment_method .woocommerce-Button--alt:hover {
  background: #4a6a0d !important;
  color: #fff !important;
  transform: none !important;
}

/* ------------------------------------------------------------------ */
/* End Payment Methods                                                 */
/* ------------------------------------------------------------------ */
/* End Payment Methods                                                 */
/* ------------------------------------------------------------------ */

/* ===== VIP Mitgliederbereich Layout ===== */
.msha-teaser { max-width: 720px; font-family: 'Plus Jakarta Sans', sans-serif; }
.msha-teaser h2 { font-size: 22px; font-weight: 700; color: #072f37; margin: 0 0 24px; }
.msha-main { display: flex !important; gap: 28px; align-items: flex-start; margin-bottom: 24px; }
.msha-video-col { flex: 0 0 52% !important; max-width: 52% !important; }
.msha-video-col video { width: 100%; border-radius: 10px; display: block; }
.msha-info-col {
    flex: 1 !important; display: flex !important; flex-direction: column !important;
    justify-content: center; gap: 14px; padding-top: 4px;
}
.msha-badge {
    display: inline-block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em;
    padding: 4px 10px; border-radius: 20px; width: fit-content;
}
.msha-badge--vip { background: #f0ebff; color: #6d28d9; }
.msha-badge--shop { background: #e8f2e5; color: #3a6010; }
.msha-info-col h3 { font-size: 17px; font-weight: 700; color: #072f37; line-height: 1.3; margin: 0; }
.msha-info-col p { font-size: 13px; color: #5a5a5a; line-height: 1.6; margin: 0; }
.msha-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.msha-list li { font-size: 13px; color: #5a5a5a; display: flex; align-items: center; gap: 7px; }
.msha-list li::before {
    content: ''; display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: #618311; flex-shrink: 0;
}
.msha-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 12px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
    text-decoration: none !important; white-space: nowrap; width: fit-content;
    transition: background 0.15s;
}
.msha-btn--vip { background: #072f37; color: #fff !important; }
.msha-btn--vip:hover { background: #0a3d48 !important; color: #fff !important; }
.msha-btn--shop { background: #618311; color: #fff !important; }
.msha-btn--shop:hover { background: #4e6a0d !important; color: #fff !important; }
@media (max-width: 620px) {
    .msha-main { flex-direction: column; gap: 18px; }
    .msha-video-col { flex: none; max-width: 100%; width: 100%; }
    .msha-btn { width: 100%; justify-content: center; }
}
/* ===== END VIP Mitgliederbereich Layout ===== */
