/* AMORA – Product Carousel */

.amora-product-carousel{
  width:100%;
  position:relative;
}

.amora-product-carousel__swiper{
  width:100%;
  position:relative;
  padding: 8px 0 36px;
}

.amora-product-carousel__nav{
  position:absolute;
  top: 40%;
  left: 0;
  right: 0;
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  z-index: 5;
}

.amora-pc-btn{
  pointer-events:auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(60,31,26,.18);
  background: rgba(255,255,255,.9);
  color:#3C1F1A;
  font-size: 22px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 28px rgba(60,31,26,.08);
  transition: transform .15s ease, opacity .15s ease;
  opacity:.9;
}

.amora-pc-btn:hover{ transform: translateY(-1px); opacity:1; }

.amora-product-carousel__pagination{
  position:absolute;
  left:0; right:0;
  bottom: 6px;
  text-align:center;
}

.amora-product-carousel .swiper-pagination-bullet{
  width: 6px;
  height: 6px;
  opacity: .25;
}

.amora-product-carousel .swiper-pagination-bullet-active{
  opacity: 1;
}

/* Card */
.amora-product-card{
  display:block;
  text-decoration:none !important;
  background:#fff;
  border: 1px solid rgba(60,31,26,.10);
  border-radius: 14px;
  overflow:hidden;
  height: 100%;
  box-shadow: 0 14px 40px rgba(60,31,26,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.amora-product-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(60,31,26,.10);
}

.amora-product-card__badge{
  position:absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(241,191,80,.18);
  color:#3C1F1A;
  border: 1px solid rgba(241,191,80,.35);
  backdrop-filter: blur(4px);
}

.amora-product-card__media{
  position:relative;
  background: #faf7f2;
  aspect-ratio: 1 / 1; /* giúp không bị quá to */
  display:flex;
  align-items:center;
  justify-content:center;
}

.amora-product-card__img{
  width: 78% !important;
  height: auto !important;
  object-fit: contain;
}

.amora-product-card__body{
  padding: 14px 14px 16px;
  text-align:center;
}

.amora-product-card__title{
  margin: 0 0 8px !important;
  font-family: "Playfair Display","Cormorant Garamond","Times New Roman",serif;
  font-size: 16px;
  line-height: 1.25;
  color:#3C1F1A;
}

.amora-product-card__price{
  font-size: 13px;
  color: rgba(60,31,26,.78);
  margin-bottom: 10px;
}

.amora-product-card__cta{
  display:inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(60,31,26,.22);
  color:#3C1F1A;
  font-size: 12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.7));
}