/* ========================================
   JUNGLE CITY KINDERPARADIES
   Production Stylesheet
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: #FAFAF5;
  color: #1a2e1a;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, a, input, select, textarea, label { touch-action: manipulation; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Fonts --- */
.f-display { font-family: 'Fredoka', 'Nunito', sans-serif; }

/* --- Colors --- */
:root {
  --green-900: #0d2e0d;
  --green-800: #1a3a1a;
  --green-700: #1B5E20;
  --green-600: #2E7D32;
  --green-500: #388E3C;
  --green-400: #43A047;
  --green-300: #4CAF50;
  --green-200: #66BB6A;
  --green-100: #81C784;
  --green-50: #A5D6A7;
  --green-25: #C8E6C9;
  --green-10: #E8F5E9;
  --orange-600: #FF6D00;
  --orange-500: #FF8C00;
  --orange-400: #FFA726;
  --cream: #FAFAF5;
  --text: #1a2e1a;
  --text-light: #555;
  --text-muted: #888;
  --white: #ffffff;
}

/* --- Jungle Gradient --- */
.jungle-grad {
  background: linear-gradient(165deg, var(--green-800) 0%, var(--green-700) 30%, var(--green-600) 60%, var(--green-800) 100%);
}
.jungle-grad-light {
  background: linear-gradient(165deg, var(--green-10) 0%, #f1f8e9 50%, var(--green-10) 100%);
}

/* --- Leaf Pattern Overlay --- */
.leaf-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5C30 5 20 15 20 30C20 40 24 48 30 50C36 48 40 40 40 30C40 15 30 5 30 5Z' fill='%2300000008'/%3E%3C/svg%3E");
}

/* --- Layout --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 24px; }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  align-items: center; justify-content: space-between;
  height: 64px; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 6; cursor: pointer; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4; }
.nav-link {
  color: white; font-weight: 600; font-size: 15px;
  padding: 8px 16px; border-radius: 8px; transition: background 0.3s;
  cursor: pointer; background: none; border: none; white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,0.15); }
.nav-lang {
  opacity: 0.8; font-size: 13px; padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 6px;
  color: white; background: none; cursor: pointer; font-weight: 600;
}
.nav-lang:hover { background: rgba(255,255,255,0.15); }
.nav-hamburger {
  display: none; background: none; border: none; color: white;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-mobile {
  display: none; flex-direction: column; padding: 16px 24px; gap: 4;
}
.nav-mobile.open { display: flex; }

/* --- Buttons --- */
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: white; border: none; border-radius: 50px; padding: 14px 32px;
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px;
  cursor: pointer; transition: all 0.3s ease; display: inline-flex;
  align-items: center; gap: 8;
  box-shadow: 0 4px 16px rgba(255,109,0,0.3);
  touch-action: manipulation;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,109,0,0.4); }
.btn-secondary {
  background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px; padding: 12px 28px; font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8;
  touch-action: manipulation;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.6); }

/* --- Input Fields --- */
.input-field {
  width: 100%; padding: 12px 16px; border: 2px solid var(--green-25);
  border-radius: 12px; font-size: 15px; background: white; outline: none;
  transition: border-color 0.3s ease;
}
.input-field:focus { border-color: var(--orange-500); }
.input-hero {
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: white;
}
.input-hero::placeholder { color: rgba(255,255,255,0.5); }

/* --- Cards --- */
.card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,94,32,0.15); }

/* --- Tags --- */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.tag-orange { background: var(--orange-500); color: white; }
.tag-green { background: var(--green-10); color: var(--green-600); }
.tag-best { background: var(--orange-500); color: white; position: absolute; top: -12px; right: 24px; }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(13,46,13,0.85) 0%, rgba(27,94,32,0.75) 40%, rgba(46,125,50,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 40px 24px; max-width: 700px;
}
.hero-badge {
  color: var(--green-100); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px;
}
.hero h1 {
  color: white; font-size: clamp(32px, 6vw, 56px);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
}
.hero-sub {
  color: var(--green-25); font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.6; margin-bottom: 36px;
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; width: 100%;
  z-index: 3;
}
.hero-logo {
  width: 180px; height: auto; margin: 0 auto 24px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}

