/* ═══════════════════════════════════════
   PAWKITTY STICKY NAV - PHP OUTPUT
   ═══════════════════════════════════════ */
.pk-sticky {
  position: fixed;
  left: 0; right: 0;
  z-index: 4;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #E8E1D8;
  padding: 0 1.5rem;
    top: -100px;
  transition: top 0.3s ease;
}
.pk-sticky.is-visible {
  top: 64px;
}
.pk-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  justify-content: end;
}
.pk-sticky-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.pk-sticky-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6B5B4F;
  text-decoration: none;
  transition: color 0.15s;
}
.pk-sticky-nav a:hover { color: #1F1F1F; }
.pk-sticky-cta {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  background: #2A5298 !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.pk-sticky-cta:hover {
  background: #1E3D73 !important;
  color: #fff !important;
}

/* ─── Mobile ─── */
@media (max-width: 770px) {
  .pk-sticky-nav { gap: 1rem; }
  .pk-sticky.is-visible { top: 48px; }
  .pk-sticky-inner { justify-content: center; }
}

/* ═══════ S1: HERO ═══════ */
.pk-s1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  max-height: 680px;
  overflow: hidden;
}

.pk-s1-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 3rem clamp(2rem, 5vw, 6rem);
  max-width: 640px;
  margin-left: auto;
}

.pk-s1-copy h1 {
    min-height: 3.5rem; /* reserve space */
}

.pk-s1-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.75rem;
}

.pk-s1-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pk-s1-media {
  position: relative;
  overflow: hidden;
}

.pk-s1-media video,
.pk-s1-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  display: block;
  pointer-events: none;
}

/* ═══════ S1: MOBILE ═══════ */
@media (max-width: 770px) {
  .pk-s1 {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .pk-s1-media {
    height: 50vw;
    min-height: 240px;
    max-height: 340px;
    order: -1;
  }

  .pk-s1-copy {
    padding: 2.5rem 1.5rem;
    max-width: 100%;
    text-align: center;
    margin: auto;
  }
  
  .pk-s1-rating {
      justify-content: center;
  }

  .pk-s1-actions {
    flex-direction: column;
  }

  .pk-s1-actions a {
    width: 100%;
    text-align: center;
  }
}


/* ═══════ S2: TRUST BAR ═══════ */
.pk-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.pk-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
}

.pk-trust-item svg {
  flex-shrink: 0;
}

/* ═══════ S2: MOBILE — 2+2+1 ═══════ */
@media (max-width: 770px) {
  .pk-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    justify-items: center;
    padding: 0.5rem 0;
  }

  .pk-trust-item {
    font-size: 0.6rem;
  }

  /* 5th item spans both columns, centered */
  .pk-trust-item:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* ═══════════════════════════════════════════════════
   PawKitty Homepage — Merged S3 Thesis + S4 Pillars
   Load this in: Appearance > Customize > Additional CSS
   or enqueue via functions.php
   ═══════════════════════════════════════════════════ */


/* ── Section wrapper ── */
.pk-thesis-pillars {
  background-color: #F5F1ED;
  padding: clamp(4rem, 3rem + 3vw, 6rem) 1.5rem;
}


/* ═══════ S3: THESIS ═══════ */
.pk-thesis {
  max-width: 640px;
  margin: 0 auto clamp(3rem, 2rem + 2vw, 4.5rem);
  text-align: center;
}

.pk-thesis-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #1F1F1F;
  margin-bottom: 1.5rem;
}

.pk-thesis-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.7;
  color: #6B5B4F;
  margin-bottom: 1.75rem;
}

.pk-thesis-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2A5298;
  border: 2px solid #2A5298;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.pk-thesis-cta:hover {
  background: #2A5298;
  color: #fff;
}


/* ═══════ S4: PILLARS GRID ═══════ */
.pk-pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}


/* ── Image pillar cards (Hunt, Climb, Rest) ── */
.pk-pillar {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  background: #1F1F1F;
}

.pk-pillar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.pk-pillar:hover img {
  transform: scale(1.04);
}

.pk-pillar-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(31, 31, 31, 0) 30%,
    rgba(31, 31, 31, 0.55) 60%,
    rgba(31, 31, 31, 0.88) 100%
  );
}

