@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@600;700&display=swap');

:root {
  --babyblue: #38BDF8;
  --babyblue-dark: #0284C7;
  --babyblue-light: #E0F2FE;
  --babyblue-soft: #F0F9FF;
  --fetch-cyan: #00C2E8;
  --fetch-blue: #0066FF;
  --bg-primary: #F8FAFC;
  --bg-card: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border-color: #E2E8F0;
  --accent-green: #10B981;
  --accent-yellow: #FEF08A;
  --accent-yellow-dark: #854D0E;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 24px 50px rgba(56, 189, 248, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

/* ==========================================
   TOP PLAYFUL NAVBAR
   ========================================== */
.fetch-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--babyblue), var(--fetch-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.4);
  transition: var(--transition);
}

.brand-logo:hover .logo-box-icon {
  transform: rotate(-6deg) scale(1.05);
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.brand-name .accent-blue {
  color: var(--babyblue-dark);
}

.brand-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Center Promo Header Badge */
.header-promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--babyblue-light);
  color: var(--babyblue-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--babyblue);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.3);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login-vault {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-login-vault:hover {
  border-color: var(--babyblue);
  background: var(--babyblue-soft);
  transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION (2-Column Layout)
   ========================================== */
.hero-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.promo-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: var(--accent-yellow-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-primary);
}

/* Graphic Display 3-Step Hero Headline */
.hero-title-graphic {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0;
}

.graphic-step-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  padding: 10px 18px 10px 12px;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  transition: var(--transition);
}

.graphic-step-row:hover {
  border-color: var(--babyblue);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.graphic-num {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--babyblue-dark);
  background: var(--babyblue-light);
  padding: 6px 12px;
  border-radius: 12px;
  letter-spacing: -0.01em;
}

.graphic-text {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
}

.highlight-babyblue {
  color: var(--babyblue-dark);
  background: var(--babyblue-light);
  padding: 0 10px;
  border-radius: 12px;
  display: inline-block;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
}

