/*  Show case Slider  */

.slider-container {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-images {
    display: flex;
    align-items: center;
    gap: 0px;
    width: 70%;
    justify-content: center;
}

.slider-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.slider-img {
    width: 75px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: 0.7s ease;
}

.slider-img h1 {
    display: none;
}

.slider-images .slider-img:first-child,
.slider-images .slider-img:last-child {
    height: 40vh; /* Dynamic height */
}

.slider-images .slider-img:nth-child(2),
.slider-images .slider-img:nth-child(6) {
    height: 50vh; /* Dynamic height */
}

.slider-images .slider-img:nth-child(3),
.slider-images .slider-img:nth-child(4),
.slider-images .slider-img:nth-child(5) {
    height: 60vh; /* Dynamic height */
}


.productFormButtonsWrap{
  position: absolute;
  bottom: 95px;
  right: 25%;
}



h1.main-heading {
    font-size: 4vw; /* Responsive font size */
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: 50%;
    left: -10%;
    transform: rotate(270deg);
    transition: 0.7s ease;
}


.popup-gallery {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    gap: 5px;
    padding: 10px 0;
}

.popup-gallery img {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.popup-gallery img:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.image-item {
    flex: 0 0 auto;
    width: 150px;
}

@media (max-width: 768px) {
    .image-item {
        width: 75px;
    }
}



.product-form-section{
    padding: 20px 0;
}

.productShortDesc {
/*    background: linear-gradient(135deg, #2c2e32, transparent);*/
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    border-radius: 25px;
    padding: 20px;
    text-align: justify;
    background: var(--text-color);
}

.productShortDescDesktopWrap{
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}
.productShortDescDesktopWrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.productShortDescDesktopWrap::-webkit-scrollbar-track {
  background-color: var(--text-color);
  border-radius: 3px;
}
.productShortDescDesktopWrap::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 3px;
}
.productShortDescDesktopWrap::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a0;
}

.details {
    position: absolute;
    bottom: 43px;
    left: 43px;
}

.details h2.details-title {
    font-family: "Jost", sans-serif;
    font-size: 2.6vw; /* Responsive font size */
    font-weight: 700;
    text-align: left;
    line-height: 4.4vw; /* Responsive line height */
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    transition: 0.7s ease;
    display: none;
}

.details p.details-description {
    font-family: "Jost", sans-serif;
    font-size: 2vw; /* Responsive font size */
    font-weight: 700;
    text-align: left;
    line-height: 3.3vw; /* Responsive line height */
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    transition: 0.7s ease;
    display: none;
}

.slider-img.active {
    width: 76.6vw !important; /* Dynamic width */
    height: 75vh !important; /* Dynamic height */
}
.slider-img.active img{
    object-fit: cover;
}

.slider-img.active .details p.details-description,
.slider-img.active .details h2.details-title {
    display: block;
}


.autoplay {
    display: flex;
    justify-content: space-between;
}
.autoplay .slick-slide {
    margin: 0 10px;
}

/* TABs  */
.productDetailSection{
  padding: 50px 0;
  color: var(--white-color);
}
.productDetailSection table{
  color: var(--white-color);
}
.nav .nav-item button {
  border: transparent;
  outline: none;
  font-size: 20px;
  background: transparent;
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}
.nav .nav-item button:hover{
  opacity: 1;
}
.nav .nav-item button.active {
  border-bottom: 4px solid var(--accent-color);
  opacity: 1;
}
.nav .nav-item button.active::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 5px 5px 0 0;
}
.productDetailSection .nav,
.productShortDesc .nav{
    color: var(--white-color);
}
.productDetailSection .tab-content,
.productDetailSection .nav .nav-item,
.productDetailSection button,
.productShortDesc .tab-content,
.productShortDesc .nav .nav-item,
.productShortDesc button{
    color: var(--white-color);
}


.relatedProducts{
  padding: 50px 0;
}


/* Add Ons  */
.addOnsSection{
    padding: 100px 0;
}
.autoplayAddOns{
    padding: 30px 0;
}
.product-page-stack-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    /* padding: 15px; */
}

.addOnsSection .types-box {
    width: 100%;
    max-width: 350px;
    background: #fff;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.addOnsSection .types-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.addOnsSection .types-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.addOnsSection .types-box div {
    padding: 20px;
}
.addOnsSection .types-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}
.addOnsSection .types-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .addOnsSection .types-box {
        max-width: 90%;
    }

    .addOnsSection .types-box img {
        height: 220px;
    }
}
.autoplayAddOns .slick-dots li button{
    width: 15px;
    height: 15px;
    line-height: 15px;
    color: #fff;
    background: var(--primary-color);
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    margin: auto;
}
.autoplayAddOns .slick-dots li button:before{
    display: none;
}
.autoplayAddOns .slick-dots li.slick-active button{
    background: var(--accent-color);
}



@media (max-width: 767px){
  .productDetailSection .nav .nav-item button{
    font-size: 16px;
    padding: 10px;
  }
  .productSliderMobileHeader{
    padding-top: 10%;
  }
}

.product-detail-wrap {
    padding: 10px 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.catPoints {
    padding: 0 !important;
}
.catPoints li{
    text-align: left;
}