/* =============================================================================
   shop.hans-wagner.de — Frontpage Prototype
   Modus: Print-CI Bridge (Frischegruen + Taube + Maserung)
   Stand: 2026-04-26
   ============================================================================= */

/* -----------------------------------------------------------------------------
   CSS Custom Properties — Brand Tokens
----------------------------------------------------------------------------- */
:root {
  --hw-green:        #049B4E;  /* nur für große Flächen + Buttons (WCAG Large-Text-Ausnahme) */
  --hw-green-dark:   #037A3E;
  --hw-green-text:   #036B37;  /* WCAG AA auf #fff (6.64:1) + auf Taupe (5.60:1) — für Texte <18pt */
  --hw-green-light:  #e8f5ee;
  --hw-taupe:        #ECECE7;
  --hw-taupe-dark:   #d8d8d1;
  --hw-black:        #1a1a1a;
  --hw-text:         #2c2c2c;
  --hw-text-muted:   #6b6b6b;
  --hw-white:        #ffffff;
  --hw-border:       #d0d0c8;
  --hw-red:          #c0392b;

  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  8px;

  --shadow-card:  0 1px 2px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.05);
  --shadow-lift:  0 3px 10px rgba(0,0,0,0.10);

  --font-body:    system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;

  --max-width: 1260px;
  --section-pad: 56px 24px;
}

/* -----------------------------------------------------------------------------
   Reset + Base
----------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--hw-text);
  background: var(--hw-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--hw-green-text); text-decoration: none; }  /* WCAG-konform: #036B37 auf weiß */
a:hover { text-decoration: underline; }

/* (Production: kein Proto-Switcher — Views via PHP is_user_logged_in() gerendert) */

/* -----------------------------------------------------------------------------
   HEADER (nachgebaut — identisch auf beiden Varianten)
----------------------------------------------------------------------------- */
.site-header {
  background: var(--hw-black);
  color: var(--hw-white);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.header-top-bar {
  background: #111;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #ccc;
  border-bottom: 1px solid #2a2a2a;
}
.header-top-bar a { color: #ccc; }
.header-top-bar a:hover { color: var(--hw-green); text-decoration: none; }

.header-contacts { display: flex; gap: 20px; align-items: center; }
.header-contacts a { display: flex; align-items: center; gap: 6px; }

.header-main {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.site-logo span {
  font-size: 9px;
  font-family: var(--font-body);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #999;
  margin-top: 4px;
  font-weight: 600;
  line-height: 1.2;
}

/* Mega-Nav */
.mega-nav {
  display: flex;
  gap: 2px;
  flex-grow: 1;
  justify-content: center;
}
.mega-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 18px;
  color: #ddd;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: transparent;
}
.mega-nav-item:hover, .mega-nav-item:focus {
  background: rgba(255,255,255,0.08);
  color: var(--hw-white);
  text-decoration: none;
}
.mega-nav-item svg { width: 22px; height: 22px; opacity: 0.8; }

/* Header right (cart/account) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-actions a {
  color: #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.header-actions a:hover { color: var(--hw-green); text-decoration: none; }
.header-actions svg { width: 20px; height: 20px; }

.cart-badge {
  position: relative;
  display: inline-block;
}
.cart-badge-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--hw-green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Burger */
.burger-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

/* -----------------------------------------------------------------------------
   GRÜNER SECTION-DIVIDER-STRIPE (Print-Magazine-DNA)
----------------------------------------------------------------------------- */
.section-stripe {
  height: 1px;
  background: var(--hw-green);
  width: 100%;
}

.section-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hw-green-text);  /* WCAG-konform: #036B37 auf weiß/taupe */
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hw-border);
}

/* -----------------------------------------------------------------------------
   Generic Image Placeholder (statt placehold.co)
   In Produktion ersetzt durch echte WC-Produkt-Thumbnails.
----------------------------------------------------------------------------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--hw-taupe-dark);
  position: relative;
  display: block;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8a8a0' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
  opacity: 0.6;
}

/* =============================================================================
   VARIANTE A — EINGELOGGT
============================================================================= */

