/* Minimal, eBay-safe CSS – mit Fixes für zentrierte Navi, schwarze Kategorien-Links,
   bullets aus, größeres Logo und zentriertes DHL-Logo. */

/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  color: #222;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

/* Layout helpers */
.container { max-width: 1140px; margin: 0 auto; padding: 0 12px; }
.container-fluid { width: 100%; padding: 0 12px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
[class*="col-"] { padding: 0 12px; }

/* Column widths */
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { width: 100%; flex: 0 0 100%; }

/* Default (mobile-first) */
.col-md-8, .col-lg-9, .col-md-4, .col-lg-3 { width: 100%; flex: 0 0 100%; }

/* ≥768px (md) */
@media (min-width: 768px) {
  .col-md-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
  .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* ≥992px (lg) */
@media (min-width: 992px) {
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Pull left / right */
@media (min-width: 992px) {
  .pull-left { order: 1; }
  .pull-right { order: 2; }
}

/* Typography & utilities */
.h3.thin, .h4.thin, .h5.thin { font-weight: 500; margin: 0.5rem 0; }
h1, h2, h3, h4, h5 { line-height: 1.2; margin: 0.5rem 0; }
p { margin: 0.5rem 0; }
hr { border: 0; border-top: 1px solid #e5e5e5; margin: 12px 0; }

.bg-white { background: #fff; }
.bg-ebaygray { background: #f7f7f7; }
.bg-ebayfooter { background: #0f2940; color: #fff; }
.bg-ebaydarkfooter { background: #0a1c2c; color: #cfd8e3; }
.bg-darkschachtblau { background: #0f2940; }

/* Header / logo / nav */
header .logo { text-align: center; padding: 12px 0 6px; }
header .logo img { max-width: 420px; width: 100%; height: auto; display: inline-block; }
@media (max-width: 480px){ header .logo img { max-width: 320px; } }

/* Basis-Navi (falls eBay CSS überschreibt, kommen unten stärkere Regeln) */
nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
nav li { margin: 0; }
nav a { display: inline-block; padding: 8px 12px; text-decoration: none; color: #0f2940; border-radius: 6px; }
nav a:hover { background: #eef2f7; }

/* Navi HART zentrieren unter dem Logo (überschreibt Fremd-CSS) */
header nav.clearfix > div { width: 100% !important; }
header nav.clearfix > div > ul{
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
}
header nav.clearfix > div > ul > li{ display:inline-block !important; margin:0; padding:0; }
header nav.clearfix > div > ul > li > a{
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: #0f2940;
}
header nav.clearfix > div > ul > li > a:hover{ background:#eef2f7; }
@media (max-width: 480px){
  header nav.clearfix > div > ul > li > a{ white-space: normal; }
}

/* Slider (falls später wieder genutzt) */
.cssSlider { position: relative; }
.cssSlider input[type="radio"] { position: absolute; left: -9999px; }
.cssSlider .sliderElements { list-style: none; margin: 0; padding: 0; }
.cssSlider .sliderElements li { display: none; }
.cssSlider .sliderElements img { width: 100%; height: auto; display: block; }
#slide01:checked ~ .sliderElements li:nth-child(1),
#slide02:checked ~ .sliderElements li:nth-child(2),
#slide03:checked ~ .sliderElements li:nth-child(3) { display: block; }

/* Tabs */
.tabs { margin-top: 16px; }
.tabs input[type="radio"] { position: absolute; left: -9999px; }
.tabs label {
  display: inline-block;
  padding: 10px 14px;
  margin-right: 6px;
  border: 1px solid #ddd;
  border-bottom: none;
  background: #f8f9fb;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  font-weight: 600;
}
.tabs #tab-content1, .tabs #tab-content2, .tabs #tab-content3, .tabs #tab-content4 {
  display: none;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 0 6px 6px 6px;
  background: #fff;
}
#tab1:checked ~ label[for="tab1"], #tab2:checked ~ label[for="tab2"],
#tab3:checked ~ label[for="tab3"], #tab4:checked ~ label[for="tab4"] {
  background: #fff; border-bottom-color: #fff;
}
#tab1:checked ~ #tab-content1,
#tab2:checked ~ #tab-content2,
#tab3:checked ~ #tab-content3,
#tab4:checked ~ #tab-content4 { display: block; }

/* Wells / side boxes */
.well { background: #fff; border: 1px solid #e5e5e5; border-radius: 8px; padding: 12px; margin-bottom: 16px; }
.well-small { padding: 10px; }
.headline { display: flex; align-items: center; gap: 8px; }
.small-list { font-size: 0.95rem; }

/* Footer */
.footer { padding: 24px 0; }
.footer-small { padding: 16px 0; }
.logo-list {
  display: flex; gap: 14px; align-items: center;
  list-style: none; padding: 0; margin: 0; flex-wrap: wrap;
}
/* Unterer Bereich: nur DHL, mittig und gut lesbar */
.footer-small .logo-list { justify-content: center; }
.footer-small .logo-list img { max-height: 26px; width: auto; height: auto; display: block; }

/* Links – global bleibt blau */
a { color: #0b67c2; }
a:hover { text-decoration: underline; }

/* Kategorien-Links: schwarz statt blau */
.shop-category a,
.shop-category a:visited,
.small-list.shop-category a,
.small-list.shop-category a:visited{
  color:#222 !important;
  text-decoration:none;
}
.shop-category a:hover{ text-decoration: underline; }

/* Bulletpoints in der linken Spalte zuverlässig aus */
.shop-category ul, .shop-category li,
.advantages-list ul, .advantages-list li,
.small-list ul, .small-list li{
  list-style:none !important;
  margin:0 !important;
  padding-left:0 !important;
}
.shop-category li::marker,
.advantages-list li::marker { content: ""; }

/* Misc */
.border-bottom { border-bottom: 1px solid #eaeaea; }
.animiert.scale .tabcontent { animation: fadeIn 200ms ease-out; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

/* Images */
img { max-width: 100%; height: auto; }

/* ===== PATCH: Navi zentrieren + Kategorien-Links schwarz + Bullets aus ===== */

/* NAV: hart zentrieren und horizontal halten (überschreibt eBay/Bootstrap) */
header nav.clearfix,
header nav.clearfix .col-sm-12,
header nav.clearfix .col-md-12,
header nav.clearfix .col-lg-12 {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

header nav.clearfix .col-sm-12 > ul,
header nav.clearfix .col-md-12 > ul,
header nav.clearfix .col-lg-12 > ul {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  list-style: none !important;
  margin: 8px 0 16px !important;
  padding: 0 !important;
}

header nav.clearfix .col-sm-12 > ul > li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}

header nav.clearfix .col-sm-12 > ul > li > a {
  display: inline-block !important;
  white-space: nowrap !important;   /* verhindert "eBay-" Zeilenbruch */
  hyphens: none !important;
  overflow-wrap: normal !important;
  color: #0f2940 !important;
  text-decoration: none !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
}
header nav.clearfix .col-sm-12 > ul > li > a:hover { background: #eef2f7 !important; }

@media (max-width: 480px) {
  header nav.clearfix .col-sm-12 > ul > li > a { white-space: normal !important; }
}

/* Kategorien-Links schwarz statt blau */
.small-list.shop-category a,
.small-list.shop-category a:link,
.small-list.shop-category a:visited,
.shop-category a,
.shop-category a:link,
.shop-category a:visited {
  color: #222 !important;
  text-decoration: none !important;
}
.shop-category a:hover { text-decoration: underline !important; }

/* Bulletpoints in der linken Spalte zuverlässig entfernen */
.shop-category ul, .shop-category li,
.advantages-list ul, .advantages-list li,
.small-list ul, .small-list li {
  list-style: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
}
.shop-category li::marker,
.advantages-list li::marker { content: "" !important; }

/* Logo etwas kompakter oben (optional) */
header .logo { text-align: center; padding: 12px 0 6px; }
header .logo img { max-width: 420px; width: 100%; height: auto; display: inline-block; }
@media (max-width: 480px){ header .logo img { max-width: 320px; } }

/* ==== Header & Logo mittig, etwas kompakter ==== */
header { border-bottom: 1px solid #f0f2f5; }
header .logo {
  display: flex !important;
  justify-content: center !important;
  padding: 10px 0 6px !important;
}
header .logo img {
  display: block !important;
  margin: 0 auto !important;
  max-width: 480px !important;   /* wenn größer gewünscht: z.B. 520px */
  width: 100% !important;
  height: auto !important;
}

/* ==== Navi als „Kasten“ (Card) zentriert unter dem Logo ==== */
header nav.clearfix .col-sm-12 > ul,
header nav.clearfix .col-md-12 > ul,
header nav.clearfix .col-lg-12 > ul {
  /* Card-Look */
  background: #fff !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.06) !important;

  /* Layout */
  padding: 10px 16px !important;
  max-width: 820px !important;   /* Breite des „Kastens“ */
  margin: 10px auto 18px !important;
  gap: 10px 18px !important;

  /* Zentrierung (falls Fremdstyles dazwischenfunken) */
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  list-style: none !important;
}

header nav.clearfix .col-sm-12 > ul > li { display: inline-block !important; }
header nav.clearfix .col-sm-12 > ul > li > a {
  color: #0f2940 !important;
  text-decoration: none !important;
  padding: 8px 10px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
}
header nav.clearfix .col-sm-12 > ul > li > a:hover {
  background: #eef2f7 !important;
}

/* Mobile: Umbruch erlauben */
@media (max-width: 520px){
  header nav.clearfix .col-sm-12 > ul > li > a { white-space: normal !important; }
}

/* ==== (schon gewünscht) Kategorien-Links schwarz + Bullets weg ==== */
.small-list.shop-category a,
.small-list.shop-category a:visited,
.shop-category a, .shop-category a:visited { color:#222 !important; text-decoration:none !important; }
.shop-category a:hover { text-decoration: underline !important; }

.shop-category ul, .shop-category li,
.advantages-list ul, .advantages-list li,
.small-list ul, .small-list li {
  list-style:none !important; margin:0 !important; padding-left:0 !important;
}
.shop-category li::marker, .advantages-list li::marker { content:"" !important; }

