/* =========================
   MAIN MENU
========================= */
.main-menu {
  background:#ffffff;
  /*border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;*/
}

.menu-strip {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  background: none;
  border: 0;
  color: #fff;
  padding: 0 10px;
}

.menu-strip:active {
  cursor: grabbing;
}

.menu-strip > ul {

}

.menu-open {
  height: auto!important;
}  

.menu-root, #menu-Fly {
  display: flex;
  gap: 20px 27px;
  list-style: none;
  padding: 0 12px;
  margin: 0;
  white-space: nowrap;
}

.menu-root > li, #menu-Fly > li  {
  position: relative;
}

.menu-item {
  position: relative;
  flex-shrink: 0;
}

.submenu li {
  list-style: none;
}

.menu-strip a {
  user-select: none;
  -webkit-user-drag: none;
}

.menu-item > a {
  display: block;
  margin: 10px 10px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.menu-root > li > a, #menu-Fly > li > a {
  font-weight:600;
  display:flex;
  align-items:center;
}

.menu-root > li > a:hover, #menu-Fly > li > a:hover {
  color:#ff6b00;
}

.submenu > .menu-item > a {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

/* wichtig: nur Untermenüs verstecken, nicht das Hauptmenü */
.menu-item > .submenu {
  display: none !important;
}

/* Flyout */
#menu-flyout {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  min-width: 320px;
  max-height: 1500px;
  overflow: auto;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 99999;
}

#menu-flyout ul {
  margin: 0;
  padding: 0;
  list-style: none;
  column-count: 2;
  column-gap: 18px;
}

#menu-flyout li {
  margin: 0 0 6px;
  break-inside: avoid;
}

#menu-flyout a {
  display: block;
  padding: 4px 6px;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
}

#menu-flyout a:hover {
  background: #f3f3f3;
  color: #c00;
}


/* =========================
   RESET / BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
}

.infopage * {
    margin: revert;
    padding: revert;
}

.infopage {
    margin: 100px auto;
    max-width: 1200px;
    padding: revert;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: medium;
  line-height: 1.4;
  min-height: 1500px;
  margin: auto;
}

/* =========================
   UTILITIES
========================= */
.icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.content {
  max-width: 1600px;
  margin: auto;
  padding: 0 15px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  background: #eee;
}

.btn-primary { background:#2b7cff; color:#fff; }
.btn-danger  { background:#e74c3c; color:#fff; }

.btn:hover {
  filter: brightness(0.9);
}

/* =========================
   CART
========================= */
.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
}


/* =========================
   SEARCH
========================= */
.suchForm_input2 {
  background: #cad4e2;
  border-radius: 6px;
  position: relative;
}

#searchbox2 {
  width: 100%;
  height: 44px;
  background: transparent;
  border: none;
  font-size: 15px;
}

/* =========================
   MENU
========================= */

.menu-item > a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.menu-item {
  position: relative;
}

.submenu {
  display: none;
}

.menu-scroll {
    cursor: pointer;
    user-select: none;
}

.menu-scroll {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
}

.menu-scroll.show {
    opacity: 1;
    pointer-events: auto;
}

.right {
    float: right;
    right:0;
}

/* =========================
   FLYOUT
========================= */
#menu-flyout {
  position: absolute;
  display: none;
  background: #fff;
  color: #111;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  z-index: 99999;
}

#menu-flyout ul {
  column-count: 2;
  list-style: none;
}

#menu-flyout a {
  display: block;
  padding: 4px 6px;
  color: #333;
}

#menu-flyout a:hover {
  background: #f3f3f3;
  color: #c00;
}

/* =========================
   VARIANTS
========================= */
.variant-box {
  margin: 20px 0;
}

.variant-box select {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* =========================
   PRODUCT
========================= */
.product-price {
  font-size: 28px;
  font-weight: bold;
  color: #e60023;
}

.pagination { display:flex; gap:6px; justify-content:center; margin:20px 0; }
.pagination a, .pagination span {
  padding:6px 10px;
  border:1px solid #ddd;
  border-radius:6px;
  text-decoration:none;
}
.pagination .active {
  background:#007bff;
  color:#fff;
}

.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 20px 0;
}

