/* ==========================================================================
   Planet Purple – main styles
   Section order matches homepage layout for easy scanning.
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1. Variables                                                               */
/* -------------------------------------------------------------------------- */
:root {
  --bg-deep: #0a0612;
  --bg-card: #120d1a;
  --purple-dark: #1e1530;
  --purple-mid: #4a2d6e;
  --purple-accent: #7b4bb5;
  --purple-glow: #9d6dd6;
  --text: #e8e0f0;
  --text-muted: #a89bb8;
  --star: rgba(255,255,255,.85);
  --bg-light: #f5f4f7;
  --text-light: #1c1a22;
  --text-light-muted: #4a4656;
  --border-light: #e2dfe8;
  --w: 1400px;
  /* Retail header (.pp-header) + home sections - defined globally so nav works on every page */
  --pp-bg: #000000;
  --pp-surface: #1e2120;
  --pp-muted: #a3a3a3;
  --pp-blue: #9d6dd6;
  --pp-text: #ffffff;
  --pp-border: #2a2a2a;
  --pp-border-card: #2a2c2b;
  --pp-border-subtle: #1f1f1f;
  --pp-border-drawer: #222222;
  --pp-bg-elevated: #222222;
  --font-home: "Montserrat", system-ui, -apple-system, sans-serif;
  --home-fw-body: 500;
  --home-fw-label: 700;
  --home-fw-ui: 800;
  --home-fw-display: 800;
  --home-ls-display: 0.06em;
  --home-ls-eyebrow: 0.12em;
  --home-ls-ui: 0.08em;
}

/* -------------------------------------------------------------------------- */
/* 2. Layout                                                                  */
/* -------------------------------------------------------------------------- */
.content-inner {
  max-width: var(--w);
  margin: 0 auto;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: .5rem;
  z-index: 10001;
  padding: .5rem 1rem;
  background: var(--purple-mid);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

.skip-link:focus {
  left: .5rem;
  outline: 2px solid var(--purple-glow);
  outline-offset: 2px;
}

.site-main {
  display: block;
  min-width: 0;
}

/* Screen-reader-only headings (SEO + a11y) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------------------------------------------------------- */
/* 3. Sub-nav (category row under main nav)                                   */
/* -------------------------------------------------------------------------- */
.sub-nav {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--purple-dark);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sub-nav::-webkit-scrollbar { display: none }

.sub-nav-inner {
  display: flex;
  gap: .25rem;
  padding-top: .4rem;
  padding-bottom: .4rem;
  white-space: nowrap;
}

.sub-nav a {
  padding: .35rem .7rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}

.sub-nav a:hover { background: var(--purple-dark); color: var(--purple-glow) }

.sub-nav-highlight {
  color: var(--purple-glow) !important;
  border: 1px solid var(--purple-mid);
  border-radius: 999px !important;
  padding: .3rem .7rem !important;
}

/* Combined nav: logo | [categories centered] | site links - no duplicate Menu/Deals row */
.nav-bar--combined {
  max-width: var(--w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.nav-links--combined {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  min-width: 0;
}

.nav-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem;
}

.nav-strip--shop {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.15rem 0;
}

.nav-strip--shop::-webkit-scrollbar {
  display: none;
}

.nav-strip--site {
  flex: 0 0 auto;
  padding-left: 0.75rem;
  border-left: 1px solid var(--purple-dark);
}

.nav-strip a {
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------- */
/* 4. Mobile nav toggle                                                       */
/* -------------------------------------------------------------------------- */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--purple-dark);
  color: var(--text);
  font-size: 1.4rem;
  padding: .25rem .5rem;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--purple-glow);
  outline-offset: 2px;
}

.nav-bar a[aria-current="page"] {
  color: var(--purple-glow);
  background: var(--purple-dark);
}

@media (max-width: 640px) {
  .nav-toggle { display: inline-flex }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: .5rem;
  }
  .nav-links--open { display: flex }

  .nav-links:not(.nav-links--combined) a {
    padding: .75rem .75rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--purple-dark);
  }

  .nav-links--combined.nav-links--open {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links--combined .nav-strip--shop {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--purple-dark);
  }

  .nav-links--combined .nav-strip--shop a {
    padding: 0.45rem 0.6rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-top: none;
  }

  .nav-links--combined .nav-strip--site {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border-left: none;
    border-top: none;
  }

  .nav-links--combined .nav-strip--site a {
    padding: 0.75rem 0.75rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--purple-dark);
  }
}

/* -------------------------------------------------------------------------- */
/* 5. Stars (background)                                                      */
/* -------------------------------------------------------------------------- */
.stars {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  contain: layout paint;
  pointer-events: none;
  z-index: 0;
}

/* Nebula glow patches - subtle color behind the stars */
.stars::before,
.stars::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.18;
  mix-blend-mode: screen;
}

.stars::before {
  width: min(55vw, 700px);
  height: min(55vw, 700px);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(90, 40, 180, 0.6) 0%, rgba(40, 120, 200, 0.25) 40%, transparent 70%);
}

.stars::after {
  width: min(50vw, 600px);
  height: min(50vw, 600px);
  bottom: 15%;
  right: -5%;
  background: radial-gradient(circle, rgba(180, 50, 80, 0.45) 0%, rgba(200, 100, 50, 0.2) 35%, transparent 70%);
}


.star { position: absolute; border-radius: 50%; background: var(--star) }
.star.star--tiny { width: 1px; height: 1px; opacity: .5 }
.star.star--small { width: 1.5px; height: 1.5px; opacity: .7 }
.star.star--medium { width: 2px; height: 2px; opacity: .9 }
.star.star--dim { background: rgba(180,160,220,.5) }
.star.star--bright { background: rgba(255,255,255,.95); box-shadow: 0 0 4px rgba(255,255,255,.3) }
.star.star--steady { animation: none; opacity: .6 }
.star.star--twinkle-slow { animation: twinkle 5s ease-in-out infinite }
.star.star--twinkle { animation: twinkle 3s ease-in-out infinite }
.star.star--twinkle-fast { animation: twinkle 2s ease-in-out infinite }

@keyframes twinkle {
  0%, 100% { opacity: .35; transform: scale(1) }
  50% { opacity: 1; transform: scale(1.15) }
}

/* -------------------------------------------------------------------------- */
/* 6. Hero top: simplified – more space, transparent, less purple            */
/* -------------------------------------------------------------------------- */
.hero-top {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 2rem 0 2.5rem;
  z-index: 1;
}

.hero-top-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .hero-top-inner { grid-template-columns: 1fr }
  .hero-top { padding: 1.5rem 0 2rem }
}

.hero-slider {
  background: rgba(18, 13, 26, .6);
  border: 1px solid rgba(74, 45, 110, .4);
  border-radius: 12px;
  padding: 1.75rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.hero-slider-title { font-size: 1.35rem; font-weight: 700; color: var(--purple-glow); margin: 0 0 1rem }

.hero-slider-track {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  color: var(--text-muted);
  font-size: .95rem;
  text-align: center;
}

.hero-slide { display: none }
.hero-slide:first-child { display: block }

.hero-promo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  background: rgba(18, 13, 26, .5);
  border: 1px solid rgba(74, 45, 110, .35);
  backdrop-filter: blur(8px);
}