.pk-pillar-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 2rem;
}

.pk-pillar-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.pk-pillar-desc {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.pk-pillar-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap 0.2s ease;
}

.pk-pillar:hover .pk-pillar-cta-link {
  gap: 10px;
}


/* ── Zero Effort dark card (spans full width below 3 cols) ── */
.pk-pillar-zero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1F1F1F;
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
}

.pk-pillar-zero-copy {
  padding: clamp(2rem, 1.5rem + 1vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pk-pillar-zero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #D4A574;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pk-pillar-zero-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.625rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.625rem;
}

.pk-pillar-zero-desc {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pk-pillar-zero-btn {
  display: inline-block;
  background: #fff;
  color: #1F1F1F;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s ease, color 0.2s ease;
}

.pk-pillar-zero-btn:hover {
  background: #F5F1ED;
}

.pk-pillar-zero-img {
  position: relative;
  overflow: hidden;
}

.pk-pillar-zero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ═══════ RESPONSIVE ═══════ */

/* Tablet: 2-column pillars */
@media (max-width: 900px) {
  .pk-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Zero Effort: image on top, copy below */
  .pk-pillar-zero {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
  }

  .pk-pillar-zero-img {
    order: -1;
  }
}

/* Mobile: single column */
@media (max-width: 600px) {
  .pk-thesis-pillars {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pk-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pk-pillar {
    aspect-ratio: 4 / 3;
  }

  .pk-pillar-zero {
    grid-template-rows: 200px auto;
  }
}

/* ═══════════════════════════════════════════
   PAWKITTY S3+S4: INSTINCT PILLARS
   ═══════════════════════════════════════════ */

.pk-pillars {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 3rem + 3vw, 6rem) 1.5rem;
}

.pk-pillars-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4A574;
  margin-bottom: 1rem;
  text-align: center;
}

.pk-pillars-intro {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.pk-pillars-intro h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #1F1F1F;
  margin-bottom: 1.25rem;
}
.pk-pillars-intro p {
  font-size: clamp(0.94rem, 0.9rem + 0.2vw, 1.06rem);
  line-height: 1.7;
  color: #6B5B4F;
  margin-bottom: 1.5rem;
}
.pk-pillars-intro .pk-outline-btn {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2A5298;
  padding: 12px 24px;
  border: 2px solid #2A5298;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pk-pillars-intro .pk-outline-btn:hover {
  background: #2A5298;
  color: #ffffff;
}

/* ─── HUNT split ─── */
.pk-hunt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pk-hunt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31,31,31,0.1);
}
.pk-hunt-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.pk-hunt-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
  display: block;
}
.pk-hunt:hover .pk-hunt-visual img {
  transform: scale(1.03);
}
.pk-hunt-copy {
  background: #1F1F1F;
  padding: clamp(2rem, 3vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pk-hunt-copy::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 3px;
  background: #D4A574;
  border-radius: 2px;
}
.pk-hunt-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D4A574;
  margin-bottom: 0.75rem;
}
.pk-hunt-copy h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.pk-hunt-copy > p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

/* ─── AquaPaw product teaser ─── */
.pk-hunt-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.pk-hunt-product:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.pk-hunt-product img {
  width: 52px; height: 52px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.pk-hunt-product-info {
  flex: 1; min-width: 0;
}
.pk-hunt-product-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.pk-hunt-product-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  wrap: no-wrap;
  overflow: hidden;
}
.pk-hunt-product-meta .pk-stars {
  display: flex; gap: 1px;
  color: #D4A574;
}
.pk-hunt-product-meta .pk-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}
.pk-hunt-product-meta .pk-reviews {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}
.pk-hunt-product-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s, transform 0.2s;
}
.pk-hunt-product:hover .pk-hunt-product-arrow {
  color: rgba(255,255,255,0.6);
  transform: translateX(2px);
}

/* ─── Hunt CTA ─── */
.pk-hunt-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2A5298;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  width: fit-content;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.pk-hunt-cta:hover {
  background: #3568B8;
  transform: translateY(-1px);
  color: #fff;
}
.pk-hunt-cta svg { transition: transform 0.2s; }
.pk-hunt:hover .pk-hunt-cta svg { transform: translateX(4px); }

