/** Shopify CDN: Minification failed

Line 426:0 Unexpected "}"

**/
/* PerfectPaint — editorial, store-wide (Lovable-inspired) */

:root {
  /* Core palette */
  --pp-bg: oklch(0.985 0.003 90);
  --pp-bg-alt: oklch(0.97 0.004 90);
  --pp-fg: oklch(0.16 0.01 270);
  --pp-card: oklch(1 0 0);
  --pp-muted: oklch(0.955 0.005 90);
  --pp-muted-fg: oklch(0.5 0.01 270);
  --pp-accent: oklch(0.95 0.01 90);
  --pp-border: oklch(0.92 0.005 90);

  /* Brand accents */
  --pp-pink: oklch(0.7 0.27 350);
  --pp-blue: oklch(0.55 0.22 260);
  --pp-lime: oklch(0.86 0.2 130);
  --pp-orange: oklch(0.75 0.19 50);

  /* Aliases used by existing store templates */
  --pp-text: var(--pp-fg);
  --pp-surface: var(--pp-card);
  --pp-surface-muted: color-mix(in oklab, var(--pp-bg) 70%, transparent);

  /* Shape */
  --pp-radius: 0.875rem;
  --pp-card-r: 1.5rem;
  --pp-pill: 9999px;

  /* Shadows */
  --pp-shadow-soft: 0 10px 40px -12px color-mix(in oklab, var(--pp-fg) 12%, transparent);
  --pp-shadow-product: 0 30px 60px -20px color-mix(in oklab, var(--pp-fg) 18%, transparent);

  /* Type */
  --pp-display: "Instrument Serif", ui-serif, Georgia, serif;
  --pp-body: "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --pp-px: clamp(1rem, 4vw, 2rem);
  --pp-max: 80rem;
  --pp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Background ── */
.pp-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.pp-atmosphere__base {
  position: absolute;
  inset: 0;
  background: var(--pp-bg);
}

.pp-atmosphere__mesh,
.pp-atmosphere__blob,
.pp-orb {
  display: none;
}

html:has(body.pp-store) {
  background: var(--pp-bg);
}

body.pp-store {
  background: var(--pp-bg) !important;
  color: var(--pp-fg);
  font-family: var(--pp-body);
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

html:has(body.pp-store) {
  touch-action: manipulation;
  overflow-x: clip;
}

body.pp-store.template-product {
  overflow-x: clip;
}

body.pp-store.template-product #MainContent,
body.pp-store.template-product .content-for-layout {
  overflow-x: clip;
  max-width: 100%;
}

body.pp-store #MainContent,
body.pp-store > footer {
  position: relative;
  z-index: 1;
}

body.pp-store #MainContent,
body.pp-store .content-for-layout,
body.pp-store .shopify-section {
  background: transparent !important;
}

/* ── Shared chip + buttons ── */
.pp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--pp-pill);
  border: 1px solid var(--pp-border);
  background: var(--pp-card);
  padding: 0.4rem 0.9rem;
  font-family: var(--pp-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pp-muted-fg);
}

.pp-chip__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: var(--pp-pill);
  background: var(--pp-lime);
}

.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--pp-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--pp-pill);
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--pp-ease), border-color 0.2s, gap 0.2s, transform 0.2s, color 0.2s;
}

.pp-btn--primary {
  background: var(--pp-fg);
  color: var(--pp-bg);
  border-color: var(--pp-fg);
}

.pp-btn--primary:hover {
  background: color-mix(in oklab, var(--pp-fg) 90%, transparent);
  gap: 0.75rem;
}

.pp-btn--secondary {
  background: var(--pp-card);
  border-color: var(--pp-border);
  color: var(--pp-fg);
}

.pp-btn--secondary:hover {
  background: var(--pp-accent);
}

.pp-btn--ghost {
  background: transparent;
  border-color: var(--pp-border);
  color: var(--pp-fg);
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

.pp-btn--ghost:hover {
  background: var(--pp-accent);
}

.pp-btn--lg {
  padding: 0.95rem 1.6rem;
}

/* ── Header ── */
body.pp-store #header-group .header-announcements {
  display: none !important;
}

