/* ============================================================
   Pelle Pelle Store – Custom Theme Styles
   ============================================================ */

/* ─── Fonts ───────────────────────────────────────────────── */
@font-face {
  font-family: "Helvetica Now Text";
  src: url("../fonts/helveticalnowtext-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Now Text";
  src: url("../fonts/helveticanowtext-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ─── Root variables ──────────────────────────────────────── */
:root {
  --pp-font: "Helvetica Now Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --pp-black: #000;
  --pp-white: #fff;
  --pp-gray-50: #f9f9f9;
  --pp-gray-100: #f3f3f3;
  --pp-gray-200: #e5e5e5;
  --pp-gray-500: #6b7280;
  --pp-gray-700: #374151;
  --pp-gray-800: #1f2937;
  --pp-text: #2b2b2b;
  --pp-red: #d20228;
  --pp-announce-h: 40px;
  --pp-header-h: 64px;
  --pp-subnav-h: 44px;
}

* {
  font-family: var(--pp-font) !important;
  font-style: normal !important;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--pp-font);
  font-weight: 400;
  color: var(--pp-text);
  background: var(--pp-white);
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ─── Announcement bar ────────────────────────────────────── */
.pp-announce {
  background: var(--pp-black);
  color: var(--pp-white);
  height: var(--pp-announce-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
}

.pp-announce__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: pp-scroll-announce 30s linear infinite;
  will-change: transform;
}

.pp-announce__track:hover { animation-play-state: paused; }

.pp-announce__item {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0 8px;
}

@media (min-width: 640px) {
  .pp-announce__item { font-size: 13px; }
}

.pp-announce__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pp-white);
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes pp-scroll-announce {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 10)); }
}

/* ─── Main header ─────────────────────────────────────────── */
.pp-header {
  background: var(--pp-white);
  position: sticky;
  top: var(--pp-announce-h);
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--pp-gray-200);
  transition: transform .3s ease;
}

.pp-header--hidden { transform: translateY(calc(-100% - var(--pp-announce-h))); }

/* ── Mobile row (shown on <768px) ─── */
.pp-header__mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 16px;
  height: var(--pp-header-h);
}

@media (min-width: 768px) {
  .pp-header__mobile { display: none; }
}

/* Logo centered on mobile */
.pp-header__logo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pp-header__logo-center img { height: 34px; width: auto; display: block; }

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

/* ── Desktop row (shown on ≥768px) ─── */
.pp-header__desktop {
  display: none;
}

@media (min-width: 768px) {
  .pp-header__desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 32px;
    height: var(--pp-header-h);
  }
}

@media (min-width: 1024px) {
  .pp-header__desktop {
    height: 80px;
    padding: 0 40px;
  }
}

/* Left nav: HOME · SALE · TRACK ORDER */
.pp-header__left-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.pp-header__nav-link {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--pp-black);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 4px solid transparent;
  transition: border-color .2s;
  white-space: nowrap;
}

.pp-header__nav-link--active,
.pp-header__nav-link:hover {
  border-bottom-color: var(--pp-black);
}

/* Center logo (absolutely positioned) */
.pp-header__logo-abs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pp-header__logo-abs img { height: 56px; width: auto; display: block; }

@media (min-width: 1024px) {
  .pp-header__logo-abs img { height: 60px; }
}

/* Right actions */
.pp-header__right-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Shared icon button */
.pp-header__icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--pp-black);
  position: relative;
  transition: color .15s;
}

.pp-header__icon-btn:hover { color: #555; }

/* Cart/wishlist badge */
.pp-header__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--pp-black);
  color: var(--pp-white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-header__badge--hidden { display: none; }

/* ── Secondary black nav bar (desktop only) ─── */
.pp-subnav {
  background: var(--pp-black);
  display: none;
}

@media (min-width: 768px) {
  .pp-subnav { display: block; }
}

.pp-subnav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  height: var(--pp-subnav-h);
  overflow-x: auto;
}