.hero-promo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(74, 45, 110, .2) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-promo-content { position: relative; z-index: 1; padding: 1.5rem; width: 100% }
.hero-promo-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--purple-glow); opacity: .9 }
.hero-promo-title { font-size: 1.45rem; font-weight: 700; color: var(--text); margin: .25rem 0 .5rem }
.hero-promo-text { font-size: .9rem; color: var(--text-muted); margin: 0 0 1rem; line-height: 1.5 }

.hero-intro {
  background: rgba(18, 13, 26, .6);
  border: 1px solid rgba(74, 45, 110, .4);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.hero-intro-kicker {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--purple-glow);
  margin: 0 0 .5rem;
  opacity: .95;
}

.hero-intro-title {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 .65rem;
  line-height: 1.2;
}

.hero-intro-sub {
  font-size: .98rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.hero-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.hero-carousel {
  background: rgba(18, 13, 26, .55);
  border: 1px solid rgba(74, 45, 110, .35);
  border-radius: 12px;
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.hero-carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.hero-carousel-slide {
  margin: 0;
}

.hero-carousel-slide[hidden] {
  display: none !important;
}

.hero-carousel-slide:not([hidden]) {
  display: block;
}

.hero-carousel-photo {
  width: 100%;
  min-height: 160px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(74, 45, 110, .45) 0%, rgba(18, 13, 26, .9) 55%, rgba(30, 21, 48, .95) 100%);
  border: 1px solid rgba(74, 45, 110, .35);
}

.hero-carousel-photo--interior {
  background: linear-gradient(160deg, rgba(30, 21, 48, .9) 0%, rgba(74, 45, 110, .35) 50%, rgba(18, 13, 26, .95) 100%);
}

.hero-carousel-photo--products {
  background: linear-gradient(200deg, rgba(123, 75, 181, .25) 0%, rgba(18, 13, 26, .92) 45%, rgba(30, 21, 48, .98) 100%);
}

.hero-carousel-caption {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: .75rem 0 0;
  text-align: center;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .85rem;
}

.hero-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--purple-mid);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.hero-carousel-btn:hover {
  background: var(--purple-dark);
  border-color: var(--purple-accent);
}

.hero-carousel-dots {
  display: flex;
  gap: .4rem;
  align-items: center;
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--purple-mid);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.hero-carousel-dots button.is-active {
  background: var(--purple-glow);
  transform: scale(1.15);
}

.hero-categories-cta {
  text-align: center;
  margin: 1rem 0 0;
}

.commitment-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-light);
  line-height: 1.65;
}

.commitment-list li { margin-bottom: .35rem }

.commitment-list--about {
  color: var(--text-light);
}

/* -------------------------------------------------------------------------- */
/* 7. Category strip – transparent, subtle border                             */
/* -------------------------------------------------------------------------- */
.hero-categories {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(74, 45, 110, .25);
  border-bottom: 1px solid rgba(30, 21, 48, .5);
}

.category-grid { display: grid; gap: 1rem; margin: 0 }

.category-grid--hero {
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: .6rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--purple-dark);
  border-radius: 8px;
  padding: .75rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.category-card:hover {
  border-color: var(--purple-mid);
  box-shadow: 0 0 20px rgba(123,75,181,.2);
}

.category-card--hero {
  background: rgba(18, 13, 26, .4);
  border-color: rgba(74, 45, 110, .3);
  padding: 1rem .5rem;
  backdrop-filter: blur(6px);
}

.category-card--hero:hover { background: rgba(30, 21, 48, .7); border-color: rgba(74, 45, 110, .5) }

.category-card-icon {
  width: 44px; height: 44px;
  margin: 0 auto .4rem;
  border-radius: 50%;
  background: var(--purple-dark);
  border: 1px solid var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-glow);
}

.category-card span:last-child { font-size: .85rem; font-weight: 600 }

/* -------------------------------------------------------------------------- */
/* 8. Section blocks: light (white) and dark (purple)                         */
/* -------------------------------------------------------------------------- */
.block-light {
  width: 100%;
  background: var(--bg-light);
  padding: 2.75rem 0;
}

.block-light .section-light-inner,
.block-light > .section-light-inner {
  max-width: var(--w);
  margin: 0 auto;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
}

.block-dark {
  width: 100%;
  background: transparent;
  padding: 2.75rem 0;
  border-top: 1px solid var(--purple-dark);
  border-bottom: 1px solid var(--purple-dark);
}

.block-purple {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgba(26,14,46,.85) 0%, rgba(45,24,80,.85) 50%, rgba(26,14,46,.85) 100%);
  padding: 2.75rem 0;
  border-top: 1px solid var(--purple-mid);
  border-bottom: 1px solid var(--purple-mid);
  overflow: hidden;
}

.block-purple::before {
  content: "";
  position: absolute;
  width: min(30vw, 350px);
  height: min(30vw, 350px);
  top: -15%;
  right: -5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 140, 180, 0.2) 0%, transparent 60%);
  filter: blur(70px);
  opacity: 0.1;
  pointer-events: none;
}