body.pp-store #header-group header-component {
  background: color-mix(in oklab, var(--pp-bg) 70%, transparent) !important;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-radius: var(--pp-pill);
  margin: 0.75rem clamp(0.75rem, 2.5vw, 2rem) 0;
  border: 1px solid var(--pp-border);
  box-shadow: var(--pp-shadow-soft);
}

body.pp-store .header__row {
  border: none !important;
}

body.pp-store .header {
  padding-inline: clamp(1rem, 2.5vw, 1.5rem);
}

body.pp-store #header-group {
  position: sticky;
  top: var(--pp-announce-h, 0px);
  z-index: 200;
}

body.pp-store .header__column--center {
  flex: 1;
  justify-content: center;
}

body.pp-store .header__column--left {
  flex: 1;
}

body.pp-store .header__column--right {
  flex: 1;
  justify-content: flex-end;
}

body.pp-store .menu-list__link {
  font-family: var(--pp-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pp-muted-fg);
  transition: color 0.2s;
}

body.pp-store .menu-list__link:hover {
  color: var(--pp-fg);
}

body.pp-store .search-action,
body.pp-store .header__localization,
body.pp-store .account-button {
  display: none !important;
}

body.pp-store [data-testid="cart-drawer-trigger"] {
  background: var(--pp-fg) !important;
  border-radius: var(--pp-pill) !important;
  padding: 0.5rem 1rem !important;
  border: none !important;
  transition: transform 0.2s var(--pp-ease);
}

body.pp-store [data-testid="cart-drawer-trigger"]:hover {
  transform: scale(1.03);
}

body.pp-store .pp-cart-label {
  font-family: var(--pp-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pp-bg);
}

body.pp-store cart-icon {
  display: none !important;
}

/* ── Typography ── */
body.pp-store h1,
body.pp-store h2,
body.pp-store h3,
body.pp-store .h1,
body.pp-store .h2,
body.pp-store .h3,
body.pp-store .h4 {
  font-family: var(--pp-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--pp-fg);
}