.pp-subnav__link {
  color: var(--pp-white);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  text-decoration: none;
  transition: color .15s;
}

.pp-subnav__link:hover { color: rgba(255,255,255,.75); }

.pp-subnav__link--highlight { color: var(--pp-red); }

.pp-subnav__link--highlight:hover { color: #ff4466; }

/* ── Search overlay ─── */
.pp-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.pp-search-overlay[hidden] { display: none; }

.pp-search-overlay__inner {
  background: var(--pp-white);
  width: 100%;
  max-width: 640px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
  margin: 0 16px;
}

.pp-search-overlay__form {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--pp-gray-200);
  gap: 12px;
}

.pp-search-overlay__icon { flex-shrink: 0; color: var(--pp-gray-500); }

.pp-search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--pp-font);
  color: var(--pp-text);
  background: transparent;
}

.pp-search-overlay__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--pp-gray-500);
  padding: 4px;
  border-radius: 4px;
  display: flex;
}

.pp-search-overlay__close:hover { color: var(--pp-black); background: var(--pp-gray-100); }

.pp-search-overlay__results { max-height: 420px; overflow-y: auto; }

.pp-search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--pp-gray-100);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}

.pp-search-result-item:hover { background: var(--pp-gray-50); }

.pp-search-result-item__image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--pp-gray-100);
}

.pp-search-result-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--pp-text);
  flex: 1;
}

.pp-search-result-item__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--pp-black);
}

.pp-search-overlay__loading,
.pp-search-overlay__empty {
  padding: 24px;
  text-align: center;
  color: var(--pp-gray-500);
  font-size: 14px;
}

/* ─── Mobile menu (full-screen, black) ───────────────────── */
.pp-mobile-menu[hidden] { display: none; }

.pp-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.pp-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.pp-mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--pp-black);
  color: var(--pp-white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.pp-mobile-menu--open .pp-mobile-menu__panel {
  transform: translateX(0);
}

/* Panel header */
.pp-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.pp-mobile-menu__head img { height: 32px; width: auto; }

.pp-mobile-menu__head-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Icon buttons inside panel */
.pp-mobile-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--pp-white);
  transition: opacity .2s;
  position: relative;
  text-decoration: none;
}

.pp-mobile-icon-btn--rel { position: relative; }

.pp-mobile-icon-btn:hover { opacity: .7; }

.pp-mobile-icon-btn__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--pp-white);
  color: var(--pp-black);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile nav links */
.pp-mobile-nav { flex: 1; }

.pp-mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pp-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .15s;
}

.pp-mobile-nav__link:hover { background: rgba(255,255,255,.05); }

/* Expandable "Brand" item */
.pp-mobile-nav__expand-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pp-white);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}

.pp-mobile-nav__expand-btn:hover { background: rgba(255,255,255,.05); }

.pp-mobile-nav__expand-icon {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.pp-mobile-nav__sub[hidden] { display: none; }

.pp-mobile-nav__sub { background: var(--pp-black); }

.pp-mobile-nav__sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 14px 20px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--pp-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .15s;
}

.pp-mobile-nav__sub-link:hover { background: rgba(255,255,255,.05); }

/* Contact section */
.pp-mobile-menu__contact {
  padding: 32px 20px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
}

.pp-mobile-menu__contact-label {
  color: var(--pp-white);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
}

.pp-mobile-menu__contact-phone {
  display: block;
  color: var(--pp-white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
}

.pp-mobile-menu__contact-phone:hover { color: rgba(255,255,255,.8); }

.pp-mobile-menu__contact-hours {
  color: rgba(255,255,255,.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 4px 0 4px;
}

.pp-mobile-menu__contact-email {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  text-decoration: none;
}

.pp-mobile-menu__contact-email:hover { color: var(--pp-white); }

/* Social row */
.pp-mobile-menu__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.pp-mobile-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: opacity .2s;
}

.pp-mobile-social-icon:hover { opacity: .65; }

/* ─── Hero section ────────────────────────────────────────── */
.pp-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
}

