/* nts-woo-products */

.products-list {
  display: flex;
  justify-content: center;
}

@media (max-width: 760px) {
  .products-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.products-list__item {
  position: relative;
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid #91e1d4;
}

.products-list__item:last-child {
  border-left: 0;
}

@media (max-width: 760px) {
  .products-list__item {
    margin-top: 40px;
    padding: 0 25px;
    border-left: 0px solid #91e1d4;
    border-bottom: 1px solid #91e1d4;
  }
  .products-list__item:last-child {
    border-left: 0;
    border-bottom: 0px solid #91e1d4;
  }
}

.product-list__item__wrap {
  height: 200px;
}

@media (max-width: 760px) {
  .product-list__item__wrap {
    height: auto;
  }
}

.products-list__item__count {
  width: 65px;
  height: 65px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  padding: 0;
  border-radius: 100%;
  mix-blend-mode: multiply;
  box-shadow: 0 3px 6px 1px rgba(23, 161, 147, 0.23);
  border: solid 2px #fff;
  background-color: var(--primary-color);
  margin-bottom: 40px;
}

@media (max-width: 760px) {
  .products-list__item__count {
    margin-bottom: 20px;
  }
}

.products-list__item__title h3 {
  font-size: 1rem;
  font-weight: bold;
}

@media (max-width: 760px) {
  .products-list__item__title h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 760px) {
  .products-list__item__subtitle {
    padding: 0 40px;
  }
}

.products-list__item__subtitle h4 {
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  .products-list__item__subtitle h4 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}

.products-list__item__price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
}

@media (max-width: 760px) {
  .products-list__item__price {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}

.products-list__item__extra-label {
  font-size: 0.7rem;
  color: var(--primary-color);
}

.products-list__item__extra-text{
  margin: 5px 0;
}

.products-list__item__extra-text p{
  margin: 0;
  font-size: 14px;
}

.products-list__item__stamp{
  position: absolute;
  left: 15px;
  background: rgb(236,201,127);
  background: linear-gradient(90deg, rgb(255 178 15) 0%, rgb(255 172 0) 35%, rgba(231,192,112,1) 91%);
  background: #ffbc00;
  box-shadow: 1px 1px 5px black;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  transform: rotate(-3deg);
  padding: 10px;
}
}

@media(max-width:860px){
  .products-list__item__stamp{
    top: -15px;
  }
}

.products-list__item__add-to-cart .primary-circle-button {
  margin: auto;
  display: block;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.4);
  border: solid 1px #fff;
  cursor: pointer;
  font-size: 1rem;
}

.products-list__item__add-to-cart:hover .primary-circle-button{
    color: var(--gold-color);
    background-color:#fff;
}

@media (max-width: 760px) {
  .products-list__item__add-to-cart .primary-circle-button {
    padding: 8px 30px;
    margin: 20px auto 50px auto;
    width: 65%;
  }
}

.products-list__item__add-to-cart .primary-circle-button span {
  font-size: 0.9rem;
}

/* Step */

.step .step__title {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.step .step__title .step__title__number {
  font-weight: bold;
  color: var(--primary-color);
  border-radius: 100%;
  border: 1px solid var(--primary-color);
  width: 25px;
  height: 25px;
  text-align: center;
  font-size: 0.9rem;
  margin-left: 10px;
}

@media(max-width:760px){
    .step .step__title .step__title__number {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
    }
}

@media(max-width:760px){
    .step .title-seperator{
        display:none;
    }
}

.step .step__title .step__title__text {
  font-size: 0.9rem;
  margin: 0;
  color: var(--primary-color);
}

@media(max-width:760px){
    .step .step__title .step__title__text {
        font-size: 1.2rem;
      }
}

.step .step__title .step__title__text .step__title__text__green {
  color: var(--primary-color);
}

@media(max-width:760px){
    .step .step__title .step__title__text .step__title__text__green {
        display: block;
      }
}

.step .step__title .step__title__text .step__title__text__black {
  color: #505050;
}

.step .step__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.8rem;
}