.block-purple .section-title,
.block-purple section h2 { color: var(--purple-glow); }
.block-purple p { color: var(--text); }
.block-purple li { color: var(--text); }
.block-purple strong { color: #fff; }
.block-purple a:not(.btn) { color: var(--purple-glow); }
.block-purple a:not(.btn):hover { color: #c4a0f0; }
.block-purple .section-prose { color: var(--text-muted); text-align: center;     margin: 0px auto 20px auto;}
.block-purple .btn { background: #fff; color: var(--purple-accent); }
.block-purple .btn:hover { background: rgba(255,255,255,0.9); color: var(--purple-glow); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }
.block-purple .value-item h3 { color: #fff; }
.block-purple .value-item p { color: var(--text-muted); }
.block-purple .commitment-list li { color: var(--text); }
.ma{margin: 0 auto;}
/* White section text overrides */
.block-light .section-title,
.block-light section h2 { color: var(--purple-mid) }
.block-light p { color: var(--text-light-muted) }
.block-light .product-card-body span { color: var(--text-light-muted) }
.block-light .value-item p { color: var(--text-light-muted) }
.block-light .value-item h3 { color: var(--text-light) }
.block-light .product-price { color: var(--purple-mid) }
.block-light .product-card { border-color: var(--border-light); background: #fff; color: var(--text-light) }
.block-light .product-card:hover { border-color: var(--purple-mid) }
.block-light .product-card-image { background: linear-gradient(180deg, var(--border-light), #fff); color: var(--text-light-muted) }
.block-light .btn { background: var(--purple-accent); color: #fff }
.block-light .btn:hover { background: var(--purple-glow); color: #fff }
/* Outlines must beat .block-light .btn (same two classes: higher specificity here). */
.block-light .btn--outline {
  background: transparent;
  color: var(--purple-mid);
  border: 2px solid var(--purple-mid);
  box-shadow: none;
}
.block-light .btn--outline:hover {
  background: var(--purple-mid);
  color: #ffffff;
  border-color: var(--purple-accent);
  transform: translateY(-1px);
}
.block-light input,
.block-light textarea { background: #fff; border-color: var(--border-light); color: var(--text-light) }
.block-light input::placeholder { color: var(--text-light-muted) }
.block-light a:not(.btn):not(.product-card) { color: var(--purple-accent) }


/* -------------------------------------------------------------------------- */
/* 9. Sections – shared                                                       */
/* -------------------------------------------------------------------------- */
section { margin: 0 }

section h2,
.section-title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--purple-glow);
  margin: 0 0 1.25rem;

}

section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

section ul {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}

section ul li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: .4rem;
}

section ul li strong {
  color: var(--text);
}

.block-light section ul li {
  color: var(--text-light-muted);
}

.block-light section ul li strong {
  color: var(--text-light);
}

/* -------------------------------------------------------------------------- */
/* 10. Buttons – extended                                                     */
/* -------------------------------------------------------------------------- */

/* Override inline .btn from head.php with polished version */
.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--purple-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--purple-glow);
  box-shadow: 0 4px 20px rgba(157, 109, 214, 0.35);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--purple-glow);
}

.btn--outline:hover {
  background: var(--purple-mid);
  border-color: var(--purple-accent);
  color: #fff;
}

.btn--sm { padding: .4rem 1rem; font-size: .85rem }

/* -------------------------------------------------------------------------- */
/* 11. Featured products grid                                                 */
/* -------------------------------------------------------------------------- */
.featured-note,
.brands-lead {
  font-size: .95rem;
  color: var(--text-light-muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.featured-note a,
.brands-lead a {
  font-weight: 600;
}

.brands-grid--cta {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

.brand-card--wide {
  min-height: 72px;
  grid-column: 1 / -1;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--purple-dark);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.product-card:hover {
  border-color: var(--purple-mid);
  box-shadow: 0 0 25px rgba(123,75,181,.25);
  transform: translateY(-4px);
}

.product-card-image {
  height: 150px;
  background: linear-gradient(180deg, var(--purple-dark), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-initial {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--purple-glow);
  opacity: .7;
}

.product-card-body { padding: .75rem }
.product-card-body span { font-weight: 600; font-size: 1rem; display: block; margin-bottom: .25rem }
.product-card-body .product-price { font-size: .95rem; color: var(--purple-glow) }

/* -------------------------------------------------------------------------- */
/* 12. Brands section                                                         */
/* -------------------------------------------------------------------------- */
.brands-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.brands-header .section-title { margin: 0 }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  background: var(--bg-card);
  border: 1px solid var(--purple-dark);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.brand-card:hover {
  border-color: var(--purple-mid);
  background: var(--purple-dark);
  color: var(--text);
}

/* -------------------------------------------------------------------------- */
/* 13. Deals grid                                                             */
/* -------------------------------------------------------------------------- */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.deal-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.25rem;
  position: relative;
}

.deal-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-light); margin: .5rem 0 .35rem }
.deal-card p { font-size: .95rem; color: var(--text-light-muted); margin: 0 0 .75rem; line-height: 1.5 }

.deal-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--purple-mid);
  color: #fff;
  padding: .2rem .5rem;
  border-radius: 4px;
}

.deal-card--dark {
  background: var(--bg-card);
  border-color: var(--purple-dark);
}

.deal-card--dark h3 { color: var(--text) }
.deal-card--dark p { color: var(--text-muted) }

/* -------------------------------------------------------------------------- */
/* 14. Value props                                                            */
/* -------------------------------------------------------------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.value-item { text-align: center; padding: .5rem }

.value-item .icon {
  width: 48px; height: 48px;
  margin: 0 auto .5rem;
  border-radius: 50%;
  background: var(--purple-dark);
  border: 1px solid var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple-glow);
}

.value-item h3 { font-size: 1.1rem; color: var(--purple-glow); margin: 0 0 .3rem }
.value-item p { margin: 0; font-size: .95rem }

/* -------------------------------------------------------------------------- */
/* 15. Signup / newsletter                                                    */
/* -------------------------------------------------------------------------- */
.signup-section { text-align: center; max-width: 520px; margin: 0 auto }
.signup-section .section-title { margin-bottom: .75rem }
.signup-section p { margin-bottom: 1.25rem }

.signup-form {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.signup-form input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  padding: .55rem .75rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font: inherit;
  font-size: .95rem;
}

/* -------------------------------------------------------------------------- */
/* 16. Footer                                                                 */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: var(--purple-dark);
  border-top: 1px solid var(--purple-mid);
  padding: 2.5rem 0 1.5rem;
  color: var(--text-muted);
  font-size: .85rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: .95rem;
  color: var(--text);
  margin: 0 0 .75rem;
  font-weight: 600;
}

.footer-brand-link {
  color: inherit;
  text-decoration: none;
}

.footer-brand-link:hover {
  color: var(--purple-glow);
  text-decoration: underline;
}

.footer-col p { margin: 0 0 .35rem; font-size: .85rem }
.footer-col a { color: var(--purple-glow); text-decoration: none }
.footer-col a:hover { text-decoration: underline }

.footer-badge {
  display: inline-block;
  margin-top: .5rem;
  padding: .2rem .5rem;
  background: var(--bg-deep);
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--purple-glow);
}

.footer-bottom { text-align: center; border-top: 1px solid var(--purple-mid); padding-top: 1.25rem }
.footer-bottom p { margin: .25rem 0 }
.footer-bottom a { color: var(--purple-glow) }

.footer-social {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin-bottom: .75rem;
}

.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .85rem;
  transition: background .2s;
}

.footer-social a:hover { background: var(--purple-mid); color: var(--purple-glow) }

/* -------------------------------------------------------------------------- */
/* 17. Page header (inner pages: deals, about, etc.)                          */
/* -------------------------------------------------------------------------- */
.page-header {
  position: relative;
  background: var(--purple-dark);
  padding: 2.25rem 0;
  text-align: center;
  border-bottom: 1px solid var(--purple-mid);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 75, 181, 0.35) 0%, rgba(80, 40, 160, 0.1) 40%, transparent 65%);
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.page-header-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 .35rem;
}

.page-header-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 38rem;
}

/* Readable single-column copy inside section blocks */
.section-prose {
  max-width: 40rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.75rem;
  margin-top: 1rem;
}

.cta-row--tight {
  margin-top: 0.75rem;
}

.page-outro {
  text-align: center;
}

.page-outro .section-title {
  margin-bottom: 0.85rem;
}

.page-outro > p {
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}

.page-outro .cta-row {
  justify-content: center;
  margin-top: 1.1rem;
}

/* Contact - map hero + inline preview */
.contact-hero {
  position: relative;
  height: min(70vh, 360px);
  overflow: hidden;
  border-bottom: 1px solid var(--purple-mid);
  background: var(--purple-dark);
}

.contact-hero__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.contact-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 6, 18, 0.88) 0%,
    rgba(10, 6, 18, 0.45) 40%,
    rgba(10, 6, 18, 0.15) 100%
  );
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
}

.contact-hero__title {
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.35rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.contact-hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 28rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.contact-hero__cta {
  margin: 0;
}

.contact-hero__maps-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.15rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.contact-hero__maps-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
}

.contact-map-figure {
  margin: 0 0 1.25rem;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-map-figure__link {
  display: block;
  line-height: 0;
  outline-offset: -2px;
}

.contact-map-figure__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
}

.contact-map-figure__cap {
  padding: 0.65rem 1rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  text-align: center;
  line-height: 1.45;
}

.contact-map-figure__cap a {
  color: var(--purple-mid);
  font-weight: 600;
  text-decoration: none;
}

.contact-map-figure__cap a:hover {
  text-decoration: underline;
}

.contact-interior {
  margin: 0;
  text-align: center;
}

