/* IMAGE ZOOM CSS Start */



body{
	/* padding-top: 100px; */
}

#content-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/* align-items: center; */
	padding: 100px 0px;
}

.column{
	width: 600px;
	padding: 10px;
	font-family: lora;
}

#featured{
	max-width: 500px;
	max-height: 600px;
	cursor: pointer;
	/* border: 2px solid black; */
}

.thumbnail{
	object-fit: cover;
	max-width: 180px;
	max-height: 100px;
	cursor: pointer;
	opacity: 0.5;
	margin: 5px;
	/* border: 2px solid black; */
	width: 135px;
	/* height: 135px; */
}

.cart-btn {
    background: #fd683e !important;
    width: 50%;
    color: white !important;
    padding: 10px 0px !important;
    border-radius: 120px !important;
    transition: 1s !important;
}

.cart-btn:hover {
    background: black !important;
}


.thumbnail:hover{
	opacity:1;
}

.active{
	opacity: 1;
}

#slide-wrapper{
	margin-top: 30px;
	max-width: 500px;
	display: flex;
	min-height: 100px;
	align-items: center;
}

#slider{
	width: 440px;
	display: flex;
	flex-wrap: nowrap;
	/* overflow-x: auto; */
}

#slider::-webkit-scrollbar {
		width: 8px;

}

#slider::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);

}

#img-container:not(:hover) #lens {
    display: none;
}
 
#slider::-webkit-scrollbar-thumb {
  background-color: red;
  outline: 1px solid slategrey;
   border-radius: 100px;

}

#slider::-webkit-scrollbar-thumb:hover{
    background-color: black;
}

.arrow{
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: .3s;
}

.arrow:hover{
	opacity: .5;
	width: 35px;
	height: 35px;
}

#img-container{
	z-index: 1;
	max-width: 500px;
	position: relative;
}

#lens{
	z-index: 2;
	position: absolute;
	height: 140px;
	width: 140px;
	border: 1px solid black;
	border-radius:120px;
	background-repeat: no-repeat;
	cursor: none;
}


#img-container {
    width: 100%;
    height: 300px;
}

#img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.wrapper-btn {
    display: flex;
    gap: 20px;
    /* justify-content: center; */
    margin: 0;
    /* flex-direction: column; */
    padding: 15px 0px;
}


.column p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}

.detail-content {
    /* padding: 10px 0px; */
    width: 100%;
    /* height: 50%; */
}

.column h1 {
    /* text-transform: uppercase; */
    /* font-family: math; */
    /* font-weight: 600; */
}


.qty {
    /* border-radius: 50%; */
    /* width: 35px; */
    /* height: 20px; */
    /* text-align: center; */
    /* position: relative; */
}

.qty.minus {
    position: relative;
    left: 100px;
    top: 10px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
}

.qty.plus {
    position: relative;
    right: 100px;
    top: 10px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
}


.qty.text {
    position: relative;
    left: 90px;
    top: 9px;
}

input#input-qty {
    background: #ff390138;
    border: 0;
    height: auto !important;
    padding: 10px 5px;
    border-radius: 10px;
    text-align: center;
    font-family: 'Solway';
}


.wrapper-btn button {
    font-family: 'Solway';
}


/* IMAGE ZOOM CSS END */












/* Optional smoother fade */
.products-item > div {
    transition: all 0.5s ease;
  }
  
  /* To maintain layout even when hiding */
  .products-item {
    display: flex;
    flex-wrap: wrap;
  }
  
  .products-item > div {
    display: flex;
    flex-direction: column;
  }
  
  /* Hide smoothly */
  .hide-item {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
  } 