/* --- VirtueMart View As und Show per Page ausblenden --- */
.vm-pagination-view-as,
.vm-pagination-show-per-page,
.vm-view-as,
.vm-show-per-page {
    display: none !important;
}
/* Blendet View as und Show per page aus */
.orderby-displaynumber {
    display: none !important;
}
/* STORES SECTION */
.stores-section {
  padding: 70px 20px 80px;
  background: #f8f8f6;
}

.stores-group {
  max-width: 1240px;
  margin: 0 auto 70px;
}

.stores-group:last-child {
  margin-bottom: 0;
}

.stores-group__eyebrow {
  margin: 0 0 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8a9996;
}

.stores-group__title {
  margin: 0 0 36px;
  text-align: center;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
  color: #1f2a2c;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.stores-grid--fashion {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 840px;
  margin: 0 auto;
}

.store-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.09);
}

.store-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.store-content {
  padding: 20px 18px 22px;
  text-align: left;
}

.store-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  color: #1f2a2c;
}

.store-content p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #5e6a6e;
}

.store-button {
  display: inline-block;
  padding: 11px 18px;
  background: #d8ecee;
  color: #1f2a2c;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.store-button:hover,
.store-button:focus {
  background: #c8e2e5;
  color: #1f2a2c;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 1024px) {
  .stores-section {
    padding: 56px 16px 64px;
  }

  .stores-group {
    margin-bottom: 56px;
  }

  .stores-group__title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .stores-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .stores-grid--fashion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .store-card img {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .stores-section {
    padding: 42px 12px 50px;
  }

  .stores-group {
    margin-bottom: 44px;
  }

  .stores-group__eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .stores-group__title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 22px;
  }

  .stores-grid,
  .stores-grid--fashion {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .store-card {
    border-radius: 14px;
  }

  .store-card img {
    height: 210px;
  }

  .store-content {
    padding: 16px 14px 18px;
  }

  .store-content h3 {
    font-size: 18px;
  }

  .store-content p {
    font-size: 14px;
    margin-bottom: 14px;
  }
}
.stores-section {
  background: #f8f8f6;
  padding: 40px 20px;
}

.stores-group__title {
  text-align: center;
  font-size: 32px;
  color: #1f2a2c;
  margin-bottom: 30px;
}

.stores-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
}

.store-card {
  background: #ffffff;
  border: 2px solid red;
  border-radius: 12px;
  overflow: hidden;
}

.store-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.store-content {
  padding: 20px;
}

.store-button {
  display: inline-block;
  padding: 10px 16px;
  background: #d8ecee;
  color: #1f2a2c;
  text-decoration: none;
}
body {
  outline: 6px solid red !important;
}
/* ===== Produkt Carousel – ruhiger, hochwertiger ===== */

.vp-product-carousel {
  margin-top: 8px;
}

.vp-product-carousel .module-header {
  margin: 0 0 26px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 600;
  color: #1f2a2c;
  letter-spacing: 0;
}

.vp-product-carousel .owl-item {
  padding: 6px 0;
}

.vp-product-carousel .product-item {
  background: #ffffff;
  border: 1px solid #e7eceb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vp-product-carousel .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  border-color: #dbe4e2;
}

.vp-product-carousel .product-inner {
  background: transparent;
}

.vp-product-carousel .product-image-cont {
  padding: 18px 18px 8px;
  background: #ffffff;
}

.vp-product-carousel .product-image-cont a {
  display: block;
  background: #ffffff;
}

.vp-product-carousel .product-image-cont img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.vp-product-carousel .product-item:hover .product-image-cont img {
  transform: scale(1.03);
}

.vp-product-carousel .product-name-cont,
.vp-product-carousel .product-cat-name-cont,
.vp-product-carousel .product-price-cont,
.vp-product-carousel .product-addtocart-cont {
  padding-left: 18px;
  padding-right: 18px;
}

.vp-product-carousel .product-name-cont {
  min-height: auto !important;
  padding-top: 8px;
}

.vp-product-carousel .product-name-cont a,
.vp-product-carousel .product-name-cont {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: #1f2a2c;
  text-transform: none;
  text-decoration: none;
}

.vp-product-carousel .product-name-cont a:hover {
  color: #1f2a2c;
  text-decoration: none;
}

.vp-product-carousel .product-cat-name-cont {
  min-height: auto !important;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a9996;
}

.vp-product-carousel .product-price-cont {
  min-height: auto !important;
  margin-top: 10px;
  padding-bottom: 18px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #1f2a2c;
}

.vp-product-carousel .product-price-cont .PricesalesPrice,
.vp-product-carousel .product-price-cont .sales-price,
.vp-product-carousel .product-price-cont .vmprice,
.vp-product-carousel .product-price-cont .price {
  font-size: 20px;
  font-weight: 600;
  color: #1f2a2c;
}

.vp-product-carousel .product-addtocart-cont {
  padding-bottom: 20px;
}

.vp-product-carousel .addtocart-button,
.vp-product-carousel .addtocart-button input,
.vp-product-carousel .product-addtocart-cont input,
.vp-product-carousel .product-addtocart-cont button,
.vp-product-carousel .product-addtocart-cont a {
  display: inline-block;
  padding: 11px 18px;
  background: #d8ecee;
  color: #1f2a2c !important;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vp-product-carousel .addtocart-button:hover,
.vp-product-carousel .addtocart-button input:hover,
.vp-product-carousel .product-addtocart-cont input:hover,
.vp-product-carousel .product-addtocart-cont button:hover,
.vp-product-carousel .product-addtocart-cont a:hover {
  background: #c8e2e5;
  color: #1f2a2c !important;
  transform: translateY(-1px);
}

.vp-product-carousel .owl-prev,
.vp-product-carousel .owl-next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96) !important;
  border: 1px solid #dfe6e4 !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  color: #1f2a2c !important;
  transition: all 0.2s ease;
}

