/** Shopify CDN: Minification failed

Line 31:0 All "@import" rules must come first

**/
/* ============================================================
   PAWMOVES HERO — assets/pawmoves-hero.css
   ============================================================ */

:root {
  --pm-red:        #C0392B;
  --pm-red-light:  #F5E6E3;
  --pm-red-soft:   #E8C4BC;
  --pm-red-deep:   #8B1A10;
  --pm-cream:      #FAF7F4;
  --pm-parchment:  #F2EDE6;
  --pm-linen:      #E8E0D5;
  --pm-charcoal:   #1C1A18;
  --pm-espresso:   #2E2A26;
  --pm-mink:       #5C5550;
  --pm-amber:      #E8963A;
  --pm-amber-pale: #FDF0DC;
  --pm-sage-pale:  #EAF0E6;
  --pm-radius-sm:  6px;
  --pm-radius-md:  12px;
  --pm-radius-xl:  32px;
  --pm-shadow-md:  0 8px 32px rgba(28,26,24,0.10);
  --pm-font:       'Jost', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');


/* ============================================================
   HERO — Desktop (>1080px): side-by-side
   ============================================================ */

/* Outer: full-width background + vertical padding */
.pm-hero {
  min-height: calc(100vh - 98px);
  background: var(--pm-cream);
  position: relative;
  overflow: hidden;
  font-family: var(--pm-font);
  padding: clamp(3rem, 8vh, 6rem) 0;
}

/* Inner: content constrained to match Shopify theme header */
.pm-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pm-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(192,57,43,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pm-hero::after {
  content: '';
  position: absolute; bottom: -100px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,150,58,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.pm-hero h1 {
  max-width: 550px;
}


/* ── Badge ── */
.pm-hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--pm-amber-pale); color: var(--pm-amber);
  border: 1px solid rgba(232,150,58,0.3);
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 0.1rem;
  animation: pmFadeUp 0.6s ease both;
}

.pm-hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--pm-amber); border-radius: 50%;
  animation: pmPulse 2s infinite;
}

/* ── Headline ── */
.pm-hero__headline {
  font-family: var(--pm-font);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400; line-height: 1.05;
  color: var(--pm-charcoal);
  margin-bottom: 0.6rem;
  animation: pmFadeUp 0.6s ease 0.1s both;
}

.pm-hero__headline p  { margin: 0; }
.pm-hero__headline em { font-style: italic; color: var(--pm-red); }

/* ── Sub ── */
.pm-hero__sub {
  font-size: 16px; font-weight: 300;
  color: var(--pm-mink); line-height: 1.75;
  max-width: 480px; margin-bottom: 2.2rem;
  animation: pmFadeUp 0.6s ease 0.2s both;
}

/* ── CTA buttons ── */
.pm-hero__actions {
  display: flex; align-items: center;
  gap: 1.2rem; flex-wrap: wrap;
  margin-bottom: 2.8rem;
  animation: pmFadeUp 0.6s ease 0.3s both;
}

.pm-btn-primary {
  background: var(--pm-red); color: #fff;
  padding: 15px 32px; border-radius: 50px;
  font-family: var(--pm-font);
  font-size: 14px; font-weight: 600; letter-spacing: 0.05em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(192,57,43,0.3);
  display: inline-flex; align-items: center; gap: 8px;
}

.pm-btn-primary:hover {
  background: var(--pm-red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,57,43,0.35);
  color: #fff;
}

.pm-btn-ghost {
  color: var(--pm-espresso); font-size: 14px; font-weight: 500;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 15px 0;
  border-bottom: 1.5px solid var(--pm-linen);
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}

.pm-btn-ghost:hover { color: var(--pm-red); border-color: var(--pm-red); }

/* ── Trust items ── */
.pm-hero__trust {
  display: flex; gap: 2rem;
  animation: pmFadeUp 0.6s ease 0.4s both;
  flex-wrap: wrap;
}