/* A.1 Personal Hero */
.personal-hero {
  background: var(--hw-black);
  color: var(--hw-white);
  padding: 0;
  border-bottom: 1px solid var(--hw-green);
  position: relative;
}

.personal-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-greeting {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-greeting-sub {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.hero-greeting-name {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  font-family: var(--font-display);
}

.tour-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(4, 155, 78, 0.15);
  border: 1px solid rgba(4, 155, 78, 0.4);
  border-left: 4px solid var(--hw-green);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: 4px;
}
.tour-banner svg { width: 20px; height: 20px; color: var(--hw-green); flex-shrink: 0; }
.tour-banner-text { flex: 1; }
.tour-banner-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
.tour-banner-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.tour-banner-cta {
  font-size: 11px;
  font-weight: 700;
  background: var(--hw-green);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.15s;
}
.tour-banner-cta:hover { background: var(--hw-green-dark); text-decoration: none; }

.hero-rep-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  min-width: 200px;
}
.hero-rep-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
}
.hero-rep-avatar svg { width: 22px; height: 22px; }
.hero-rep-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
  font-weight: 600;
}
.hero-rep-name { font-size: 14px; font-weight: 600; color: #fff; }
.hero-rep-tel {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  font-weight: 400;
  display: inline-block;
}
.hero-rep-tel:hover { color: #fff; text-decoration: underline; }

/* A.2 Quick-Order-Bar */
.quick-order-section {
  background: var(--hw-taupe);
  padding: 28px 24px;
  border-bottom: 1px solid var(--hw-border);
}

.quick-order-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.quick-order-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.quick-order-headline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hw-text-muted);
  margin-right: 4px;
  white-space: nowrap;
  align-self: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
/* Buttons mit !important — Storefront/HW-Plugin sonst override */
.btn.btn-primary,
a.btn.btn-primary,
button.btn.btn-primary,
.btn-primary {
  background: var(--hw-green) !important;
  color: #fff !important;
  border: 1px solid var(--hw-green) !important;
  text-decoration: none !important;
}
.btn.btn-primary:hover,
a.btn.btn-primary:hover,
.btn-primary:hover {
  background: var(--hw-green-dark) !important;
  border-color: var(--hw-green-dark) !important;
  color: #fff !important;
  text-decoration: none !important;
}

.btn.btn-secondary,
a.btn.btn-secondary,
button.btn.btn-secondary,
.btn-secondary {
  background: var(--hw-black) !important;
  color: #fff !important;
  border: 1px solid var(--hw-black) !important;
  text-decoration: none !important;
}
.btn.btn-secondary:hover,
a.btn.btn-secondary:hover,
.btn-secondary:hover {
  background: #333 !important;
  border-color: #333 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.btn.btn-outline,
a.btn.btn-outline,
.btn-outline {
  background: transparent !important;
  color: var(--hw-green-text) !important;
  border: 1.5px solid var(--hw-green-text) !important;
  text-decoration: none !important;
}
.btn.btn-outline:hover,
.btn-outline:hover {
  background: var(--hw-green) !important;
  color: #fff !important;
  border-color: var(--hw-green) !important;
  text-decoration: none !important;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Favorite Items Scroller */
.fav-items-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--hw-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.fav-items-scroller {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--hw-green) var(--hw-taupe-dark);
}
.fav-items-scroller::-webkit-scrollbar { height: 4px; }
.fav-items-scroller::-webkit-scrollbar-thumb { background: var(--hw-green); border-radius: 2px; }

.fav-item-card {
  flex-shrink: 0;
  width: 160px;
  background: var(--hw-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--hw-border);
}
.fav-item-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.12); }

.fav-item-img {
  height: 90px;
  background: var(--hw-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fav-item-img img { width: 100%; height: 100%; object-fit: cover; }

.fav-item-body { padding: 10px 10px 12px; }
.fav-item-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--hw-text);
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fav-item-unit {
  font-size: 10px;
  color: var(--hw-text-muted);
  margin-bottom: 8px;
}
.fav-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--hw-green-text);  /* #036B37: WCAG AA auf weiß */
  font-family: var(--font-display);
}