/* Hero Order Card with Address & 1 kr Offer */
.hero-order-card {
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.price-pill-tag {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-strike {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.price-hero {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--babyblue-dark);
}

.price-hero small {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.box-spec-pill {
  background: var(--babyblue-soft);
  color: var(--babyblue-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.hero-address-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.input-address-wrapper {
  flex: 1;
  min-width: 260px;
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.input-address-wrapper input {
  width: 100%;
  height: 54px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border-color);
  padding: 0 20px 0 46px;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
}

.input-address-wrapper input:focus {
  border-color: var(--babyblue);
  box-shadow: 0 0 0 4px var(--babyblue-light);
}

.btn-order-now {
  background: linear-gradient(135deg, var(--babyblue), var(--fetch-cyan));
  color: #0F172A;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 0 28px;
  height: 54px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
  transition: var(--transition);
}

.btn-order-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(56, 189, 248, 0.55);
}

.arrow-icon {
  font-size: 20px;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.shake-error {
  animation: inputShake 0.4s ease-in-out;
}

.hero-trust-bullets {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.btn-box-specs-pill {
  width: auto;
  margin-left: auto;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  color: #0F172A;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.btn-box-specs-pill:hover {
  background: #EFF6FF;
  border-color: #0284C7;
  color: #0284C7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
}

.btn-box-specs-pill strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* ==========================================
   HERO VISUAL: BABY BLUE BOX ARTWORK & STEPS
   ========================================== */
.hero-visual-col {
  display: flex;
  justify-content: center;
}

.babyblue-box-stage {
  width: 100%;
  max-width: 440px;
  height: 460px;
  background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
  border-radius: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

/* ==========================================
   ANIMATED EXPLAINER VIDEO STAGE (POSITIVE SCANDINAVIAN VIBE)
   ========================================== */
.explainer-video-card {
  width: 100%;
  max-width: 480px;
  background: #FFFFFF;
  border: 3px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.explainer-header {
  background: #0F172A;
  color: #FFFFFF;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.explainer-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--babyblue);
}

.btn-video-play {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-video-play:hover {
  background: var(--babyblue);
  color: #0F172A;
}

/* 5-Step Timeline Navigation Bar */
.explainer-timeline-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #F1F5F9;
  border-bottom: 1px solid var(--border-color);
}

.timeline-step {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.timeline-step:hover {
  background: rgba(56, 189, 248, 0.1);
}

.timeline-step.active {
  background: #FFFFFF;
  border-bottom-color: var(--babyblue-dark);
}

.t-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--babyblue-dark);
}

.t-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

.timeline-step.active .t-label {
  color: var(--text-primary);
}

/* Video Stage Viewport */
.explainer-viewport {
  position: relative;
  height: 310px;
  background: linear-gradient(180deg, #BAE6FD 0%, #E0F2FE 55%, #F0FDF4 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explainer-scene-stage {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Floating Notification inside Video */
.explainer-notification-bubble {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 20;
  animation: floatNotif 3s ease-in-out infinite;
}

@keyframes floatNotif {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.notif-icon {
  font-size: 18px;
}

.notif-text {
  font-size: 13px;
  font-weight: 700;
}

/* Caption Narrator Bar */
.explainer-caption-bar {
  background: #FFFFFF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-color);
}

.caption-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  background: var(--babyblue-light);
  color: var(--babyblue-dark);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.caption-text-group strong {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}

.caption-text-group p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
  line-height: 1.4;
}

/* ==========================================
   EXPLAINER SCENE GRAPHICS & ANIMATIONS
   ========================================== */
/* Cinema HTML5 MP4 Video Showcase Stage */
.cinema-video-stage {
  width: 100%;
  height: 330px;
  background: #0F172A;
  position: relative;
  overflow: hidden;
}

.cinema-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cinema-overlay-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.studio-slide {
  width: 100%;
  height: 100%;
  position: relative;
  animation: studioSlideFade 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes studioSlideFade {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

.studio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: studioKenBurns 7s ease-in-out infinite alternate;
}

@keyframes studioKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.07); }
}

.studio-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.studio-ui-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 16px 20px;
  color: #FFFFFF;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.studio-pill-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.studio-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--babyblue);
  color: #0F172A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.studio-pill.green {
  background: #10B981;
  color: #FFFFFF;
}

.studio-pill.dark {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.studio-ui-card h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.studio-ui-card p {
  font-size: 13px;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.4;
}

.studio-gps-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 8px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
}

.pulse-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--babyblue);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  animation: pulseCircleRing 1.8s infinite;
}

@keyframes pulseCircleRing {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.video-header-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--babyblue);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}

.explainer-player-bar {
  background: #0F172A;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-player-toggle {
  background: var(--babyblue);
  color: #0F172A;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-player-toggle:hover {
  background: #7DD3FC;
}

.video-scrubber-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-scrubber-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--babyblue), #00C2E8);
  border-radius: 99px;
  transition: width 0.08s linear;
}

.scene-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Scene 1 Animations: Van Arrives & Sun Glow */
.svg-sun {
  animation: sunGlowPulse 4s ease-in-out infinite;
}

@keyframes sunGlowPulse {
  0%, 100% { transform: translate(380px, 45px) scale(1); }
  50% { transform: translate(380px, 45px) scale(1.08); }
}

.animated-van-arrive {
  animation: vanSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes vanSlideIn {
  0% { transform: translate(450px, 160px); }
  100% { transform: translate(240px, 160px); }
}

.van-wheel {
  transform-origin: center;
  animation: wheelSpin 1.2s linear infinite;
}

@keyframes wheelSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.svg-delivered-box {
  animation: boxPopIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.btn-box-specs-link {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-box-specs-link:hover {
  color: var(--babyblue);
}

.btn-box-specs-link u {
  color: var(--babyblue);
  font-weight: 600;
}

@keyframes boxPopIn {
  0% { transform: translate(170px, 194px) scale(0); opacity: 0; }
  100% { transform: translate(170px, 194px) scale(1); opacity: 1; }
}

/* Scene 2 Animations: Items Dropping Into Box */
.anim-item-coat {
  animation: dropCoat 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
@keyframes dropCoat {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(75px); opacity: 1; }
}

.anim-item-skis {
  animation: dropSkis 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}
@keyframes dropSkis {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(80px); opacity: 1; }
}

.anim-item-boots {
  animation: dropBoots 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}
@keyframes dropBoots {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(45px); opacity: 1; }
}

.anim-check-seal {
  animation: sealPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}
@keyframes sealPop {
  0% { transform: translate(170px, 208px) scale(0.7); opacity: 0; }
  100% { transform: translate(170px, 208px) scale(1); opacity: 1; }
}

/* Scene 3 Animations: Drive to Security Warehouse */
.anim-van-drive-to-warehouse {
  animation: vanDriveAcross 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes vanDriveAcross {
  0% { transform: translate(-160px, 160px); }
  60% { transform: translate(130px, 160px); }
  100% { transform: translate(130px, 160px); }
}

.anim-shield-ring {
  transform-origin: 65px 100px;
  animation: shieldRadar 2.5s linear infinite;
}

@keyframes shieldRadar {
  0% { transform: rotate(0deg) scale(0.9); opacity: 0.6; }
  50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
  100% { transform: rotate(360deg) scale(0.9); opacity: 0.6; }
}

/* Scene 4 Animations: Climate Warehouse & Time Passing */
.anim-box-protected {
  animation: boxGlowProtect 2s ease-in-out infinite;
}

@keyframes boxGlowProtect {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.4)); }
  50% { filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.9)); }
}

