/* ============================================================
   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: #fff !important;
}

/* Hide the browser's default focus outline on mouse interaction (drag/click)
   but keep it for keyboard users (Tab) — accessibility-safe.
   Astra adds dotted outlines on a/button :focus that look ugly while dragging
   the carousel or hovering links. */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
a:active,
button:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Override Astra's default #F0F5FA palette color on all top-level containers */
html, .ast-container, #page, .site, .hfeed.site,
.ast-theme-transparent-header, .ast-no-sidebar #primary,
.elementor-section-wrap, .ast-plain-container, .ast-page-builder-template {
  background: #fff !important;
}

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


/* ─── Remove all gap between header/subnav and hero ──────── */
/* Astra, WordPress, and browser defaults can all add spacing */
.pp-header,
.pp-subnav { margin-bottom: 0 !important; }

/* Astra page/content wrappers that may add padding */
#page, .site, #content, .site-content,
#primary, .site-primary,
main, #main, .site-main,
.ast-container, .ast-article-single,
.post-type-archive, .page,
article, .entry, .hentry,
.entry-content, .page-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Hero itself — flush to subnav */
.pp-hero { margin-top: 0 !important; }

/* ─── 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%;
  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; }

/* Explicit close button so it's always visible even if SVG rendering breaks */
.pp-mobile-menu__close-btn {
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  border-radius: 4px !important;
  color: #fff !important;
}
.pp-mobile-menu__close-btn:hover {
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
  opacity: 1 !important;
}
.pp-mobile-menu__close-x {
  display: block !important;
  font-size: 24px !important;
  line-height: 1 !important;
  color: #fff !important;
  font-weight: 400 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

.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;
}
.pp-mobile-icon-btn__badge--hidden { display: none !important; }

/* 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;
  opacity: 1;
  transition: opacity .6s ease;
  z-index: 1;
}

/* Fade out fallback once video is playing */
.pp-hero__fallback--hidden {
  opacity: 0;
}

.pp-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 2;
}

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

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

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

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

.pp-hero__title {
  color: var(--pp-white);
  font-size: 2.25rem;        /* text-4xl */
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  line-height: 1.15;
}

@media (min-width: 768px) {
  .pp-hero__title { font-size: 3.75rem; }  /* text-6xl */
}

@media (min-width: 1024px) {
  .pp-hero__title { font-size: 2.25rem; }  /* back to text-4xl on lg */
}

.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: 1.25rem;        /* text-xl */
  font-weight: 500;
  border-bottom: 2px solid var(--pp-white);
  padding-bottom: 4px;
  transition: opacity .2s;
}

@media (min-width: 768px) {
  .pp-hero__cta { font-size: 1.5rem; }   /* text-2xl */
}

@media (min-width: 1024px) {
  .pp-hero__cta { font-size: 1.875rem; } /* text-3xl */
}

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

/* ─── 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); }

/* 4th column – contact + newsletter + payment */
.pp-footer__col--contact { grid-column: span 2; }
@media (min-width: 768px) { .pp-footer__col--contact { grid-column: span 1; } }