/* Mengen-Stepper */
.qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--hw-taupe);
  color: var(--hw-text);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.1s;
  line-height: 1;
}
.qty-btn:hover { background: var(--hw-green); color: #fff; }
.qty-input {
  flex: 1;
  border: none;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  width: 36px;
  padding: 0;
  background: #fff;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.add-to-cart-btn {
  width: 100%;
  margin-top: 6px;
  padding: 6px 0;
  background: var(--hw-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 0.15s;
}
.add-to-cart-btn:hover { background: var(--hw-green-dark); }
.add-to-cart-btn svg { width: 12px; height: 12px; }

/* A.3 Aktionen Cards */
.aktionen-section {
  background: var(--hw-white);
  padding: var(--section-pad);
}

/* Skeleton (während Aktionen via REST API geladen werden) */
.aktion-skeleton {
  grid-column: 1 / -1;
  padding: 32px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--hw-text-muted);
  background: var(--hw-taupe);
  border: 1px dashed var(--hw-border);
  border-radius: var(--radius-sm);
}
.aktion-skeleton a { color: var(--hw-green-text); font-weight: 700; }

.aktionen-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--hw-text);
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.section-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--hw-green-text);
  white-space: nowrap;
}

.aktionen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.aktion-card {
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-top: 2px solid var(--hw-green);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.aktion-card:hover {
  box-shadow: var(--shadow-lift);
}

/* Header dezent: weißer BG, grüner Titel + neutrale Badge */
.aktion-card-header {
  background: var(--hw-white);
  padding: 10px 14px 6px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--hw-border);
}
.aktion-card-header-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--hw-green-text);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.aktion-card-header-badge {
  font-size: 11px;
  color: var(--hw-text-muted);
  font-weight: 500;
}

.aktion-card-cover {
  height: 150px;
  overflow: hidden;
  background: var(--hw-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.aktion-card-cover img { width: 100%; height: 100%; object-fit: cover; }

.aktion-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.aktion-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--hw-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.aktion-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; flex: 1; }
.aktion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  background: var(--hw-taupe);
  border-radius: var(--radius-sm);
  font-size: 12px;
}
.aktion-item-name { color: var(--hw-text); font-weight: 600; flex: 1; }
.aktion-item-price {
  color: var(--hw-green-text);  /* #036B37: WCAG AA auf Taupe */
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 14px;
  white-space: nowrap;
}

/* A.4 Sortimentswelten */
.sortiment-section {
  background: var(--hw-taupe);
  padding: var(--section-pad);
  border-top: 1px solid var(--hw-border);
  border-bottom: 1px solid var(--hw-border);
}

.sortiment-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.sortiment-tile {
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-sm);
  padding: 32px 20px 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sortiment-tile:hover {
  border-color: var(--hw-green);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
  color: inherit;
}
.sortiment-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--hw-green-text);
  margin-bottom: 4px;
}
.sortiment-tile-icon svg { width: 36px; height: 36px; }
.sortiment-tile-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--hw-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.sortiment-tile-sub {
  font-size: 12px;
  color: var(--hw-text-muted);
  line-height: 1.5;
}
.sortiment-tile-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--hw-green-text);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* A.5 Service Strip */
.service-strip {
  background: var(--hw-black);
  padding: 24px;
  color: var(--hw-white);
}
.service-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none;
  color: inherit;
}
.service-item:hover {
  background: rgba(4,155,78,0.15);
  border-color: rgba(4,155,78,0.4);
  text-decoration: none;
  color: inherit;
}
.service-item svg { width: 24px; height: 24px; color: #6be39e; flex-shrink: 0; }  /* auf #000 bg: helles Grün für Kontrast */
.service-item-title { font-size: 13px; font-weight: 700; color: #fff; }
.service-item-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 1px; }


/* =============================================================================
   VARIANTE B — GAST / NICHT EINGELOGGT
============================================================================= */

/* B.1 Fullbleed Hero — ruhiger Dunkelton, dezenter Texture */
.guest-hero {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

/* Dezenter Grain für Tiefe */
.guest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

/* Frischegrün-Akzent-Band oben (1px) */
.guest-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hw-green);
}

.guest-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.guest-hero-kicker {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.guest-hero-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--hw-green);
}