.step__content.step__content_row {
  flex-direction: row;
}

.step__content.step__content_row {
    flex-direction: column !important;
  }
}

.step__content.step__content_row div {
  width: 47%;
}

.step__content.step__content_column {
  flex-direction: column;
}

.step .step__content .step__content_box {
  background-color: #fff;
  padding: 22px 25px 24px;
  border-radius: 4px;
  border: solid 1px #d9d9d9;
  margin-bottom: 20px;
}

@media(max-width:760px){
    .step .step__content .step__content_box{
      
        font-size: 1rem;
    }
}

.step__content.step__content_column .step__content_box {
  margin-bottom: 20px;
}

@media(max-width:760px){
    .step .step__content .step__note {
        font-size: 1rem;
    }
    
}
.step .step__content .step__note p {
  margin-bottom: 10px;
}

.step .step__content .step__note ul {
  padding: 0 25px;
}

@media(max-width:760px){
    .step .step__content .step__note ul {
        padding: 0 15px;
      }
      
}

/* Menu item */

.menu-item-nts {
  display: flex;
  justify-content: start;
  border-bottom: 1px solid #fff;

  text-align: right;
}

.menu-item-nts span {
  margin-left: 20px;
  color: #fff;
  padding: 8px 0;
  font-size: 0.8rem;
}

.menu-item-nts span:first-child {
  width: 30%;
}

@media(max-width:760px){
    .menu-item-nts span:first-child {
        width: 40%;
      }
      
    .menu-item-nts span:last-child {
        width: 60%;
      }
      
}

/* Popup product */

.popup-product {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: #00b99b;
  padding: 35px 10px;
  min-height: 380px;
z-index:999;
}

@media (max-width: 760px) {
  .popup-product {
    padding: 30px 0;
  }
}

#close-product-popup {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: var(--gold-color);
  border-radius: 100%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  line-height: 0;
  cursor: pointer;
}

#close-product-popup:hover {
  box-shadow: 1px 1px 5px black;
}

.popup-product h3 {
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 760px) {
  .popup-product h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 760px) {
  .product-variation {
    width:90%;
margin:auto;
  }
}




.product-variation .quantity-buttons {
  display: flex;
  align-items: center;
  width: 24%;
  justify-content: space-between;
  margin-right: 20px;
}

.product-variation__item__flavor .quantity-buttons {
  width: 35%;
  margin: auto;
}

.product-variation__item__flavor .quantity-buttons .quantity-btn {
  margin: 0 1px;
}

.product-variation .quantity-buttons .quantity-btn {
  background-color: var(--gold-color);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  color: #fff;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 760px) {
  .product-variation .quantity-buttons .quantity-btn {
    width: 30px;
    height: 30px;
  }
}

.product-variation .quantity-buttons .quantity-btn:hover {
  box-shadow: 1px 1px 3px black;
}

.product-variation__item {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  .product-variation__item {
    font-size: 1.3rem;
    justify-content: space-around;
  }
}

.extra-variation {
  display: none;
}

.product-variation__item.extra-variation {
  flex-direction: column;
  font-size: 0.9rem;
  color: white;
  margin-top: 10px;
}

.product-variation__item.extra-variation h5 {
  font-size: 0.8rem;
  font-weight: 400;
}

.product-variation__item span {
    color: #fff;
    margin-left: 20px;
    width: 160px;
    font-size: 0.7rem;
    text-align: right;
}

@media (max-width: 760px) {
 .product-variation__item span {
    font-size: 1rem;
}
}


.popup-product input {
  padding: 0px;
  width: 20%;
  text-align: center;
font-size:0.9rem;
}

.product-variation__item.extra-variation input {
  width: 30%;
  margin: 10px auto;
  font-size: 0.9rem;
}

.popup-add-to-cart {
  position: absolute;
  bottom: 5px;
  right: 0;
  left: 0;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99999;
}

.product-variation__item__flavor {
  display: flex;
justify-content:center;
}