.pm-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500;
  color: var(--pm-mink); letter-spacing: 0.03em;
  font-family: var(--pm-font);
}

.pm-trust-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pm-red-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pm-trust-icon svg { width: 14px; height: 14px; color: var(--pm-red); }


/* ============================================================
   HERO VISUAL — Right column
   ============================================================ */
.pm-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pmFadeUp 0.8s ease 0.15s both;
}

.pm-hero__device-outer {
  position: relative;
  width: clamp(340px, 45vw, 520px);
  overflow: visible;
}

.pm-hero__device {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--pm-parchment);
  border-radius: var(--pm-radius-xl);
  border: 1px solid var(--pm-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.pm-hero__device--image {
  aspect-ratio: auto;
  background: transparent;
  border: none;
  overflow: visible;
}

.pm-hero__product-img {
  width: 100%; height: auto;
  display: block;
  border-radius: var(--pm-radius-xl);
}

/* ── Glow rings ── */
.pm-glow-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(192,57,43,0.2);
  animation: pmRipple 3s ease-out infinite;
  pointer-events: none;
}

.pm-glow-ring:nth-child(1) { width: 60%;  height: 60%;  animation-delay: 0s; }
.pm-glow-ring:nth-child(2) { width: 78%;  height: 78%;  animation-delay: 0.8s; }
.pm-glow-ring:nth-child(3) { width: 94%;  height: 94%;  animation-delay: 1.6s; }


/* ============================================================
   LED MAT — Pure SVG circles (no foreignObject)
   ============================================================ */
.pm-product-illustration {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

.pm-mat-visual-wrap {
  display: flex; align-items: center; justify-content: center;
  filter:
    drop-shadow(0 0 28px rgba(192,57,43,0.40))
    drop-shadow(0 18px 36px rgba(28,26,24,0.50));
}

.pm-mat-svg {
  width: clamp(100px, 14vw, 200px);
  height: auto;
  display: block;
  overflow: visible;
}

/* LED circles — SVG fill-based animation */
.pm-led {
  animation: pmLedGlow 2s ease-in-out infinite alternate;
}

.pm-led.r {
  fill: #C0392B;
  animation-delay: calc(var(--i, 1) * 0.08s);
}

.pm-led.n {
  fill: #8B1A10;
  animation-delay: calc(var(--i, 1) * 0.08s + 0.4s);
}


/* ============================================================
   FLOATING BADGES — Desktop: absolute positioning
   ============================================================ */
.pm-float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--pm-radius-md);
  box-shadow: var(--pm-shadow-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  animation: pmFloat 4s ease-in-out infinite;
  white-space: nowrap;
  z-index: 10;
}

.pm-float-badge:nth-child(odd) { animation-direction: alternate-reverse; }

.pm-float-badge--1 { top: 8%;     left: -8%;  animation-delay: 0s; }
.pm-float-badge--2 { bottom: 22%; left: -5%;  animation-delay: 1s; }
.pm-float-badge--3 { top: 20%;    right: -4%; animation-delay: 2s; }
.pm-float-badge--4 { bottom: 8%;  right: -2%; animation-delay: 0.5s; }

.pm-float-badge-icon {
  width: 36px; height: 36px;
  border-radius: var(--pm-radius-sm);
  background: var(--pm-red-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 17px;
}

.pm-float-badge-title {
  font-size: 13px; font-weight: 600;
  color: var(--pm-charcoal); display: block;
  line-height: 1.3; font-family: var(--pm-font);
}

.pm-float-badge-sub {
  font-size: 11px; color: var(--pm-mink);
  display: block; font-family: var(--pm-font);
}


/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.pm-proof-bar {
  background: var(--pm-charcoal);
  padding: 1.4rem clamp(1.5rem, 5vw, 5rem);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(3rem, 6vw, 7rem); flex-wrap: wrap;
  font-family: var(--pm-font);
}

.pm-proof-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
}