.guest-hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.guest-hero-title .hl {
  color: var(--hw-green);
  display: inline-block;
  border-bottom: 2px solid var(--hw-green);
  padding-bottom: 2px;
}

.guest-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}

.guest-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Login-Box */
.guest-login-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
}
.login-box-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.login-box-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.login-form-group {
  margin-bottom: 14px;
}
.login-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.login-form-group input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s;
}
.login-form-group input:focus { border-color: var(--hw-green); }
.login-form-group input::placeholder { color: rgba(255,255,255,0.3); }
.login-submit {
  width: 100%;
  padding: 12px;
  background: var(--hw-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 12px;
}
.login-submit:hover { background: var(--hw-green-dark); }
.login-footer-links {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.login-footer-links a {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.login-footer-links a:hover { color: var(--hw-green); }

/* B.2 USP-Tiles */
.usp-section {
  background: var(--hw-green);
  padding: 48px 24px;
}
.usp-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp-tile {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 28px 26px;
  color: #fff;
}
.usp-tile-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: #fff;
  opacity: 0.95;
}
.usp-tile-icon svg { width: 36px; height: 36px; }
.usp-tile-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.usp-tile-text { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.65; }

/* B.3 Sortimentswelten Guest (mit Login-Wall-Hint) */
.guest-sortiment-section {
  background: var(--hw-taupe);
  padding: var(--section-pad);
}
.guest-sortiment-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.guest-sortiment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.guest-sortiment-tile {
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-md);
  padding: 28px 20px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.guest-sortiment-tile:hover .price-hint {
  opacity: 1;
  transform: translateY(0);
}
.price-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--hw-black);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}
.price-hint a { color: var(--hw-green); }