.contact-interior__figure {
  margin: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--purple-mid);
  background: var(--bg-card);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.15);
}

.contact-interior__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 520px);
  object-fit: cover;
  object-position: center;
}

/* -- Deals page products photo -- */
.deals-products-figure {
  margin: 0 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
}

.deals-products-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(50vh, 380px);
  object-fit: cover;
  object-position: center;
}

/* -- Visit page storefront photo -- */
.visit-storefront-figure {
  margin: 0 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

.visit-storefront-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(50vh, 400px);
  object-fit: cover;
  object-position: center;
}

/* -- About page header variant -- */
.page-header--tall {
  padding: 3.5rem 0 3rem;
}

.page-header-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-glow);
  margin: 0 0 0.5rem;
}

/* -- About page story grid -- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.about-story-content .section-title {
  margin-top: 0;
  text-align: left;
}

.about-story-content p {
  text-align: left;
  line-height: 1.7;
}

/* -- About values (dark section) -- */
.about-values-section {
  position: relative;
  background: linear-gradient(135deg, #0a0612 0%, #1a0e2e 50%, #0a0612 100%);
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.about-values-section::before {
  content: "";
  position: absolute;
  width: min(50vw, 500px);
  height: min(50vw, 500px);
  top: -20%;
  right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 180, 130, 0.3) 0%, transparent 65%);
  filter: blur(90px);
  opacity: 0.15;
  pointer-events: none;
}

.about-values-section::after {
  content: "";
  position: absolute;
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  bottom: -15%;
  left: -5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 50, 90, 0.35) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.about-values-heading {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 2.5rem;
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(123, 75, 181, 0.25);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.about-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-glow);
  box-shadow: 0 8px 32px rgba(157, 109, 214, 0.15);
}

.about-value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-accent), var(--purple-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.about-value-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* -- About page gallery -- */
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.about-gallery__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.about-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

/* -- Commitment section -- */
.about-commitment-section {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 14, 46, 0.92) 0%, rgba(45, 24, 80, 0.92) 50%, rgba(26, 14, 46, 0.92) 100%);
  padding: 4rem 0;
  border-top: 1px solid var(--purple-mid);
  border-bottom: 1px solid var(--purple-mid);
  overflow: hidden;
}

.about-commitment-section::before {
  content: "";
  position: absolute;
  width: min(35vw, 380px);
  height: min(35vw, 380px);
  top: 10%;
  left: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 100, 220, 0.3) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.about-commitment-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about-commitment-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 2rem;
  text-align: center;
}

.about-commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-commitment-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(123, 75, 181, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.about-commitment-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-glow);
  background: rgba(123, 75, 181, 0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.65rem;
}

.about-commitment-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-commitment-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .about-commitment-grid {
    grid-template-columns: 1fr;
  }
}

/* -- About CTA section -- */
.about-cta-section {
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #000 55%, #050508 100%);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  width: min(45vw, 450px);
  height: min(45vw, 450px);
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 75, 181, 0.3) 0%, rgba(60, 40, 160, 0.1) 40%, transparent 65%);
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}

.about-cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-glow);
  margin: 0 0 0.5rem;
}

.about-cta-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.65rem;
  line-height: 1.1;
}

.about-cta-copy {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--pp-muted);
  margin: 0 0 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-section .btn {
  background: #fff;
  color: #111;
  font-weight: 800;
}

.about-cta-section .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-story-content .section-title {
    text-align: center;
  }

  .about-story-content p {
    text-align: center;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .page-header--tall {
    padding: 2.5rem 0 2rem;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    height: min(70vh, 360px);
  }

  .contact-hero__inner {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .contact-map-figure__img {
    max-height: 200px;
  }
}

/* -------------------------------------------------------------------------- */
/* 18. Inner pages – card, forms, FAQ, map, shop pills                        */
/* -------------------------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--purple-dark);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

input, textarea {
  width: 100%;
  max-width: 400px;
  padding: .5rem .6rem;
  margin-bottom: .5rem;
  background: var(--bg-card);
  border: 1px solid var(--purple-dark);
  border-radius: 4px;
  color: var(--text);
  font: inherit;
}

input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--purple-glow);
  outline-offset: 2px;
}

input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: .8 }
textarea { min-height: 100px; resize: vertical }
label { display: block; margin-bottom: .25rem; font-size: .9rem; color: var(--text-muted) }

.hours-list { list-style: none; padding: 0; margin: 0 }
.hours-list li { padding: .4rem 0; border-bottom: 1px solid var(--purple-dark); display: flex; justify-content: space-between; gap: 1rem }

.faq-item { margin-bottom: 1rem }
.faq-item h3 { font-size: 1rem; color: var(--purple-glow); margin: 0 0 .35rem }
.faq-item p { margin: 0; font-size: .95rem }

.map-placeholder {
  height: 220px;
  background: var(--purple-dark);
  border: 1px solid var(--purple-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin: 1rem 0;
}

/* Shop page */
.shop-category-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.category-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem }

.category-pills a {
  padding: .4rem .9rem;
  background: var(--bg-card);
  border: 1px solid var(--purple-dark);
  border-radius: 999px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .9rem;
  transition: background .2s, color .2s, border-color .2s;
}

.category-pills a:hover,
.category-pills a.active { background: var(--purple-dark); color: var(--purple-glow); border-color: var(--purple-mid) }

.shop-widget-placeholder {
  min-height: 320px;
  background: var(--bg-card);
  border: 2px dashed var(--purple-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .95rem;
}

/* Shop page - full-width white canvas for Dutchie (or similar) embed */
body.page-shop {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
  color: var(--text-light);
  color-scheme: light;
}

body.page-shop .stars {
  display: none;
}

body.page-shop .page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}

body.page-shop .site-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

body.page-shop .shop-page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.shop-page__intro {
  flex: 0 0 auto;
  padding: 0.65rem 1rem;
  background: #f0eef4;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-light-muted);
  text-align: center;
}

.shop-page__intro-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.shop-page__intro a {
  color: var(--purple-mid);
  font-weight: 600;
  text-decoration: none;
}

.shop-page__intro a:hover {
  text-decoration: underline;
  color: var(--purple-accent);
}

body.page-shop .shop-page__embed {
  flex: 1 1 auto;
  min-height: calc(100dvh - 11.25rem);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: #fff;
  color: var(--text-light-muted);
}

body.page-shop .shop-page__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: calc(100dvh - 11.25rem);
  border: 0;
}

body.page-shop .shop-page__legal {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.5rem 0.75rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #6b6578;
  text-align: center;
  background: #fff;
}

body.page-shop .shop-page__embed-fallback {
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light-muted);
}

body.page-shop .shop-page__embed-fallback code {
  font-size: 0.85em;
}

/* -------------------------------------------------------------------------- */
/* 19. Shooting stars / comets (stars.js)                                     */
/* -------------------------------------------------------------------------- */
.shooting-star {
  position: fixed;
  width: 2px; height: 80px;
  left: 20%; top: -100px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.15) 30%, rgba(255,255,255,.9) 100%);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
  transform-origin: 50% 100%;
}

@keyframes shoot {
  0% { transform: translate(0,0) rotate(-25deg); opacity: 0 }
  5% { opacity: .95 }
  90% { opacity: .95 }
  100% { transform: translate(35vw, 115vh) rotate(-25deg); opacity: 0 }
}