.pp-hero__media {
  position: absolute;
  inset: 0;
}

.pp-hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.pp-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s;
}

.pp-hero__video--ready {
  opacity: 1;
}

.pp-hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 32px 48px;
}

@media (min-width: 768px) {
  .pp-hero__content { padding: 0 64px 64px; }
}

.pp-hero__title {
  color: var(--pp-white);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: .1em;
  margin: 0 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.pp-hero__ctas {
  display: flex;
  gap: 32px;
}

@media (min-width: 768px) {
  .pp-hero__ctas { gap: 48px; }
}

.pp-hero__cta {
  color: var(--pp-white);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-weight: 600;
  border-bottom: 2px solid var(--pp-white);
  padding-bottom: 2px;
  transition: opacity .2s;
}

.pp-hero__cta:hover { opacity: .75; }

/* ─── Product carousel section ────────────────────────────── */
.pp-carousel-section {
  padding: 48px 0 32px;
  background: var(--pp-white);
}

.pp-carousel-section__header {
  text-align: center;
  padding: 0 16px;
  margin-bottom: 24px;
}

.pp-carousel-section__title {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--pp-text);
  margin: 0;
}

/* Splide overrides */
.pp-carousel .splide__slide {
  width: 200px;
}

@media (min-width: 640px) {
  .pp-carousel .splide__slide { width: 220px; }
}

@media (min-width: 1024px) {
  .pp-carousel .splide__slide { width: 240px; }
}

.pp-carousel .splide__arrows { display: none; }

/* ─── Product card ────────────────────────────────────────── */
.pp-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--pp-gray-50);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .2s;
  text-decoration: none;
  color: var(--pp-text);
}

.pp-product-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

.pp-product-card__image-wrap {
  position: relative;
  background: var(--pp-white);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.pp-product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}

.pp-product-card:hover .pp-product-card__image-wrap img {
  transform: scale(1.05);
}

.pp-product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 3px;
}

.pp-product-card__badge--sold-out {
  background: var(--pp-black);
  color: var(--pp-white);
}

.pp-product-card__badge--sale {
  background: var(--pp-red);
  color: var(--pp-white);
}

.pp-product-card__info {
  padding: 8px 8px 12px;
  background: var(--pp-white);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80px;
}

.pp-product-card__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--pp-gray-800);
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pp-product-card__price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pp-product-card__price--original {
  font-size: 13px;
  color: var(--pp-gray-500);
  text-decoration: line-through;
}

.pp-product-card__price--sale,
.pp-product-card__price--regular {
  font-size: 13px;
  font-weight: 700;
  color: var(--pp-black);
}

/* ─── Product grid ────────────────────────────────────────── */
.pp-product-grid {
  width: 100%;
}

.pp-product-grid--3col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 1024px) {
  .pp-product-grid--3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ─── Split sections ──────────────────────────────────────── */
.pp-split-section {
  width: 100%;
  background: var(--pp-white);
}

.pp-split-section__grid {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .pp-split-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* Image column */
.pp-split-section__image-col {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .pp-split-section__image-col { min-height: 100vh; }
}

.pp-split-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
}

.pp-split-section__label {
  position: relative;
  z-index: 1;
  padding: 16px 24px;
}

@media (min-width: 768px) {
  .pp-split-section__label {
    position: sticky;
    top: 8px;
    padding: 40px 48px;
  }
}

.pp-split-section__heading {
  color: var(--pp-white);
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: .1em;
  margin: 0 0 8px;
}

.pp-split-section__explore {
  display: inline-block;
  color: var(--pp-white);
  font-size: clamp(.9rem, 1.5vw, 1.25rem);
  font-weight: 600;
  border-bottom: 2px solid var(--pp-white);
  padding-bottom: 2px;
  transition: opacity .2s;
}

.pp-split-section__explore:hover { opacity: .75; }

/* Content column */
.pp-split-section__content-col {
  background: var(--pp-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 40vh;
}

@media (min-width: 768px) {
  .pp-split-section__content-col {
    min-height: 100vh;
    padding: 48px;
  }
}

/* Reverse layout – products on left, image on right */
.pp-split-section--reverse .pp-split-section__content-col--left {
  order: 2;
}

.pp-split-section--reverse .pp-split-section__image-col {
  order: 1;
}

@media (min-width: 768px) {
  .pp-split-section--reverse .pp-split-section__content-col--left { order: 1; }
  .pp-split-section--reverse .pp-split-section__image-col          { order: 2; }
}

.pp-split-section__copy {
  text-align: center;
  max-width: 480px;
  margin-top: 32px;
}

.pp-split-section__copy-title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 900;
  color: var(--pp-text);
  margin: 0 0 12px;
}

.pp-split-section__copy-desc {
  font-size: clamp(.8rem, 1.2vw, 1rem);
  color: var(--pp-gray-500);
  line-height: 1.6;
  margin: 0 0 24px;
}

/* ─── CTA button ──────────────────────────────────────────── */
.pp-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  transition: background .2s, color .2s;
  cursor: pointer;
}