.anim-time-passing {
  animation: timeMorph 2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes timeMorph {
  0% { transform: translate(130px, 226px) scale(0.8); opacity: 0; }
  100% { transform: translate(130px, 226px) scale(1); opacity: 1; }
}

/* Scene 5 Animations: App Tap Return & Van Delivery Back */
.anim-app-tap {
  animation: appAppear 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes appAppear {
  0% { transform: translate(285px, 24px) scale(0.85); opacity: 0; }
  100% { transform: translate(285px, 24px) scale(1); opacity: 1; }
}

.anim-return-btn-click {
  animation: returnBtnFlash 1.5s ease-in-out infinite;
}

@keyframes returnBtnFlash {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.anim-van-return-home {
  animation: vanReturnHome 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes vanReturnHome {
  0% { transform: translate(-140px, 172px); }
  100% { transform: translate(145px, 172px); }
}

/* Common Environment Elements: Sun, Copenhagen Apartment Building, Greenery */
.env-sun {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FACC15;
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.6);
}

.env-apartment {
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 145px;
  height: 220px;
  background: #FFFBEB;
  border: 3px solid #0F172A;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px 0;
  box-shadow: inset 0 0 0 4px #FEF3C7;
}

.apt-balcony {
  width: 110px;
  height: 12px;
  background: #0F172A;
  border-radius: 4px;
}

.apt-window-row {
  display: flex;
  gap: 16px;
}

.apt-win {
  width: 38px;
  height: 38px;
  background: #BAE6FD;
  border: 2px solid #0F172A;
  border-radius: 6px;
  position: relative;
}

.apt-win::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 50%);
}

.apt-entrance-door {
  width: 44px;
  height: 52px;
  background: #0284C7;
  border: 3px solid #0F172A;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.env-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: #22C55E;
  border-top: 3px solid #16A34A;
}

/* Electric Van Courier Graphics (El-drevet Varevogn) */
.courier-electric-van {
  position: absolute;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.van-body {
  background: #38BDF8;
  border: 3px solid #0F172A;
  border-radius: 14px 14px 4px 4px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.van-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 800;
  color: #0F172A;
  background: #FEF08A;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 2px;
}

.van-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #0F172A;
}

/* Floating Box inside Scene */
.explainer-box-hero {
  width: 96px;
  height: 72px;
  background: #38BDF8;
  border: 2.5px solid #0284C7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #0F172A;
  box-shadow: 0 10px 20px rgba(14, 116, 144, 0.3);
  position: relative;
}

.explainer-box-hero.packed-animation {
  animation: pulseBoxBounce 1.5s infinite;
}

@keyframes pulseBoxBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.babyblue-box-card.flyttekasse {
  width: 275px;
  height: 255px;
  background: #38BDF8;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 28px 60px rgba(14, 116, 144, 0.38), inset 0 0 0 2px #0284C7;
  border: 3px solid #0284C7;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.babyblue-box-stage:hover .babyblue-box-card.flyttekasse {
  transform: translateY(-8px) rotate(-1.5deg);
}

/* Folded Cardboard Top Flaps (Flyttekasse låg-fold) */
.flytte-top-flaps {
  height: 48px;
  background: #0284C7;
  border-bottom: 3px solid #0369A1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flap-left, .flap-right {
  flex: 1;
  height: 100%;
  background: linear-gradient(180deg, #38BDF8 0%, #0284C7 100%);
  border-right: 1.5px solid #0369A1;
}

.flap-right {
  border-right: none;
  border-left: 1.5px solid #0369A1;
}

.center-seam {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(15, 23, 42, 0.25);
  left: 50%;
  transform: translateX(-50%);
}

/* Flyttekasse Main Body */
.flytte-body {
  flex: 1;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #38BDF8 0%, #0EA5E9 100%);
}

/* Iconic Side Handle Cutouts (Flyttekasse udskæringer) */
.side-handle {
  width: 44px;
  height: 16px;
  border-radius: 99px;
  background: #0F172A;
  border: 2px solid #0284C7;
  position: absolute;
  top: 14px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.handle-left {
  left: 10px;
}

.handle-right {
  right: 10px;
}

/* Print on the moving box */
.flytte-print-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-top: 10px;
}

.flytte-arrows {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.35);
  padding: 2px 10px;
  border-radius: 6px;
}

.flytte-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.logo-circle-mini {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #0284C7;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-titles-mini {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-titles-mini strong {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
}

.brand-titles-mini span {
  font-size: 10px;
  font-weight: 800;
  color: #0284C7;
  letter-spacing: 0.08em;
}

.flytte-specs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0.85;
}