.comet {
  position: fixed;
  width: 3px; height: 140px;
  left: 30%; top: -150px;
  background: linear-gradient(180deg, transparent 0%, rgba(200,180,255,.2) 20%, rgba(255,255,255,.9) 100%);
  border-radius: 3px;
  pointer-events: none;
  z-index: 0;
  transform-origin: 50% 100%;
  box-shadow: 0 0 20px rgba(255,255,255,.3);
}

@keyframes comet-fall {
  0% { transform: translate(0,0) rotate(-20deg); opacity: 0 }
  5% { opacity: .9 }
  90% { opacity: .9 }
  100% { transform: translate(40vw, 120vh) rotate(-20deg); opacity: 0 }
}

/* -------------------------------------------------------------------------- */
/* 20. Homepage (dark theme)                                                  */
/* -------------------------------------------------------------------------- */
body.page-home {
  /* --pp-* and --font-home / --home-* live on :root for .pp-header on all pages */
  background: var(--pp-bg);
  color: var(--pp-text);
  font-family: var(--font-home);
  font-weight: var(--home-fw-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.page-home .site-main h1,
body.page-home .site-main h2,
body.page-home .site-main h3 {
  font-family: var(--font-home);
}

body.page-home .page {
  background: transparent; /* stars layer visible; sections paint their own surfaces */
}

body.page-home .site-main {
  background: transparent;
  font-family: var(--font-home);
}

/* -- Header -- */
.pp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pp-bg);
  border-bottom: 1px solid var(--pp-border);
  padding-top: env(safe-area-inset-top, 0);
}

.pp-header-top-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.pp-logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  min-width: 0;
  max-width: min(70vw, 320px);
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.pp-logo:focus-visible {
  outline: 2px solid var(--pp-blue, #9d6dd6);
  outline-offset: 4px;
  border-radius: 4px;
}

.pp-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.pp-nav-main {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  min-width: 0;
}

.pp-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem 0.25rem;
}

.pp-nav-links a {
  color: var(--pp-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.pp-nav-links a:hover,
.pp-nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.pp-nav-toggle {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.pp-nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.pp-nav-toggle-icon {
  display: block;
}

@media (max-width: 900px) {
  .pp-header .pp-nav-toggle.nav-toggle {
    display: inline-flex;
  }

  .pp-nav-main:not(.is-open) .pp-nav-links {
    display: none;
  }

  .pp-nav-main:not(.is-open) {
    padding: 0;
    margin: 0;
    min-height: 0;
  }

  .pp-nav-main.is-open {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0.5rem 0 0.85rem;
    margin-top: 0.15rem;
    border-top: 1px solid var(--pp-border-drawer);
    background: var(--pp-bg);
    border-radius: 0 0 8px 8px;
  }

  .pp-nav-main.is-open .pp-nav-links {
    display: flex;
    max-width: none;
    width: 100%;
  }

  .pp-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .pp-nav-links a {
    padding: 0.55rem 0.35rem;
    border-radius: 6px;
  }
}

body.pp-menu-open {
  overflow: hidden;
}

@media (min-width: 901px) {
  body.pp-menu-open {
    overflow: visible;
  }
}

@media (min-width: 901px) {
  .pp-header .pp-logo {
    margin-left: 5px;
  }

  .pp-header .pp-nav-main {
    margin-right: 5px;
  }

  .pp-header-top-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    text-align: left;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }

  .pp-logo {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    flex-shrink: 0;
    max-width: min(400px, 50vw);
  }

  .pp-logo-img {
    max-height: 72px;
  }

  .pp-nav-toggle {
    display: none;
  }

  .pp-nav-main {
    grid-column: unset;
    grid-row: unset;
    flex: 1;
    justify-content: flex-end;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
  }

  .pp-nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.05rem 0.2rem;
  }

  .pp-nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 0.5rem 0.75rem;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .pp-nav-links a {
    font-size: 0.625rem;
    padding: 0.4rem 0.35rem;
    letter-spacing: 0.08em;
  }
}

/* -- Hero -- */
.pp-hero {
  position: relative;
  padding: 1.5rem 0 1.5rem;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  overflow: hidden;
}

.pp-hero::before {
  content: "";
  position: absolute;
  width: min(50vw, 500px);
  height: min(50vw, 500px);
  top: -20%;
  left: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 120, 200, 0.3) 0%, transparent 60%);
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}

.pp-hero::after {
  content: "";
  position: absolute;
  width: min(35vw, 400px);
  height: min(35vw, 400px);
  bottom: -10%;
  right: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 60, 90, 0.25) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}

.pp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  min-height: min(52vh, 520px);
}

.pp-hero-deals {
  position: relative;
  background: #141615;
  border-radius: 8px;
  border: 1px solid var(--pp-border-card);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  overflow: hidden;
}

.pp-deals-slides {
  position: relative;
  flex: 1;
  display: grid;
  min-height: min(240px, 42vh);
}

@media (min-width: 769px) {
  .pp-deals-slides {
    min-height: min(320px, 45vh);
  }
}

.pp-deals-slide {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.pp-deals-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pp-deals-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pp-deals-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pp-deals-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Match hero visual scrim so both panels read at similar contrast */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.12) 72%,
    transparent 100%
  );
  pointer-events: none;
}

.pp-deals-slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.75rem 1.5rem 2.5rem;
  width: 100%;
}

/* One hero headline style - matches left slider + right image panel */
.pp-deals-kicker,
.pp-hero-title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: var(--home-fw-display, 800);
  text-transform: uppercase;
  letter-spacing: var(--home-ls-display, 0.06em);
  line-height: 1.05;
  color: #fff;
}

.pp-deals-kicker {
  margin: 0;
  font-size: 35px;
}

.pp-hero-title {
  margin: 0 0 1rem;
}

.pp-btn-ghost {
  display: inline-block;
  padding: 0.55rem 1.35rem;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  font-weight: var(--home-fw-ui, 800);
  font-size: 0.75rem;
  letter-spacing: var(--home-ls-ui, 0.08em);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  min-width: 160px;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}

.pp-btn-ghost:hover {
  background: #fff;
  color: #111;
}

.pp-hero-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--pp-border-card);
}

.pp-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pp-hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem 2.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    transparent 72%
  );
}

.pp-hero-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: var(--home-fw-label, 700);
  letter-spacing: var(--home-ls-eyebrow, 0.12em);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.95;
}

/* .pp-hero-title shared with .pp-deals-kicker above */

@media (max-width: 768px) {
  .pp-hero-inner {
    grid-template-columns: 1fr;
  }

  .pp-hero-deals {
    min-height: 220px;
  }
}

/* -- Category strip -- */
.pp-categories {
  position: relative;
  padding: 0.75rem 0 0.75rem;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pp-categories > .content-inner {
  min-width: 0;
  max-width: 100%;
}

.pp-cat-scroll {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: clamp(0.45rem, 1vw, 0.75rem);
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  overflow-x: visible;
  padding: 0.35rem 0 0.85rem;
  box-sizing: border-box;
}

.pp-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 0;
  max-width: 100%;
  width: auto;
  height: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.45rem 0.6rem;
  background: linear-gradient(180deg, #252826 0%, var(--pp-surface) 100%);
  border-radius: 12px;
  text-decoration: none;
  color: var(--pp-text);
  border: 1px solid var(--pp-border-card);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s ease;
}

.pp-cat-tile:hover {
  border-color: rgba(157, 109, 214, 0.45);
  background: linear-gradient(180deg, #2a2d2b 0%, #282b29 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(157, 109, 214, 0.12);
  transform: translateY(-2px);
}

.pp-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(52px, 4.5vw + 18px, 82px);
  height: clamp(52px, 4.5vw + 18px, 82px);
}

.pp-cat-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: hue-rotate(269deg) saturate(1.12) brightness(1.03);
  transition: filter 0.2s ease;
}