/* B.4 Aktionsteaser ohne Preis */
.guest-aktionen-section {
  background: var(--hw-white);
  padding: var(--section-pad);
}
.guest-aktionen-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.guest-aktionen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.guest-aktion-card {
  border: 1px solid var(--hw-border);
  border-top: 2px solid var(--hw-green);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--hw-white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.guest-aktion-card:hover {
  box-shadow: var(--shadow-lift);
}
.guest-aktion-card-header {
  background: var(--hw-white);
  padding: 10px 14px 6px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--hw-border);
}
.guest-aktion-card-header span:first-child {
  font-size: 10px;
  font-weight: 700;
  color: var(--hw-green-text);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.guest-aktion-card-header span:last-child {
  font-size: 11px;
  font-weight: 500;
  color: var(--hw-text-muted) !important;
  letter-spacing: 0;
  text-transform: none;
}
.guest-aktion-cover {
  height: 160px;
  background: var(--hw-taupe);
  overflow: hidden;
  position: relative;
}
.guest-aktion-cover img { width: 100%; height: 100%; object-fit: cover; }
.guest-aktion-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.guest-aktion-card:hover .guest-aktion-overlay { opacity: 1; }
.guest-aktion-body { padding: 16px; flex: 1; }
.guest-aktion-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--hw-text);
  margin-bottom: 8px;
}
.guest-aktion-note {
  font-size: 12px;
  color: var(--hw-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.guest-aktion-note svg { width: 14px; height: 14px; color: var(--hw-green-text); }

/* B.5 Vertrauens-Footer */
.trust-section {
  background: var(--hw-taupe);
  padding: 48px 24px;
  border-top: 1px solid var(--hw-border);
}
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.trust-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0;
}
.trust-logo-box {
  width: 120px;
  height: 52px;
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--hw-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

/* Bayern SVG Karte */
.liefergebiet-box {
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.liefergebiet-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hw-text-muted);
  margin-bottom: 12px;
}

.zertifikate-box {
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.zertifikate-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.zert-badge {
  padding: 8px 14px;
  background: var(--hw-taupe);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--hw-text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.zert-badge svg { width: 16px; height: 16px; color: var(--hw-green-text); }

/* =============================================================================
   FOOTER (gemeinsam)
============================================================================= */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 32px 24px;
  font-size: 12px;
  text-align: center;
  border-top: 4px solid var(--hw-green);
}
.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.site-footer { border-top-width: 1px; }
.footer-meta { line-height: 1.8; }
.footer-links { text-align: right; }
.footer-links a { color: rgba(255,255,255,0.4); margin-left: 16px; }
.footer-links a:hover { color: var(--hw-green); }

/* =============================================================================
   RESPONSIVE — Mobile First
============================================================================= */
@media (max-width: 1024px) {
  .sortiment-grid,
  .guest-sortiment-grid { grid-template-columns: repeat(2, 1fr); }
  .aktionen-grid,
  .guest-aktionen-grid { grid-template-columns: repeat(2, 1fr); }
  .service-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .guest-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .guest-hero-title { font-size: 36px; }
  .trust-bottom { grid-template-columns: 1fr; }
  .site-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { text-align: center; }
  .footer-links a { margin: 0 8px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 36px 16px; }

  /* Header mobile */
  .header-top-bar { display: none; }
  .mega-nav { display: none; }
  .burger-btn { display: block; }
  .site-logo { font-size: 22px; }
  .header-main { padding: 12px 16px; }
  .header-actions { gap: 8px; }

  /* Hero mobile */
  .personal-hero-inner {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }
  .hero-rep-card { display: none; }
  .hero-greeting-name { font-size: 20px; }
  .tour-banner { flex-wrap: wrap; }
  .tour-banner-cta { width: 100%; text-align: center; margin-top: 8px; }

  /* Quick-order mobile */
  .quick-order-section { padding: 20px 16px; }
  .quick-order-ctas { flex-direction: column; }
  .quick-order-ctas .btn { width: 100%; justify-content: center; }
  .quick-order-headline { text-align: center; }

  /* Cards mobile */
  .aktionen-grid,
  .guest-aktionen-grid { grid-template-columns: 1fr; }
  .sortiment-grid,
  .guest-sortiment-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-inner { grid-template-columns: 1fr; }
  .service-strip-inner { grid-template-columns: 1fr; }

  /* Guest hero mobile */
  .guest-hero-inner { padding: 48px 16px; }
  .guest-hero-title { font-size: 28px; }
  .guest-hero-sub { font-size: 15px; }
  .guest-login-box { padding: 24px 18px; }
  .guest-hero-ctas { flex-direction: column; }
  .guest-hero-ctas .btn { width: 100%; justify-content: center; }

  /* Trust section mobile */
  .trust-logos { justify-content: flex-start; }
  .trust-logo-box { width: 100px; height: 44px; }

  /* Toggle */
  .proto-toggle-bar { right: 0; left: 0; top: auto; bottom: 0; border-radius: 0; justify-content: center; border-bottom-left-radius: 0; }
}

/* Fave items scroller bleibt immer scrollend */
.fav-items-scroller {
  -webkit-overflow-scrolling: touch;
}

/* Reduced motion: keine Animationen */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* =============================================================================
   VARIANTE C — MEIN KONTO DASHBOARD
============================================================================= */

/* Title-Bar */
.account-titlebar {
  background: var(--hw-taupe);
  border-bottom: 1px solid var(--hw-border);
  padding: 16px 24px;
}
.account-titlebar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.account-breadcrumb {
  font-size: 12px;
  color: var(--hw-text-muted);
}
.account-breadcrumb a { color: var(--hw-text-muted); }
.account-breadcrumb a:hover { color: var(--hw-green-text); }
.account-breadcrumb .sep { margin: 0 6px; opacity: 0.5; }
.account-customer-meta {
  font-size: 13px;
  color: var(--hw-text);
}
.account-customer-meta strong {
  color: var(--hw-text);
  font-weight: 700;
}

/* Layout: Sidebar + Main */
.account-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 32px 24px 56px;
}

/* Sidebar */
.account-sidebar {
  position: sticky;
  top: 16px;
  align-self: start;
}
.account-nav {
  display: flex;
  flex-direction: column;
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.account-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hw-text);
  border-bottom: 1px solid var(--hw-border);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  position: relative;
}
.account-nav-item:last-child { border-bottom: none; }
.account-nav-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--hw-text-muted);
}
.account-nav-item:hover {
  background: var(--hw-taupe);
  text-decoration: none;
  color: var(--hw-text);
}
.account-nav-item.active {
  background: var(--hw-taupe);
  color: var(--hw-green-text);
  border-left: 3px solid var(--hw-green);
  padding-left: 13px;
}
.account-nav-item.active svg { color: var(--hw-green-text); }
.account-nav-badge {
  margin-left: auto;
  background: var(--hw-text-muted);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.account-nav-item.active .account-nav-badge {
  background: var(--hw-green);
}
.account-nav-item--logout {
  color: var(--hw-text-muted);
  background: var(--hw-taupe);
}
.account-nav-item--logout:hover { color: var(--hw-red); }
.account-nav-item--logout:hover svg { color: var(--hw-red); }

/* Main */
.account-main {
  min-width: 0;
}
.account-page-header {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hw-border);
}
.account-page-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--hw-text);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.account-page-sub {
  font-size: 14px;
  color: var(--hw-text-muted);
  line-height: 1.5;
}

