.slider {
  overflow: hidden;
  width: 100%;
  user-select: none;
  touch-action: pan-y;
  position: relative;
  margin-top:30px
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide {
  display: flex;
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
  align-items: flex-start;
}

.slide img {
  width: auto;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  margin-right: 20px;
}

.product-info {
  flex:1;
  overflow:hidden;
  color:#fff;
  text-align:justify;
  margin:auto;
  padding-right:10px
}

.product-info .price
{
  color: #b2936d;
  font-family: "Vidaloka", serif;
  font-size: 28px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom:10px
}

.product-info h2 {
  margin-bottom: 30px;
  font-size: 20px;
  color:#fff;
  text-align:left!important
}

.product-info p {
  font-size: 16px;
  line-height: 1.5;
}

.slider-pagination {
  text-align: center
}

.slider-pagination button {
  background: transparent!important;
  border: 2px solid #565a5e!important;
  margin: 0 5px;
  font-size:16px;
  letter-spacing:0;
  text-align:center;
  line-height:70px;
  vertical-align:middle;
  padding:0;
  width:70px;
  height:70px;
  cursor: pointer;
  font-weight: bold;
  transition: border-color 0.3s;
  
}

.slider-pagination button:hover
{
  border-color:#fff!important
}

.slider-pagination button.active {
  color: #b2936d;
}


@media (max-width: 960px)
{
  .slide img
  {
    max-width:100px
  }

  .slider-pagination button
  {
    line-height:50px!important;
    width:50px!important;
    height:50px!important;
  }
}














