.wcp-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    padding: 10px;
}

.wcp-carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
}

.wcp-slide {
    flex: 0 0 calc(33.33% - 20px);
    /*box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 15px;
    background: #fff;
    border-radius: 10px;*/
}

.wcp-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px; display:none;
}

.wcp-short-desc {
    font-size: 14px;
    color: #333;
}

.wcp-prev, .wcp-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}
/*
.wcp-prev { left: 0; }
.wcp-next { right: 0; }*/
.wcp-carousel-wrapper.wcp-hide-nav .wcp-prev,
.wcp-carousel-wrapper.wcp-hide-nav .wcp-next {
    display: none !important;
}

.wcp-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.wcp-product-link:hover .wcp-product {
   /* box-shadow: 0 0 15px rgba(0,0,0,0.15);*/
    transform: scale(1.02);
    transition: all 0.2s ease-in-out;
}

/* Center align if only 1 or 2 slides */
.wcp-carousel-wrapper .wcp-carousel:has(.wcp-slide:nth-child(3)) {
    justify-content: flex-start;
}

.wcp-carousel-wrapper .wcp-carousel:not(:has(.wcp-slide:nth-child(3))) {
    justify-content: center;
}



@media screen and (max-width: 768px) {
    .wcp-slide {
        flex: 0 0 100%;
    }
}

/* New nav container positioned at top right */
.wcp-carousel-wrapper .wcp-nav-top-right {
    position: absolute;
    top: -41px;
    right: 91px;
    z-index: 10;
    display: flex;
    gap: 10px; width: 130px;
}

.wcp-prev,
.wcp-next {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

.wcp-carousel-wrapper.wcp-hide-nav .wcp-nav-top-right {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .wcp-carousel-wrapper .wcp-nav-top-right {
        top: 5px;
        right: 5px;
        gap: 5px;
    }

    .wcp-prev,
    .wcp-next {
        padding: 6px 10px;
        font-size: 16px;
    }
}





/*Product cards inside CSS*/
.pd-card {
  max-width: 320px;
  border-radius: 20px;
  background: #f5f3f4;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.pd-image-wrap {
  padding: 10px;
  text-align: center;
}

.pd-image {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.pd-model-box {
      background: #e62929;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 5px 4px 13px;
    font-size: 20px;
    font-weight: bold;
    margin: -1px 15px;
    border-radius: 50px;
}

.pd-model-badge {
  background: white;
  color: #e62929;
  padding: 4px 12px;
  border-radius: 25px;
  font-size: 16px;
}

.pd-specs {
  display: flex;
  padding: 20px 27px;
  justify-content: space-between;
  font-size: 14px;
}

.pd-left-specs .pd-label,
.pd-right-specs .pd-value {
  margin-bottom: 10px;
}

.pd-left-specs {
      color: #000;
    font-weight: 400;
}

.pd-right-specs {
  color: #000;border-left: 1px solid #dd1e374a;padding-left: 7px;
}

@media screen and (max-width: 400px) {
  .pd-card {
    max-width: 90%;
  }
}

/*End Product cards inside CSS*/