body.pp-store h3.pp-product-card__name,
body.pp-store h3.pp-coll-card__name {
  font-family: var(--pp-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

body.pp-store .pp-pdp__meta,
body.pp-store .pp-pdp__option-label,
body.pp-store .pp-pdp__benefits-title,
body.pp-store .pp-pdp__benefits-list li {
  font-family: var(--pp-body);
}

body.pp-store .pp-pdp__title,
body.pp-store .pp-pdp-spotlight__marquee-item,
body.pp-store .pp-pdp-spotlight__marquee-item--serif,
body.pp-store .pp-pdp-spotlight__quote-text {
  font-family: var(--pp-display);
}

body.pp-store .pp-pdp-spotlight__quote,
body.pp-store .pp-pdp-spotlight__quote-text {
  font-style: normal;
  border: none;
  margin-inline: 0;
  padding-inline: 0;
}

body.pp-store .pp-pdp__desc,
body.pp-store .pp-pdp__desc * {
  max-width: 100%;
  overflow-wrap: anywhere;
}

body.pp-store .pp-pdp__desc img {
  max-width: 100%;
  height: auto;
}

body.pp-store p:not(.pp-pdp-spotlight__quote-text),
body.pp-store .paragraph {
  font-family: var(--pp-body);
}

body.pp-store .pp-gradient-text {
  color: var(--pp-fg);
}

body.pp-store:not(.template-index) #MainContent h1 {
  color: var(--pp-fg);
  max-width: 100%;
}

body.pp-store .pp-pdp__title {
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

body.pp-store .cart-title h1 {
  margin-inline: auto;
}

body.pp-store .product-details h1,
body.pp-store .product-information h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

body.pp-store .product-recommendations h3,
body.pp-store .product-list h3,
body.pp-store #MainContent .section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

body.pp-store .product-recommendations h3,
body.pp-store .product-list h3 {
  color: var(--pp-fg);
  width: fit-content;
}

/* ── Buttons (theme) ── */
body.pp-store .button,
body.pp-store button.button {
  font-family: var(--pp-body);
  font-weight: 500;
  border-radius: var(--pp-pill);
  transition: background 0.2s var(--pp-ease), transform 0.2s, box-shadow 0.2s;
}

body.pp-store .button--primary,
body.pp-store .add-to-cart-button {
  background: var(--pp-fg) !important;
  color: var(--pp-bg) !important;
  border-color: var(--pp-fg) !important;
  box-shadow: none;
}

body.pp-store .button--primary:hover,
body.pp-store .add-to-cart-button:hover {
  background: color-mix(in oklab, var(--pp-fg) 90%, transparent) !important;
  transform: scale(1.02);
}

body.pp-store .button--secondary {
  background: var(--pp-card) !important;
  color: var(--pp-fg) !important;
  border-color: var(--pp-border) !important;
}

body.pp-store .button--secondary:hover {
  background: var(--pp-accent) !important;
}

/* ── Inputs (exclude search modal / header search — styled in pp-search-modal.css) ── */
body.pp-store input[type='text'],
body.pp-store input[type='email'],
body.pp-store input[type='search']:not(.search-input):not(.pp-header__search-input),
body.pp-store input[type='number'],
body.pp-store input[type='tel'],
body.pp-store input[type='url'],
body.pp-store input[type='password'],
body.pp-store select,
body.pp-store textarea,
body.pp-store .field__input {
  font-family: var(--pp-body);
  border-radius: var(--pp-pill);
  background: var(--pp-card);
  border: 1px solid var(--pp-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

body.pp-store input:focus:not(.search-input):not(.pp-header__search-input),
body.pp-store select:focus,
body.pp-store textarea:focus,
body.pp-store .field__input:focus {
  border-color: color-mix(in oklab, var(--pp-fg) 40%, transparent);
  box-shadow: 0 0 0 3px var(--pp-accent);
  outline: none;
}
}

/* ── Contact form ── */
body.pp-store .contact-form {
  background: var(--pp-card);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-card-r);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--pp-shadow-soft);
}

body.pp-store .contact-form__input {
  width: 100%;
  font-family: var(--pp-body);
  font-size: 0.95rem;
  color: var(--pp-fg);
  background: var(--pp-bg-alt) !important;
  border: 1px solid var(--pp-border) !important;
  border-radius: var(--pp-radius) !important;
  padding: 0.9rem 1.1rem !important;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

body.pp-store .contact-form__input::placeholder {
  color: var(--pp-muted-fg);
}

body.pp-store .contact-form__input:focus {
  background: var(--pp-card) !important;
  border-color: color-mix(in oklab, var(--pp-fg) 40%, transparent) !important;
  box-shadow: 0 0 0 3px var(--pp-accent);
  outline: none;
}

body.pp-store .contact-form__input--textarea {
  border-radius: var(--pp-radius) !important;
  min-height: 10rem;
  line-height: 1.6;
  resize: vertical;
}

body.pp-store .contact-form__form button[type='submit'],
body.pp-store .contact-form .button {
  border-radius: var(--pp-pill) !important;
  padding-inline: 2rem !important;
}

body.pp-store .contact-form__success,
body.pp-store .contact-form__error {
  border-radius: var(--pp-radius);
  padding: 0.85rem 1.1rem;
  font-family: var(--pp-body);
  font-size: 0.9rem;
}

/* ── Wholesale form ── */
body.pp-store .pp-wholesale__input {
  border-radius: var(--pp-radius) !important;
  padding: 0.95rem 1.15rem !important;
  font-size: 0.95rem;
  line-height: 1.5;
  background: var(--pp-bg-alt) !important;
}

body.pp-store .pp-wholesale__input::placeholder {
  color: var(--pp-muted-fg);
}

body.pp-store .pp-wholesale__textarea {
  min-height: 11rem;
  padding: 1.25rem 1.35rem !important;
  font-size: 1rem;
  line-height: 1.65;
  border-radius: 1rem !important;
  resize: vertical;
}

body.pp-store .pp-wholesale__select {
  padding-right: 2.75rem !important;
}

body.pp-store .contact-form__success {
  background: color-mix(in oklab, var(--pp-lime) 18%, var(--pp-card));
}

body.pp-store .contact-form__error {
  background: color-mix(in oklab, var(--pp-pink) 14%, var(--pp-card));
}

/* ── Product cards ── */
body.pp-store product-card .product-grid__card {
  background: var(--pp-card) !important;
  border-radius: var(--pp-card-r) !important;
  padding: 1.25rem !important;
  border: 1px solid var(--pp-border) !important;
  overflow: hidden;
  transition: transform 0.5s var(--pp-ease), box-shadow 0.5s;
}

body.pp-store product-card:hover .product-grid__card {
  transform: translateY(-4px);
  box-shadow: var(--pp-shadow-soft);
}

body.pp-store .product-grid product-card:nth-child(n):hover .product-grid__card {
  background: var(--pp-card) !important;
}

body.pp-store .pp-color-carousel-section,
body.pp-store .pp-swatches,
body.pp-store .pp-swatches .pp-sec {
  overflow: visible;
}

body.pp-store .product-card,
body.pp-store .card,
body.pp-store .resource-list__item .product-card {
  border-radius: var(--pp-card-r);
  overflow: visible;
}

body.pp-store .product-card__content,
body.pp-store .card__content {
  font-family: var(--pp-body);
}

body.pp-store .product-card h3,
body.pp-store .product-card h4,
body.pp-store .product-card .product-card__title,
body.pp-store .card h3,
body.pp-store .card h4 {
  font-family: var(--pp-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

body.pp-store .card-gallery,
body.pp-store .product-card-gallery {
  border-radius: calc(var(--pp-card-r) - 0.5rem);
  overflow: hidden;
  background: var(--pp-muted);
}

body.pp-store product-card .card-gallery img,
body.pp-store product-card .product-card-gallery img {
  transition: transform 0.7s var(--pp-ease);
}

body.pp-store product-card:hover .card-gallery img,
body.pp-store product-card:hover .product-card-gallery img {
  transform: scale(1.08) rotate(-4deg);
}

body.pp-store .price,
body.pp-store .product-card .price {
  font-family: var(--pp-body);
  font-weight: 600;
}

/* ── Variant picker ── */
body.pp-store .variant-option__button,
body.pp-store .variant-picker button,
body.pp-store .swatch {
  border-radius: var(--pp-pill);
  transition: border-color 0.2s, box-shadow 0.2s;
}

body.pp-store .variant-option__button[aria-checked='true'],
body.pp-store .variant-option__button:checked {
  box-shadow: 0 0 0 2px var(--pp-bg), 0 0 0 4px var(--pp-fg);
}

/* ── Badges ── */
body.pp-store .badge,
body.pp-store .product-badges .badge {
  border-radius: var(--pp-pill);
  font-family: var(--pp-body);
  font-weight: 600;
  font-size: 0.72rem;
}

body.pp-store .badge--sale,
body.pp-store .color-scheme-3 .badge {
  background: var(--pp-pink) !important;
  color: oklch(1 0 0) !important;
}

/* ── Cart ── */
body.pp-store .cart-drawer__dialog,
body.pp-store .dialog-drawer {
  border-radius: var(--pp-card-r) var(--pp-card-r) 0 0;
  background: var(--pp-card);
}

body.pp-store .cart-drawer__heading {
  font-family: var(--pp-display);
  font-weight: 400;
}

body.pp-store .cart-items__table {
  font-family: var(--pp-body);
}

body.pp-store .cart-summary,
body.pp-store ._cart-summary {
  background: var(--pp-bg-alt) !important;
  border-radius: var(--pp-card-r) !important;
  padding: 1.5rem !important;
  border: 1px solid var(--pp-border) !important;
  box-shadow: none;
}

body.pp-store .cart-items__media img {
  border-radius: var(--pp-radius);
}

/* ── Facets ── */
body.pp-store .facets,
body.pp-store .facets__form {
  font-family: var(--pp-body);
}

body.pp-store .facets__summary,
body.pp-store .facets__button {
  border-radius: var(--pp-pill);
  background: var(--pp-card);
  border: 1px solid var(--pp-border);
  box-shadow: none;
  transition: background 0.2s;
}

body.pp-store .facets__summary:hover,
body.pp-store .facets__button:hover {
  background: var(--pp-accent);
}

body.pp-store .media-with-content .section-background::before {
  display: none;
}

body.pp-store .media-with-content__content {
  padding: var(--pp-px);
}

/* ── Product page ── */
body.pp-store .product-information {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem) !important;
  padding-block: clamp(1.5rem, 4vh, 3rem) clamp(2rem, 5vh, 3.5rem) !important;
}

body.pp-store .product-information .section-background::before {
  display: none;
}

@media screen and (min-width: 750px) {
  body.pp-store .product-information__grid {
    column-gap: clamp(1.5rem, 3vw, 3rem);
  }
}

body.pp-store .product-details {
  background: var(--pp-card);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-card-r);
  padding: clamp(1.75rem, 3.5vw, 3rem) !important;
  margin-block: 1rem;
  box-shadow: none;
  height: fit-content !important;
}

body.pp-store .product-details .text-block,
body.pp-store .product-details .rte,
body.pp-store .product-details p,
body.pp-store .product-details .group-block-content {
  background: transparent !important;
}

body.pp-store .product-details h1 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
  margin-bottom: 0.35em;
}

body.pp-store .product-details .price {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--pp-fg);
  font-family: var(--pp-body);
}