.vp-product-carousel .owl-prev:hover,
.vp-product-carousel .owl-next:hover {
  background: #ffffff !important;
  border-color: #cfd9d7 !important;
}

.vp-product-carousel .owl-prev i,
.vp-product-carousel .owl-next i,
.vp-product-carousel .owl-prev:before,
.vp-product-carousel .owl-next:before {
  color: #1f2a2c !important;
}

@media (max-width: 991px) {
  .vp-product-carousel .module-header {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .vp-product-carousel .product-name-cont a,
  .vp-product-carousel .product-name-cont {
    font-size: 16px;
  }

  .vp-product-carousel .product-price-cont,
  .vp-product-carousel .product-price-cont .PricesalesPrice,
  .vp-product-carousel .product-price-cont .sales-price,
  .vp-product-carousel .product-price-cont .vmprice,
  .vp-product-carousel .product-price-cont .price {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .vp-product-carousel .module-header {
    font-size: 24px;
    line-height: 1.2;
  }

  .vp-product-carousel .product-image-cont {
    padding: 14px 14px 6px;
  }

  .vp-product-carousel .product-name-cont,
  .vp-product-carousel .product-cat-name-cont,
  .vp-product-carousel .product-price-cont,
  .vp-product-carousel .product-addtocart-cont {
    padding-left: 14px;
    padding-right: 14px;
  }

  .vp-product-carousel .product-name-cont a,
  .vp-product-carousel .product-name-cont {
    font-size: 15px;
  }

  .vp-product-carousel .product-cat-name-cont {
    font-size: 11px;
  }

  .vp-product-carousel .product-price-cont,
  .vp-product-carousel .product-price-cont .PricesalesPrice,
  .vp-product-carousel .product-price-cont .sales-price,
  .vp-product-carousel .product-price-cont .vmprice,
  .vp-product-carousel .product-price-cont .price {
    font-size: 17px;
  }

  .vp-product-carousel .addtocart-button,
  .vp-product-carousel .addtocart-button input,
  .vp-product-carousel .product-addtocart-cont input,
  .vp-product-carousel .product-addtocart-cont button,
  .vp-product-carousel .product-addtocart-cont a {
    padding: 10px 14px;
    font-size: 13px;
  }
}
body {
  outline: 6px solid red !important;
}