/* --- Email Capture --- */
.email-capture {
  display: flex; gap: 8; max-width: 420px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.email-capture input { flex: 1; min-width: 200px; }
.email-success {
  background: rgba(255,255,255,0.1); border-radius: 16px;
  padding: 16px 24px; display: inline-flex; align-items: center; gap: 10;
}
.email-success span { color: var(--green-100); font-weight: 600; }

/* --- Status Badge --- */
.status-badge {
  display: inline-flex; align-items: center; gap: 8;
  padding: 8px 20px; border-radius: 30px; margin-bottom: 20px;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.status-dot.open { background: var(--green-300); animation: pulse 2s infinite; }
.status-dot.closed { background: #999; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* --- Instagram Link --- */
.insta-link {
  color: var(--green-50); display: inline-flex; align-items: center;
  gap: 6; font-size: 14px; margin-top: 32px; transition: color 0.3s;
}
.insta-link:hover { color: white; }

/* --- At-a-Glance Strip --- */
.strip { padding: 40px 24px; }
.strip-inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  gap: 16px; justify-content: center; flex-wrap: wrap;
}
.strip-item { text-align: center; padding: 16px 20px; flex: 1 1 160px; max-width: 200px; }
.strip-label { font-size: 20px; font-weight: 700; color: var(--green-700); margin-bottom: 4px; }
.strip-sub { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* --- Worlds Grid --- */
.worlds-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.world-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.world-img span.emoji { color: rgba(255,255,255,0.2); font-size: 64px; }
.world-body { padding: 24px; }
.world-name { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.world-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-top: 8px; }

/* --- Lounge --- */
.lounge-grid {
  max-width: 900px; margin: 0 auto; display: flex;
  gap: 40px; align-items: center; flex-wrap: wrap;
}
.lounge-img {
  flex: 1 1 300px; aspect-ratio: 4/3; border-radius: 20px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.lounge-text { flex: 1 1 300px; }
.lounge-check {
  display: flex; align-items: center; gap: 10; margin-bottom: 10px;
}
.lounge-check-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--green-10);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* --- Birthday --- */
.bday-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 48px;
}
.bday-card {
  background: white; border-radius: 20px; padding: 32px; position: relative;
}
.bday-card.best { border: 3px solid var(--orange-500); }
.bday-price {
  display: flex; align-items: baseline; gap: 4; margin-bottom: 4px;
}
.bday-price-num { font-size: 40px; font-weight: 700; color: var(--orange-600); }
.bday-price-unit { font-size: 14px; color: var(--text-muted); }
.bday-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.bday-include {
  display: flex; align-items: center; gap: 8; margin-bottom: 8px;
}
.bday-include svg { flex-shrink: 0; }
.bday-note {
  text-align: center; color: var(--green-50); font-size: 14px; margin-bottom: 32px;
}
.bday-form {
  max-width: 500px; margin: 0 auto; background: rgba(255,255,255,0.95);
  border-radius: 20px; padding: 32px;
}
.bday-form-fields { display: flex; flex-direction: column; gap: 12px; }

/* --- Prices --- */
.prices-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px; max-width: 900px; margin: 0 auto;
}
.price-table {
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.price-row {
  display: flex; justify-content: space-between; padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: var(--cream); }
.price-cat { font-size: 14px; color: #444; }
.price-val { font-size: 15px; font-weight: 700; color: var(--green-700); }
.price-note { font-size: 13px; color: var(--text-muted); margin-top: 10px; }
.hours-row {
  display: flex; justify-content: space-between; padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-size: 14px; color: #444; font-weight: 600; }
.hours-time { font-size: 16px; font-weight: 700; color: var(--orange-600); }

/* --- Info Grid --- */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px; margin-bottom: 32px;
}
.info-card {
  background: white; border-radius: 16px; padding: 20px;
  text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.info-icon { color: var(--green-600); margin-bottom: 8px; }
.info-label { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.info-desc { font-size: 12px; color: var(--text-muted); }
.rules-box {
  background: white; border-radius: 16px; padding: 24px;
  max-width: 500px; margin: 0 auto;
}
.rule-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.rule-item:last-child { margin-bottom: 0; }
.rule-item span { font-size: 14px; color: var(--text-light); }

/* --- Map --- */
.map-frame {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 24px;
}
.map-frame iframe { border: 0; display: block; }
.contact-links {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.contact-link {
  display: flex; align-items: center; gap: 8;
  color: var(--green-700); font-weight: 600; font-size: 15px;
  transition: color 0.3s;
}
.contact-link:hover { color: var(--orange-600); }

/* --- Shop --- */
.shop-grid {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 24px;
}
.shop-item {
  width: 150px; height: 150px; border-radius: 20px; overflow: hidden;
  background: white; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.shop-item:hover { transform: translateY(-4px); }
.shop-item img { width: 100%; height: 100%; object-fit: cover; }

/* --- Footer --- */
.footer { padding: 48px 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px; margin-bottom: 32px;
}
.footer-logo img { height: 48px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--green-50); transition: color 0.3s; }
.footer-social a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: var(--green-100); font-size: 12px; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal-link {
  color: var(--green-50); font-size: 12px; cursor: pointer;
  background: none; border: none; text-decoration: underline;
}
.footer-legal-link:hover { color: white; }

/* --- Modal --- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: 20px; padding: 40px; max-width: 600px;
  width: 100%; max-height: 80vh; overflow-y: auto; position: relative;
  transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.modal h2 { margin-bottom: 20px; }
.modal p { font-size: 14px; line-height: 1.8; color: #444; }
.modal p + p { margin-top: 12px; }

/* --- Section Titles --- */
.section-label {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 8px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.section-sub { font-size: 16px; color: var(--text-light); }

/* --- Wave Dividers --- */
.wave-bottom {
  position: absolute; bottom: -1px; left: 0; right: 0; width: 100%;
}

/* --- Hidden/Shown by mode --- */
[data-mode="live"] { display: none; }
body.is-live [data-mode="live"] { display: block; }
body.is-live [data-mode="prelaunch"] { display: none; }
/* For flex containers */
body.is-live [data-mode-flex="live"] { display: flex; }
[data-mode-flex="live"] { display: none; }
body.is-live [data-mode-flex="prelaunch"] { display: none; }

/* --- Mode Toggle (dev only) --- */
.mode-toggle {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  background: var(--green-700); color: white; border: none;
  border-radius: 12px; padding: 10px 16px; font-family: 'Fredoka', sans-serif;
  font-size: 13px; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  touch-action: manipulation;
}
.mode-toggle:hover { background: var(--green-600); }

/* --- SVG Icons Inline --- */
.icon { display: inline-block; vertical-align: middle; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 48px 16px; }
  .worlds-grid { grid-template-columns: 1fr; }
  .bday-grid { grid-template-columns: 1fr; }
  .prices-grid { grid-template-columns: 1fr; }
  .hero-logo { width: 140px; }
  .strip-inner { gap: 8px; }
  .strip-item { padding: 12px 10px; flex: 1 1 130px; }
  .strip-label { font-size: 16px; }
  .shop-item { width: 130px; height: 130px; }
  .lounge-grid { gap: 24px; }
  .info-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
}

@media (max-width: 480px) {
  .email-capture { flex-direction: column; }
  .email-capture input { min-width: 0; }
  .email-capture .btn-primary { width: 100%; justify-content: center; }
  .strip-item { flex: 1 1 100%; max-width: none; }
  .shop-item { width: 110px; height: 110px; }
}

/* ========================================
   MASCOT PLACEMENTS
   ======================================== */

/* Hero mascot - Kibu waving bottom right */
.hero-mascot {
  position: absolute; bottom: 40px; right: 5%; z-index: 4;
  width: 160px; height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: hero-float 3s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 768px) {
  .hero-mascot { width: 100px; bottom: 50px; right: 3%; }
}
@media (max-width: 480px) {
  .hero-mascot { width: 80px; bottom: 55px; }
}

/* World card mascots */
.world-mascot {
  width: auto; height: 130px; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
  position: relative; z-index: 1;
}

/* Section peek - Kibu peeking from left */
.section-peek-left {
  position: absolute; left: 0; bottom: 60px;
  width: 80px; height: auto;
  filter: drop-shadow(2px 0 8px rgba(0,0,0,0.1));
  z-index: 2;
}
@media (max-width: 768px) {
  .section-peek-left { width: 50px; bottom: 30px; }
}

/* Birthday mascot accents */
.bday-mascot-accent {
  position: absolute; width: 70px; height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  z-index: 1;
}
.bday-mascot-left { top: -35px; left: -15px; }
.bday-mascot-right { top: -35px; right: -15px; }
@media (max-width: 768px) {
  .bday-mascot-accent { width: 50px; }
  .bday-mascot-left { top: -25px; left: -5px; }
  .bday-mascot-right { top: -25px; right: -5px; }
}

/* Rules section mascot - Kiba reading */
.rules-mascot {
  position: absolute; right: -30px; top: -50px;
  width: 80px; height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
@media (max-width: 768px) {
  .rules-mascot { width: 55px; right: -10px; top: -35px; }
}

/* Shop section mascot - Kiba with socks */
.shop-mascot {
  position: absolute; right: 3%; bottom: 20px;
  width: 100px; height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}
@media (max-width: 768px) {
  .shop-mascot { width: 70px; right: 2%; bottom: 10px; }
}

/* Footer mascot - duo goodbye */
.footer-mascot {
  display: block; width: 140px; height: auto;
  margin: 0 auto -20px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
  position: relative; z-index: 2;
}
@media (max-width: 768px) {
  .footer-mascot { width: 100px; margin-bottom: -12px; }
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  padding: 0 24px 24px;
  display: flex; justify-content: center;
  pointer-events: none;
  opacity: 1; transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(0);
}
.cookie-banner.hidden {
  opacity: 0; transform: translateY(100%); pointer-events: none;
}
.cookie-content {
  background: var(--green-700);
  border-radius: 20px;
  padding: 24px 32px;
  max-width: 520px; width: 100%;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  pointer-events: all;
  position: relative;
  overflow: visible;
}
.cookie-kiba {
  position: absolute;
  width: 140px; height: auto;
  top: -42px; left: -15px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  z-index: 81;
  pointer-events: none;
}
.cookie-title {
  color: white; font-size: 18px; font-weight: 700; margin-bottom: 6px;
}
.cookie-text {
  color: var(--green-50); font-size: 13px; line-height: 1.5; margin-bottom: 16px;
}
.cookie-buttons {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-more {
  background: none; border: none; color: var(--green-50);
  font-size: 13px; text-decoration: underline; cursor: pointer;
  padding: 0;
}
.cookie-more:hover { color: white; }
@media (max-width: 480px) {
  .cookie-content { padding: 20px 20px; }
  .cookie-kiba { width: 100px; top: -32px; left: -8px; }
}

/* ========================================
   CROSS-BROWSER / MOBILE COMPATIBILITY
   ======================================== */

/* Visual viewport height fallback */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  min-height: calc(var(--vh, 1vh) * 100);
}

/* Disable hover transforms on touch devices */
body.touch-device .card:hover { transform: none; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
body.touch-device .btn-primary:hover { transform: none; }
body.touch-device .shop-item:hover { transform: none; }

/* will-change on remaining animated elements */
.shop-item {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cookie-banner {
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.btn-secondary {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Safe area insets for notched phones */
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.cookie-banner {
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}