/* Shipping / QR tracking label on flyttekasse */
.flytte-qr-label {
  background: #FEF08A;
  border: 1px dashed #CA8A04;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qr-mini-grid {
  width: 24px;
  height: 24px;
  background: #0F172A;
  border-radius: 4px;
  position: relative;
  background-image: radial-gradient(#FFFFFF 2px, transparent 2px);
  background-size: 6px 6px;
}

.qr-label-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.qr-label-text strong {
  font-size: 11px;
  font-weight: 800;
  color: #854D0E;
  line-height: 1.1;
}

.qr-label-text span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #0F172A;
}

/* Floating Step Pills on Stage */
.floating-step-pill {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.step-badge-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--babyblue);
  color: #0F172A;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-step-pill div {
  display: flex;
  flex-direction: column;
}

.floating-step-pill strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-step-pill span {
  font-size: 11px;
  color: var(--text-secondary);
}

.floating-step-pill.step-1 {
  top: 24px;
  left: 20px;
}

.floating-step-pill.step-2 {
  bottom: 24px;
  left: 20px;
}

.floating-step-pill.step-3 {
  top: 140px;
  right: 16px;
}

/* Floating 1 kr Offer Bubble */
.floating-price-bubble {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--accent-yellow);
  color: #0F172A;
  border-radius: 20px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(254, 240, 138, 0.8);
  border: 2px solid #FACC15;
  transform: rotate(6deg);
}

.bubble-price {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.bubble-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.bubble-sub {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.8;
}

/* ==========================================
   THE 3-STEP PLAYFUL PROCESS SECTION
   ========================================== --> */
.steps-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--babyblue-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin: 8px 0 12px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
}

.three-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-card.babyblue-step:hover {
  border-color: var(--babyblue);
}