.pp-cat-tile:hover .pp-cat-icon img {
  filter: hue-rotate(269deg) saturate(1.22) brightness(1.08);
}

.pp-cat-label {
  font-size: clamp(0.65rem, 0.8rem + 1.3vw, 1.0rem);
  font-weight: var(--home-fw-ui, 800);
  text-transform: uppercase;
  letter-spacing: var(--home-ls-display, 0.06em);
  text-align: center;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 769px) and (max-width: 899px) {
  .pp-cat-scroll {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .pp-cat-icon {
    width: clamp(58px, 12vw + 8px, 88px);
    height: clamp(58px, 12vw + 8px, 88px);
  }

  .pp-cat-label {
    font-size: clamp(0.7rem, 0.55rem + 0.55vw, 0.9rem);
  }
}

@media (max-width: 768px) {
  .pp-categories {
    overflow-x: hidden;
  }

  .pp-cat-scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 0.25rem 0 0.75rem;
  }

  .pp-cat-tile {
    padding: 0.85rem 0.5rem 0.7rem;
    gap: 0.55rem;
  }

  .pp-cat-icon {
    width: clamp(76px, 22vw, 92px);
    height: clamp(76px, 22vw, 92px);
  }

  .pp-cat-label {
    font-size: clamp(0.75rem, 0.65rem + 1.1vw, 0.9rem);
  }

  .pp-cat-tile--shop-all {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.95rem 1.15rem;
  }

  .pp-cat-tile--shop-all .pp-cat-icon {
    width: clamp(44px, 11vw, 52px);
    height: clamp(44px, 11vw, 52px);
    flex-shrink: 0;
  }

  .pp-cat-tile--shop-all .pp-cat-label {
    font-size: clamp(0.8rem, 0.7rem + 1vw, 0.95rem);
  }
}

@media (max-width: 380px) {
  .pp-cat-scroll {
    gap: 0.55rem;
  }

  .pp-cat-tile {
    padding-inline: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pp-cat-tile {
    transition: none;
  }

  .pp-cat-tile:hover {
    transform: none;
  }
}

/* -- Brands + promo -- */
.pp-brands-promo {
  background: #f7f7f7;
  color: #111;
  padding: 2.5rem 0;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  font-weight: var(--home-fw-body, 500);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.pp-brands-promo-inner {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 38%);
  gap: 2rem;
  align-items: start;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pp-brands-block {
  min-width: 0;
  max-width: 100%;
}

.pp-section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: var(--home-fw-display, 800);
  text-transform: uppercase;
  letter-spacing: var(--home-ls-display, 0.06em);
}

.pp-brands-note {
  margin: 0 0 1.25rem;
  color: #444;
  font-size: 1rem;
  font-weight: var(--home-fw-body, 500);
  line-height: 1.65;
  max-width: 42rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.pp-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.25rem;
  background: #fff;
  border: 2px solid #111;
  border-radius: 8px;
  color: #111;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  font-weight: var(--home-fw-ui, 800);
  font-size: 0.75rem;
  letter-spacing: var(--home-ls-ui, 0.08em);
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 1.25rem;
}

.pp-btn-pill:hover {
  background: #111;
  color: #fff;
}

.pp-brand-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pp-brand-chips li {
  padding: 0.35rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: var(--home-fw-label, 700);
  letter-spacing: 0.03em;
}

.pp-promo-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pp-promo-bg {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.pp-promo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 50%);
}

.pp-promo-eyebrow {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: var(--home-fw-display, 800);
  text-transform: uppercase;
  letter-spacing: var(--home-ls-display, 0.06em);
  color: #fff;
  line-height: 1.1;
}

.pp-promo-overlay .pp-btn-ghost {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .pp-brands-promo-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Match L/R inset so the strip doesn’t look shifted when safe-area differs side-to-side */
  .pp-brands-promo > .content-inner.pp-brands-promo-inner {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }

  .pp-brands-note {
    max-width: none;
  }

  .pp-section-title {
    max-width: 100%;
  }

  .pp-brand-chips {
    justify-content: center;
  }

  .pp-btn-pill {
    margin-inline: auto;
    display: flex;
    width: fit-content;
    max-width: 100%;
  }
}

/* -- Top sellers -- */
.pp-sellers {
  background: #fff;
  color: #111;
  padding: 2.5rem 0 3rem;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  font-weight: var(--home-fw-body, 500);
}

.pp-sellers-inner {
  max-width: var(--w);
}

.pp-sellers-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pp-sellers-title {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: var(--home-fw-display, 800);
  text-transform: uppercase;
  letter-spacing: var(--home-ls-display, 0.06em);
}

.pp-btn-pill--dark {
  background: #fff;
  border-color: #111;
}

.pp-sellers-layout {
  display: grid;
  grid-template-columns: minmax(0, 200px) 1fr;
  gap: 1.5rem;
  align-items: start;
  overflow: visible;
}

.pp-sellers-visual {
  transform: rotate(-5deg);
  transform-origin: center center;
  padding: 0.5rem 0.35rem 1rem;
}

.pp-sellers-visual img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .pp-sellers-visual {
    transform: none;
    padding: 0;
  }
}

.pp-sellers-cards {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
}

.pp-prod-card {
  position: relative;
  flex: 0 0 min(240px, 78vw);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 0.75rem 0.85rem 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pp-prod-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: #e25450;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: var(--home-fw-ui, 800);
  text-transform: uppercase;
  letter-spacing: var(--home-ls-ui, 0.08em);
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  z-index: 1;
}

.pp-prod-img {
  height: 120px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
  margin-bottom: 0.65rem;
}

.pp-prod-price {
  margin: 0 0 0.25rem;
  font-weight: var(--home-fw-display, 800);
  font-size: 0.95rem;
  text-align: center;
}

.pp-prod-brand {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: var(--home-fw-body, 500);
  color: #666;
  text-align: center;
}

.pp-prod-name {
  margin: 0.25rem 0 0.65rem;
  font-size: 0.72rem;
  font-weight: var(--home-fw-ui, 800);
  text-transform: uppercase;
  letter-spacing: var(--home-ls-display, 0.06em);
  text-align: center;
  line-height: 1.3;
  min-height: 2.6em;
}

.pp-prod-atc {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.55rem 0.5rem;
  background: var(--pp-blue);
  color: #fff;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  font-weight: var(--home-fw-ui, 800);
  font-size: 0.75rem;
  letter-spacing: var(--home-ls-ui, 0.08em);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.pp-prod-atc:hover {
  filter: brightness(1.06);
}

@media (max-width: 700px) {
  .pp-sellers-layout {
    grid-template-columns: 1fr;
  }

  .pp-sellers-visual {
    display: none;
  }
}

/* -- Homepage closer (before footer) -- */
.pp-home-closer {
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #000000 55%, #050508 100%);
  border-top: 1px solid var(--pp-border);
  padding: 2.75rem 0 3.25rem;
  text-align: center;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  overflow: hidden;
}

.pp-home-closer::after {
  content: "";
  position: absolute;
  width: min(40vw, 450px);
  height: min(40vw, 450px);
  bottom: -20%;
  right: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 160, 120, 0.25) 0%, transparent 60%);
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}

