/* ===================================
   SILK AROMA PRODUCTS SECTION
=================================== */

.sa-products{
  background:#ABE3E4;
  padding:120px 20px;
  overflow:hidden;
}

.sa-products__container{
  max-width:1400px;
  margin:0 auto;
}

/* ===== HEADER ===== */

.sa-products__header{
  max-width:900px;
  margin:0 auto 70px;
  text-align:center;
}

.sa-products__subtitle{
  display:block;
  font-family:"Sebino", sans-serif;
  font-weight:700;
  font-size:15px;
  letter-spacing:1px;
  color:#5C67B2;
  margin-bottom:10px;
}

.sa-products__title{
  font-size:36px;
  font-weight:500;
  color:#282D65;
  font-family:"CoHeadline";
  letter-spacing:1px;
  line-height:1.2;
  margin-bottom:22px;
  transition:0.3s ease;
}

.sa-products__title:hover{
  color:#5C67B2;
}

.sa-products__text{
  font-family:"Sebino",sans-serif;
  font-size:17px;
  line-height:1.6;
  color:#2a286b;
  margin:0 auto 16px;
  max-width:820px;
}

/* ===== SLIDER ===== */

.sa-products__slider{
  width:100vw;
  margin-left:calc(50% - 50vw);
  overflow:hidden;
  position:relative;
}

.sa-products__track{
  display:flex;
  gap:24px;
  width:max-content;
  animation: saScroll 25s linear infinite;
  will-change: transform;
}

/* IMPORTANT: must contain duplicated items in HTML */

@keyframes saScroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PRODUCT CARD ===== */

.sa-product{
  width:260px;
  height:420px;
  background:#fff;
  border-radius:28px;
  padding:35px 25px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:center;
  text-align:center;
  flex:0 0 auto;
  transition:0.3s ease;
}

.sa-product:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.sa-product__image{
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.sa-product__image img{
  max-height:200px;
  max-width:100%;
  object-fit:contain;
}

.sa-product__name{
  font-family:"Sebino", sans-serif;
  font-weight:400;
  font-size:15px;
  color:#282D65;
  margin:15px 0;
}

.sa-product__btn{
  padding:12px 28px;
  background:#5C67B2;
  color:#fff;
  border-radius:30px;
  font-family:"Sebino", sans-serif;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
  transition:0.3s ease;
}

.sa-product__btn:hover{
  background:#282D65;
  color:#fff !important;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width:768px){

  .sa-products{
    padding:90px 20px;
  }

  .sa-products__header{
    margin-bottom:45px;
  }

  .sa-products__subtitle{
    font-size:13px;
  }

  .sa-products__title{
    font-size:28px;
  }

  .sa-products__text{
    font-size:15px;
    max-width:330px;
  }

  .sa-product{
    width:240px;
    height:380px;
  }

}

/* SMALL MOBILE */

@media (max-width:480px){

  .sa-products{
    padding:70px 15px;
  }

  .sa-products__title{
    font-size:24px;
  }

  .sa-products__text{
    max-width:300px;
  }

  .sa-product{
    width:220px;
    height:360px;
  }

}