﻿.rotate-item {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  transition: opacity .6s ease-in-out;
  opacity: 0;
  pointer-events: none;
  font-size: 13px;
}
.rotate-item.active {
  opacity: 1;
  pointer-events: auto;
}
.top-bar {
  background-color: black;
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  /* own compositor layer: Safari intermittently paints scrolling page
     content OVER fixed elements during momentum scroll (repaint lag,
     z-index irrelevant). translateZ(0) keeps the strip on its own GPU
     layer so it composites independently (owner report 2026-07-10). */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  top: 0;
  z-index: 1040; /* above all page content incl. the wishlist heart (1001),
             campaign landing overlay (1020) and the fixed nav (1030) -
             page elements were scrolling OVER the black strip (owner
             2026-07-10). Below modals (1050+). */
  margin-left: 0px;
  margin-right: 0px;
}
.top-bar-text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px !important;
  margin: 0;
  z-index: 1111;
}
.top-bar {
  height: 32px;
}
body {
  padding-top: 32px;
}
.navbar-fixed-top {
  top: 32px;
}
@media (max-width: 768px) {
  .widget-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
  }
  .trustpilot-widget iframe {
    transform: scale(0.74);
    min-width: 430px !important;
  }
}
@media (max-width: 1920px) {
  .top-bar {
    height: 36px;
  }
  body {
    padding-top: 36px;
  }
  .navbar-fixed-top {
    top: 36px;
  }
}
@media (max-width: 1200px) {
  .top-bar {
    height: 40px;
  }
  body {
    padding-top: 40px;
  }
  .navbar-fixed-top {
    top: 40px;
  }
  .trustpilot-widget iframe {
    margin-top: 10px;
  }
}

/* The fixed NAV suffers the same Safari momentum-scroll paint-over as the
   strip - promote it to its own compositor layer too, and hint both so
   the compositor keeps the layers warm. */
.navbar-fixed-top {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.top-bar { will-change: transform; }
