/* ================= MANYAVAR GIF SECTION ================= */

.mv-gif-section{
  width:100%;
  padding:0;
  margin:0;
  background:#f8ecd7;   /* 🎯 manyavar cream */
  display:flex;
  justify-content:center;
}

/* fade animation */
.fade-gif{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .9s ease, transform .9s ease;
}

.fade-gif.show{
  opacity:1;
  transform:none;
}

/* ================= WRAP ================= */

.mv-gif-wrap{
  position:relative;
  max-width:1100px;
  width:100%;
  padding:0;            /* 🔥 FRAME FIX */
  margin:0 auto;
  overflow:hidden;      /* 🔥 edge fade clean */
}

/* IMAGE */
.mv-gif-wrap img{
  width:100%;
  height:auto;
  display:block;
  mix-blend-mode:multiply;  /* 🎯 artwork merge */
}

/* ================= TEXT OVERLAY ================= */

.mv-gif-text{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:40px;
  color:#fff;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,0)
  );
}

.mv-gif-text h3{
  font-size:30px;
  margin-bottom:6px;
}

.mv-gif-text p{
  font-size:15px;
  opacity:.9;
}

/* ================= IMAGE EDGE BLEND ================= */

/* LEFT + RIGHT fade */
.mv-gif-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(
    to right,
    #f8ecd7 0%,
    rgba(248,236,215,0) 14%,
    rgba(248,236,215,0) 86%,
    #f8ecd7 100%
  );
}

/* TOP + BOTTOM fade */
.mv-gif-wr
