html,
body{
  margin: 0;
  padding: 0;
  min-height: 0;
}

html{
  overflow-x: hidden;
}

body{
  min-height: 100%;
  overflow-x: hidden;
  display: block;
}

.page-wrap{
  min-height: 0;
  display: block;
  padding-top: 60px;
}

.page-wrap > main{
  min-height: 0;
  display: block;
}

/* ===== Warenkorb Gesamtpreis (Premium) ===== */
/* ===== Warenkorb Gesamtpreis – Premium Minimal ===== */
.cart-total-card{
  margin-top: 18px;
  padding: 16px 16px 14px;
  border-radius: 18px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,249,251,0.96));
  border: 1px solid rgba(0,0,0,0.07);

  box-shadow:
    0 10px 24px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.55);

  position: relative;
  overflow: hidden;
}

.cart-total-card::before{
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(320px 140px at 12% 0%, rgba(255,122,24,0.16), transparent 60%),
    radial-gradient(260px 120px at 95% 100%, rgba(255,179,71,0.10), transparent 60%);
  pointer-events: none;
}

.cart-total-top{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-total-label{
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: rgba(0,0,0,0.68);
  text-transform: uppercase;
}

.cart-total-price{
  font-size: 1.28rem;
  font-weight: 950;
  letter-spacing: 0.2px;
  color: #111;
  font-variant-numeric: tabular-nums;
}

.cart-total-value{
  font-variant-numeric: tabular-nums;
}

.cart-total-sub{
  position: relative;
  margin-top: 8px;
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(0,0,0,0.56);
}

/* =========================
   DIVIDER – CLEAN & THIN
========================= */

.cart-divider,
.my-list-divider{
  display: block;
  width: 100%;
  height: 1px;
  margin: 10px 0;
  border-radius: 999px;
  opacity: 0.9;
  position: relative;
  overflow: hidden;
}

/* leichter Schimmer */
.cart-divider::after,
.my-list-divider::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.35) 50%,
    transparent 100%
  );
  transform: translateX(-130%);
  animation: dividerShine 1.8s ease infinite;
  opacity: 0.22;
  pointer-events: none;
}

