p.woocommerce-store-notice.demo_store {
    background-color: #efcfc4;
    color:#233647;
}
a.woocommerce-store-notice__dismiss-link {
    color:grey !important;
}

/*Sales Badge*/
.woocommerce span.onsale:before, .woocommerce ul.products li.product .onsale:before {
    background: none;
    background-color: #c26d5a;
    padding: inherit;
}
.woocommerce span.onsale:before {
    background-color: var(--theme_accent);
    content: "";
    display: inline-block;
    height: 3.2em;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.woocommerce span.onsale, .woocommerce ul.products li.product .onsale {
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 300;
    font-size: 10px;
    text-align: center;
    padding-top: 15px;
    padding-left: 35px;
}
.woocommerce span.onsale, .woocommerce ul.products li.product .onsale {
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 300;
    font-size: 10px;
    line-height: unset;
    text-align: center;
.tlc-announcement-bar {
  background-color: rgb(194, 109, 90);
  color: black;
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 12px 50px 12px 20px;
  font-size: 16px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tlc-announcement-bar p {
  margin: 0;
  line-height: 1.4;
}

.close-bar {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: black;
  font-weight: bold;
}

body {
  padding-top: 60px; /* ggf. anpassen je nach Höhe der Bar */
}
	
	@media (max-width: 767px) {
  .hover-card:hover .model-img,
  .hover-card:hover .bag-img {
    opacity: 1 !important;
    transform: none !important;
  }
}

	.hover-card {
  touch-action: manipulation;
}

	/* PRODUCT GRID */
.hover-product-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hover-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

/* Images */
.hover-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop hover only */
@media (hover: hover) {
  .hover-card .bag-img { opacity: 0; }
  .hover-card:hover .model-img { opacity: 0; }
  .hover-card:hover .bag-img { opacity: 1; }
}

/* Tablet */
@media (max-width: 1024px) {
  .hover-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: FORCE 2 PER ROW */
@media (max-width: 600px) {
  .hover-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Disable hover logic on mobile */
  .hover-card .bag-img {
    display: none;
  }
}


	
	



	
	