.product-variation__item__flavor .flavor {
  display: flex;
  flex-direction: column;
font-size:0.9rem;
position:relative;
}

.product-variation__item__flavor .out-stock-overlay{
    background: #00b99b7d;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}

.product-variation__item__flavor .out-stock-overlay span{

    position: relative;
    top: 30%;
    right: 0;
    left: 0;
    text-align: center;
    margin: auto;
    font-size: 0.9rem;

}

.counter-alert {
  background-color: var(--gold-color);
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 0;
  text-align: center;
  color: white;
  font-size: 0.8rem;
  padding: 5px;
}

.add-to-cart-alert {
  position: absolute;
  bottom: 80px;
  right: 0;
  left: 0;
  text-align: center;
  color: white;
  background-color: red;
  font-size: 0.8rem;
  display: none;
}

@media (max-width: 760px) {
  .add-to-cart-alert {
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  .counter-alert {
    font-size: 1.2rem;
  }
}

.counter-alert span {
  background: white;
  padding: 2px 5px;
  color: black;
  border-radius: 8px;
}


/* ams-testimonial */
.ams-testimonial{
  height: 270px !important;
  border-radius: 20px;
  display: flex !important;
  align-items: center;
  margin: 10px;
  background: #ffffff;
  padding: 10px;
  /* box-shadow: 1px 1px 3px #c8c8c8; */
  border:1px solid #00b99b;
  overflow: scroll;
}

.testimonials-title{
  display: flex;
  align-items: center;
  position: relative;
  right:10px;
}

.testimonials-title h5{
  font-weight: bold;
    text-shadow: 1px 1px #00b99b;
    margin: 0;
}

.testimonial-next{
  position: absolute;
  top: 10px;
  left: 0;
  width: 3%;
}

@media(max-width:860px){
  .testimonials-title h5{
    font-size:1rem
  }
}

@media(max-width:860px){
  .testimonial-next{
  position: absolute;
  top: 8px;
  left: 10px;
  width: 6%;
}
}



.testimonials-title img{
  width: 4%;
  margin-left: 10px;
}

@media(max-width:860px){
  .testimonials-title img{
    width: 10%;
  }
  
}

/* hide scroll bar */
.ams-testimonial::-webkit-scrollbar {
  display: none !important;
}


.ams-testimonial .content{
  text-align: center;
}

.ams-testimonial .tetimonial-image img{
  text-align: center;
  margin: 10px auto;
  object-fit: cover;
 
}

.ams-testimonial .tetimonial-image.blure-image img{
   /* make blure image */
  -webkit-filter: blur(3.5px);


}

.ams-testimonial .testimonial-description{
  font-size: 0.8rem;
  width: 65%;
  margin: auto;
}

.rate {
  height: 26px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
}
.rate:not(:checked) > input {
  position:absolute;
  top:-9999px;
}
.rate:not(:checked) > label {
  float:right;
  width:1em;
  overflow:hidden;
  white-space:nowrap;
  cursor:pointer;
  font-size:20px;
  color: #ffc700;    
}
.rate:not(:checked) > label:before {
  content: '★ ';
}
.rate > input:checked ~ label {
  color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #ffc700;    
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #ffc700;    
}

.slick-dots li button{
  display: none !important;
}


.slick-dots{
  position: relative;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.slick-dots li{
  text-align: center;
    list-style: none;
    padding: 0;
    background: #e0e0e0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin: 10px 10px;
    cursor: pointer;
}

.slick-dots li.slick-active{
  background: #00b99b;

}

.products-list__item__image{
  width: 55%;
  margin: auto;
  height: auto;
}

#total-price{
  margin: 20px;
  color: white;
  border: 1px solid;
  box-sizing: border-box;
}

#discount-alert{
    color:#fff
}

.product-variation__item.disabled {
    position: relative;
    pointer-events: none; /* Prevent clicks */
    opacity: 0.5; /* Make it look faded */
}

.product-variation__item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent white overlay */
    z-index: 2;
    border-radius: 5px;
}