/* ─── Instinct row ─── */
.pk-row-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B5B4F;
  margin-bottom: 1.25rem;
}
.pk-row-wrap {
  position: relative;
}
.pk-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.pk-inst {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pk-inst:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31,31,31,0.1);
  border-color: #2A5298;
}
.pk-inst > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  transition: transform 0.4s ease;
}
.pk-inst:hover > img { transform: scale(1.03); }
.pk-inst-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(31,31,31,0) 25%, rgba(31,31,31,0.5) 55%, rgba(31,31,31,0.88) 100%);
}
.pk-inst-content {
  position: relative; z-index: 3;
  padding: 1.5rem;
}
.pk-inst h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}
.pk-inst p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.pk-inst-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}
.pk-inst-cta svg { transition: transform 0.2s; }
.pk-inst:hover .pk-inst-cta svg { transform: translateX(4px); }

/* ─── Zero Effort card ─── */
.pk-inst--zero {
  background: #1F1F1F;
  border-color: transparent;
}
.pk-inst--zero:hover {
  border-color: #D4A574;
}
.pk-inst--zero .pk-inst-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.pk-inst--zero .pk-ze-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D4A574;
  margin-bottom: 0.35rem;
}
.pk-inst--zero p {
  color: rgba(255,255,255,0.5);
}
.pk-inst--zero .pk-ze-btn {
  display: inline-block;
  background: #ffffff;
  color: #1F1F1F;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 0.75rem;
  width: fit-content;
  text-decoration: none;
  transition: background 0.2s;
}
.pk-inst--zero .pk-ze-btn:hover { background: #f0ece8; }

/* ─── Scroll animations ─── */
.js .pk-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .pk-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .pk-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .pk-stagger.is-visible > :nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.js .pk-stagger.is-visible > :nth-child(2) { opacity:1; transform:none; transition-delay:.07s; }
.js .pk-stagger.is-visible > :nth-child(3) { opacity:1; transform:none; transition-delay:.14s; }
.js .pk-stagger.is-visible > :nth-child(4) { opacity:1; transform:none; transition-delay:.21s; }
.js .pk-stagger.is-visible > :nth-child(5) { opacity:1; transform:none; transition-delay:.28s; }

/* ─── Tablet ─── */
@media (max-width: 1060px) {
  .pk-row { grid-template-columns: repeat(3, 1fr); }
  .pk-inst { min-height: 280px; }
  .pk-inst--zero { grid-column: 2 / 4; min-height: 240px; }
}

/* ─── Mobile ─── */
@media (max-width: 770px) {
  .pk-hunt { grid-template-columns: 1fr; }
  .pk-hunt-visual { aspect-ratio: 1 / 1; }
  .pk-hunt-copy { padding: 2rem 1.5rem; }
  .pk-hunt-copy::before { display: none; }
  .pk-hunt-cta { width: 100%; justify-content: center; }

  .pk-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 8px;
  }
  .pk-row::-webkit-scrollbar { display: none; }
  .pk-inst {
    flex: 0 0 72vw;
    max-width: 300px;
    min-height: 300px;
    scroll-snap-align: start;
  }
  .pk-inst--zero {
    flex: 0 0 72vw;
    max-width: 300px;
    min-height: 300px;
  }
  .pk-row-wrap::after {
    content: '';
    position: absolute;
    right: -1.5rem; top: 0; bottom: 0.75rem;
    width: 48px;
    background: linear-gradient(90deg, transparent, #F5F1ED);
    pointer-events: none;
    z-index: 5;
  }
}

/* ═══════════════════════════════════════
   PAWKITTY S5: BESTSELLERS
   ═══════════════════════════════════════ */

/* ─── Dark section ─── */
.pk-s5-dark {
  background: #1F1F1F;
  padding: clamp(3rem, 3rem + 3vw, 6rem) 1.5rem;
}
.pk-s5-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Proof hero ─── */
.pk-proof {
  text-align: center;
  margin-bottom: 3rem;
}
.pk-proof-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0.75rem;
}
.pk-proof-count {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.pk-proof-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ─── AquaPaw split ─── */
.pk-aq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pk-aq-img {
  position: sticky;
  top: 80px;
}
.pk-aq-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

/* ─── Badge ─── */
.pk-aq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #3a6f5b;
  background: rgba(58,111,91,0.15);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.pk-aq-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a6f5b;
  animation: pk-pulse 2s ease infinite;
}
@keyframes pk-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── Testimonials ─── */
.pk-aq-quotes {
  margin-bottom: 1.75rem;
}
.pk-aq-testi {
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #D4A574;
  border-radius: 0 8px 8px 0;
  margin-bottom: 0.75rem;
}
.pk-aq-testi:last-child { margin-bottom: 0; }
.pk-aq-testi-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.pk-aq-testi-text::before { content: '\201C'; color: #D4A574; font-size: 1.3em; }
.pk-aq-testi-text::after  { content: '\201D'; color: #D4A574; font-size: 1.3em; }
.pk-aq-testi-attr {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pk-aq-testi-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.pk-aq-testi-verified {
  font-size: 0.63rem;
  font-weight: 600;
  color: #3a6f5b;
}

/* ─── Buy row ─── */
.pk-aq-buy {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pk-aq-price {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
}
.pk-aq-atc {
  display: inline-block;
  background: #2A5298;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.pk-aq-atc:hover { background: #3568B8; color: #fff; }
.pk-aq-sub {
  flex-basis: 100%;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: -4px;
}

/* ─── Feature accordion ─── */
.pk-aq-acc-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pk-aq-acc-item:last-child { border-bottom: none; }
.pk-aq-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}
.pk-aq-acc-header svg {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: rgba(255,255,255,0.4);
}
.pk-aq-acc-item.is-open .pk-aq-acc-header svg { transform: rotate(180deg); }
.pk-aq-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pk-aq-acc-body p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  padding: 0 0 1rem;
}
.pk-aq-acc-item.is-open .pk-aq-acc-body { max-height: 120px; }

/* Accordion fallback */
.pk-aq-acc-item .pk-aq-acc-body {
  display: block; /* visible without JS */
}

.js .pk-aq-acc-item .pk-aq-acc-body {
  display: none; /* JS will manage open/close */
}

.js .pk-aq-acc-item.is-open .pk-aq-acc-body {
  display: block;
}

/* ─── Callouts ─── */
.pk-aq-callouts {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.pk-aq-guarantee {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  border-left: 3px solid #D4A574;
}
.pk-aq-upsell {
  flex: 1;
  min-width: 200px;
  background: rgba(42,82,152,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   WHITE SECTION — 3-col product cards
   ═══════════════════════════════════════ */
.pk-bs-section {
  background: #ffffff;
  padding: clamp(3rem, 3rem + 2vw, 5rem) 1.5rem;
}
.pk-bs-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pk-bs-wrap { position: relative; }
.pk-bs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pk-bs-card {
  background: #ffffff;
  border: 1px solid #E8E1D8;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pk-bs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31,31,31,0.08);
}
.pk-bs-card-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.pk-bs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.pk-bs-card:hover .pk-bs-card-img img { transform: scale(1.03); }
.pk-bs-card-body { padding: 1.5rem; }
.pk-bs-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
  font-weight: 700;
  color: #1F1F1F;
  margin-bottom: 0.3rem;
}
.pk-bs-desc {
  font-size: 0.8rem;
  color: #6B5B4F;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.pk-bs-quote {
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.5;
  color: #1F1F1F;
  padding: 0.75rem 1rem;
  background: #F5F1ED;
  border-radius: 6px;
  border-left: 3px solid #D4A574;
  margin-bottom: 0.35rem;
}
.pk-bs-quote-attr {
  font-size: 0.63rem;
  color: #6B5B4F;
  font-style: normal;
  margin-bottom: 1rem;
  padding-left: 1rem;
}
.pk-bs-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pk-bs-stars { display: flex; gap: 1px; color: #D4A574; }
.pk-bs-price { font-size: 0.85rem; font-weight: 600; }
.pk-bs-reviews { font-size: 0.65rem; color: #6B5B4F; }
.pk-bs-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2A5298;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.pk-bs-cta svg { transition: transform 0.2s; }
.pk-bs-card:hover .pk-bs-cta svg { transform: translateX(4px); }

/* ─── Animations ─── */
.js .pk-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .pk-anim.is-visible { opacity: 1; transform: translateY(0); }
.js .pk-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .pk-stagger.is-visible > :nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.js .pk-stagger.is-visible > :nth-child(2) { opacity:1; transform:none; transition-delay:.1s; }
.js .pk-stagger.is-visible > :nth-child(3) { opacity:1; transform:none; transition-delay:.2s; }

/* ─── Tablet ─── */
@media (max-width: 960px) {
  .pk-aq { gap: 2.5rem; }
}

/* ─── Mobile ─── */
@media (max-width: 770px) {
  .pk-aq { grid-template-columns: 1fr; gap: 1.5rem; }
  .pk-aq-img { position: static; order: -1; }
  .pk-aq-atc { width: 100%; text-align: center; }
  .pk-aq-callouts { flex-direction: column; }
  .pk-bs-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   PAWKITTY QUIZ CTA
   ═══════════════════════════════════════ */

.pk-quiz {
  background: #F5F1ED;
  padding: clamp(3rem, 3rem + 3vw, 6rem) 1.5rem;
  text-align: center;
}
.pk-quiz-inner {
  max-width: 560px;
  margin: 0 auto;
}
.pk-quiz-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4A574;
  margin-bottom: 1rem;
}
.pk-quiz h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: #1F1F1F;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  margin-top: 0;
}
.pk-quiz p {
  font-size: clamp(0.94rem, 0.9rem + 0.2vw, 1.06rem);
  line-height: 1.7;
  color: #6B5B4F;
  margin-bottom: 2rem;
}
.pk-quiz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2A5298;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.pk-quiz-btn:hover {
  background: #3568B8;
  color: #fff;
  transform: translateY(-1px);
}
.pk-quiz-sub {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: #6B5B4F;
}

/* ─── Animation ─── */
.js .pk-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .pk-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   PAWKITTY S7: SOCIAL PROOF
   ═══════════════════════════════════════ */

.pk-s7 {
  background: #1F1F1F;
  padding: clamp(3rem, 3rem + 3vw, 6rem) 0;
  overflow: hidden;
}
.pk-s7-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
}

/* ─── UGC Marquee ─── */
.pk-ugc-track {
  display: flex;
  width: max-content;
  animation: pk-scroll 30s linear infinite;
  gap: 0; /* removed — handled by margin-right below */
  margin-bottom: 3rem;
}
.pk-ugc-track:hover { animation-play-state: paused; }
@keyframes pk-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.pk-ugc-item {
  flex-shrink: 0;
  width: 200px; height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1rem; /* gap moved here so -50% math stays exact */
}
.pk-ugc-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.pk-ugc-item:hover img { transform: scale(1.05); }

/* Show original items even if track isn't duplicated */
.pk-ugc-track {
  animation-play-state: running;
}

/* Optional: pause marquee if JS didn't load (no duplication = awkward loop) */
.js .pk-ugc-track {
  /* animation runs normally only when JS has fired and cloned items */
}

/* ─── Review cards ─── */
.pk-rv-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.pk-rv-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pk-rv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31,31,31,0.1);
}
.pk-rv-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.pk-rv-quote {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  color: #1F1F1F;
  flex: 1;
  margin-bottom: 1rem;
}
.pk-rv-quote::before { content: '\201C'; color: #D4A574; font-size: 1.3em; }
.pk-rv-quote::after  { content: '\201D'; color: #D4A574; font-size: 1.3em; }
.pk-rv-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 1rem;
}
.pk-rv-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #E8E1D8;
}
.pk-rv-product img {
  width: 40px; height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.pk-rv-product-info { min-width: 0; }
.pk-rv-product-info p { margin-bottom: 0; }
.pk-rv-product-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: #6B5B4F;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pk-rv-product-link {
  font-size: 0.7rem;
  font-weight: 600;
  color: #2A5298;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}
.pk-rv-product-link svg { transition: transform 0.2s; }
.pk-rv-card:hover .pk-rv-product-link svg { transform: translateX(3px); }

/* ─── Animations ─── */
.js .pk-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .pk-anim.is-visible { opacity: 1; transform: translateY(0); }
.js .pk-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .pk-stagger.is-visible > :nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.js .pk-stagger.is-visible > :nth-child(2) { opacity:1; transform:none; transition-delay:.1s; }
.js .pk-stagger.is-visible > :nth-child(3) { opacity:1; transform:none; transition-delay:.2s; }

/* ─── Tablet ─── */
@media (max-width: 960px) {
  .pk-ugc-item { width: 160px; height: 160px; }
}

/* ─── Mobile ─── */
@media (max-width: 770px) {
  .pk-ugc-item { width: 140px; height: 140px; }
  .pk-rv-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   PAWKITTY S8: GUARANTEE
   ═══════════════════════════════════════ */
.pk-s8 {
  background: #2A5298;
  padding: clamp(3rem, 3rem + 3vw, 6rem) 1.5rem;
}
.pk-s8-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.pk-s8-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.pk-s8 h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
  margin-top: 0;
}
.pk-s8-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}
.pk-s8-pillar {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid #D4A574;
}
.pk-s8-pillar-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pk-s8-pillar-icon svg {
  width: 22px; height: 22px;
  stroke: #D4A574;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pk-s8-pillar h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.pk-s8-pillar p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 770px) {
  .pk-s8-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   PAWKITTY S9: BRAND STORY
   ═══════════════════════════════════════ */
.pk-s9 {
  background: #F5F1ED;
  padding: clamp(3rem, 3rem + 3vw, 6rem) 1.5rem;
}
.pk-s9-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pk-s9-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}
.pk-s9-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pk-s9-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4A574;
  margin-bottom: 1rem;
}
.pk-s9-copy h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 700;
  color: #1F1F1F;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  margin-top: 0;
}
.pk-s9-copy p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #6B5B4F;
  margin-bottom: 1rem;
}
.pk-s9-copy p:last-of-type { margin-bottom: 0; }
.pk-s9-charity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  background: rgba(58,111,91,0.1);
  color: #3a6f5b;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9999px;
}
.pk-s9-charity svg {
  width: 14px; height: 14px;
  fill: #3a6f5b;
  flex-shrink: 0;
}

