/* SMAI CLS fix - layout stability only, no visual redesign */

/* WhatsApp button: reserve fixed size to avoid late layout jump */
a.wa-s-n {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  contain: layout size;
}

/* Homepage photos slider: keep image box ratio while loading */
.s-block--photos-slider img {
  aspect-ratio: 1108 / 428;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.s-block--photos-slider .s-slider-container,
.s-block--photos-slider .swiper {
  aspect-ratio: 1108 / 428;
}

/* Product images: reserve square box to reduce shift */
.s-product-card img,
salla-product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: auto;
}