.nfc-logo {
    height: 4rem;
}

.nfc-logo-footer {
    height: 3rem;
}

/* PRODUCT PAGE */

.prod_info {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.prod_info .product_title {
  line-height: 3.5rem;
}

.product_price {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
}

.stock-wrapper {
  text-align: left;
}

.stock-status {
  margin: 1rem 0 !important;
  padding: 0.4rem 0.8rem !important;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.375rem !important;
  border: 3px solid;
  display: inline-block;
}

.in-stock {
  border-color: #78be20 !important;
  color: #78be20;
}

.low-stock {
  border-color: #ed8b00 !important;
  color: #ed8b00;
}

.out-of-stock {
  border-color: #da291c !important;
  color: #da291c;
}

.coming-soon {
  border-color: #da291c !important;
  color: #da291c;
}

.note {
  margin: 1.3rem 0 !important;
  padding: 1rem !important;
  /* border: 1px solid white !important; */
  border: 0 !important;
  font-size: 1rem;
  line-height: 1.5rem;
  background-color: #ccc;
  color: rgb(27, 28, 31);
}

.note_title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
}

.hint {
    font-size: 1rem;
    background-color: #FFB81C;
    color: rgb(27, 28, 31);
  margin: 1.3rem 0 !important;
  padding: 1rem !important;
  border: 0 !important;
}

.full-red {
  background-color: #DA291C;
}

.full-red p {
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
}

.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.7);
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: black;
  opacity: 0.7;
  z-index: 10;
  font-size: 3.5rem;
  line-height: 1;
}

.modal-arrow:hover {
  opacity: 1;
}

.modal-arrow.left {
  left: 1rem;
}

.modal-arrow.right {
  right: 1rem;
}

.toggle-videos {
  display: block;
  text-align: center;
  margin: 10px 0;
  font-weight: bold;
  cursor: pointer;
  color: #41B6E6;
}

.video-wrapper {
  transition: max-height 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
  max-height: 2000px;
  opacity: 1;

}

.video-wrapper.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow.rotated {
  transform: rotate(180deg);
}

.toggle-videos i {
  margin-left: 6px;
}

.toggle-videos {
  text-decoration: none;
}

.video {
  max-width: 5rem;
}

.responsive-video {
  display: block;           /* makes margin auto work */
  max-height: 30rem;        /* your height limit */
  width: auto;              /* prevent stretching */
  max-width: 100%;          /* keep inside column */
  margin: 0 auto;           /* center horizontally */
}

.postage {
  font-size: 1rem;
  font-weight: 300;
}

/* Center the block and keep it responsive */
.realtapfake-wrap {
  display: grid;
  justify-content: center;
  margin: 0 auto 1rem;
  width: min(80vw, 450px);   /* shrink on mobile, cap on desktop */
}

/* Layer the two images and make them scale with the container */
.realtapfake-img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;              /* responsive */
  transition: opacity .3s ease;
  display: block;
}

/* Default (light theme): show light, hide dark */
.realtapfake-dark { opacity: 0; }

/* Dark theme: cross-fade swap */
[data-bs-theme="dark"] .realtapfake-light { opacity: 0; }
[data-bs-theme="dark"] .realtapfake-dark  { opacity: 1; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .realtapfake-img { transition: none; }
}

.wikitest-crib {
  width: 75%;
}

/* SCROLLING TICKER */

/* Announcement Bar */
.announcement-bar {
  --background: #0f1726;
  --text-color: #fff;
  --dot-size: 6px;
  --gap-x: 4rem;
  background: var(--background);
  color: var(--text-color);
  overflow: hidden;
  font: 700 14px/1 Arial, sans-serif;
  position: relative;
}

.announcement-bar__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: none; /* JS will start when ready */
}

.announcement-bar.is-ready .announcement-bar__track {
  animation: tickerPX var(--ticker-duration, 30s) linear infinite;
}

.announcement-bar__content { display: flex; align-items: center; }
.announcement-bar__item { display: flex; align-items: center; padding: 1.2rem 0; }
.announcement-bar__item p { margin: 0; }
.announcement-bar__item a { color: var(--text-color); text-decoration: none; }

.shape-circle {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: var(--text-color);
  margin: 0 var(--gap-x);
  flex: 0 0 auto;
  align-self: center;
}

/* pixel-accurate translate; JS sets --ticker-distance (a number with px) */
@keyframes tickerPX {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(var(--ticker-distance) * -1px),0,0); }
}

.announcement-bar:hover .announcement-bar__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .announcement-bar__track { animation: none !important; } }
@media (max-width: 600px) {
  .announcement-bar { font-size: 13px; }
  .announcement-bar__item { padding: 1.2rem 0; }
  :root .announcement-bar { --gap-x: 1.5rem; }
}