.hearo_search_bar  {
}

.zpelement.zpelem-codesnippet.hero_search_bar  form {
	display:flex;
	flex-direction: row;
}

.zpelement.zpelem-codesnippet.hero_search_bar  form input{
	border-radius:5px;
    padding-left:10px;
}

.zpelement.zpelem-codesnippet.hero_search_bar  form input.theme-search-go{
	background-color:red;
    margin-left:10px;
    padding-right: 10px;
    width:30%;
    text-align: center;
    display: block;
}
@media screen and (max-width: 600px) {
  .zpelement.zpelem-codesnippet.hero_search_bar  form input.theme-search-go{
    font-size: 12px;
  }
}

.theme-navigation-and-icons .theme-menu .theme-sub-menu {
}

ul.theme-sub-menu{
    /*flex-wrap: wrap;*/
    /*display: flex;*/
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

ul.theme-sub-menu li{
    /*flex: 1 0 25%;*/
}

.category_home_cards .zpimage-caption-content{
    font-weight:bold;
}
.produkt-sku{
	clear:both;
    font-size:12px;
        display: inline-block;
    flex-grow: 1;
    flex-basis: calc(100% / 3);
}

/* checkout review , hide unnecessary payment UI*/
.theme-checkout-payment-wrap{
    display:none;
}
.theme-payment-info-list{
	display:none;
}


/* NAV: Abstand zwischen den Hauptkategorien erzwingen (adjacent sibling) */
.theme-navigation-and-icons .theme-menu > li,
.theme-navigation-and-icons .theme-menu > li > a {
  display: inline-block !important;
}

/* Abstand nur ab dem zweiten Element */
.theme-navigation-and-icons .theme-menu > li + li,
.theme-navigation-and-icons .theme-menu > li + li > a,
.theme-navigation-and-icons nav a + a {
  margin-left: 16px !important;
}

/* Falls dein Theme ein <nav> ohne .theme-menu nutzt */
header nav ul > li + li,
header nav a + a {
  margin-left: 16px !important;
}

/* ===== Produkt-GRID stabilisieren (Kategorie-/Shop-Seiten) ===== */

/* 1) Einheitliche Karten-Struktur */
.category-page .product-item,
.collection-page .product-item,
.products-list .product-item,
.zc-product-card,
.product-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  box-sizing: border-box;
}

/* 2) Feste Bildbox im 1:1-Format, Bilder sauber einpassen */
.category-page .product-item .product-image,
.collection-page .product-item .product-image,
.products-list .product-item .product-image,
.zc-product-card .product-image,
.product-card .product-image {
  position: relative;
  width: 100%;
  /* feste Höhe funktioniert überall; bei Browsern mit Support zusätzlich aspect-ratio */
  height: 260px;                /* <- bei Bedarf 220–320px anpassen */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5fbfa;          /* leichte Fläche wie im Backend */
  border-radius: 6px;
}

/* Bilder dürfen nicht riesig werden; immer ins Fach einpassen */
.category-page .product-item .product-image img,
.collection-page .product-item .product-image img,
.products-list .product-item .product-image img,
.zc-product-card .product-image img,
.product-card .product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;          /* zeigt das ganze Produkt ohne Verzerrung */
  object-position: center;
  display: block;
}

/* 3) Titel/Preis/CTA block – sorgt dafür, dass die Buttons auf gleicher Höhe enden */
.category-page .product-item .product-info,
.collection-page .product-item .product-info,
.products-list .product-item .product-info,
.zc-product-card .product-info,
.product-card .product-info {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-top: .75rem;
  flex: 1 1 auto;               /* zieht die Infofläche, damit der Button nach unten wandert */
  text-align: center;
}

/* 4) „In den Warenkorb“-Button passt sich an und bricht nicht das Layout */
.category-page .product-item .add-to-cart,
.collection-page .product-item .add-to-cart,
.products-list .product-item .add-to-cart,
.zc-product-card .add-to-cart,
.product-card .add-to-cart {
  margin-top: auto;             /* Button ans Kartenende */
  width: 100%;
  max-width: 320px;             /* optional: begrenzen, damit er nicht zu breit wirkt */
  align-self: center;
}

/* 5) Spaltenabstand & Kartenabstand angleichen (falls Theme zu eng/weit) */
.category-page .product-list,
.collection-page .product-list,
.products-list .product-list,
.zc-product-grid,
.product-grid {
  gap: 24px !important;         /* moderner Abstand zwischen den Karten */
}

/* 6) Sicherheitsnetz gegen „riesige“ Bilder durch Fremd-CSS */
img {
  max-width: 100%;
  height: auto;
}

/* 7) Optional: Preis & Titel typografisch angleichen */
.product-card .product-title,
.product-item .product-title { 
  line-height: 1.3;
  min-height: 3.2em;            /* sorgt für 2 Zeilen Reserve, damit Höhen konsistent bleiben */
  overflow: hidden;
}

.product-card .product-price,
.product-item .product-price {
  font-weight: 700;
}

