.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}

.product-details__img {
    border: 0;
}

.product-gallery .slideshow-container {
    border: 1px solid var(--drivschol-border-color, #E6E6E6);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    max-width: 100%;
    width: 100%;
}

.controls {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 5;
}

.controls span {
    overflow: visible;
    width: 40px;
    height: 40px;
    margin: 0;
    opacity: 1;
    top: 0;
    text-indent: -9999em;
    text-shadow: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: rgb(236 37 38 / 60%);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.controls span:hover {
    cursor: pointer;
    background-color: rgb(236 37 38 / 100%);
}

.controls .arrow {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    z-index: 6;
}

.controls .prevarrow {
    left: 0;
    background: transparent url(../image/left.svg) no-repeat 2px 5px;
    background-size: 80%;
}

.controls .nextarrow {
    right: 0;
    background: transparent url(../image/right.svg) no-repeat 5px 5px;
    background-size: 80%;
}

.controls {
    pointer-events: none; 
  }
  
  .controls .prev, 
  .controls .next {
    pointer-events: auto; 
  }

.product-gallery-thumbs {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 0 4px 6px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.product-gallery-thumb {
    flex: 0 0 96px;
    width: 96px;
    height: 72px;
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    line-height: 0;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: #ec2526;
    box-shadow: 0 0 0 1px #ec2526 inset;
}

.product-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 575px) {
    .product-gallery-thumbs {
        gap: 8px;
        margin-top: 12px;
    }

    .product-gallery-thumb {
        flex-basis: 72px;
        width: 72px;
        height: 56px;
        padding: 2px;
    }
}