body.pp-store .product-details .rte,
body.pp-store .product-details .text-block {
  font-family: var(--pp-body) !important;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--pp-muted-fg);
  max-width: 60ch;
}

body.pp-store .product-details .rte *,
body.pp-store .product-details .text-block * {
  font-family: var(--pp-body) !important;
}

body.pp-store .product-details .rte p,
body.pp-store .product-details .text-block p {
  margin-block: 0;
}

body.pp-store .product-details .rte p + p,
body.pp-store .product-details .text-block p + p {
  margin-top: 0.85em;
}

body.pp-store .product-details .rte strong,
body.pp-store .product-details .text-block strong {
  color: var(--pp-fg);
  font-weight: 600;
}

body.pp-store .product-details .add-to-cart-button,
body.pp-store .product-details .buy-buttons-block .button {
  width: 100%;
  padding-block: 1.05rem !important;
  font-size: 1rem !important;
  border-radius: var(--pp-pill) !important;
}

body.pp-store .product-details quantity-selector,
body.pp-store .product-details .quantity-selector {
  background: var(--pp-card);
  border-radius: var(--pp-pill);
  border: 1px solid var(--pp-border);
  box-shadow: none;
  min-height: 3.3rem;
  align-self: stretch;
}

body.pp-store .shopify-payment-button__button {
  border-radius: var(--pp-pill) !important;
  overflow: hidden;
}