.step-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.step-pill-number {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--babyblue-dark);
  background: var(--babyblue-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.step-emoji {
  font-size: 32px;
}

.step-illustration-box {
  background: var(--bg-primary);
  border-radius: 18px;
  padding: 24px 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
}

.step-illustration-box.step-img-box {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 210px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.step-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.step-card:hover .step-photo {
  transform: scale(1.05);
}

.floating-badge-photo {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.88) !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.mini-box-visual.babyblue-mini {
  width: 140px;
  height: 50px;
  background: var(--babyblue);
  border-radius: 10px;
  border: 2px solid var(--babyblue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mini-lid {
  position: absolute;
  top: -8px;
  left: -2px;
  right: -2px;
  height: 10px;
  background: var(--babyblue-dark);
  border-radius: 6px;
}

.mini-text {
  font-size: 10px;
  font-weight: 800;
  color: #0F172A;
}

.courier-badge-mini, .photo-badge-mini, .return-badge-mini {
  font-size: 12px;
  font-weight: 700;
  background: #FFFFFF;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  color: var(--text-primary);
}

.items-pack-visual {
  display: flex;
  gap: 12px;
  font-size: 26px;
}

.pickup-visual {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.arrow-connector {
  color: var(--babyblue-dark);
  font-size: 16px;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-footer-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--babyblue-dark);
  background: var(--babyblue-soft);
  padding: 8px 14px;
  border-radius: 12px;
  text-align: center;
}

/* ==========================================
   PRICING BANNER SECTION
   ========================================== */
.pricing-banner-section {
  max-width: 1240px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.pricing-banner-card {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.banner-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  background: rgba(56, 189, 248, 0.2);
  color: var(--babyblue);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 16px;
}

.pricing-banner-card h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing-banner-card p {
  color: #94A3B8;
  font-size: 16px;
  margin-bottom: 24px;
}

.price-comparison-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.price-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-row-item.highlight-first {
  background: rgba(56, 189, 248, 0.15);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.price-row-label strong {
  display: block;
  font-size: 15px;
  color: #FFF;
}

.price-row-label span {
  font-size: 12px;
  color: #94A3B8;
}

.price-row-value {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--babyblue);
}

.btn-fetch-giant {
  width: 100%;
  background: var(--babyblue);
  color: #0F172A;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 18px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
  transition: var(--transition);
}

.btn-fetch-giant:hover {
  background: #7DD3FC;
  transform: translateY(-2px);
}

.banner-features {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-features h4 {
  font-size: 18px;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  font-size: 14px;
  color: #E2E8F0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-icon {
  font-size: 16px;
}

/* ==========================================
   MODAL DRAWER & OVERLAYS
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInModal 0.25s ease-out;
}

.modal-overlay.active {
  display: flex !important;
}

#modal-batch-return.active,
#modal-batch-pickup.active {
  display: flex !important;
  z-index: 99999 !important;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 520px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  background: var(--accent-yellow);
  color: var(--accent-yellow-dark);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 6px;
}

.modal-badge-blue {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  background: var(--babyblue-light);
  color: var(--babyblue-dark);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 6px;
}

.modal-header h3 {
  font-size: 24px;
  font-weight: 800;
}

.modal-close-btn {
  background: var(--bg-primary);
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #E2E8F0;
}

/* Order Box Selector in Modal */
.order-box-selector {
  background: var(--babyblue-soft);
  border: 2px solid var(--babyblue-light);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
}

.selected-box-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.babyblue-mini-thumb {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--babyblue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.box-title-text {
  font-weight: 800;
  font-size: 16px;
}

.box-sub-text {
  font-size: 12px;
  color: var(--text-secondary);
}

.quantity-picker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  margin-bottom: 16px;
}

.qty-label {
  font-weight: 700;
  font-size: 14px;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
}

.cnt-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--babyblue-light);
  color: var(--babyblue-dark);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}

.cnt-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  min-width: 24px;
  text-align: center;
}

.order-price-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
}

.text-green {
  color: var(--accent-green);
  font-weight: 800;
}

/* Order Form Fields */
.order-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-input {
  height: 48px;
  border-radius: 14px;
  border: 2px solid var(--border-color);
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--babyblue);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Payment buttons */
.payment-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-pay-mobilepay {
  background: #5A31F4;
  color: #FFFFFF;
  border: none;
  padding: 16px;
  border-radius: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.btn-pay-mobilepay:hover {
  background: #4B27CF;
}

.btn-pay-applepay {
  background: #000000;
  color: #FFFFFF;
  border: none;
  padding: 16px;
  border-radius: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

/* ==========================================
   MODAL: MIT LAGER (MY BOXES PORTAL)
   ========================================== */
.vault-user-bar {
  background: var(--bg-primary);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.vault-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vault-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--babyblue);
  color: #0F172A;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-user-info div {
  display: flex;
  flex-direction: column;
}

.vault-user-info strong {
  font-size: 15px;
}

.vault-user-info span {
  font-size: 12px;
  color: var(--text-secondary);
}

.btn-add-new-box {
  background: var(--babyblue-dark);
  color: #FFFFFF;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.vault-boxes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vault-box-item {
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vault-box-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vault-box-id-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  background: var(--babyblue-light);
  color: var(--babyblue-dark);
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.vault-box-status {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vault-box-contents {
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--bg-primary);
  padding: 10px 14px;
  border-radius: 12px;
}

.btn-order-pickup-door {
  background: var(--babyblue);
  color: #0F172A;
  border: none;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-order-pickup-door:hover {
  background: var(--babyblue-dark);
  color: #FFFFFF;
}

/* Toast Notifications */
.fetch-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 3000;
  background: #0F172A;
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.fetch-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================
   BACKEND ADMIN ORDER DASHBOARD STYLES
   ========================================== */
.btn-admin-orders {
  background: rgba(15, 23, 42, 0.08);
  color: #0F172A;
  border: 2px solid #0F172A;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-admin-orders:hover {
  background: #0F172A;
  color: #FFFFFF;
}

.modal-admin-card {
  max-width: 1040px;
  width: 95%;
  max-height: 92vh;
  overflow-y: auto;
}

.admin-modal-body {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.admin-kpi-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kpi-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}

.kpi-value {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #0F172A;
}

.kpi-value.green { color: #10B981; }
.kpi-value.blue { color: #0284C7; }

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-filter-btn {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #475569;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.admin-filter-btn:hover,
.admin-filter-btn.active {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.btn-create-test-order {
  background: var(--babyblue);
  color: #0F172A;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-create-test-order:hover {
  background: #0284C7;
  color: #FFFFFF;
}

.admin-orders-table-wrapper {
  overflow-x: auto;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  background: #FFFFFF;
}

.admin-orders-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-orders-table th {
  background: #F8FAFC;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  border-bottom: 2px solid #E2E8F0;
  white-space: nowrap;
}

.admin-orders-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: top;
}

.admin-status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.admin-status-badge.blue { background: #E0F2FE; color: #0369A1; }
.admin-status-badge.yellow { background: #FEF3C7; color: #B45309; }
.admin-status-badge.green { background: #D1FAE5; color: #047857; }
.admin-status-badge.gray { background: #F1F5F9; color: #475569; }

.admin-status-select {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0F172A;
  background: #F8FAFC;
  cursor: pointer;
}

/* Responsive queries */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 40px;
  }
  .three-steps-grid {
    grid-template-columns: 1fr;
  }
  .pricing-banner-card {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   QR CODE BOX IDENTIFICATION & PRINTABLE LABELS
   ========================================== */
.vault-box-qr-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--babyblue-soft);
  border: 1px dashed rgba(56, 189, 248, 0.6);
  border-radius: 14px;
  padding: 10px 14px;
  margin-top: 12px;
  gap: 12px;
}

.vault-box-qr-thumb {
  width: 46px;
  height: 46px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.vault-box-qr-thumb svg {
  width: 100%;
  height: 100%;
}

.vault-box-qr-info {
  flex: 1;
}

.vault-box-qr-info strong {
  display: block;
  font-size: 13px;
  color: var(--text-primary);
}

.vault-box-qr-info span {
  font-size: 11px;
  color: var(--text-secondary);
}

.btn-open-qr-label {
  background: linear-gradient(135deg, var(--babyblue), var(--fetch-cyan));
  color: #0F172A;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-open-qr-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
}

.btn-admin-qr-badge {
  background: var(--babyblue-light);
  color: var(--babyblue-dark);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 5px 10px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  transition: var(--transition);
}

.btn-admin-qr-badge:hover {
  background: var(--babyblue);
  color: #0F172A;
}

/* Modal 5: QR Code Label Preview */
.modal-qr-card {
  max-width: 720px !important;
}

.qr-box-selector-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.qr-box-tab-btn {
  background: #F1F5F9;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.qr-box-tab-btn.active, .qr-box-tab-btn:hover {
  background: var(--babyblue-soft);
  border-color: var(--babyblue);
  color: var(--babyblue-dark);
}

.qr-label-preview-wrapper {
  background: #E2E8F0;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  justify-content: center;
}

/* Official Thermal / Warehouse Sticker Label */
.fetch-box-label {
  background: #FFFFFF;
  border: 3px solid #0F172A;
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  color: #0F172A;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.label-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #0F172A;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.label-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.label-logo-f {
  width: 36px;
  height: 36px;
  background: #0F172A;
  color: #38BDF8;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-brand-name {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.label-brand-sub {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #475569;
  margin-top: 2px;
}

.label-type-badge {
  background: #E0F2FE;
  color: #0284C7;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid #0284C7;
}

.label-main-content {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
}

.label-qr-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label-qr-frame {
  width: 170px;
  height: 170px;
  background: #FFFFFF;
  border: 2px solid #0F172A;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-qr-frame svg {
  width: 100%;
  height: 100%;
}

.label-qr-caption {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #475569;
  margin-top: 6px;
  text-align: center;
}

.label-info-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.label-box-id-header {
  border-bottom: 2px solid #E2E8F0;
  padding-bottom: 8px;
}

.label-box-id-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748B;
  text-transform: uppercase;
}

.label-box-id-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.label-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.label-meta-item.wide {
  grid-column: span 2;
}

.meta-lbl {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #64748B;
  text-transform: uppercase;
}

.meta-val {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
}

.meta-val-sub {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

.label-specs-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  background: #F8FAFC;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  flex-wrap: wrap;
}

.label-footer-barcode-sim {
  border-top: 2px solid #0F172A;
  margin-top: 16px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.barcode-lines {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #0F172A;
  line-height: 1;
}

.barcode-code-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #475569;
  margin-top: 4px;
}

.qr-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-print-qr-label {
  background: linear-gradient(135deg, #0284C7, #0369A1);
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
  transition: var(--transition);
}

.btn-print-qr-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(2, 132, 199, 0.45);
}

.btn-download-qr-svg {
  background: #F1F5F9;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-download-qr-svg:hover {
  background: #E2E8F0;
}

.btn-close-qr-modal {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* Print CSS for Thermal Label Printing */
@media print {
  body * {
    visibility: hidden;
  }
  #modal-qr-label,
  #modal-qr-label *,
  #printable-box-label,
  #printable-box-label * {
    visibility: visible;
  }
  #modal-qr-label {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #FFFFFF !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
  }
  .modal-card.modal-qr-card {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    max-width: 100% !important;
    background: transparent !important;
  }
  .modal-header,
  .qr-box-selector-tabs,
  .qr-modal-actions,
  .modal-close-btn {
    display: none !important;
  }
  .qr-label-preview-wrapper {
    background: transparent !important;
    padding: 0 !important;
  }
  .fetch-box-label {
    border: 3px solid #000000 !important;
    box-shadow: none !important;
    page-break-inside: avoid !important;
  }
}

/* ==========================================
   WAREHOUSE FACILITY QR SCANNER & SHELF ASSIGNMENT PORTAL
   ========================================== */
.btn-warehouse-scanner {
  background: #0F172A;
  color: #38BDF8;
  border: 2px solid rgba(56, 189, 248, 0.4);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-warehouse-scanner:hover {
  background: #1E293B;
  border-color: #38BDF8;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.25);
}

.btn-scan-wh-from-label {
  background: var(--babyblue-soft);
  color: var(--babyblue-dark);
  border: 2px solid var(--babyblue);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.btn-scan-wh-from-label:hover {
  background: var(--babyblue);
  color: #0F172A;
}

.modal-warehouse-card {
  max-width: 920px !important;
}

.warehouse-scanner-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.scanner-viewfinder-card {
  background: #0F172A;
  border-radius: 20px;
  padding: 18px;
  color: #FFFFFF;
  border: 2px solid #334155;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.3);
}

.scanner-viewfinder-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #38BDF8;
  margin-bottom: 14px;
}

.scanner-viewport-box {
  position: relative;
  height: 230px;
  background: #020617;
  border-radius: 16px;
  border: 2px solid #1E293B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
}

.scanner-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: #38BDF8;
  border-style: solid;
  pointer-events: none;
}

.scanner-corner.tl { top: 12px; left: 12px; border-width: 3px 0 0 3px; }
.scanner-corner.tr { top: 12px; right: 12px; border-width: 3px 3px 0 0; }
.scanner-corner.bl { bottom: 12px; left: 12px; border-width: 0 0 3px 3px; }
.scanner-corner.br { bottom: 12px; right: 12px; border-width: 0 3px 3px 0; }

.scanner-laser-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #38BDF8, #10B981, #38BDF8, transparent);
  box-shadow: 0 0 12px #38BDF8, 0 0 6px #10B981;
  animation: scanLaserSweep 2.4s ease-in-out infinite;
  z-index: 10;
}

@keyframes scanLaserSweep {
  0%, 100% { top: 18px; opacity: 0.9; }
  50% { top: 200px; opacity: 1; }
}

.scanner-preview-qr {
  width: 130px;
  height: 130px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.scanner-preview-qr.flash-scan {
  transform: scale(1.08);
  box-shadow: 0 0 35px #10B981;
}

.scanner-status-pill {
  position: absolute;
  bottom: 12px;
  background: rgba(15, 23, 42, 0.9);
  color: #38BDF8;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  letter-spacing: 0.05em;
}

.scanner-input-bar {
  margin-bottom: 14px;
}

.scanner-input-group {
  display: flex;
  gap: 8px;
}

.scanner-input-group input {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-trigger-scan {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  border: none;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-trigger-scan:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.quick-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.quick-chip {
  background: #1E293B;
  color: #CBD5E1;
  border: 1px solid #334155;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.quick-chip.active, .quick-chip:hover {
  background: #38BDF8;
  color: #0F172A;
  border-color: #38BDF8;
}

.scanned-box-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 22px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.scanned-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 2px solid #F1F5F9;
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.scanned-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--babyblue-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wh-box-meta-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  background: #F8FAFC;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
}

.wh-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 6px;
}

.wh-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.wh-location-form-box {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px;
}

.btn-save-wh-location {
  width: 100%;
  background: linear-gradient(135deg, #0284C7, #0369A1);
  color: #FFFFFF;
  border: none;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
  transition: var(--transition);
}

.btn-save-wh-location:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(2, 132, 199, 0.5);
}

@media (max-width: 800px) {
  .warehouse-scanner-grid {
    grid-template-columns: 1fr;
  }
}

.specs-hero-image-box {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  background: #0F172A;
  margin-bottom: 18px;
}

.specs-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specs-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.period-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.period-card {
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.period-card:hover {
  border-color: #0284C7;
  background: #FFFFFF;
}

.period-card.active {
  border-color: #0284C7;
  background: #F0F9FF;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.period-badge {
  font-size: 9.5px;
  font-weight: 800;
  color: #0284C7;
  letter-spacing: 0.4px;
}

.period-badge.gray {
  color: #64748B;
}

.period-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
}

.period-price {
  font-size: 12px;
  color: #334155;
}

.period-delivery {
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.period-delivery.green {
  color: #059669;
}

.period-delivery.orange {
  color: #D97706;
}

/* ==========================================
   DANISH DAWA ADDRESS AUTOCOMPLETE STYLING
   ========================================== */
.dawa-autocomplete-wrapper {
  position: relative;
  width: 100%;
}

.dawa-autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1.5px solid #0284C7;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  max-height: 280px;
  overflow-y: auto;
  z-index: 100000;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation: dawaFadeIn 0.15s ease-out;
}

@keyframes dawaFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.dawa-suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 13.5px;
  color: #0F172A;
  font-family: 'Inter', -apple-system, sans-serif;
  text-align: left;
  border: 1px solid transparent;
}

.dawa-suggestion-item:hover,
.dawa-suggestion-item.selected {
  background: #F0F9FF;
  border-color: #BAE6FD;
  color: #0284C7;
  transform: translateX(2px);
}

.dawa-suggestion-icon {
  font-size: 16px;
  color: #0284C7;
  flex-shrink: 0;
}

.dawa-suggestion-text {
  flex: 1;
  line-height: 1.4;
}

.dawa-suggestion-text strong {
  color: #0F172A;
  font-weight: 700;
}

.dawa-suggestion-item:hover .dawa-suggestion-text strong,
.dawa-suggestion-item.selected .dawa-suggestion-text strong {
  color: #0284C7;
}

.dawa-suggestion-sub {
  font-size: 11.5px;
  color: #64748B;
  display: block;
  margin-top: 1px;
}

.dawa-loading-item {
  padding: 12px 14px;
  font-size: 12.5px;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 8px;
}

