/* ===================================================== */
/* 🔒 NO-ZOOM + ORIENTATION SAFETY (mobile-only bumps)   */
/* ===================================================== */

/* Best-effort: disable double-tap zoom */
html, body {
  touch-action: manipulation;
}

/* Prevent iOS Safari text autosizing */
html {
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}

/* ✅ MOBILE/TABLET ONLY: make controls 16px to avoid iOS zoom.
   (No effect on Mac/Windows desktop.) */
@media (hover: none) and (pointer: coarse) {
  input,
  select,
  textarea,
  button {
    font-size: 16px !important;
  }
}

/* ===================================================== */
/* EXTRA: Store dashboard (keep readable, mobile only)   */
/* ===================================================== */

/* Replace the old @supports block with a mobile-only guard */
@media (hover: none) and (pointer: coarse) {
  .store-container input,
  .store-container select,
  .store-container textarea,
  .store-container button {
    font-size: 16px !important;
  }
}

/* ===================================================== */
/* EXTRA: Public store page tap behavior (mobile only)   */
/* ===================================================== */
@media (hover: none) and (pointer: coarse) {
  .shop-container,
  .shop-container * {
    touch-action: pan-x pan-y;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ===================================================== */
/* Rotate-guard overlay                                  */
/* ===================================================== */
.hl-rotate-guard{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  background: rgba(10,12,16,.72);
  backdrop-filter: blur(10px);
}

.hl-rotate-guard.is-on{ display: grid; }

.hl-rotate-guard__inner{
  text-align: center;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  max-width: 320px;
  width: calc(100% - 48px);
}

.hl-rotate-guard__img{
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 16px;
}

.hl-rotate-guard__title{
  font-family: "Karla", sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}

.hl-rotate-guard__sub{
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

/* Always-spin logo/card while rotate guard is visible */
.hl-rotate-guard.is-on .hl-rotate-guard__img{
  animation: hlSpin 1.1s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes hlSpin{
  to { transform: rotate(360deg); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hl-rotate-guard.is-on .hl-rotate-guard__img{
    animation: none !important;
  }
}