.pm-proof-num {
  font-size: 28px; font-weight: 500;
  color: #fff; line-height: 1;
}

.pm-proof-num span { color: var(--pm-red-soft); }

.pm-proof-label {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.pm-proof-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.12);
}


/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pmFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pmPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

@keyframes pmRipple {
  0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(0.85); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.3); }
}

@keyframes pmLedGlow {
  0%   { opacity: 0.3; }
  100% { opacity: 1; }
}

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


/* ============================================================
   RESPONSIVE — Tablet landscape (<=1080px)
   ============================================================ */
@media (max-width: 1080px) {
  .pm-hero {
    min-height: auto;
    padding: clamp(2rem, 5vh, 4rem) 0;
  }

  .pm-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
  }

  .pm-hero__sub {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .pm-hero__actions { justify-content: center; }
  .pm-hero__trust   { justify-content: center; }
  .pm-hero__visual  { margin-top: 0; }

  .pm-hero__device-outer {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .pm-hero__device {
    grid-column: 1 / -1;
  }

  .pm-float-badge {
    position: static !important;
    animation-name: none;
    white-space: normal;
    width: auto;
    padding: 10px 14px;
  }

  .pm-float-badge-icon  { width: 32px; height: 32px; font-size: 15px; }
  .pm-float-badge-title { font-size: 12.5px; }
  .pm-float-badge-sub   { font-size: 10.5px; }

  .pm-glow-ring:nth-child(1) { width: 55%;  height: 55%; }
  .pm-glow-ring:nth-child(2) { width: 72%;  height: 72%; }
  .pm-glow-ring:nth-child(3) { width: 88%;  height: 88%; }
}


/* ============================================================
   RESPONSIVE — Tablet portrait (<=768px)
   ============================================================ */
@media (max-width: 768px) {
  .pm-hero__inner {
    padding: 0 1.5rem;
    gap: 2rem;
  }

  .pm-hero__headline {
    font-size: clamp(32px, 7vw, 48px);
  }

  .pm-hero__device-outer {
    max-width: 360px;
  }

  .pm-hero__trust {
    gap: 1rem;
  }
}


/* ============================================================
   RESPONSIVE — Mobile (<=480px)
   ============================================================ */
@media (max-width: 480px) {
  .pm-hero {
    padding: 1.5rem 0;
  }

  .pm-hero__inner {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .pm-hero__badge {
    font-size: 10.5px;
    padding: 5px 12px;
  }

  .pm-hero__headline {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 1rem;
  }

  .pm-hero__sub {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }

  .pm-hero__actions {
    margin-bottom: 2rem;
  }

  .pm-btn-primary {
    padding: 14px 28px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .pm-btn-ghost {
    font-size: 13px;
  }

  .pm-hero__trust {
    gap: 0.6rem;
  }

  .pm-trust-item {
    font-size: 11px;
  }

  .pm-trust-icon {
    width: 24px; height: 24px;
  }

  .pm-trust-icon svg { width: 12px; height: 12px; }

  .pm-hero__device-outer {
    max-width: 280px;
  }

  .pm-float-badge {
    padding: 8px 10px;
    gap: 8px;
  }

  .pm-float-badge-icon  { width: 28px; height: 28px; font-size: 13px; }
  .pm-float-badge-title { font-size: 11.5px; }
  .pm-float-badge-sub   { font-size: 9.5px; }

  .pm-mat-svg {
    width: clamp(100px, 30vw, 140px);
  }

  .pm-proof-bar {
    gap: 1.5rem;
    padding: 1.2rem 1rem;
  }

  .pm-proof-num { font-size: 22px; }
  .pm-proof-label { font-size: 10px; }
  .pm-proof-divider { height: 28px; }
}


/* ============================================================
   GLOBAL OVERFLOW FIX
   ============================================================ */
body {
  overflow-x: hidden;
}
