@font-face {
    font-family: "fanavari";
    src: url("../fonts/Shabnam-FD.woff2") format("woff2");
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    overflow-x: hidden;
    font-family: "fanavari", sans-serif;
    background-color: #faf7ef;
}

.prodMainCont{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #faf7ee;
    font-family: "fanavari", sans-serif;
    z-index: 2;
    position: relative;
}

.rows{
    top: 0px;
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 100px;
    margin-right: 340px;
    padding-bottom: 40px;
}

.rows.diact{
  height: auto;
}

.sideMenu{
    width: 300px;
    z-index: -1;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fcf3e9;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px;
    padding-top:100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sideMenu.stop {
    position: absolute;
}

:root {
  --background: linear-gradient(30deg, #f39c12 30%, #f1c40f);
  --background-select: linear-gradient(to right, #f9651d 3rem, #f8d8c8 3rem);
}

/* Reset <select> defaults */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  outline: 0;
  background: none;
  color: inherit;
  box-shadow: none;
}
select::-ms-expand {
  display: none;
}
/* Custom Select wrapper */
.select {
  margin-top: 10px;
  color: #2c2c2b;
  position: relative;
  display: flex;
  width: 100%;
  background: var(--background-select);
  border-radius: 0.25rem;
  overflow: hidden;
}
.select select {
  flex: 1;
  padding: 1em;
  cursor: pointer;
}
/* Arrow style */
.select::after {
  content: "\25BC";
  position: absolute;
  left: 17px; /* Adjusted for RTL */
  top: 8px;
  transition: .5s all ease;
  pointer-events: none; /* IMPORTANT to click on arrow */
  color: #ecebe4;
}
/* Arrow hover */
.select:hover::after {
  color: #524437;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  10% {
    transform: translatey(1px);
  }
  25% {
    transform: translatey(0.5px);
  }
  50% {
    transform: translatey(0px);
  }
  75% {
    transform: translatey(-0.5px);
  }
  90%{
    transform: translatey(-1px);
  }
}


.sideFooter{
    position: absolute;
    bottom: 20px;
    width: 80%;
    text-align: left;
    border-top: 2px solid black;
    padding-top: 15px;
    font-family: "kugile", sans-serif;
}

.prodCardMain{
  width: calc(100% / 4.7);
  aspect-ratio: 3 / 5;
  background-color: #ffffff;
  border-radius: 25px;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.prodCardMainImg{
  width: 100%;
  aspect-ratio: 3 / 3.75;
  border-radius: 15px;
}

.prodCardMainSpan{
  width: 100%;
  font-size: 14px;
  margin-top: 15px;
  white-space: nowrap;
  overflow: hidden;
}

.prodCardMainColors{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 7px;
  margin-top: 15px;
}

.prodCardMainColorsSingle{
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.prodCardMainBtn{
  position: absolute;
  width: 100%;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 0 0 inherit inherit;
  bottom: -45px;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 250ms ease-in-out;
  cursor: pointer;
  font-family: "fanavari";
}

.prodCardMain:hover{
  .prodCardMainBtn{
      bottom: 0px;
  }
}

.mobProdSlides2{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.mobProsliderCont2{
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #dbd9d1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.mobProsliderContSlide2{
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: start;
  transition: all 300ms ease-in-out;
}

.mobProsliderContSlide2 img{
  width: 100%;
  height: 100%;
}

.mobProsliderContDots2{
  width: 100%;
  position: absolute;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  z-index: 5;
}

.mobProsliderContDotsSingle2{
  width: 12px;
  height: 12px;
  background-color: #939393;
  border-radius: 50%;
  transition: all 250ms ease-in-out;
}

.mobProsliderContDotsSingle2.active{
  background-color: #ffffff;
}

.mobProsliderContBtns{
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
}

.mobProsliderContBtns button{
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: none;
  background-color: rgba(255, 255, 255, 0.75);
  color: #000000;
  cursor: pointer;
}

@media (max-width: 767.98px) {
    .rows{
        right: 0;
        margin-right: 70px;
        margin-top: 130px;
    }
    .sideMenu{
      display: none;
    }
}