.pp-home-closer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 109, 214, 0.5), transparent);
  pointer-events: none;
}

.pp-home-closer-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.pp-home-closer-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: var(--home-fw-label, 700);
  letter-spacing: var(--home-ls-eyebrow, 0.12em);
  text-transform: uppercase;
  color: var(--pp-blue);
}

.pp-home-closer-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--home-fw-display, 800);
  letter-spacing: var(--home-ls-display, 0.06em);
  text-transform: uppercase;
  color: var(--pp-text);
  line-height: 1.1;
}

.pp-home-closer-copy {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  font-weight: var(--home-fw-body, 500);
  line-height: 1.55;
  color: var(--pp-muted);
}

.pp-home-closer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.75rem;
  margin-bottom: 1.35rem;
}

.pp-btn-pill--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.35rem;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #111;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  font-weight: var(--home-fw-ui, 800);
  font-size: 0.75rem;
  letter-spacing: var(--home-ls-ui, 0.08em);
  text-transform: uppercase;
  text-decoration: none;
  min-width: 160px;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}

.pp-btn-pill--light:hover {
  background: transparent;
  color: #fff;
}

.pp-btn-ghost--sm {
  padding: 0.45rem 1rem;
  font-size: 0.68rem;
  min-width: 110px;
}

.pp-home-closer-meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: var(--home-fw-body, 500);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.pp-home-closer-meta a {
  color: var(--pp-blue);
  text-decoration: none;
  font-weight: var(--home-fw-label, 700);
}

.pp-home-closer-meta a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .pp-home-closer {
    padding: 2.25rem 0 2.75rem;
  }

  .pp-home-closer-actions {
    flex-direction: column;
    width: 100%;
  }

  .pp-home-closer-actions .pp-btn-pill--light,
  .pp-home-closer-actions .pp-btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }
}

/* -- FAB -- */
.pp-fab-cart {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pp-fab-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

@supports (padding: max(0px)) {
  .pp-fab-cart {
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    right: max(1.25rem, env(safe-area-inset-right));
  }
}

/* Footer: match retail header (body.retail-shell from inc/head.php) */
body.retail-shell .site-footer {
  background: #050505;
  border-top: 1px solid var(--pp-border-drawer);
  color: #9a9a9a;
  font-family: var(--font-home);
  font-weight: var(--home-fw-body, 500);
}

body.retail-shell .footer-col h4 {
  color: #fff;
  font-weight: var(--home-fw-label, 700);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: var(--home-ls-display, 0.06em);
}

body.retail-shell .footer-brand-link {
  color: #fff;
}

body.retail-shell .footer-brand-link:hover {
  color: var(--pp-blue);
}

body.retail-shell .footer-col a {
  color: #e8e8e8;
}

body.retail-shell .footer-col a:hover {
  color: var(--pp-blue);
}

body.retail-shell .footer-badge {
  background: #141414;
  color: #ccc;
  border: 1px solid var(--pp-border);
}

body.retail-shell .footer-bottom {
  border-top-color: var(--pp-border);
}

body.retail-shell .footer-bottom a {
  color: var(--pp-blue);
}

body.retail-shell .footer-social a {
  background: #141414;
  color: #e8e8e8;
}

body.retail-shell .footer-social a:hover {
  background: var(--pp-bg-elevated);
  color: var(--pp-blue);
}

/* -- Trust strip -- */
.pp-trust-strip {
  background: var(--pp-bg);
  padding: 0.85rem 0;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
}

.pp-trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}

.pp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: var(--home-fw-label, 700);
  letter-spacing: 0.04em;
  color: var(--pp-muted);
  white-space: nowrap;
}

.pp-trust-item svg {
  color: var(--pp-blue);
  flex-shrink: 0;
}

/* -- Top sellers showcase (homepage) -- */
.pp-showcase {
  position: relative;
  background: transparent;
  padding: 3.5rem 0;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  border-bottom: 1px solid var(--pp-border);
  overflow: hidden;
}

.pp-showcase::before {
  content: "";
  position: absolute;
  width: min(45vw, 500px);
  height: min(45vw, 500px);
  top: 10%;
  right: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 180, 120, 0.3) 0%, transparent 60%);
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
}

.pp-showcase::after {
  content: "";
  position: absolute;
  width: min(35vw, 350px);
  height: min(35vw, 350px);
  bottom: 5%;
  left: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 50, 200, 0.25) 0%, transparent 55%);
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}

.pp-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pp-showcase-img {
  perspective: 800px;
}

.pp-showcase-img img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 12px;
  transform: rotate(-0.05turn);
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.pp-showcase-eyebrow {
  font-size: 0.7rem;
  font-weight: var(--home-fw-label, 700);
  letter-spacing: var(--home-ls-eyebrow, 0.12em);
  text-transform: uppercase;
  color: var(--pp-blue);
  margin: 0 0 0.75rem;
}

.pp-showcase-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: var(--home-fw-display, 800);
  letter-spacing: var(--home-ls-display, 0.06em);
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.pp-showcase-copy {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--pp-muted);
  margin: 0 0 1.5rem;
  max-width: 28rem;
}

.pp-showcase-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pp-showcase-cats a {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--purple-mid);
  border-radius: 20px;
  color: var(--purple-glow);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pp-showcase-cats a:hover {
  background: var(--purple-mid);
  border-color: var(--purple-accent);
  color: #fff;
}

.pp-showcase .pp-btn-pill--light {
  font-size: 1.05rem;
  padding: 0.75rem 2rem;
  min-width: 200px;
}

@media (max-width: 768px) {
  .pp-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .pp-showcase-copy {
    max-width: none;
  }
  .pp-showcase-cats {
    justify-content: center;
  }
  .pp-showcase-img img {
    max-height: 400px;
  }
}

/* -- Location strip (homepage) -- */
.pp-location-strip {
  position: relative;
  background: linear-gradient(180deg, #0d0a14 0%, #0a0612 100%);
  padding: 3rem 0;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
  overflow: hidden;
}

.pp-location-strip::before {
  content: "";
  position: absolute;
  width: min(35vw, 400px);
  height: min(35vw, 400px);
  top: 10%;
  left: -5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 80, 200, 0.3) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}

.pp-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pp-location-info {
  color: #fff;
}

.pp-location-addr {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--pp-muted);
  margin: 0 0 0.75rem;
}

.pp-location-hours {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--pp-muted);
  margin: 0 0 0.75rem;
}

.pp-location-phone {
  margin: 0 0 1.25rem;
}

.pp-location-phone a {
  color: var(--pp-blue);
  text-decoration: none;
  font-weight: var(--home-fw-ui, 800);
  font-size: 1.05rem;
}

.pp-location-phone a:hover {
  text-decoration: underline;
}

.pp-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pp-location-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
  background: #1a1a1a;
}

.pp-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

@media (max-width: 768px) {
  .pp-location-grid {
    grid-template-columns: 1fr;
  }
}