@media (max-width: 770px) {
  .pk-s9-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pk-s9-img { aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════
   PAWKITTY S10: FINAL CTA + EMAIL
   ═══════════════════════════════════════ */
.pk-s10 {
  background: #1F1F1F;
  padding: clamp(3rem, 3rem + 3vw, 6rem) 1.5rem;
  text-align: center;
}
.pk-s10-inner {
  max-width: 640px;
  margin: 0 auto;
}
.pk-s10 h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.pk-s10-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.pk-s10-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #1F1F1F;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.pk-s10-cta:hover {
  background: #2a5298;
  color: #fff;
  transform: translateY(-1px);
}
.pk-s10-divider {
  width: 48px;
  height: 2px;
  background: #D4A574;
  margin: 2.5rem auto;
  border-radius: 2px;
}
.pk-s10-email-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.pk-s10-email-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.pk-s10-email-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

/* Shortcode form wrapper overrides */
.pk-s10-form-wrap {
  max-width: 420px;
  margin: 0 auto;
}
.pk-s10-form-wrap input[type="email"] {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 0.85rem !important;
  width: 100% !important;
  margin-bottom: 0.75rem !important;
}
.pk-s10-form-wrap input[type="email"]::placeholder {
  color: rgba(255,255,255,0.35) !important;
}
.pk-s10-form-wrap input[type="submit"],
.pk-s10-form-wrap button[type="submit"] {
  background: #2A5298 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.pk-s10-form-wrap input[type="submit"]:hover,
.pk-s10-form-wrap button[type="submit"]:hover {
  background: #3568B8 !important;
}
.pk-s10-privacy {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.75rem;
}

.pk-s10-form-wrap button.jn-btn, .pk-s10-form-wrap input.jn-input.jn-email {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}