/* your styles go here */
/* === Product image hover swap === */
.product-image-wrapper {
    position: relative;
}

.product-image-wrapper img {
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.product-image-wrapper .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-image-wrapper:hover .img-hover {
    opacity: 1;
}

.product-image-wrapper:hover .img-main {
    opacity: 0;
}

@media (hover: hover) {
    .product-image-wrapper:hover .img-hover {
        opacity: 1;
    }

    .product-image-wrapper:hover .img-main {
        opacity: 0;
    }
}

/* === Product image hover swap (category & index) === */

.product .position-relative {
    position: relative;
    overflow: hidden;
}

.product .img-main,
.product .img-hover {
    width: 100%;
    transition: opacity 0.3s ease-in-out;
    display: block;
}

.product .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product .position-relative:hover .img-hover {
    opacity: 1;
}

.product .position-relative:hover .img-main {
    opacity: 0;
}

/* Solo dispositivos con hover real */
@media (hover: hover) {
    .product .position-relative:hover .img-hover {
        opacity: 1;
    }

    .product .position-relative:hover .img-main {
        opacity: 0;
    }
}


main {
  flex: 1;
}

form input,
form select {
  width: 100%;
}

/**     WHATSAPP    **/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}

/**     INSTAGRAM    **/
.instagram-icon {
  font-size: 28px;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.instagram-icon:hover {
  color: #E1306C;
  transform: scale(1.1);
  text-decoration: none;
}