.pp-btn--primary {
  background: var(--pp-black);
  color: var(--pp-white);
}

.pp-btn--primary:hover {
  background: #333;
}

/* ─── About section ───────────────────────────────────────── */
.pp-about {
  background: var(--pp-white);
  padding: 48px 16px;
}

@media (min-width: 640px) {
  .pp-about { padding: 64px 24px; }
}

.pp-about__inner { max-width: 1280px; margin: 0 auto; }

.pp-about__headline {
  text-align: center;
  margin-bottom: 32px;
}

.pp-about__title {
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--pp-text);
  line-height: 1.3;
  margin: 0;
}

.pp-about__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pp-about__body {
    grid-template-columns: 5fr 7fr;
    gap: 32px;
  }
}

.pp-about__image-wrap {
  position: sticky;
  top: 80px;
  overflow: hidden;
}

.pp-about__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .pp-about__image { height: 380px; }
}

@media (min-width: 1024px) {
  .pp-about__image { height: 420px; }
}

.pp-about__lead {
  font-size: clamp(.8rem, 1.2vw, 1.125rem);
  color: var(--pp-gray-700);
  line-height: 1.7;
  margin: 0 0 16px;
}

.pp-about__expanded {
  font-size: clamp(.75rem, 1.1vw, 1rem);
  color: var(--pp-gray-700);
  line-height: 1.7;
}

.pp-about__expanded[hidden] { display: none; }

.pp-about__expanded p { margin: 0 0 20px; }

.pp-about__sub-heading {
  font-size: clamp(.9rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--pp-text);
  margin: 0 0 12px;
}

.pp-about__sub-heading--lg {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  margin-top: 24px;
}

.pp-about__toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--pp-font);
  font-size: clamp(.75rem, 1vw, .9rem);
  font-weight: 600;
  color: var(--pp-text);
  padding: 0;
  margin-top: 12px;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pp-about__toggle:hover { opacity: .7; }

/* ─── Footer ──────────────────────────────────────────────── */
.pp-footer {
  background: var(--pp-black);
  color: var(--pp-white);
  padding: 40px 0 24px;
}

.pp-footer__inner {
  max-width: 100%;
  padding: 0 32px;
}

.pp-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 1024px) {
  .pp-footer__top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.pp-footer__logo-wrap img { height: 40px; width: auto; }

.pp-footer__social-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .pp-footer__social-wrap {
    flex-direction: row;
    align-items: center;
  }
}

.pp-footer__social-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.pp-footer__social {
  display: flex;
  gap: 8px;
}

.pp-footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-white);
  transition: opacity .2s;
}

.pp-footer__social a:hover { opacity: .65; }

/* Footer columns */
.pp-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .pp-footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .pp-footer__cols { grid-template-columns: repeat(4, 1fr); }
}

.pp-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin: 0 0 16px;
}

.pp-footer__links li { margin-bottom: 10px; }

