/* Külső keret + gombok */
.pbc-simple-swiper-wrapper {
    position: relative;
    width: 100%;
}

/* Prev/Next nyilak (egyszerű, ikon nélküli nyilak – testreszabható) */
.pbc-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.pbc-swiper-prev {
    left: 0.25rem;
}

.pbc-swiper-next {
    right: 0.25rem;
}

.pbc-swiper-btn:after {
    content: '';
    display: block;
    width: 44px;
    height: 44px;
    mask-size: 60% 60%;
    mask-position: center;
    mask-repeat: no-repeat;
    background: currentColor;
    color: #222;
}

.pbc-swiper-prev:after {
    /* balra nyíl – egyszerű CSS mask egy SVG-vel helyettesíthető */
    mask-image: radial-gradient(circle at 60% 50%, transparent 12px, black 13px);
}

.pbc-swiper-next:after {
    mask-image: radial-gradient(circle at 40% 50%, transparent 12px, black 13px);
}

/* Slide kártya */
.pbc-slide .pbc-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}


.pbc-imgbox {
    width: 100%;
    position: relative;    
    overflow: hidden;
    background: #f6f6f6;

}

.pbc-imgbox img {
   
    width: 100%;
    height: 403px!important;
    object-fit: cover; 
    display: block;    
    transition: transform 0.3s ease;
}

.pbc-imgbox:hover img {
  transform: scale(1.05);
}



.pbc-meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;  
  color: white;
  text-align: left;
  background-color: #2a2a2a6b; /* Fekete átlátszó háttér */  
  padding: 15px 0px 15px 30px;
  font-weight: bold;
  font-size: 16px;
  
  text-transform: uppercase;
}

 .pbc-title { 
 
  font-size: 16px;
 
  color: #fff;
    margin-top: -50px;
    margin-left: 30px;
    font-weight: 800;
    text-transform: uppercase;
 
}


/* Meta (cím + ár) */
.pbc-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.pbc-price {
    font-weight: 600;
    font-size: 1rem;
}

/* Finom spacing a Swiperhez */
.pbc-simple-swiper .swiper-slide {
    height: auto;
}