.pagination a,
.pagination span {
  display: inline-block;
  min-width: 32px;  /* 🔥 verhindert Layout-Sprung */
  text-align: center;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.pagination a {
  text-decoration: none;
  color: #333;
}

.pagination .active {
  background: #007bff;
  color: #fff;
}

.pagination .disabled {
  color: #aaa;
  border-color: #eee;
  cursor: default;
}

.filters {
  width: 220px;
}

.filter-group strong {
  display: block;
  margin-bottom: 6px;
}

.filter-group label {
  display: block;
  margin-bottom: 4px;
  cursor: pointer;
}

.filter-actions {
  margin-top: 10px;
  font-size: 13px;
}

<>
.home-page {
  display: grid;
  gap: 42px;
}

.home-hero {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding: 42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(0,120,255,.14), transparent 35%),
    linear-gradient(135deg, #f7f9fc, #ffffff);
  box-shadow: 0 18px 45px rgba(20, 40, 80, .08);
}

.home-hero h1 {
  margin: 14px 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #111827;
}

.home-hero p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.65;
  color: #4b5563;
}

.home-badge {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 700;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: #111827;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #111827;
  border: 1px solid #dbe3ef;
}

.home-hero-box {
  padding: 28px;
  border-radius: 24px;
  background: #111827;
  color: #fff;
}

.home-hero-box h2 {
  margin-top: 0;
}

.home-hero-box ul {
  margin: 0;
  padding-left: 20px;
  line-height: 2;
}

.home-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.home-benefits div,
.category-card,
.trust-grid div {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #edf1f7;
  box-shadow: 0 10px 28px rgba(20, 40, 80, .05);
}

.home-benefits strong {
  display: block;
  color: #111827;
  margin-bottom: 5px;
}

.home-benefits span {
  color: #6b7280;
  font-size: 14px;
}

.home-section {
  display: grid;
  gap: 20px;
}

.section-head h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: #111827;
}

.section-head p {
  margin: 6px 0 0;
  color: #6b7280;
}

.category-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(20, 40, 80, .10);
}

.category-card span {
  font-size: 34px;
}

.category-card h3,
.trust-grid h3 {
  margin: 14px 0 8px;
  color: #111827;
}

.category-card p,
.trust-grid p {
  margin: 0;
  color: #6b7280;
  line-height: 1.55;
}

.home-highlight {
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
}

.home-highlight h2 {
  margin: 14px 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.home-highlight p {
  max-width: 780px;
  color: #d1d5db;
  line-height: 1.65;
}

.home-highlight .btn-primary {
  background: #fff;
  color: #111827;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .home-hero,
  .home-benefits,
  .category-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .home-hero,
  .home-highlight {
    padding: 24px;
    border-radius: 22px;
  }

  .home-hero,
  .home-benefits,
  .category-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: 34px;
  }
}

.topseller-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.topseller-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .2s ease;
  box-shadow: 0 10px 28px rgba(20,40,80,.05);
}

.topseller-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20,40,80,.12);
}

.topseller-image {
  aspect-ratio: 1;
  background: #fff;
  padding: 15px;
}

.topseller-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 204px;
}

.topseller-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.topseller-title {
    height: 92px;
    font-weight: 600;
    line-height: 1.4;
    color: #111827;
    overflow: auto;
}

.topseller-price {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.topseller-button {
  margin-top: auto;
  background: #111827;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  font-weight: 600;
}

@media (max-width:1200px) {
  .topseller-grid {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width:900px) {
  .topseller-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:600px) {
  .topseller-grid {
    grid-template-columns: 1fr;
  }
}

.home-products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .home-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .home-products {
        grid-template-columns: repeat(2, 1fr);
    }
}
