/* =====================================================
   redversed — images.css (v6 - minimal & clean)
   Just top/bottom strips, no side images
   ===================================================== */

/* ---- TOP STRIP ---- */
.top-botanical {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  max-width: 100vw;
  height: 80px;
  background-image: url('images/topbottom3.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-x;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* ---- BOTTOM STRIP ---- */
.bottom-botanical {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  max-width: 100vw;
  height: 70px;
  background-image: url('images/topbottom2.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-x;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