/* -- About teaser (homepage) -- */
.pp-about-teaser {
  background: #fff;
  color: var(--text-light);
  padding: 3.5rem 0;
  font-family: var(--font-home, "Montserrat", system-ui, sans-serif);
}

.pp-about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.pp-about-teaser-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.pp-about-teaser-content {
  max-width: 32rem;
}

.pp-about-teaser-copy {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light-muted);
  margin: 0 0 1.25rem;
}

@media (max-width: 768px) {
  .pp-about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* -- Feature grid (homepage "Why us") -- */
.pp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pp-feature-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pp-feature-icon {
  color: var(--purple-accent, #7b4bb5);
  margin-bottom: 0.75rem;
}

.pp-feature-label {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  font-weight: var(--home-fw-display, 800);
  text-transform: uppercase;
  letter-spacing: var(--home-ls-display, 0.06em);
}

.pp-feature-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #555;
}

/* -- Contact details grid -- */
.contact-details-grid {
  display: grid;
  /* Never 3 columns: four cards are 4×1 or 2×2 only (then 1 col on narrow phones). */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;

  margin-bottom: 1.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 960px) {
  .contact-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
}

.contact-detail-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-detail-card:hover {
  border-color: var(--purple-mid);
  box-shadow: 0 4px 20px rgba(123, 75, 181, 0.08);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}

.contact-detail-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin: 0 0 0.4rem;
}

.contact-detail-card a {
  color: var(--purple-accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-detail-card a:hover {
  text-decoration: underline;
}

.contact-detail-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light-muted);
}

.contact-map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

/* -- Contact form -- */
.contact-form-section {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  margin-top: 1.25rem;
  text-align: left;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form-field {
  margin-bottom: 1rem;
}

.contact-form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.block-purple .contact-form-field label {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form-field input[type="text"],
.contact-form-field input[type="email"],
.contact-form-field textarea {
  width: 100%;
  max-width: none;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--purple-glow);
  box-shadow: 0 0 0 3px rgba(157, 109, 214, 0.2);
}

.contact-form .btn {
  margin-top: 0.5rem;
  padding: 0.75rem 2.5rem;
  font-size: 0.95rem;
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 8px;
}

.contact-thank-you {
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 32rem;
}

.contact-thank-you svg {
  color: #22c55e;
  margin-bottom: 0.75rem;
}

.contact-thank-you h3 {
  font-size: 1.3rem;
  margin: 0 0 0.75rem;
  color: #fff;
}

.contact-thank-you p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-form-errors {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  max-width: 40rem;
}

.contact-form-errors ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #fca5a5;
  font-size: 0.9rem;
}

/* -- HTML site map (/site-map) -- */
.html-sitemap {
  display: grid;
  gap: 2rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 768px) {
  .html-sitemap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.html-sitemap-group .section-title {
  margin-bottom: 0.75rem;
}

.html-sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.html-sitemap-list li {
  margin: 0.45rem 0;
}

.html-sitemap-list a {
  font-weight: 600;
  color: var(--purple-accent);
  text-decoration: none;
}

.html-sitemap-list a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/* 21. Responsive                                                             */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .pp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr 1fr }
  .featured-grid { grid-template-columns: repeat(2, 1fr) }
  .deals-grid { grid-template-columns: 1fr }

  .pp-feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    height: min(55vh, 280px);
  }
}

/* -------------------------------------------------------------------------- */
/* 22. Reduced motion + safe areas                                            */
/* -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .star.star--twinkle-slow,
  .star.star--twinkle,
  .star.star--twinkle-fast {
    animation: none !important;
    opacity: .55;
  }
}

/* -------------------------------------------------------------------------- */
/* 23. Polish & focus states                                                  */
/* -------------------------------------------------------------------------- */

/* Skip-link: offset for sticky header */
#main-content {
  scroll-margin-top: 5rem;
}

/* Focus-visible on all interactive elements */
.btn:focus-visible {
  outline: 2px solid var(--purple-glow);
  outline-offset: 2px;
}

.pp-btn-ghost:focus-visible,
.pp-btn-pill:focus-visible,
.pp-btn-pill--light:focus-visible,
.pp-btn-pill--dark:focus-visible {
  outline: 2px solid var(--purple-glow);
  outline-offset: 2px;
}

.pp-fab-cart:focus-visible {
  outline: 2px solid var(--purple-glow);
  outline-offset: 3px;
}

.pp-cat-tile:focus-visible {
  outline: 2px solid var(--purple-glow);
  outline-offset: 2px;
}

.contact-detail-card a:focus-visible,
.contact-hero__maps-link:focus-visible {
  outline: 2px solid var(--purple-glow);
  outline-offset: 2px;
}

.announce a:focus-visible {
  outline: 2px solid var(--purple-glow);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Contact thank-you centering */
.contact-thank-you {
  margin-left: auto;
  margin-right: auto;
}

/* Contact form button: full-width on mobile */
@media (max-width: 600px) {
  .contact-form .btn {
    width: 100%;
    text-align: center;
  }
}

/* Page header: balanced text wrap */
.page-header-title {
  text-wrap: balance;
}

.page-header-sub {
  text-wrap: balance;
}

/* Back-to-back block-purple: collapse border between them */
.block-purple + .block-purple {
  border-top: none;
}

/* Contact detail icon: smooth hover */
.contact-detail-card:hover .contact-detail-icon {
  background: var(--purple-accent);
  transition: background 0.2s;
}

/* Announce bar: softer on retail-shell pages */
body.retail-shell .announce {
  background: #0a0a0a;
  border-bottom-color: var(--pp-border);
  font-size: 0.82rem;
}

body.retail-shell .announce a {
  color: var(--pp-blue);
}

/* Contact form errors: match dark block */
.contact-form-errors ul li {
  color: #fca5a5;
}

/* Footer social: better hit area */
.footer-social a {
  min-width: 36px;
  min-height: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Showcase image: reduced rotation on small screens for comfort */
@media (max-width: 480px) {
  .pp-showcase-img img {
    transform: rotate(-0.025turn);
  }
}

/* Consistent card hover shadow across sections */
.pp-feature-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.pp-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Map embeds: consistent border-radius and min-height on mobile */
@media (max-width: 600px) {
  .contact-map-embed iframe {
    height: 220px;
  }

  .pp-location-map {
    min-height: 200px;
  }

  .pp-location-map iframe {
    min-height: 200px;
  }
}

/* Value grid icons on block-light */
.block-light .value-item .icon {
  background: #fff;
  border-color: var(--border-light);
  color: var(--purple-accent);
}

/* Deals page: image figure rounded */
.deals-products-figure img {
  border-radius: 12px;
}

/* About gallery: inner image match figure radius */
.about-gallery__item img {
  border-radius: 12px;
}

/* FAB safe-area + spacing from age gate */
@media (max-width: 480px) {
  .pp-fab-cart {
    width: 50px;
    height: 50px;
  }
}

@supports (padding: max(0px)) {
  .nav-bar,
  .nav-bar--combined {
    padding-left: max(1.5rem, env(safe-area-inset-left), env(safe-area-inset-right));
    padding-right: max(1.5rem, env(safe-area-inset-left), env(safe-area-inset-right));
  }

  .content-inner {
    padding-left: max(1.5rem, env(safe-area-inset-left), env(safe-area-inset-right));
    padding-right: max(1.5rem, env(safe-area-inset-left), env(safe-area-inset-right));
  }
}