/* Block 1: Tour + Rep — 2col Grid */
.account-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.account-card {
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.account-card-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hw-text-muted);
  margin-bottom: 10px;
}
.account-card--tour {
  border-left: 3px solid var(--hw-green);
}
.account-tour-date {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--hw-text);
  margin-bottom: 4px;
}
.account-tour-meta {
  font-size: 13px;
  color: var(--hw-text-muted);
}
.account-rep-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.account-rep-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--hw-taupe);
  border: 1px solid var(--hw-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hw-text-muted);
  flex-shrink: 0;
}
.account-rep-avatar svg { width: 22px; height: 22px; }
.account-rep-info { flex: 1; min-width: 0; }
.account-rep-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--hw-text);
  margin-bottom: 2px;
}
.account-rep-tel,
.account-rep-mail {
  display: block;
  font-size: 12px;
  color: var(--hw-green-text);
  font-weight: 600;
  line-height: 1.5;
}

/* Block 2: Quick-Order-Actions */
.account-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.account-action-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--hw-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.account-action-tile:hover {
  border-color: var(--hw-green);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
  color: var(--hw-text);
}
.account-action-tile > svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--hw-green-text);
}
.account-action-tile > div { flex: 1; min-width: 0; }
.account-action-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--hw-text);
  margin-bottom: 2px;
}
.account-action-sub {
  font-size: 12px;
  color: var(--hw-text-muted);
}
.account-action-arrow {
  font-size: 22px;
  color: var(--hw-green-text);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.account-action-tile:hover .account-action-arrow { transform: translateX(3px); }

/* Sections */
.account-section {
  margin-top: 32px;
}
.account-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.account-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--hw-text);
  letter-spacing: -0.2px;
}
.account-section-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--hw-green-text);
  white-space: nowrap;
}

/* Orders Table */
.account-orders-table {
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.account-orders-row {
  display: grid;
  grid-template-columns: 110px 100px 110px 80px 1fr 110px;
  gap: 14px;
  padding: 12px 18px;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid var(--hw-border);
}
.account-orders-row:last-child { border-bottom: none; }
.account-orders-row--head {
  background: var(--hw-taupe);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hw-text-muted);
  padding: 10px 18px;
}
.account-orders-row a { color: var(--hw-green-text); font-weight: 600; }
.account-orders-row a:hover { text-decoration: underline; }

.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.status-pill--delivered {
  background: var(--hw-green-light);
  color: var(--hw-green-text);
}
.status-pill--processing {
  background: #fff4e0;
  color: #946100;
}
.status-pill--pending {
  background: #f0f0f0;
  color: var(--hw-text-muted);
}
.account-link-small {
  font-size: 12px;
  font-weight: 700;
  color: var(--hw-green-text);
}

/* Aktionen kompakt */
.account-aktionen-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.account-aktion-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-top: 2px solid var(--hw-green);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--hw-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.account-aktion-mini:hover {
  box-shadow: var(--shadow-lift);
  text-decoration: none;
  color: var(--hw-text);
}
.account-aktion-mini-kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hw-green-text);
}
.account-aktion-mini-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--hw-text);
  margin: 2px 0 10px;
}
.account-aktion-mini-cta {
  font-size: 11px;
  font-weight: 700;
  color: var(--hw-green-text);
  letter-spacing: 0.3px;
}

