/* Wrapper + reset */
.wlc-wrapper { position: relative; width: 100%; }
.wlc-wrapper .swiper { overflow: hidden; }

/* Zmiana zdjęcia po najechaniu */
.wlc-hover-image:hover{
	opacity: 1;
}
.wlc-hover-image{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
}

/* Karta produktu */
.wlc-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.wlc-media {
  position: relative;
    /* szerokie, jak na screenie */
  width: 100%;
  overflow: hidden;
}
.wlc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* edge-to-edge */
  display: block;
  transform: scale(1.001);
  transition: transform .35s ease;
}
.wlc-card:hover .wlc-media img { transform: scale(1.03); }

/* Badges */
.wlc-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 12px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.75);
  color: #fff;
  z-index: 2;
}
.wlc-badge + .wlc-badge { left: auto; right: 10px; }
.wlc-badge--preorder { background: rgba(0, 0, 0, .75); }
.wlc-badge--sale { background: #e11; }

/* Meta */
.wlc-meta {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.wlc-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wlc-price { font-size: 15px; font-weight: 600; }

/* Stylowanie cen Woo (del/ins) */
.wlc-price del { opacity: .55; margin-right: 6px; }
.wlc-price ins { text-decoration: none; }

/* Strzałki + kropki */
.wlc-wrapper .swiper-button-prev,
.wlc-wrapper .swiper-button-next {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  backdrop-filter: blur(4px);
}
.wlc-wrapper .swiper-button-prev:after,
.wlc-wrapper .swiper-button-next:after { font-size: 16px; color: #111; }
.wlc-wrapper .swiper-button-prev { left: -4px; }
.wlc-wrapper .swiper-button-next { right: -4px; }

.wlc-wrapper .swiper-pagination-bullets {
  bottom: -6px;
}
.wlc-wrapper .swiper-pagination-bullet {
  opacity: .4;
}
.wlc-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive drobnostki */
@media (max-width: 640px) {
  .wlc-media { border-radius: 0px }
  .wlc-title, .wlc-price { font-size: 14px; }
}

/* ≥480px: 2 karty */
@media (min-width: 480px) {
  .wlc-wrapper .swiper-slide {
    width: calc(50% - 8px);  /* 2 kolumny */
  }
}

/* ≥840px: 3 karty */
@media (min-width: 840px) {
  .wlc-wrapper .swiper-slide {
    width: calc(33.3333% - 8px); /* 3 kolumny */
  }
}

/* ≥1160px: 4 karty */
@media (min-width: 1160px) {
  .wlc-wrapper .swiper-slide {
    width: calc(25% - 8px);  /* 4 kolumny */
  }
}

/* na wszelki wypadek — utnij „resztki” w kontenerze */
.wlc-wrapper .swiper { overflow: hidden; }