@keyframes dividerShine{
  0%   { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

/* Farben */
.cart-divider[data-rarity="common"],
.my-list-divider[data-rarity="common"]{
  background: rgba(160,160,160,0.35);
}

.cart-divider[data-rarity="rare"],
.my-list-divider[data-rarity="rare"]{
  background: rgba(59,130,246,0.45);
}

.cart-divider[data-rarity="ultra"],
.my-list-divider[data-rarity="ultra"]{
  background: rgba(139,92,246,0.45);
}

.cart-divider[data-rarity="legendary"],
.my-list-divider[data-rarity="legendary"]{
  background: rgba(245,158,11,0.55);
  box-shadow: 0 0 4px rgba(250,204,21,0.18);
}

.cart-divider[data-rarity="platin"],
.my-list-divider[data-rarity="platin"],
.cart-divider[data-rarity="platinum"],
.my-list-divider[data-rarity="platinum"]{
  background: rgba(148,163,184,0.5);
  box-shadow: 0 0 4px rgba(226,232,240,0.16);
}

/* keine Standardlinie mehr an den Items */
.my-list-overlay .overlay-item,
.warenkorb-overlay2 .overlay-item{
  border-bottom: none !important;
}

/* =========================
   PREMIUM OVERLAY TYPO + Layout (Name links, Preis rechts)
========================= */

.my-list-overlay .overlay-info,
.warenkorb-overlay2 .overlay-info {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
}

/* Titel */
.overlay-title {
  grid-column: 1 / 2;
  font-weight: 850;
  letter-spacing: 0.2px;
  line-height: 1.15;
}

/* Preis als Chip rechts */
.overlay-price {
  grid-column: 2 / 3;
  justify-self: end;
  font-weight: 850;
  font-size: 0.82rem;
  opacity: 0.98;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  white-space: nowrap;
}

/* Subline (z.B. qty × preis) */
.overlay-sub {
  grid-column: 1 / 3;
  font-size: 0.75rem;
  color: #666;
}

/* Accent-Leiste links am Item */
.overlay-item {
  position: relative;
}

/* Overlay Bildgröße fix */
.overlay-item img{
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.overlay-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  opacity: 0.95;
}

/* =========================
   RARITY ACCENTS (Name/Preis + Leiste)
========================= */

.overlay-item[data-rarity="common"] .overlay-title { color: #2f2f2f; }
.overlay-item[data-rarity="common"] .overlay-price { background: rgba(0,0,0,0.06); color: #2f2f2f; }
.overlay-item[data-rarity="common"]::before { background: linear-gradient(180deg, #cfcfcf, #f1f1f1); }

.overlay-item[data-rarity="rare"] .overlay-title { color: #1d4ed8; }
.overlay-item[data-rarity="rare"] .overlay-price { background: rgba(59,130,246,0.14); color: #1d4ed8; }
.overlay-item[data-rarity="rare"]::before { background: linear-gradient(180deg, #3b82f6, #93c5fd); }

.overlay-item[data-rarity="ultra"] .overlay-title { color: #6d28d9; }
.overlay-item[data-rarity="ultra"] .overlay-price { background: rgba(168,85,247,0.16); color: #6d28d9; }
.overlay-item[data-rarity="ultra"]::before { background: linear-gradient(180deg, #8b5cf6, #e9d5ff); }

.overlay-item[data-rarity="legendary"] .overlay-title { color: #b45309; }
.overlay-item[data-rarity="legendary"] .overlay-price { background: rgba(250,204,21,0.18); color: #b45309; }
.overlay-item[data-rarity="legendary"]::before {
  background: linear-gradient(180deg, #facc15, #fff3b0);
  box-shadow: 0 0 10px rgba(250,204,21,0.55);
}

/* Overlay Accent – PLATIN */
.overlay-item[data-rarity="platin"] .overlay-title{
  color: #0f172a;
}

.overlay-item[data-rarity="platin"] .overlay-price{
  background: rgba(148,163,184,0.22);
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.10);
}

.overlay-item[data-rarity="platin"]::before{
  background: linear-gradient(180deg, #e2e8f0, #94a3b8);
  box-shadow: 0 0 12px rgba(226,232,240,0.55);
}

/* Premium Hover */
.overlay-item:hover .overlay-title {
  filter: brightness(1.05);
}

/* =========================
   OVERLAY HEADER FIX
========================= */

.overlay-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 18px 20px;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.overlay-title-head {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin: 0;
    padding-left: 50px;
    transform: translateY(-6.5px);
}

/* Close Button rechts oben */
/* Close Button: komplette Fläche klickbar */
.overlay-close{
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  font-size: 22px;
  line-height: 1;
  color: #888;
  cursor: pointer;

  border-radius: 12px;
  transition: transform .15s ease, color .2s ease, background .2s ease;

  position: relative;
  z-index: 60;
  pointer-events: auto;
}

.overlay-close:hover{
  background: rgba(0,0,0,0.06);
  color: crimson;
}

.overlay-close:active{
  transform: scale(0.96);
}

.remove-btn{
  all: unset;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #999;
  font-size: 16px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.remove-btn:hover{
  color: crimson;
  transform: scale(1.15);
}

/* Wenn irgendein Overlay offen ist, können wir Buttons gezielt verstecken */
body.overlay-open .menu-button,
body.overlay-open .warenkorb,
body.overlay-open .my-list {
  opacity: 0;
  pointer-events: none;
}

/* ...aber der Button des AKTUELL offenen Overlays bleibt sichtbar */
body.overlay-open.open-menu .menu-button,
body.overlay-open.open-cart .warenkorb,
body.overlay-open.open-list .my-list {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Header Badge (subtil & premium) ===== */

.warenkorb::after,
.my-list::after{
  content: attr(data-count);
  display: none;
  position: absolute;
  top: -3px;
  right: -3px;
  left: auto;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;

  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: white;

  font-size: 11px;
  line-height: 17px;
  font-weight: 700;
  text-align: center;

  box-shadow:
    0 3px 8px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.35);

  transform: none;
  z-index: 26000;
}

@media (max-width: 700px){
  .warenkorb::after,
  .my-list::after{
    top: -2px;
    right: 8px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
    padding: 0 4px;
  }
}

.warenkorb, .my-list{
  position: relative;
  z-index: 25000 !important;
}

/* nur anzeigen wenn >0 */
.warenkorb[data-count]:not([data-count="0"])::after,
.my-list[data-count]:not([data-count="0"])::after{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Warenkorb/MyList Buttons als eigener Layer */
.warenkorb, .my-list{
  z-index: 25000 !important;
}

/* =========================
   HEADER LOGO (NEU)
========================= */

.site-logo {
  position: absolute;
  left: 12px;
  top: 7px;
  height: 40px;
  width: 40px;
  object-fit: cover;

  border-radius: 50%;

  /* ⭐ Bild selbst GOLD färben */
  filter:
    grayscale(1)
    brightness(1.2)
    sepia(1)
    hue-rotate(10deg)
    saturate(6);

  /* leichter Glow */
  box-shadow:
    0 0 8px rgba(250,204,21,0.6),
    0 0 18px rgba(250,204,21,0.25);

  transition: transform 0.25s ease;
}

.site-logo:hover {
  transform: scale(1.15);
}

/* Overlays: feste Höhe + innen scrollen */
.warenkorb-overlay2,
.my-list-overlay {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Optional: nicer scrollbars (kannst du weglassen) */
.warenkorb-overlay2::-webkit-scrollbar,
.my-list-overlay::-webkit-scrollbar {
  width: 10px;
}
.warenkorb-overlay2::-webkit-scrollbar-thumb,
.my-list-overlay::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

/* =========================
   OVERLAY DIVIDER FIX
========================= */

/* Header: oben, volle Breite, kein margin-left */


/* Der Scroll-Bereich innerhalb des Overlays */
.overlay-scroll{
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 20px 20px;  /* Content-Padding hierhin verschoben */
}

/* Divider sicher sichtbar */

/* verhindert, dass der Browser beim DOM-Update “ankert” */
.overlay-scroll{
  overflow-anchor: none;
}

/* Merkliste breiter (Desktop) */
.my-list-overlay{
  width: 280px !important;   /* z.B. 330–380 */
  max-width: 92vw;           /* damit es auf Mobile nicht sprengt */
}

/* Optional: auf größeren Screens noch etwas breiter */
@media (min-width: 900px){
  .my-list-overlay{ width: 360px !important; }
}

/* Header rechts: Button + Close nebeneinander */
.overlay-header-actions{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Button-Style */
.list-addall{
  height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  border: none;
  font-weight: 900;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  transition: transform .12s ease, box-shadow .18s ease, opacity .18s ease;
}

.list-addall:hover{
  transform: translateY(-1px);
}

.list-addall:active{
  transform: scale(0.98);
}

.list-addall:disabled{
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.list-footer{
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-bottom: 12px;
    display: flex;
  justify-content: flex-end;
}

/* Buttons unten im Overlay – shared layout */
.overlay-actions{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

/* Wenn nur ein Button (Warenkorb) -> volle Breite */
.overlay-actions-single .overlay-action-btn{
  flex: 1;
}

/* Wenn zwei Buttons (Merkliste) -> nebeneinander */
.overlay-actions .overlay-action-btn{
  flex: 1;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  font-weight: 900;
  cursor: pointer;
  padding: 0 12px;
  transition: transform .12s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  white-space: nowrap;
}

.overlay-actions .overlay-action-btn:hover:not(:disabled){
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.14);
}

.overlay-actions .overlay-action-btn:active:not(:disabled){
  transform: translateY(1px);
}

/* Primary (wie dein Add-to-cart Stil) */
.overlay-action-btn.primary{
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
}

/* Danger (gleicher Style, andere Farbe) */
.overlay-action-btn.danger{
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #e53935, #ff6b6b);
}

/* Disabled */
.overlay-actions .overlay-action-btn:disabled{
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Warenkorb: Button rechts ausrichten */
.overlay-actions-right{
  justify-content: flex-end;
}

/* Warenkorb: Button nur halbe Breite */
.overlay-actions{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.overlay-actions .overlay-action-btn{
  flex: 1 1 0;
  min-width: 0;        /* extrem wichtig */
}

.overlay-action-btn{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 520px){
  .overlay-actions-half .overlay-action-btn{
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* =========================
   GLOBAL HEADER / MENU / OVERLAYS
   (aus produkte.html style-block)
========================= */

/* optional: wenn du main-wrapper nutzt */
.main-wrapper{
  overflow-x: hidden;
}

@font-face{
  font-family: 'myfont';
  src: url('my#font.ttf') format('truetype');
}

.setsticky{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,249,251,0.95) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  height: 60px;
  z-index: 50;
  overflow: visible;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 22px rgba(0,0,0,0.04);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.28s ease, opacity 0.28s ease;
  will-change: transform, opacity;
}

.setsticky.hidden{
  transform: translateY(-100%);
  opacity: 0;
}

/* Header-Trennlinie (nur im Header!) */
.setsticky hr{
  position: absolute;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.line{
  position: absolute;
  left: 62px;
  top: 8.6px;
  height: 2.6em;
  width: 1px;
  background-color: black;
}

.name{
  position: relative;
  width: calc(100% - 85vw);
}

.name .container{
  position: absolute;
  width: 100%;
  text-align: left;
  left: 67px;
  top: 11.1px;
  font-weight: bold;
  font-family: 'myfont'; /* FIX: war my#font */
}

/* Center Slogan */
.ausruf{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.4px;
  white-space: nowrap;
  font-size: clamp(1.35rem, 1.15rem + 0.7vw, 1.9rem);
  line-height: 1;
  color: #d97706;

  background-image: linear-gradient(45deg, #ff7a18, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(255,165,0,0.12);
}

.ausruf span{ display: inline; }

@media (max-width: 850px){
  .ausruf{ display:none; }
}

/* Header Buttons */
.warenkorb{
  position: fixed;
  top: 12px;
  right: 130px;
  font-size: 1.4rem;
  border: none;
  background: none;
  transition: transform 0.7s ease, opacity 0.28s ease;
  z-index: 85;
}

.warenkorb.clicked{ transform: translateX(-170px); }

.warenkorb:hover{
  cursor: pointer;
  font-weight: bold;
}

.my-list{
  position: fixed;
  top: 11px;
  right: 68.5px;
  font-size: 1.5rem;
  border: none;
  background: none;
  z-index: 87;
  transition: transform 0.28s ease, opacity 0.28s ease, color 0.1s ease;
}

.my-list.clicked{ color: red; }

.my-list:hover{
  cursor: pointer;
  font-weight: bold;
}

.my-list.hidden{
  opacity: 0;
  transform: translateY(-100%);
}

/* Global overlay (dim) */
.global-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: none;
  z-index: 88;
}

/* Warenkorb overlay */
.warenkorb-overlay2{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.9s ease;
  z-index: 81;
}

.warenkorb-overlay2.visible{ transform: translateX(0); }

.warenkorb-overlay2-hidden{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: none;
  z-index: 79;
}

.warenkorb-overlay2.visible + .warenkorb-overlay2-hidden{
  display: block;
}

/* Merkliste overlay */

.my-list-overlay{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 250px;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.9s ease;
  z-index: 86;
}

.my-list-overlay.visible{ transform: translateX(0); }

.my-list-overlay-hidden{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: none;
  z-index: 79;
}

.my-list-overlay.visible + .my-list-overlay-hidden{
  display: block;
}

.my-list-overlay h3{
  display: block;
  margin-top: -10px;
  padding-top: 20px;
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: oblique;
  margin-left: -40px;
}

/* Hamburger */
.menue-link{
  position: fixed;
  top: 7.5px;
  right: 10px;
  z-index: 93;
}

.menu-button{
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.28s ease, opacity 0.28s ease, color 0.3s ease;
  color: black;
}

.menu-button:hover{
  color: crimson;
  font-weight: bold;
}

.menu-button.clicked{ transform: rotate(90deg); }

.menu{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 250px;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 91;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.menu.visible{ transform: translateX(0); }

.menu-overlay{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 90;
}

.menu.visible ~ .menu-overlay{
  display: block;
}

.menu a{
  display: block;
  position: relative;
  padding: 15px 0;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.menu a.clicked{
  color: rgb(37, 37, 37);
  font-style: italic;
}

.menu a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 0;
  height: 1px;
  background-color: black;
  transition: width 0.3s ease;
}

.menu a:hover::after{ width: 80%; }

.menu a + a{
  border-top: 1px solid #ccc;
  padding-top: 30px;
  margin-top: 20px;
}

.menu-button.hidden,
.warenkorb.hidden,
.my-list.hidden{
  opacity: 0;
  transform: translateY(-100%);
}

/* =====================================
   FINAL: Overlay-Item Layout wie Produkte
   ===================================== */

.my-list-overlay .overlay-item,
.warenkorb-overlay2 .overlay-item{
  display: grid;
  grid-template-columns: 54px 1fr auto; /* Bild | Text | Preis/X */
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

/* Thumbnail (du sagst: ist schon ok – schadet aber nicht) */
.my-list-overlay .overlay-item img,
.warenkorb-overlay2 .overlay-item img{
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
}

/* Textblock: Name links, Preis rechts, Subline darunter */
.my-list-overlay .overlay-info,
.warenkorb-overlay2 .overlay-info{
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  min-width: 0; /* wichtig gegen "Text bricht komisch" */
}

.my-list-overlay .overlay-title,
.warenkorb-overlay2 .overlay-title{
  grid-column: 1 / 2;
  font-weight: 850;
  line-height: 1.15;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.my-list-overlay .overlay-price,
.warenkorb-overlay2 .overlay-price{
  grid-column: 2 / 3;
  justify-self: end;
  font-weight: 850;
  font-size: 0.82rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  white-space: nowrap;
}

.my-list-overlay .overlay-sub,
.warenkorb-overlay2 .overlay-sub{
  grid-column: 1 / 3;
  font-size: 0.75rem;
  color: #666;
}

/* Menge/Buttons sollen nicht "nach unten kippen" */
.warenkorb-overlay2 .qty-controls{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

/* ===== Header Buttons 15px nach links (weg von der Scrollbar) ===== */

/* Hamburger-Container */
.menue-link{
  right: 25px;            /* war 10px */
}

/* MyList Button */
.my-list{
  right: 83.5px;          /* war 68.5px */
}

/* Warenkorb Button */
.warenkorb{
  right: 145px;           /* war 130px */
}

/* ===== Cart-Roll Animation: 15px weniger rollen ===== */
.warenkorb.clicked{
  transform: translateX(-155px);  /* war -170px */
}


@media (max-width: 700px){
  .menue-link{
    right: 10px;
  }

  .my-list{
    right: 52px;
  }

  .warenkorb{
    right: 94px;
  }

  .warenkorb.clicked{
    transform: translateX(-170px);
  }
}

@media (max-width: 700px){
  body.overlay-open .my-list{
    display: none !important;
  }
}

/* Warenkorb leer: "Jetzt auffüllen" Bereich */
.cart-empty-actions{
  margin-top: 14px;
  display: flex;
}

.cart-empty-actions .overlay-action-btn{
  width: 100%;
}

.cart-clearall.confirming{
  background: linear-gradient(135deg, #b91c1c, #ef4444) !important;
  box-shadow: 0 12px 24px rgba(185,28,28,0.22);
}

/* Refill-Button exakt wie Overlay-Buttons */
.cart-refill{
  height: 44px;
  border-radius: 12px;
  border: none;
  font-weight: 900;
  cursor: pointer;
  padding: 0 12px;
  transition: transform .12s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  white-space: nowrap;
  width: 100%;
}

/* Hover exakt gleich */
.cart-refill:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.14);
}

.cart-refill:active{
  transform: translateY(1px);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #f08c2e;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(240, 140, 46, 0.18);
  border-radius: 10px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
[tabindex]:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.overlay-actions-cart{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.overlay-actions-cart .overlay-action-btn{
  flex: 1 1 0;
  min-width: 0;
  height: 44px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  padding: 0 12px;
  transition: transform .12s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  white-space: nowrap;
}

.overlay-actions-cart .overlay-action-btn:hover:not(:disabled){
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.14);
}

.overlay-actions-cart .overlay-action-btn:active:not(:disabled){
  transform: translateY(1px);
}

.overlay-action-btn.ghost{
  border: none;
  color: #fff;

  background: linear-gradient(135deg, #22c55e, #16a34a);

  box-shadow: 0 10px 20px rgba(34,197,94,0.25);
}

.overlay-action-btn.ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(34,197,94,0.32);
}

.overlay-action-btn.ghost:active{
  transform: translateY(1px);
}

.toast-container{
  position: fixed;
  inset: 0;
  z-index: 40000;
  pointer-events: none;
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 40001;

  min-width: 240px;
  max-width: min(420px, calc(100vw - 40px));
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-align: center;

  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);

  opacity: 0;
  pointer-events: none;
}

.toast.show{
  animation: toastUp 1.15s ease forwards;
}

@keyframes toastUp{
  0%   { opacity: 0; transform: translateX(-50%) translateY(12px) scale(0.98); }
  12%  { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
  70%  { opacity: 1; transform: translateX(-50%) translateY(-10px) scale(1); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-38px) scale(0.98); }
}

.toast.success{
  background: linear-gradient(135deg, rgba(22,163,74,0.96), rgba(34,197,94,0.96));
}

.toast.error{
  background: linear-gradient(135deg, rgba(220,38,38,0.97), rgba(239,68,68,0.97));
}

.toast.info{
  background: linear-gradient(135deg, rgba(37,99,235,0.96), rgba(96,165,250,0.96));
}


/* =========================
   FOOTER – FINAL
========================= */

.site-footer-main{
  width: 100%;
  background: #d4d6da;
  color: #222;
  padding: 62px 34px 40px;
  box-sizing: border-box;
}

.site-footer-main-inner{
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 86px; /* mehr Abstand zwischen Panels und Spalten */
}

.footer-col{
  min-width: 0;
}

.footer-col h3{
  margin: 0 0 30px 0;
  padding-bottom: 12px;

  width: 80%; /* Linie bewusst kürzer */
  border-bottom: 1px solid rgba(0,0,0,0.20);

  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: #191919;
}

/* Kontaktblock jetzt vertikal */
.footer-contact-stack{
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Text bleibt links */
  gap: 5px;
  margin: 0 0 22px 0;
}

.footer-contact-stack{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 22px 0;
}

.footer-contact-flow{
  display: inline-grid;
  justify-items: center;
  width: max-content;
}

.footer-question{
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(0,0,0,0.72);
  line-height: 1.4;
}

.footer-inline-arrow-down{
  font-size: 0.85rem;
  line-height: 1;
  margin-top: 2px;
  color: rgba(0,0,0,0.5);
  transform: translateY(4px);
}

.footer-contact-stack a{
  color: #262626;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.footer-contact-stack a:hover{
  color: #c76d12;
}

/* Linklisten mit filigranen Pfeilen */
.footer-link-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-list li{
  margin-top: 12px;
}

.footer-link-list li:first-child{
  margin-top: 0;
}

.footer-link-list a{
  position: relative;
  display: inline-block;
  padding-left: 18px;

  color: #2b2b2b;
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1.55;

  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-list a::before{
  content: "→";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-52%);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(0,0,0,0.56);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-list a:hover{
  color: #c76d12;
  transform: translateX(2px);
}

.footer-link-list a:hover::before{
  color: #c76d12;
  transform: translateY(-52%) translateX(1px);
}

/* Vorteile / Optionen mit Haken */
.footer-checklist{
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-checklist li{
  position: relative;
  padding-left: 20px;
  margin-top: 11px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(0,0,0,0.74);
}

.footer-checklist li:first-child{
  margin-top: 0;
}

.footer-checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  font-weight: 900;
  color: #2f8f57;
}

/* Unterer Abschluss */
.site-footer-bottom{
  width: 100%;
  background: #bcc1c7;
  border-top: 1px solid rgba(0,0,0,0.18);
}

.site-footer-bottom-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px 18px;
  color: rgba(0,0,0,0.7);
  font-size: 0.88rem;
  letter-spacing: 0.2px;
  text-align: center;
}

.footer-contact-flow{
  display: inline-flex;
  flex-direction: column;
  align-items: center;   /* 🔥 DAS ist der Key */
  margin-bottom: 6px;
}

.footer-question{
  font-size: 0.95rem;
  color: rgba(0,0,0,0.72);
}

.footer-detail-link{
  display: inline-block;
  margin-top: 13px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px){
  .site-footer-main{
    padding: 56px 26px 34px;
  }

  .site-footer-main-inner{
    gap: 50px 58px;
  }

  .footer-col h3{
    width: 84%;
  }
}

/* 2 | 2 | 2 */
@media (max-width: 860px){
  .site-footer-main{
    padding: 48px 20px 28px;
  }

  .site-footer-main-inner{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
  }

  .footer-col h3{
    width: 82%;
    margin-bottom: 24px;
  }
}

/* 1 | 1 | 1 | 1 | 1 | 1 */
@media (max-width: 560px){
  .site-footer-main{
    padding: 40px 16px 24px;
  }

.site-footer-main-inner{
  grid-template-columns: 1fr;
  column-gap: 52px; /* 🔥 mehr breathing space */
}

  .footer-col{
    width: min(300px, 92%);
    margin: 0 auto;
    padding: 0 6px;
    box-sizing: border-box;
  }

  .footer-col h3{
    width: 72%;
    margin: 0 auto 20px;
    text-align: left;
  }

  .footer-col > *:not(h3){
    width: 72%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-stack{
    margin-bottom: 18px;
  }

  .site-footer-bottom-inner{
    padding: 14px 16px 16px;
    font-size: 0.84rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .contact-btn:hover,
  .contact-btn:focus,
  .contact-btn:focus-visible,
  .contact-submit:hover,
  .contact-submit:focus,
  .contact-submit:focus-visible,
  a:hover,
  a:focus,
  a:focus-visible,
  button:hover,
  button:focus,
  button:focus-visible {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    transform: none;
  }
}

@media (max-width: 700px){
  .cart-icon{
    font-family: system-ui, sans-serif;
    font-size: 1.4rem;
  }
}

@media (max-width: 1024px){
  .menu-button{
    transform: scale(1.3);
    transform-origin: center;
  }

  .menu-button.clicked{
    transform: scale(1.3) rotate(90deg);
  }
}

@media (max-width: 1024px){
  .menue-link{
    right: 10px;
  }

  .my-list{
    right: 58px;
  }

  .warenkorb{
    right: 106px;
  }
}

@media (max-width: 700px){
  .menue-link{
    top: 3.5px;
    right: 1px;
  }

  .my-list{
    right: 59px;
  }

  .warenkorb{
    right: 108px;
  }

  .warenkorb.clicked{
    transform: translateX(-170px);
  }
}

@media (max-width: 780px){
  input,
  textarea,
  select{
    font-size: 16px !important;
  }
}


/* =========================
   BRAND DISCLAIMER (FOOTER)
========================= */

.footer-disclaimer{
  width: 100%;
  text-align: center;

  padding: 14px 20px;
  box-sizing: border-box;

  background: #c9cdd3; /* leicht heller als footer-bottom */
  color: rgba(0,0,0,0.65);

  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.2px;

  border-top: 1px solid rgba(0,0,0,0.12);
}

/* Mobile etwas kompakter */
@media (max-width: 560px){
  .footer-disclaimer{
    font-size: 0.72rem;
    padding: 12px 16px;
  }
}