/* Service-Grid */
.account-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.account-service-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background: var(--hw-white);
  border: 1px solid var(--hw-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--hw-text);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.15s, color 0.15s;
}
.account-service-link svg {
  width: 22px;
  height: 22px;
  color: var(--hw-text-muted);
  transition: color 0.15s;
}
.account-service-link:hover {
  border-color: var(--hw-green);
  color: var(--hw-green-text);
  text-decoration: none;
}
.account-service-link:hover svg { color: var(--hw-green-text); }

/* Mein-Konto Responsive */
@media (max-width: 900px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px 40px;
  }
  .account-sidebar { position: static; }
  .account-nav { flex-direction: row; overflow-x: auto; border-radius: 0; border-left: none; border-right: none; }
  .account-nav-item {
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid var(--hw-border);
    padding: 10px 14px;
    font-size: 12px;
    white-space: nowrap;
  }
  .account-nav-item.active { border-left: none; border-bottom: 3px solid var(--hw-green); padding-left: 14px; }
  .account-nav-item--logout { display: none; }
  .account-grid-2col,
  .account-quick-actions { grid-template-columns: 1fr; }
  .account-aktionen-strip { grid-template-columns: 1fr; }
  .account-service-grid { grid-template-columns: repeat(2, 1fr); }
  .account-orders-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 14px;
  }
  .account-orders-row > span:nth-child(3),
  .account-orders-row > span:nth-child(4) { display: none; }
  .account-orders-row--head { display: none; }
  .account-page-title { font-size: 22px; }
  .account-titlebar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* =============================================================================
   Mobile-Drawer (Burger Off-Canvas)
============================================================================= */
#hawa-mobile-drawer { position: fixed; inset: 0; z-index: 9998; pointer-events: none; }
#hawa-mobile-drawer.open { pointer-events: auto; }
#hawa-mobile-drawer .hawa-drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); opacity: 0;
  transition: opacity 0.22s ease;
}
#hawa-mobile-drawer.open .hawa-drawer-overlay { opacity: 1; }
#hawa-mobile-drawer .hawa-drawer-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 280px; max-width: 88vw;
  background: #1a1a1a; color: #fff;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  padding: 24px 18px 32px;
  box-shadow: 6px 0 24px rgba(0,0,0,0.25);
  display: flex; flex-direction: column;
}
#hawa-mobile-drawer.open .hawa-drawer-panel { transform: translateX(0); }
#hawa-mobile-drawer .hawa-drawer-close {
  align-self: flex-end;
  background: none; border: none; color: #fff;
  cursor: pointer; padding: 4px; margin-bottom: 12px;
}
#hawa-mobile-drawer .hawa-drawer-nav { display: flex; flex-direction: column; gap: 2px; }
#hawa-mobile-drawer .hawa-drawer-nav a {
  display: block; padding: 12px 8px;
  color: #ddd !important; font-size: 14px;
  text-decoration: none !important;
  border-radius: 4px;
  transition: background 0.12s, color 0.12s;
}
#hawa-mobile-drawer .hawa-drawer-nav a:hover { background: rgba(255,255,255,0.08); color: #fff !important; }
#hawa-mobile-drawer .hawa-drawer-nav hr { border: none; border-top: 1px solid #333; margin: 8px 0; }

/* =============================================================================
   WC My-Account Wrap (Hans-Wagner-Account-Layout)
============================================================================= */
.hawa-account-wrap { font-family: var(--font-body); color: var(--hw-text); }
.hawa-account-wrap .account-titlebar { margin: 0 -24px 24px; padding: 14px 24px; background: var(--hw-taupe); border-bottom: 1px solid var(--hw-border); }
.hawa-account-wrap .account-titlebar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.hawa-account-wrap .account-breadcrumb { font-size: 12px; color: var(--hw-text-muted); }
.hawa-account-wrap .account-breadcrumb .sep { margin: 0 6px; opacity: 0.5; }
.hawa-account-wrap .account-breadcrumb a { color: var(--hw-text-muted); }
.hawa-account-wrap .account-customer-meta { font-size: 13px; color: var(--hw-text); }