body.pp-store .shopify-payment-button__more-options {
  font-family: var(--pp-body);
  font-size: 0.8rem;
  color: var(--pp-muted-fg);
  text-decoration: none;
  margin-top: 0.35rem;
}

body.pp-store .product-details .group-block {
  border-radius: var(--pp-radius);
  background: transparent !important;
  box-shadow: none !important;
}

body.pp-store .product-details .group-block[style*='border-radius: 24px'] {
  background: var(--pp-bg-alt) !important;
  border: 1px solid var(--pp-border) !important;
}

body.pp-store .product-information__media .media-gallery,
body.pp-store .product-information__media img,
body.pp-store .product-media-container {
  border-radius: var(--pp-card-r);
  overflow: hidden;
}

body.pp-store .product-information__media {
  padding-block: 1rem;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  align-self: start;
}

body.pp-store .product-information__media img {
  box-shadow: var(--pp-shadow-soft);
}

body.pp-store .product-details .button[disabled],
body.pp-store .product-details .add-to-cart-button[disabled] {
  background: var(--pp-bg-alt) !important;
  color: var(--pp-muted-fg) !important;
  border-color: var(--pp-border) !important;
  box-shadow: none !important;
}

body.pp-store .sticky-add-to-cart__bar {
  background: color-mix(in oklab, var(--pp-bg) 75%, transparent) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--pp-pill);
  border: 1px solid var(--pp-border);
  margin: 0.6rem clamp(0.75rem, 2.5vw, 2rem);
  box-shadow: var(--pp-shadow-soft);
}