/* Contact info rows */
.pp-footer__contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pp-footer__contact-row { display: flex; align-items: flex-start; gap: 12px; }
.pp-footer__contact-icon { width: 20px !important; height: 20px !important; color: #fff !important; flex-shrink: 0; margin-top: 2px; }
.pp-footer__contact-icon path { stroke: #fff !important; fill: none !important; }
.pp-footer__contact-link {
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  transition: color .2s;
}
.pp-footer__contact-link:hover { color: rgba(255,255,255,.65) !important; }
.pp-footer__contact-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Newsletter */
.pp-footer__newsletter-title {
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.pp-footer__newsletter-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
@media (min-width: 640px) { .pp-footer__newsletter-row { flex-direction: row; gap: 0; } }

.pp-footer__newsletter-input {
  flex: 1;
  padding: 12px 14px;
  font-size: 13px;
  font-family: var(--pp-font);
  background: transparent;
  border: 1px solid #6b7280;
  color: #fff;
  border-radius: 0;
  outline: none;
  text-transform: uppercase;
  transition: border-color .2s;
}
.pp-footer__newsletter-input::placeholder { color: #6b7280; text-transform: uppercase; }
.pp-footer__newsletter-input:focus { border-color: rgba(255,255,255,.7); }

.pp-footer__newsletter-btn {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--pp-font);
  text-transform: uppercase;
  background: #6b7280 !important;
  color: #fff !important;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background .2s;
  white-space: nowrap;
}
.pp-footer__newsletter-btn:hover { background: #9ca3af !important; color: #fff !important; }
.pp-footer__newsletter-btn:disabled { opacity: .6; cursor: default; }

.pp-footer__newsletter-msg { font-size: 12px; color: rgba(255,255,255,.8); margin: 0; }
.pp-footer__newsletter-msg[hidden] { display: none !important; }

/* Payment methods */
.pp-footer__payment-title {
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  margin-top: 18px;
  margin-bottom: 14px;
}
.pp-footer__payment-img-wrap { display: block; }
.pp-footer__payment-img { max-width: 100%; height: auto; display: block; }

/* Footer logo – constrain so Astra global img height: auto doesn't shrink it */
.pp-footer__logo-img {
  height: 40px !important;
  width: auto !important;
  max-width: 100% !important;
  display: block !important;
}

/* Payment method icons – brand-color SVGs on dark bg, sized in a row */
.pp-footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.pp-footer__pay-icon {
  height: 24px !important;
  width: auto !important;
  max-width: none !important;
  display: inline-block !important;
  background: #fff;
  padding: 4px 6px;
  border-radius: 3px;
  filter: none !important;
}
.pp-footer__pay-icon--lg { height: 28px !important; }
.pp-footer__pay-icon--boxed { padding: 2px 4px; }
/* Google Pay svg is monochrome black – flip to white and put on darker chip */
.pp-footer__pay-icon--invert { background: #fff; filter: none !important; }

/* 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 {
  width: 100%;
  background: #fff;
  padding-bottom: 32px;
  margin-top: 32px;
}

/* Title: "FEATURED PELLE PELLE JACKET" */
.pp-feat-carousel__title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 0;
  padding: 0 16px;
  text-transform: uppercase;
}

/* Wrap holds overflow + absolutely-positioned arrows */
.pp-feat-carousel__wrap {
  position: relative;
  padding: 0;
}

@media (min-width: 768px)  { .pp-feat-carousel__wrap { padding: 0 32px; } }
@media (min-width: 1024px) { .pp-feat-carousel__wrap { padding: 0 48px; } }
@media (min-width: 1280px) { .pp-feat-carousel__wrap { padding: 0 64px; } }

/* Clips the track */
.pp-feat-carousel__overflow {
  overflow: hidden;
  position: relative;
}

/* Adds vertical padding so scaled cards aren't clipped */
.pp-feat-carousel__dragzone {
  padding: 32px 0 64px;
  user-select: none;
  cursor: grab;
}

.pp-feat-carousel__dragzone:active { cursor: grabbing; }

/* Flex track – translateX applied by JS */
.pp-feat-carousel__track {
  display: flex;
  align-items: center;
  position: relative;      /* so card.offsetLeft is relative to track */
  gap: 4px;
  will-change: transform;
}

/* ── Card ───────────────────────────────────────────────── */
.pp-feat-card {
  flex: 0 0 calc(23% - 14px);
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  transform: scale(0.85) translateY(10px);
  transform-origin: center bottom;
  transition: transform 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.pp-feat-card.is-center {
  transform: scale(1.2) translateY(20px);
}

/* Image block – square, object-contain on white bg */
.pp-feat-card__img-wrap {
  aspect-ratio: 4 / 5;
  background: #fff;
  overflow: hidden;
  position: relative;
}

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

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

/* Info block – centered text, shown on ALL cards */
.pp-feat-card__info {
  padding: 8px;
  background: #fff;
  text-align: center;
}

.pp-feat-card__name {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pp-feat-card__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.pp-feat-card__orig {
  font-size: 14px;
  color: #6b7280;
  text-decoration: line-through;
}

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

/* ── Arrow buttons ──────────────────────────────────────── */
.pp-feat-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  display: none;           /* hidden by default; visible ≥1024px */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.pp-feat-carousel__arrow:hover,
.pp-feat-carousel__arrow:focus,
.pp-feat-carousel__arrow:focus-visible,
.pp-feat-carousel__arrow:active,
.pp-feat-carousel__arrow:visited {
  background: #333 !important;
  color: #fff !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.pp-feat-carousel__arrow:hover .pp-feat-carousel__chevron,
.pp-feat-carousel__arrow:focus .pp-feat-carousel__chevron,
.pp-feat-carousel__arrow:active .pp-feat-carousel__chevron {
  color: #fff !important;
}

.pp-feat-carousel__arrow--prev { left: 12px; }
.pp-feat-carousel__arrow--next { right: 16px; }

/* Unicode chevron glyphs – text characters, immune to SVG/border resets */
.pp-feat-carousel__chevron {
  display: inline-block !important;
  font-size: 18px !important;
  line-height: 1 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

@media (min-width: 1024px) {
  .pp-feat-carousel__arrow { display: flex; }
}

/* ── Mobile: wider cards ────────────────────────────────── */
@media (max-width: 1023px) {
  .pp-feat-card { flex: 0 0 70%; max-width: 320px; }
  .pp-feat-carousel__dragzone { padding: 24px 0 48px; }
}

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

/* ============================================================
   Single Product Page
   ============================================================ */

.pp-single { background: #fff; padding-top: 0; }
.pp-single__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px 64px; }

/* ── Grid ── */
.pp-single__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1024px) {
  .pp-single__grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 32px 0 0; }
}

/* ── Desktop gallery ── */
.pp-single__gallery-desktop { display: none; }
@media (min-width: 1024px) {
  .pp-single__gallery-desktop { display: flex; gap: 16px; }
}

.pp-single__thumbs-wrap {
  display: flex;
  flex-direction: column;
  width: 80px;
  flex-shrink: 0;
}
.pp-single__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  max-height: 548px;
  flex: 1;
  scrollbar-width: none;
}
.pp-single__thumbs::-webkit-scrollbar { display: none; }
.pp-single__thumb {
  flex-shrink: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 2px solid var(--pp-gray-200);
  background: none;
  padding: 0;
  cursor: pointer;
  transition: border-color .15s;
}
.pp-single__thumb.is-active,
.pp-single__thumb:hover { border-color: #000; }
.pp-single__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }

.pp-single__thumb-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 11px;
  color: #555;
  align-self: center;
}

.pp-single__main-img-wrap { flex: 1; overflow: hidden; aspect-ratio: 4/5; cursor: zoom-in; }
.pp-single__main-img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ── Mobile gallery ── */
.pp-single__gallery-mobile { margin: 0 -24px; }
@media (min-width: 1024px) { .pp-single__gallery-mobile { display: none; } }

.pp-single__mobile-track-wrap { overflow: hidden; position: relative; }
.pp-single__mobile-track { display: flex; }
.pp-single__mobile-slide { flex: 0 0 100%; display: none; }
.pp-single__mobile-slide.is-active { display: block; }
.pp-single__mobile-slide img { width: 100%; height: auto; display: block; }

.pp-single__dots { display: flex; justify-content: center; gap: 8px; padding: 12px 0; }
.pp-single__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pp-gray-200);
  border: none; cursor: pointer; padding: 0;
  transition: background .15s;
}
.pp-single__dot.is-active { background: #000; }

/* ── Details column ── */
.pp-single__details { padding: 16px 0 0; }
@media (min-width: 1024px) { .pp-single__details { padding: 0; } }

/* Breadcrumb */
.pp-single__breadcrumb { font-size: 12px; color: var(--pp-gray-500); margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.pp-single__breadcrumb a { color: var(--pp-gray-500); text-decoration: none; }
.pp-single__breadcrumb a:hover { color: #000; text-decoration: underline; }
.pp-single__breadcrumb-sep { color: var(--pp-gray-500); }
.pp-single__breadcrumb-cur { color: #000; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

/* Name + price */
.pp-single__name { font-size: 18px; font-weight: 700; color: #000; text-transform: uppercase; margin: 0 0 8px; line-height: 1.3; }
@media (min-width: 1024px) { .pp-single__name { font-size: 24px; font-weight: 900; } }

.pp-single__price { display: flex; align-items: center; gap: 8px; margin: 0 0 2px; font-size: 18px; }
@media (min-width: 1024px) { .pp-single__price { font-size: 20px; } }
.pp-single__price-orig { color: var(--pp-gray-500); text-decoration: line-through; }
.pp-single__price-sale { font-weight: 600; color: #000; }

.pp-single__afterpay {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #4b5563;
  margin: -10px 0 -10px;
  flex-wrap: wrap;
  line-height: 1;
}
.pp-single__afterpay strong { color: #111827; font-weight: 600; }
.pp-single__afterpay-logo {
  height: 60px !important;
  width: auto !important;
  max-width: none !important;
  display: inline-block !important;
  vertical-align: middle;
  margin: 0 !important;
}

.pp-single__sku { font-size: 12px; color: var(--pp-gray-700); margin: 2px 0 16px; }
.pp-single__sku-label { font-weight: 600; }
.pp-single__sku-val { font-weight: 700; text-transform: uppercase; }

/* Selector groups */
.pp-single__selector-group { margin-bottom: 24px; }
.pp-single__selector-header { display: flex; align-items: center; gap: 16px; margin-bottom: 6px; }
.pp-single__selector-label { font-weight: 600; font-size: 14px; color: #000; display: block; margin-bottom: 8px; }
.pp-single__selector-header .pp-single__selector-label { margin-bottom: 0; }
.pp-single__unisex-note { font-size: 13px; color: var(--pp-gray-500); margin: 0 0 10px; }
.pp-single__size-guide-btn { background: none; border: none; font-size: 13px; color: var(--pp-gray-500); text-decoration: underline; cursor: pointer; padding: 0; }
.pp-single__size-guide-btn:hover { color: #000; }

/* Desktop button grid */
.pp-single__selectors--desktop { display: none; }
@media (min-width: 1024px) { .pp-single__selectors--desktop { display: block; } }

.pp-single__btn-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-single__opt-btn {
  padding: 8px 16px;
  border: 1px solid var(--pp-gray-200);
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.pp-single__opt-btn:hover { border-color: var(--pp-gray-700); }
.pp-single__opt-btn.is-selected { border-color: #000; background: #000; color: #fff; }
.pp-single__opt-btn.is-disabled { opacity: .5; cursor: not-allowed; }

/* Mobile dropdowns */
.pp-single__selectors--mobile { display: block; }
@media (min-width: 1024px) { .pp-single__selectors--mobile { display: none; } }

.pp-single__dropdowns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 12px; }

.pp-single__dropdown-wrap { position: relative; }
.pp-single__dropdown-label {
  position: absolute; top: -8px; left: 12px; background: #fff;
  padding: 0 4px; font-size: 12px; color: var(--pp-gray-500); z-index: 1; line-height: 1;
}
.pp-single__dropdown-btn {
  width: 100%; border: 1px solid var(--pp-gray-200); border-radius: 8px;
  padding: 12px 36px 12px 12px; background: #fff; font-size: 13px; color: #111;
  text-align: left; cursor: pointer; position: relative;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color .15s;
}
.pp-single__dropdown-btn:hover { border-color: var(--pp-gray-700); }
.pp-single__dropdown-btn.is-disabled { opacity: .5; cursor: not-allowed; }
.pp-single__dropdown-arrow { width: 16px; height: 16px; color: var(--pp-gray-500); flex-shrink: 0; transition: transform .2s; }

.pp-single__dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--pp-gray-200); border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12); z-index: 20; overflow: hidden;
}
.pp-single__dropdown-item {
  display: block; width: 100%; padding: 8px 12px; font-size: 13px;
  text-align: left; background: #fff; border: none; cursor: pointer; color: #111;
  transition: background .1s, color .1s;
}
.pp-single__dropdown-item:hover { background: #000; color: #fff; }
.pp-single__dropdown-item.is-selected { background: var(--pp-gray-200); color: #000; }
.pp-single__dropdown-item.is-disabled { opacity: .5; cursor: not-allowed; }

/* Custom notice */
.pp-single__custom-notice { background: var(--pp-gray-50); border: 1px solid var(--pp-gray-200); border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.pp-single__custom-notice-inner { display: flex; gap: 12px; align-items: flex-start; }
.pp-single__custom-notice-inner svg { width: 20px; height: 20px; flex-shrink: 0; color: #000; margin-top: 2px; }
.pp-single__custom-notice-inner strong { display: block; font-size: 13px; margin-bottom: 4px; }
.pp-single__custom-notice-inner p { font-size: 13px; color: var(--pp-gray-700); margin: 0; }

/* Warning */
.pp-single__warning { color: var(--pp-red); font-size: 13px; font-weight: 600; margin-bottom: 8px; }

/* Quantity */
.pp-single__qty-group { margin-bottom: 24px; }
.pp-single__qty {
  display: flex; align-items: center;
  border: 1px solid var(--pp-gray-200); border-radius: 4px; width: fit-content;
}
.pp-single__qty-btn {
  width: 40px; height: 40px; display: flex !important; align-items: center; justify-content: center;
  background: none !important; border: none; cursor: pointer; transition: background .1s;
  color: #000 !important; font-size: 20px; font-weight: 400; line-height: 1;
  box-shadow: none !important; text-shadow: none !important;
}
.pp-single__qty-btn:hover { background: var(--pp-gray-50) !important; box-shadow: none !important; color: #000 !important; }
.pp-single__qty-btn:disabled { opacity: .5; cursor: not-allowed; }
.pp-single__qty-val { width: 48px; text-align: center; font-size: 13px; font-weight: 600; color: #000; }

/* Action buttons */
.pp-single__actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.pp-single__btn {
  width: 100%; padding: 16px 24px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; cursor: pointer;
  border: none; transition: background .15s, color .15s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pp-single__btn--cart { background: #000; color: #fff; }
.pp-single__btn--cart:hover { background: #222; }
.pp-single__btn--cart:disabled { background: #000; cursor: not-allowed; }
.pp-single__btn--buy { background: #fff; color: #000; border: 2px solid #000; }
.pp-single__btn--buy:hover { background: #000; color: #fff; }
.pp-single__btn--soldout { background: #9ca3af; color: #fff; cursor: not-allowed; }
.pp-single__btn-desktop { display: none; }
.pp-single__btn-mobile  { display: inline; }
@media (min-width: 1024px) {
  .pp-single__btn-desktop { display: inline; }
  .pp-single__btn-mobile  { display: none; }
}
.pp-single__btn-success svg { width: 20px; height: 20px; }

/* Wishlist */
.pp-single__wishlist {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: transparent !important; border: none; cursor: pointer;
  font-size: 13px; color: var(--pp-gray-500) !important; padding: 8px 0;
  transition: color .15s; text-decoration: none !important;
}
.pp-single__wishlist:hover { color: #000 !important; background: transparent !important; }
.pp-single__wishlist.is-in-wishlist { color: #000 !important; }
.pp-single__wishlist svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Delivery */
.pp-single__delivery { font-size: 12px; margin: 16px 0; text-align: center; }
@media (min-width: 1024px) { .pp-single__delivery { text-align: left; } }
.pp-single__delivery-txt { font-weight: 700; font-size: 12px; margin: 0 0 8px; color: #000; }

/* Delivery & Returns button */
.pp-single__dr-btn {
  background: none; border: 1px solid var(--pp-gray-700); color: var(--pp-gray-700);
  font-size: 12px; font-weight: 500; padding: 5px 12px; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.pp-single__dr-btn:hover { color: #000 !important; border-color: #000; background: none !important; }

/* Delivery & Returns modal content */
.pp-single__modal-box--dr { max-width: 560px; }
.pp-dr-content { display: flex; flex-direction: column; gap: 16px; max-height: 60vh; overflow-y: auto; padding-right: 4px; }

/* Read more button + full description modal */
.pp-single__readmore-btn {
  margin-top: 10px;
  background: transparent !important;
  border: 0;
  padding: 0;
  font-size: 13px;
  color: #374151 !important;
  text-decoration: underline;
  cursor: pointer;
}
.pp-single__readmore-btn:hover { color: #000 !important; }
.pp-single__modal-box--desc { max-width: 760px; }
.pp-single__modal-body { max-height: 70vh; overflow-y: auto; font-size: 14px; line-height: 1.6; color: #374151; padding-right: 4px; }
.pp-single__modal-body h1, .pp-single__modal-body h2, .pp-single__modal-body h3 { color: #111827; margin: 18px 0 8px; }
.pp-single__modal-body p { margin: 0 0 12px; }
.pp-single__modal-body ul, .pp-single__modal-body ol { padding-left: 20px; margin: 0 0 12px; }
.pp-single__modal-body ul { list-style: disc; }
.pp-single__modal-body ol { list-style: decimal; }
.pp-single__modal-body li { margin-bottom: 4px; }
.pp-single__modal-body strong { color: #111827; }
.pp-dr-section h3 { font-size: 13px; font-weight: 700; color: #000; margin: 0 0 6px; text-transform: uppercase; letter-spacing: .04em; }
.pp-dr-section p { font-size: 13px; color: var(--pp-gray-700); margin: 0 0 4px; line-height: 1.5; }
.pp-dr-section ul { list-style: disc; padding-left: 18px; margin: 0; }
.pp-dr-section ul li { font-size: 13px; color: var(--pp-gray-700); margin-bottom: 4px; line-height: 1.5; }
.pp-dr-section a { color: #000; text-decoration: underline; }
.pp-dr-section a:hover { color: #111 !important; }
.pp-dr-section--support { background: var(--pp-gray-50); padding: 12px; border-radius: 4px; }

/* ── Desktop tabs ── */
.pp-single__tabs--desktop { display: none; margin-top: 24px; }
@media (min-width: 1024px) { .pp-single__tabs--desktop { display: block; } }

.pp-single__tab-nav { display: flex; border-bottom: 1px solid var(--pp-gray-200); margin-bottom: 16px; gap: 0; }
.pp-single__tab-btn {
  padding: 8px 12px; font-size: 13px; font-weight: 500; background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer; color: var(--pp-gray-500);
  transition: color .15s, border-color .15s; margin-bottom: -1px;
}
.pp-single__tab-btn:hover { color: #000 !important; background: none !important; box-shadow: none !important; }
.pp-single__tab-btn.is-active { border-bottom-color: #000; color: #000; }

.pp-single__tab-content { font-size: 13px; color: var(--pp-gray-700); }

/* ── Mobile accordions ── */
.pp-single__accordions--mobile { margin-top: 24px; }
@media (min-width: 1024px) { .pp-single__accordions--mobile { display: none; } }

.pp-single__accordion { border-bottom: 1px solid var(--pp-gray-200); }
.pp-single__accordion-hdr {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 12px 0; background: none !important; border: none; cursor: pointer;
  text-align: left;
}
.pp-single__accordion-hdr:hover { background: none !important; box-shadow: none !important; }
.pp-single__accordion-hdr span:first-child { font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: #000; }
.pp-single__accordion-icon { font-size: 18px; font-weight: 700; color: #000; }
.pp-single__accordion-body { padding-bottom: 12px; font-size: 13px; color: var(--pp-gray-700); }

/* Description */
.pp-single__desc-bullets ul { list-style: disc; padding-left: 20px; }
.pp-single__desc-bullets li { margin-bottom: 4px; }
.pp-single__cat-link { color: #000; text-decoration: underline; }
.pp-single__cat-link:hover { color: #1d4ed8; }

/* Reviews */
.pp-single__reviews { display: flex; flex-direction: column; gap: 16px; }
.pp-single__review { border-bottom: 1px solid var(--pp-gray-200); padding-bottom: 16px; }
.pp-single__review:last-child { border-bottom: none; }
.pp-single__review-stars { display: flex; gap: 2px; margin-bottom: 4px; }
.pp-single__star { width: 16px; height: 16px; color: var(--pp-gray-200); }
.pp-single__star.is-filled { color: #facc15; }
.pp-single__review-date { font-size: 11px; color: var(--pp-gray-500); }
.pp-single__review-author { display: block; font-size: 13px; color: #111; margin: 4px 0 4px; }
.pp-single__review-body { font-size: 13px; color: var(--pp-gray-700); line-height: 1.5; }

/* ── Related products ── */
.pp-single__related { margin-top: 40px; }
.pp-single__section-title { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 16px; text-align: center; }
@media (min-width: 1024px) { .pp-single__section-title { text-align: left; font-size: 24px; } }

.pp-single__related-track-wrap { position: relative; overflow: hidden; }
.pp-single__related-track {
  display: flex;
  gap: 16px;
  transition: transform .3s ease;
}
.pp-single__related-card { flex: 0 0 calc(50% - 8px); }
@media (min-width: 768px)  { .pp-single__related-card { flex: 0 0 calc(33.333% - 12px); } }
@media (min-width: 1024px) { .pp-single__related-card { flex: 0 0 calc(25% - 12px); } }

.pp-single__related-img-link { display: block; text-decoration: none; }
.pp-single__related-img-wrap { aspect-ratio: 4/4; overflow: hidden; background: var(--pp-gray-100); margin-bottom: 8px; }
.pp-single__related-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.pp-single__related-card:hover .pp-single__related-img-wrap img { transform: scale(1.05); }
.pp-single__related-name { font-size: 12px; font-weight: 500; color: #111; display: block; text-decoration: none; margin-bottom: 4px; line-height: 1.3; max-height: 32px; overflow: hidden; }
.pp-single__related-price { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.pp-single__related-orig { color: var(--pp-gray-500); text-decoration: line-through; font-size: 12px; }
.pp-single__related-cur { font-weight: 700; color: #111; }

.pp-single__rel-arrow {
  position: absolute; top: 35%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.15); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, opacity .15s; z-index: 2;
}
.pp-single__rel-arrow:hover { background: var(--pp-gray-50); }
.pp-single__rel-arrow--prev { left: -20px; }
.pp-single__rel-arrow--next { right: -20px; }
.pp-single__rel-arrow svg { width: 20px; height: 20px; }

/* ── Size guide modal ── */
.pp-single__modal { position: fixed; inset: 0; z-index: 1000; align-items: center; justify-content: center; }
.pp-single__modal:not([hidden]) { display: flex; }
.pp-single__modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.pp-single__modal-box {
  position: relative; background: #fff; width: 90vw; max-width: 700px;
  max-height: 90vh; overflow-y: auto; padding: 24px; border-radius: 4px; z-index: 1;
}
.pp-single__modal-close { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 18px; cursor: pointer; color: var(--pp-gray-500); }
.pp-single__modal-close:hover { color: #000; }
.pp-single__modal-title { font-size: 18px; font-weight: 700; margin: 0 0 16px; }
.pp-single__modal-tabs { display: flex; border-bottom: 1px solid var(--pp-gray-200); margin-bottom: 16px; gap: 0; }
.pp-single__modal-tab {
  flex: 1; padding: 10px; font-size: 14px; font-weight: 500; background: none;
  border: none; border-bottom: 2px solid transparent; cursor: pointer; color: var(--pp-gray-500);
  transition: color .15s, border-color .15s; margin-bottom: -1px;
}
.pp-single__modal-tab.is-active { border-bottom-color: #000; color: #000; }

/* ── Cart popup (mobile) ── */
.pp-single__cart-popup {
  position: fixed; inset: 0; z-index: 500;
  align-items: flex-end; justify-content: center;
  padding: 16px 8px; background: rgba(0,0,0,.25);
}
.pp-single__cart-popup:not([hidden]) { display: flex; }
.pp-single__cart-popup-inner {
  background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.2);
  width: 100%; max-width: 400px; padding: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
}
.pp-single__cart-popup-check {
  width: 24px; height: 24px; background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pp-single__cart-popup-check svg { width: 12px; height: 12px; color: #16a34a; }
.pp-single__cart-popup-actions { display: flex; gap: 8px; width: 100%; }
.pp-single__cart-popup-continue {
  flex: 1; padding: 8px; border: 1px solid var(--pp-gray-200); background: #fff;
  color: var(--pp-gray-700); font-size: 12px; font-weight: 600; cursor: pointer;
}
.pp-single__cart-popup-view {
  flex: 1; padding: 8px; background: #000; color: #fff;
  font-size: 12px; font-weight: 600; text-decoration: none; text-align: center;
}

@media (min-width: 1024px) { .pp-single__cart-popup { display: none !important; } }

/* ═══════════════════════════════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════════════════════════════ */
.pp-cart { min-height: 100vh; background: #f9fafb; padding: 16px 0 48px; }
.pp-cart__wrap { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* Empty */
.pp-cart__empty { max-width: 720px; margin: 32px auto; text-align: center; }
.pp-cart__empty-card { background: #fff; border-radius: 16px; box-shadow: 0 1px 2px rgba(0,0,0,.05); padding: 48px 24px; }
.pp-cart__empty-icon { width: 96px; height: 96px; margin: 0 auto 24px; background: #f3f4f6; display: flex; align-items: center; justify-content: center; }
.pp-cart__empty-icon svg { width: 48px; height: 48px; color: #9ca3af; }
.pp-cart__empty-title { font-size: 24px; font-weight: 300; margin: 0 0 16px; color: #111827; letter-spacing: 0.02em; }
.pp-cart__empty-text { font-size: 14px; color: #6b7280; max-width: 380px; margin: 0 auto 32px; line-height: 1.6; }
.pp-cart__empty-btn { display: inline-block; padding: 14px 32px; background: #000; color: #fff !important; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s ease; }
.pp-cart__empty-btn:hover { background: #1f2937; transform: scale(1.05); color: #fff !important; }

/* Header */
.pp-cart__header { margin-bottom: 24px; padding-top: 16px; }
.pp-cart__title { font-size: 28px; font-weight: 700; color: #000; margin: 0 0 4px; letter-spacing: 0.02em; }
.pp-cart__subtitle { font-size: 14px; color: #6b7280; margin: 0; }

/* Grid */
.pp-cart__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .pp-cart__grid { grid-template-columns: 2fr 1fr; gap: 32px; } }

/* Items */
.pp-cart__items { background: #fff; border-radius: 16px; box-shadow: 0 1px 2px rgba(0,0,0,.05); overflow: hidden; }
.pp-cart__item { position: relative; padding: 20px; }
.pp-cart__item--bordered { border-bottom: 1px solid #f3f4f6; }
.pp-cart__remove { position: absolute; top: 12px; right: 12px; color: #9ca3af; background: none; border: 0; padding: 4px; cursor: pointer; transition: color .2s; z-index: 2; }
.pp-cart__remove:hover { color: #000 !important; }
.pp-cart__remove svg { width: 18px; height: 18px; }
.pp-cart__item-inner { display: flex; gap: 16px; }
.pp-cart__thumb { flex-shrink: 0; width: 120px; height: 120px; display: block; overflow: hidden; }
.pp-cart__thumb img { width: 100%; height: 100%; object-fit: cover; padding: 8px; }
@media (min-width: 768px) { .pp-cart__thumb { width: 160px; height: 160px; } .pp-cart__thumb img { padding: 12px; } }
.pp-cart__thumb:hover { opacity: .8; }
.pp-cart__info { flex: 1; min-width: 0; padding-right: 28px; }
.pp-cart__name-link { text-decoration: none; color: inherit; }
.pp-cart__name-link:hover { color: #6b7280; }
.pp-cart__name { font-size: 14px; font-weight: 500; color: #111827; margin: 0 0 6px; line-height: 1.4; }
.pp-cart__qty-label { font-size: 12px; color: #6b7280; margin-bottom: 6px; }
.pp-cart__attrs { display: flex; gap: 6px; flex-wrap: wrap; font-size: 12px; color: #6b7280; margin-bottom: 6px; }
.pp-cart__perk { font-size: 11px; color: #9ca3af; margin: 0 0 14px; }
.pp-cart__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pp-cart__qty { display: inline-flex; border: 1px solid #e5e7eb; border-radius: 4px; overflow: hidden; }
.pp-cart__qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #fff; border: 0; cursor: pointer; font-size: 18px; line-height: 1; color: #000 !important; transition: background .15s; }
.pp-cart__qty-btn:hover { background: #f9fafb !important; }
.pp-cart__qty-val { width: 40px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; }
.pp-cart__price { text-align: right; }
.pp-cart__price-old { font-size: 13px; color: #9ca3af; text-decoration: line-through; }
.pp-cart__price-now { font-size: 18px; font-weight: 500; color: #111827; }

/* Summary */
.pp-cart__summary { width: 100%; }
.pp-cart__summary-card { background: #fff; border-radius: 16px; box-shadow: 0 1px 2px rgba(0,0,0,.05); padding: 24px; }
@media (min-width: 1024px) { .pp-cart__summary-card { position: sticky; top: 32px; padding: 32px; } }
.pp-cart__summary-title { font-size: 18px; font-weight: 500; margin: 0 0 24px; }

/* Coupon */
.pp-cart__coupon { margin-bottom: 24px; }
.pp-cart__coupon-title { font-size: 14px; font-weight: 500; color: #111827; margin: 0 0 12px; }
.pp-cart__coupon-row { display: flex; gap: 8px; }
.pp-cart__coupon-input { flex: 1; padding: 8px 12px; border: 1px solid #d1d5db; font-size: 14px; outline: none; background: #fff; color: #000; }
.pp-cart__coupon-input:focus { border-color: #000; box-shadow: 0 0 0 1px #000; }
.pp-cart__coupon-btn { padding: 8px 16px; background: #000; color: #fff !important; border: 0; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .15s; }
.pp-cart__coupon-btn:hover:not(:disabled) { background: #1f2937 !important; }
.pp-cart__coupon-btn:disabled { background: #9ca3af; cursor: not-allowed; }
.pp-cart__coupon-err { font-size: 13px; color: #dc2626; margin: 8px 0 0; }
.pp-cart__coupon-applied { background: #f3f4f6; border: 1px solid #d1d5db; padding: 12px; display: flex; align-items: center; justify-content: space-between; }
.pp-cart__coupon-form[hidden],
.pp-cart__coupon-applied[hidden],
.pp-cart__coupon-err[hidden],
.pp-cart__totals-row[hidden],
.pp-wl__warn[hidden],
.pp-wl__dd-menu[hidden],
.pp-wl__empty[hidden],
.pp-wl__loaded[hidden] { display: none !important; }
.pp-cart__coupon-info { display: flex; align-items: center; gap: 10px; }
.pp-cart__coupon-check { width: 20px; height: 20px; background: #4b5563; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.pp-cart__coupon-check svg { width: 12px; height: 12px; }
.pp-cart__coupon-label { font-size: 13px; font-weight: 500; color: #111827; }
.pp-cart__coupon-code { font-size: 12px; color: #4b5563; }
.pp-cart__coupon-rm { font-size: 13px; color: #dc2626; background: none; border: 0; font-weight: 500; cursor: pointer; }
.pp-cart__coupon-rm:hover { color: #991b1b !important; }

/* Totals */
.pp-cart__totals { margin-bottom: 24px; }
.pp-cart__totals-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.pp-cart__totals-lbl { font-size: 14px; color: #4b5563; }
.pp-cart__totals-val { font-size: 14px; font-weight: 500; }
.pp-cart__totals-val--free { color: #059669; }
.pp-cart__totals-val--muted { color: #6b7280; font-size: 13px; font-weight: 400; }
.pp-cart__totals-row--discount .pp-cart__totals-lbl,
.pp-cart__totals-row--discount .pp-cart__totals-val { color: #000; }
.pp-cart__totals-final { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #e5e7eb; padding-top: 16px; margin-top: 8px; }
.pp-cart__totals-lbl-final { font-size: 16px; font-weight: 500; }
.pp-cart__totals-val-final { font-size: 22px; font-weight: 300; }

/* Checkout */
.pp-cart__checkout-btn { display: block; width: 100%; padding: 16px; background: #000; color: #fff !important; text-align: center; text-decoration: none; font-size: 14px; font-weight: 500; transition: all .2s; margin-bottom: 16px; box-sizing: border-box; }
.pp-cart__checkout-btn:hover { background: #1f2937 !important; transform: scale(1.02); color: #fff !important; }
.pp-cart__secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: #6b7280; }
.pp-cart__secure svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════════
   WISHLIST PAGE
   ═══════════════════════════════════════════════════════════════ */
.pp-wl { min-height: 100vh; background: #f9fafb; padding: 16px 0 48px; }
.pp-wl__wrap { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* Empty */
.pp-wl__empty { max-width: 720px; margin: 32px auto; text-align: center; }
.pp-wl__empty-card { background: #fff; border-radius: 16px; box-shadow: 0 1px 2px rgba(0,0,0,.05); padding: 48px 24px; }
.pp-wl__empty-icon { width: 96px; height: 96px; margin: 0 auto 24px; background: #f3f4f6; display: flex; align-items: center; justify-content: center; }
.pp-wl__empty-icon svg { width: 48px; height: 48px; color: #9ca3af; }
.pp-wl__empty-title { font-size: 22px; font-weight: 300; margin: 0 0 16px; color: #111827; }
.pp-wl__empty-text { font-size: 14px; color: #6b7280; max-width: 420px; margin: 0 auto 32px; line-height: 1.6; }
.pp-wl__empty-btn { display: inline-block; padding: 14px 32px; background: #000; color: #fff !important; font-size: 14px; font-weight: 500; text-decoration: none; transition: all .2s; }
.pp-wl__empty-btn:hover { background: #1f2937; transform: scale(1.05); color: #fff !important; }

/* Header */
.pp-wl__header { margin-bottom: 24px; padding-top: 16px; }
.pp-wl__title { font-size: 28px; font-weight: 700; color: #000; margin: 0 0 4px; letter-spacing: 0.02em; }
.pp-wl__subtitle { font-size: 14px; color: #6b7280; margin: 0; }
@media (min-width: 768px) { .pp-wl__title { font-size: 32px; } }
@media (min-width: 1024px) { .pp-wl__title { font-size: 36px; } }

/* Grid */
.pp-wl__card { background: #fff; border-radius: 16px; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.pp-wl__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 16px; }
@media (min-width: 768px) { .pp-wl__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 24px; } }
@media (min-width: 1024px) { .pp-wl__grid { grid-template-columns: repeat(4, 1fr); } }

.pp-wl__item { position: relative; }
.pp-wl__thumb-wrap { aspect-ratio: 1/1; background: #f9fafb; overflow: hidden; margin-bottom: 12px; position: relative; }
.pp-wl__thumb-link { display: block; width: 100%; height: 100%; }
.pp-wl__thumb { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .3s; }
.pp-wl__item:hover .pp-wl__thumb { transform: scale(1.05); }
.pp-wl__remove { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: #fff !important; border: 0; border-radius: 999px; box-shadow: 0 1px 3px rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #000 !important; transition: background .15s; }
.pp-wl__remove:hover { background: #f3f4f6 !important; color: #000 !important; }
.pp-wl__remove svg { width: 18px; height: 18px; }

.pp-wl__body { display: flex; flex-direction: column; gap: 10px; }
.pp-wl__name { font-size: 13px; font-weight: 500; color: #111827; margin: 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 768px) { .pp-wl__name { font-size: 15px; } }
.pp-wl__price { font-size: 13px; color: #111827; font-weight: 300; }
@media (min-width: 768px) { .pp-wl__price { font-size: 14px; } }

.pp-wl__selects { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pp-wl__dd { position: relative; }
.pp-wl__dd-btn { width: 100%; padding: 7px 10px; background: #f9fafb !important; border: 1px solid #e5e7eb; font-size: 12px; color: #111827 !important; text-align: left; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: all .15s; }
.pp-wl__dd-btn:hover { background: #fff !important; border-color: #000; color: #111827 !important; }
.pp-wl__dd.is-open .pp-wl__dd-btn { background: #fff !important; border-color: #000; }
.pp-wl__dd-btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .2s; }
.pp-wl__dd.is-open .pp-wl__dd-btn svg { transform: rotate(180deg); }
.pp-wl__dd-val { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-wl__dd-menu { position: absolute; top: 100%; left: 0; right: 0; margin-top: 2px; background: #fff; border: 1px solid #e5e7eb; box-shadow: 0 4px 6px rgba(0,0,0,.07); max-height: 160px; overflow-y: auto; z-index: 30; border-radius: 4px; }
.pp-wl__dd-item { display: block; width: 100%; padding: 7px 10px; background: #fff; border: 0; text-align: left; font-size: 12px; cursor: pointer; color: #111827; }
.pp-wl__dd-item:hover { background: #f3f4f6 !important; }
.pp-wl__warn { font-size: 12px; color: #dc2626; margin: 0; font-weight: 500; }

.pp-wl__add { width: 100%; padding: 10px; background: #000 !important; color: #fff !important; border: 0; font-size: 12px; font-weight: 500; cursor: pointer; transition: background .2s; }
.pp-wl__add:hover:not(:disabled) { background: #1f2937 !important; color: #fff !important; }
.pp-wl__add:disabled { background: #1f2937 !important; cursor: default; }
@media (min-width: 768px) { .pp-wl__add { padding: 12px; font-size: 13px; } }

/* ═══════════════════════════════════════════════════════════════
   SHOP / CATEGORY PAGES
   ═══════════════════════════════════════════════════════════════ */
.pp-shop { min-height: 100vh; background: #fff; display: flex; flex-direction: column; }
.pp-shop__wrap { padding: 16px; flex: 1; }
@media (min-width: 768px) { .pp-shop__wrap { padding: 28px; } }
@media (min-width: 1024px) { .pp-shop__wrap { padding: 40px; } }

/* Mobile MEN / WOMEN bar */
.pp-shop__menwomen { display: grid; grid-template-columns: 1fr 1fr; background: #000; }
.pp-shop__menwomen a { padding: 14px 0; text-align: center; color: #fff !important; text-decoration: none; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.pp-shop__menwomen a:first-child { border-right: 1px solid #6b7280; }
.pp-shop__menwomen a:hover { background: rgba(255,255,255,.05); }
@media (min-width: 768px) { .pp-shop__menwomen { display: none; } }

/* Hero (category) */
.pp-shop__hero { display: block; }
.pp-shop__hero img { display: block; width: 100%; height: 63px; object-fit: cover; }
@media (min-width: 1024px) { .pp-shop__hero { display: none; } }

/* Header */
.pp-shop__header { margin-bottom: 24px; margin-top: 8px; }
.pp-shop__crumbs { font-size: 12px; color: #6b7280; text-align: center; text-transform: uppercase; letter-spacing: 0.04em; }
.pp-shop__crumbs a { color: #6b7280; text-decoration: none; }
.pp-shop__crumbs a:hover { color: #000 !important; text-decoration: underline; }
.pp-shop__crumb-sep { margin: 0 8px; color: #9ca3af; }
.pp-shop__crumb-cur { color: #000; font-weight: 500; }
.pp-shop__title { font-size: 22px; font-weight: 700; color: #000; text-align: center; text-transform: uppercase; margin: 8px 0 0; letter-spacing: 0.04em; }
@media (min-width: 768px) { .pp-shop__title { font-size: 28px; } }

/* Toolbar */
.pp-shop__toolbar { display: flex; align-items: center; justify-content: flex-start; margin-bottom: 20px; }
.pp-shop__sort-wrap { position: relative; }
.pp-shop__sort-btn { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: #fff !important; border: 1px solid #d1d5db; border-radius: 4px; font-size: 13px; color: #000 !important; cursor: pointer; transition: background .15s; }
.pp-shop__sort-btn:hover { background: #f9fafb !important; color: #000 !important; }
.pp-shop__sort-btn svg { width: 14px; height: 14px; }
.pp-shop__sort-menu { position: absolute; top: 100%; left: 0; margin-top: 4px; background: #fff; border: 1px solid #e5e7eb; box-shadow: 0 4px 6px rgba(0,0,0,.08); z-index: 30; min-width: 200px; }
.pp-shop__sort-menu button { display: block; width: 100%; padding: 8px 14px; background: #fff !important; border: 0; text-align: left; font-size: 13px; color: #111827 !important; cursor: pointer; }
.pp-shop__sort-menu button:hover { background: #f3f4f6 !important; color: #000 !important; }

/* Grid */
.pp-shop__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
@media (min-width: 1024px) { .pp-shop__grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.pp-shop__empty { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: #4b5563; font-size: 16px; }

/* Load more */
.pp-shop__more { text-align: center; margin-bottom: 40px; }
.pp-shop__more-btn { padding: 12px 32px; background: #000 !important; color: #fff !important; border: 0; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .15s; }
.pp-shop__more-btn:hover:not(:disabled) { background: #1f2937 !important; color: #fff !important; }
.pp-shop__more-btn:disabled { background: #9ca3af !important; cursor: not-allowed; }

/* Category description */
.pp-shop__desc { max-width: 900px; margin: 0 auto 40px; color: #4b5563; font-size: 14px; line-height: 1.7; }
.pp-shop__desc p { margin: 0 0 14px; }
.pp-shop__desc h2, .pp-shop__desc h3 { color: #111827; margin-top: 24px; }

/* ─── Product card (matches Next.js exactly) ─── */
.pp-card { padding-bottom: 32px; cursor: pointer; }
@media (min-width: 768px) { .pp-card { padding-bottom: 48px; } }

/* Media: white bg, gray-200 outline, 4:5 ratio */
.pp-card__media-outer { background: #fff; }
.pp-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; outline: 1px solid #e5e7eb; outline-offset: -1px; background: #fff; }

/* SOLD OUT badge */
.pp-card__badge {
	position: absolute; top: 8px; left: 8px; z-index: 20;
	background: #000; color: #fff;
	font-size: 12px; font-weight: 700;
	padding: 4px 8px; border-radius: 2px;
	box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

/* Wishlist heart – white circle button, 12×12 SVG */
.pp-card__heart {
	position: absolute; top: 8px; right: 8px; z-index: 10;
	width: 24px; height: 24px;
	background: #fff !important; border: 1px solid #d1d5db; border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
	padding: 0; cursor: pointer;
	color: #000 !important;
	transition: box-shadow .15s;
}
.pp-card__heart:hover { box-shadow: 0 2px 4px rgba(0,0,0,.1); background: #fff !important; color: #000 !important; }
.pp-card__heart svg { width: 12px; height: 12px; display: block; }
.pp-card__heart.is-active svg path { fill: #000 !important; }
@media (min-width: 640px) { .pp-card__heart { top: 12px; right: 12px; width: 28px; height: 28px; } }
@media (min-width: 768px) { .pp-card__heart { top: 16px; right: 16px; width: 32px; height: 32px; } .pp-card__heart svg { width: 16px; height: 16px; } }

/* Image link + image */
.pp-card__link { position: absolute; inset: 0; display: block; background: #fff; }
.pp-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #fff !important; }

/* Body */
.pp-card__body { padding-top: 12px; display: flex; flex-direction: column; }
@media (min-width: 768px) { .pp-card__body { padding-top: 16px; } }

.pp-card__top-row { display: flex; align-items: flex-start; justify-content: space-between; width: 100%; gap: 8px; margin-bottom: 8px; }

.pp-card__name-link { flex: 1; text-decoration: none; color: inherit; min-width: 0; }
.pp-card__name {
	font-size: 12px; font-weight: 700; color: #111827;
	text-transform: capitalize; line-height: 1.25;
	margin: 0;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
	overflow: hidden;
}
@media (min-width: 640px) { .pp-card__name { font-size: 14px; } }
@media (min-width: 768px) { .pp-card__name { font-size: 16px; } }

/* Quick View (desktop only — visible from lg up, next to name) */
.pp-card__quick--desktop {
	display: none;
	background: transparent !important;
	font-size: 10px; color: #4b5563 !important;
	text-transform: uppercase; font-weight: 500;
	border: 1px solid #000;
	padding: 2px 4px;
	white-space: nowrap; flex-shrink: 0;
	cursor: pointer; text-decoration: none;
	transition: color .15s;
}
.pp-card__quick--desktop:hover { color: #000 !important; }
@media (min-width: 1024px) { .pp-card__quick--desktop { display: inline-block; } }
@media (min-width: 1280px) { .pp-card__quick--desktop { font-size: 12px; padding: 4px 8px; } }

/* Bottom row: price + mobile quick view */
.pp-card__bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pp-card__price { display: flex; gap: 8px; align-items: baseline; font-size: 12px; }
@media (min-width: 768px) { .pp-card__price { font-size: 14px; } }
.pp-card__price-old { color: #9ca3af; text-decoration: line-through; }
.pp-card__price-now { color: #000; font-weight: 800; }

/* Quick View (mobile only — hidden from lg up) */
.pp-card__quick--mobile {
	background: transparent !important;
	font-weight: 600; font-size: 6px;
	color: #4b5563 !important;
	text-transform: uppercase; white-space: nowrap;
	border: 1px solid #000;
	padding: 2px 2px;
	flex-shrink: 0;
	cursor: pointer; text-decoration: none;
	transition: color .15s;
}
.pp-card__quick--mobile:hover { color: #000 !important; }
@media (min-width: 380px) { .pp-card__quick--mobile { font-size: 8px; padding: 2px 4px; } }
@media (min-width: 640px) { .pp-card__quick--mobile { font-size: 9px; } }
@media (min-width: 768px) { .pp-card__quick--mobile { font-size: 10px; } }
@media (min-width: 1024px) { .pp-card__quick--mobile { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   QUICK VIEW MODAL
   ═══════════════════════════════════════════════════════════════ */
.pp-qv { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.pp-qv[hidden] { display: none !important; }
.pp-qv__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.pp-qv__dialog { position: relative; z-index: 2; width: 100%; max-width: 880px; max-height: 90vh; overflow-y: auto; background: #fff; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.pp-qv__close { position: absolute; top: 12px; right: 12px; z-index: 5; width: 36px; height: 36px; background: #fff !important; border: 0; border-radius: 999px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #000 !important; transition: background .15s; }
.pp-qv__close:hover { background: #f3f4f6 !important; color: #000 !important; }
.pp-qv__close svg { width: 20px; height: 20px; }

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

.pp-qv__media { position: relative; background: #fff; aspect-ratio: 4/5; overflow: hidden; }
.pp-qv__img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pp-qv__sold-badge { position: absolute; top: 12px; left: 12px; background: #000; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 8px; border-radius: 2px; }

.pp-qv__info { padding: 24px; display: flex; flex-direction: column; }
@media (min-width: 768px) { .pp-qv__info { padding: 32px; } }

.pp-qv__name { font-size: 18px; font-weight: 700; color: #111827; margin: 0 0 12px; line-height: 1.3; }
@media (min-width: 768px) { .pp-qv__name { font-size: 22px; } }

.pp-qv__price-row { display: flex; gap: 12px; align-items: baseline; margin-bottom: 24px; }
.pp-qv__price-old { font-size: 16px; color: #9ca3af; text-decoration: line-through; }
.pp-qv__price-now { font-size: 22px; font-weight: 800; color: #000; }
.pp-qv__price-old[hidden] { display: none !important; }

.pp-qv__select-group { margin-bottom: 18px; }
.pp-qv__select-group[hidden] { display: none !important; }
.pp-qv__label { display: block; font-size: 13px; font-weight: 500; color: #111827; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.pp-qv__btn-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-qv__opt-btn { min-width: 44px; padding: 8px 14px; background: #fff !important; border: 1px solid #d1d5db; font-size: 13px; color: #000 !important; cursor: pointer; transition: all .15s; text-transform: uppercase; font-weight: 500; }
.pp-qv__opt-btn:hover { border-color: #000; color: #000 !important; background: #fff !important; }
.pp-qv__opt-btn.is-selected { background: #000 !important; color: #fff !important; border-color: #000; }

.pp-qv__warn { font-size: 13px; color: #dc2626; margin: 0 0 12px; font-weight: 500; }
.pp-qv__warn[hidden] { display: none !important; }

.pp-qv__add { width: 100%; padding: 14px; background: #000 !important; color: #fff !important; border: 0; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .15s; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.pp-qv__add:hover:not(:disabled) { background: #1f2937 !important; color: #fff !important; }
.pp-qv__add:disabled { background: #1f2937 !important; cursor: default; }

.pp-qv__details { display: block; text-align: center; font-size: 13px; color: #4b5563 !important; text-decoration: underline; padding: 8px; }
.pp-qv__details:hover { color: #000 !important; }

/* ═══════════════════════════════════════════════════════════════
   STATIC / POLICY PAGES (about, privacy, terms, shipping, refund, etc)
   ═══════════════════════════════════════════════════════════════ */
.pp-page { min-height: 100vh; background: #fff; padding: 48px 16px; }
@media (min-width: 768px) { .pp-page { padding: 48px 32px; } }
.pp-page__wrap { max-width: 880px; margin: 0 auto; }
.pp-page__wrap--center { text-align: left; }
.pp-page__wrap--lg { max-width: 1200px; }
.pp-page__h1 { font-size: 26px; font-weight: 700; color: #111827; margin: 0 0 24px; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .pp-page__h1 { font-size: 36px; margin-bottom: 32px; } }
.pp-page__h2 { font-size: 20px; font-weight: 600; color: #111827; margin: 28px 0 14px; }
@media (min-width: 768px) { .pp-page__h2 { font-size: 24px; } }
.pp-page__h3 { font-size: 17px; font-weight: 600; color: #111827; margin: 18px 0 10px; }
@media (min-width: 768px) { .pp-page__h3 { font-size: 19px; } }
.pp-page__updated { font-size: 14px; color: #6b7280; margin: 0 0 28px; }
.pp-page__body { color: #374151; font-size: 15px; line-height: 1.7; }
.pp-page__body p { margin: 0 0 14px; }
.pp-page__body section { margin-bottom: 28px; }
.pp-page__lead { font-size: 17px; line-height: 1.6; color: #374151; }
.pp-page__list { list-style: disc; padding-left: 22px; margin: 0 0 14px; }
.pp-page__list li { margin-bottom: 6px; }
.pp-page__list--ordered { list-style: decimal; }
.pp-page__note { font-size: 14px; color: #6b7280; margin-top: 18px; }
.pp-page__note a { color: #000; text-decoration: underline; }
.pp-page__contact-box {
	background: #f9fafb; border-radius: 8px; padding: 24px; margin-top: 24px;
}
.pp-page__contact-box h3 { font-size: 17px; font-weight: 600; color: #111827; margin: 0 0 12px; }
.pp-page__contact-box p { margin: 0 0 6px; font-size: 14px; }

.pp-page__callout { padding: 14px 16px; border-radius: 8px; margin: 8px 0 16px; border: 1px solid; }
.pp-page__callout p { margin: 0; font-weight: 600; }
.pp-page__callout--success { background: #f0fdf4; border-color: #bbf7d0; }
.pp-page__callout--success p { color: #166534; }
.pp-page__callout--warn { background: #fffbeb; border-color: #fde68a; }
.pp-page__callout--warn p { color: #92400e; }

/* ─── FAQs page ─── */
.pp-faqs__head { text-align: center; margin-bottom: 36px; }
.pp-faqs__subtitle { font-size: 16px; color: #6b7280; }
.pp-faqs__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 28px; }
.pp-faqs__filter {
	padding: 8px 18px; background: #f3f4f6 !important; color: #374151 !important;
	border: 0; border-radius: 999px; font-size: 13px; font-weight: 500; cursor: pointer;
	transition: background .15s;
}
.pp-faqs__filter:hover { background: #e5e7eb !important; color: #374151 !important; }
.pp-faqs__filter.is-active { background: #000 !important; color: #fff !important; }
.pp-faqs__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pp-faqs__item { border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; }
.pp-faqs__item[hidden] { display: none !important; }
.pp-faqs__q-btn {
	width: 100%; padding: 16px 20px; background: #fff !important; border: 0;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	text-align: left; cursor: pointer; color: #111827 !important;
	transition: background .15s;
}
.pp-faqs__q-btn:hover { background: #f9fafb !important; color: #111827 !important; }
.pp-faqs__q-text { flex: 1; }
.pp-faqs__q-cat { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.04em; }
.pp-faqs__q { font-size: 15px; font-weight: 600; color: #111827; margin: 4px 0 0; }
.pp-faqs__chevron { width: 20px; height: 20px; flex-shrink: 0; color: #6b7280; transition: transform .2s; }
.pp-faqs__item.is-open .pp-faqs__chevron { transform: rotate(180deg); }
.pp-faqs__a { padding: 0 20px 16px; }
.pp-faqs__a[hidden] { display: none !important; }
.pp-faqs__a p { color: #374151; font-size: 14px; line-height: 1.6; margin: 0; }

.pp-faqs__contact { text-align: center; background: #f9fafb; border-radius: 8px; padding: 32px 20px; }
.pp-faqs__contact-title { font-size: 22px; font-weight: 700; color: #111827; margin: 0 0 12px; }
.pp-faqs__contact p { color: #6b7280; margin: 0 0 20px; }
.pp-faqs__contact-btns { display: flex; flex-direction: column; gap: 12px; justify-content: center; align-items: center; }
@media (min-width: 640px) { .pp-faqs__contact-btns { flex-direction: row; } }
.pp-faqs__btn { padding: 12px 24px; font-size: 14px; font-weight: 600; text-decoration: none; border-radius: 4px; transition: all .15s; }
.pp-faqs__btn--solid { background: #000 !important; color: #fff !important; }
.pp-faqs__btn--solid:hover { background: #1f2937 !important; color: #fff !important; }
.pp-faqs__btn--ghost { background: #fff !important; color: #374151 !important; border: 1px solid #d1d5db; }
.pp-faqs__btn--ghost:hover { background: #f3f4f6 !important; color: #374151 !important; }

/* ─── Contact page ─── */
.pp-contact { background: #f9fafb; }
.pp-contact__head { text-align: center; margin-bottom: 48px; }
.pp-contact__subtitle { font-size: 16px; color: #6b7280; }
.pp-contact__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .pp-contact__grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.pp-contact__card { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,.08); padding: 32px; }
.pp-contact__card-title { font-size: 20px; font-weight: 600; color: #111827; margin: 0 0 24px; }
.pp-contact__info-list { display: flex; flex-direction: column; gap: 22px; }
.pp-contact__info-row { display: flex; gap: 16px; align-items: flex-start; }
.pp-contact__icon-circle { background: #f3f4f6; padding: 12px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pp-contact__icon-circle svg { width: 22px; height: 22px; color: #374151; }
.pp-contact__icon-circle svg path { stroke: #374151; }
.pp-contact__info-row h3 { font-size: 15px; font-weight: 600; color: #111827; margin: 0 0 4px; }
.pp-contact__info-row p { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.5; }

.pp-contact__form { display: flex; flex-direction: column; gap: 20px; }
.pp-contact__field label { display: block; font-size: 13px; font-weight: 500; color: #374151; margin-bottom: 8px; }
.pp-contact__field input, .pp-contact__field textarea {
	width: 100%; padding: 12px 16px; font-size: 14px; font-family: var(--pp-font);
	background: #fff; color: #111827; border: 1px solid #d1d5db; border-radius: 8px;
	outline: none; transition: border-color .15s, box-shadow .15s;
	box-sizing: border-box;
}
.pp-contact__field input:focus, .pp-contact__field textarea:focus {
	border-color: #000; box-shadow: 0 0 0 2px rgba(0,0,0,.05);
}
.pp-contact__field textarea { resize: vertical; min-height: 110px; }
.pp-contact__submit {
	width: 100%; padding: 14px; font-size: 14px; font-weight: 600;
	background: #000 !important; color: #fff !important; border: 0; border-radius: 8px;
	cursor: pointer; transition: background .15s; text-transform: none;
}
.pp-contact__submit:hover:not(:disabled) { background: #1f2937 !important; color: #fff !important; }
.pp-contact__submit:disabled { opacity: .6; cursor: default; }

.pp-contact__alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; border: 1px solid; }
.pp-contact__alert[hidden] { display: none !important; }
.pp-contact__alert--success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.pp-contact__alert--error   { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* ─── Size chart page ─── */
.pp-size-chart__head { text-align: center; margin-bottom: 40px; }
.pp-size-chart__section { margin-bottom: 40px; }
.pp-size-chart__table-wrap { overflow-x: auto; border: 1px solid #e5e7eb; border-radius: 8px; }
.pp-size-chart__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pp-size-chart__table thead { background: #000; color: #fff; }
.pp-size-chart__table th, .pp-size-chart__table td {
	padding: 12px 16px; text-align: left; border-bottom: 1px solid #e5e7eb;
}
.pp-size-chart__table th { font-weight: 600; }
.pp-size-chart__table thead th { color: #fff; }
.pp-size-chart__table tbody tr:last-child th, .pp-size-chart__table tbody tr:last-child td { border-bottom: 0; }
.pp-size-chart__table tbody tr:hover { background: #f9fafb; }
.pp-size-chart__table tbody th { background: #f3f4f6; color: #111827; }
