/* ===== index.html | bloco 1 ===== */
/* PRODUCT CAROUSEL */

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

#produtos .product-carousel-viewport{
  overflow:hidden;
  border-radius:28px 28px 0 0;
  background:#f3ede6;
}

#produtos .product-carousel-track{
  display:flex;
  width:100%;
  transition:transform .55s ease;
}

#produtos .product-slide{
  min-width:100%;
  aspect-ratio:4/5;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3ede6;
}

#produtos .product-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

#produtos .product-carousel-dots{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  z-index:10;
}

#produtos .product-carousel-dots .dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.45);
  cursor:pointer;
  transition:all .25s ease;
  padding:0;
}

#produtos .product-carousel-dots .dot.active{
  width:24px;
  background:#ffffff;
}

.store-slide{display:none;}
.store-slide.active{display:grid;}


/* ===== index.html | bloco 2 ===== */
/* STORES CAROUSEL FIX */

.stores-carousel{
  position:relative;
  overflow:hidden;
  width:100%;
}

.stores-track{
  position:relative;
  width:100%;
}

.store-card{
  display:none !important;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:48px;
  background:#f6f1eb;
  border-radius:32px;
  overflow:hidden;
}

.store-card.active{
  display:grid !important;
}

.store-image img{
  width:100%;
  height:720px;
  object-fit:cover;
  display:block;
}

.stores-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:20;
  width:54px;
  height:54px;
  border:none;
  border-radius:999px;
  background:#fff;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.stores-prev{left:18px;}
.stores-next{right:18px;}

@media(max-width: 980px){

  .store-card.active{
    grid-template-columns:1fr !important;
  }

  .store-image img{
    height:420px;
  }

}


/* ===== index.html | bloco 3 ===== */
/* PRODUCT CAROUSEL STABILITY FIX */

.product-carousel picture,
.carousel-track picture,
.product-images picture{
    display:block;
    width:100%;
    height:100%;
}

.product-carousel picture img,
.carousel-track picture img,
.product-images picture img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.carousel-dots{
    display:flex !important;
    justify-content:center;
    align-items:center;
    gap:8px;
}

.carousel-dot{
    display:block !important;
}


/* CTA identidade olfativa */
.identity-project-cta{
  margin-top:20px;
}