/* ── Product "Formula promise" image banner ── */
body.pp-store [id$='__section_UhNgJN'] .background-image-container {
  background-image: url('pp-formula-banner.png');
  background-size: cover;
  background-position: center;
}

body.pp-store [id$='__section_UhNgJN'] .background-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    color-mix(in oklab, var(--pp-bg) 55%, transparent) 0%,
    transparent 60%
  );
}

body.pp-store [id$='__section_UhNgJN'] .background-image-container svg {
  opacity: 0;
}

body.pp-store [id$='__section_UhNgJN'] .custom-section-content {
  text-shadow: 0 1px 2px color-mix(in oklab, var(--pp-bg) 70%, transparent);
}

/* ── Marquee component (theme) ── */
body.pp-store marquee-component {
  background: var(--pp-bg-alt) !important;
  border-block: 1px solid var(--pp-border);
}

body.pp-store marquee-component strong,
body.pp-store marquee-component h3 {
  color: var(--pp-fg);
}

body.pp-store marquee-component p:not(:has(strong)) {
  color: var(--pp-muted-fg);
  font-family: var(--pp-body);
}

/* ── Accordion ── */
body.pp-store .accordion summary,
body.pp-store .accordion__heading {
  font-family: var(--pp-body);
  font-weight: 500;
  border-radius: var(--pp-radius);
  transition: background 0.2s;
}

body.pp-store .accordion summary:hover {
  background: var(--pp-accent);
}

body.pp-store .cart-items__table tr {
  border-color: var(--pp-border) !important;
}

body.pp-store quantity-selector,
body.pp-store .quantity-selector {
  background: var(--pp-card);
  border-radius: var(--pp-pill);
  border: 1px solid var(--pp-border);
}

body.pp-store .section {
  background-color: transparent !important;
}

body.pp-store .section-background,
body.pp-store .custom-section-background,
body.pp-store .section-background.color-scheme-1,
body.pp-store .section-background.color-scheme-2 {
  background: transparent !important;
  background-color: transparent !important;
}

body.pp-store .color-scheme-1 {
  --color-background: var(--pp-card);
}

body.pp-store .color-scheme-2 {
  --color-background: var(--pp-bg-alt);
}

body.pp-store footer {
  background: transparent;
}

body.pp-store .pagination,
body.pp-store .pagination__list {
  font-family: var(--pp-body);
}

body.pp-store .pagination a,
body.pp-store .pagination__item {
  border-radius: var(--pp-pill);
  transition: background 0.2s;
}

body.pp-store .pagination a:hover {
  background: var(--pp-accent);
}

body.pp-store ::selection {
  background: color-mix(in oklab, var(--pp-pink) 30%, transparent);
}

html:has(body.pp-store) {
  scroll-behavior: smooth;
}

body.pp-store img {
  border-radius: inherit;
}

body.pp-store .breadcrumbs {
  font-family: var(--pp-body);
  font-size: 0.85rem;
  color: var(--pp-muted-fg);
}

body.pp-store a:not(.button):not(.product-card__link):not(.pp-btn):hover {
  color: var(--pp-fg);
}

body.pp-store .empty-state,
body.pp-store .cart__empty {
  font-family: var(--pp-body);
}

body.pp-store .cart__empty-text {
  font-family: var(--pp-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

/* ── Animations ── */
@keyframes pp-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-1.5deg); }
}

@keyframes pp-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  body.pp-store * {
    animation: none !important;
  }

  body.pp-store .button:hover,
  body.pp-store product-card:hover .product-grid__card,
  body.pp-store [data-testid="cart-drawer-trigger"]:hover {
    transform: none;
  }
}