.pp-footer__links a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pp-white);
  transition: color .15s;
  letter-spacing: .04em;
  line-height: 1.5;
}

.pp-footer__links a:hover { color: rgba(255,255,255,.65); }

/* Newsletter */
.pp-footer__col--newsletter { grid-column: span 2; }

@media (min-width: 768px) {
  .pp-footer__col--newsletter { grid-column: span 1; }
}

.pp-footer__newsletter-desc {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  margin: 0 0 12px;
}

.pp-footer__newsletter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.pp-footer__newsletter-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--pp-font);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--pp-white);
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
}

.pp-footer__newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.pp-footer__newsletter-input:focus { border-color: rgba(255,255,255,.6); }

.pp-footer__newsletter-btn {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--pp-font);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--pp-white);
  color: var(--pp-black);
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s;
  white-space: nowrap;
}

.pp-footer__newsletter-btn:hover { background: rgba(255,255,255,.85); }

.pp-footer__newsletter-msg {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  margin: 0;
}

.pp-footer__newsletter-msg[hidden] { display: none; }

.pp-footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pp-footer__payment-icons img {
  height: 24px;
  width: auto;
  border-radius: 3px;
}

/* Footer bottom */
.pp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .pp-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.pp-footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin: 0;
}

.pp-footer__bottom-links {
  display: flex;
  gap: 20px;
}

.pp-footer__bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}

.pp-footer__bottom-links a:hover { color: var(--pp-white); }

/* ─── Utility ─────────────────────────────────────────────── */
.pp-site-wrapper { min-height: 60vh; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* line-clamp helper */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Featured center-stage carousel ─────────────────────── */
.pp-feat-carousel {
  padding: 56px 0 64px;
  overflow: hidden;
  background: #fff;
}

.pp-feat-carousel__header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 16px;
}

.pp-feat-carousel__title {
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}

.pp-feat-carousel__outer {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
}

.pp-feat-carousel__viewport {
  flex: 1;
  overflow: hidden;
  padding: 20px 0 28px;
}

.pp-feat-carousel__track {
  display: flex;
  align-items: center;
  gap: 16px;
  will-change: transform;
}

/* Arrow buttons */
.pp-feat-carousel__arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: #000;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.pp-feat-carousel__arrow:hover { background: #222; }

/* Product card */
.pp-feat-card {
  flex: 0 0 clamp(150px, 20vw, 260px);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity  0.42s ease;
  transform: scale(0.85);
  opacity: 0.6;
  transform-origin: center center;
  outline: none;
}

.pp-feat-card:focus-visible { outline: 2px solid #000; }

.pp-feat-card.is-center {
  transform: scale(1.15) translateY(6px);
  opacity: 1;
  z-index: 2;
  position: relative;
}

.pp-feat-card.is-near {
  transform: scale(0.93);
  opacity: 0.82;
}

/* Card image */
.pp-feat-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
}

.pp-feat-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.pp-feat-card.is-center .pp-feat-card__img-wrap img { transform: scale(1.03); }

/* Badge */
.pp-feat-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.pp-feat-card__badge--sale     { background: #d20228; }
.pp-feat-card__badge--sold-out { background: #666; }

/* Card info */
.pp-feat-card__info {
  padding: 10px 2px 4px;
}

.pp-feat-card__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pp-feat-card__price {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.pp-feat-card__orig {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.pp-feat-card__sale {
  font-size: 13px;
  font-weight: 700;
  color: #000;
}

/* Mobile: hide arrows, show full viewport */
@media (max-width: 767px) {
  .pp-feat-carousel__arrow { display: none; }
  .pp-feat-carousel__outer { padding: 10px 0; }
  .pp-feat-card { flex: 0 0 clamp(140px, 42vw, 200px); }
}

/* ─── Responsive tweaks ───────────────────────────────────── */
@media (max-width: 639px) {
  .pp-header__inner { padding: 0 16px; }
  .pp-footer__inner { padding: 0 16px; }
  .pp-about { padding: 32px 16px; }
}
