/*
Theme Name: PosterPrintsArt
Theme URI: https://example.com/posterpod-studio
Author: PosterPrintsArt
Description: PosterPrintsArt storefront theme for custom posters, framed posters, canvas wall art, and curated themed poster collections.
Version: 1.0.62
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: posterpod
*/

:root {
  --pp-ink: #111827;
  --pp-muted: #5f6673;
  --pp-paper: #f6f4ef;
  --pp-panel: #ffffff;
  --pp-line: #e6e1d7;
  --pp-accent: #ff7a1a;
  --pp-accent-dark: #d95b00;
  --pp-sage: #536f60;
  --pp-teal: #123c4a;
  --pp-gold: #d79b2b;
  --pp-selected-bg: #fff3df;
  --pp-radius: 8px;
  --pp-shadow: 0 18px 50px rgba(23, 23, 23, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--pp-ink);
  background: var(--pp-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--pp-paper);
  border-bottom: 1px solid var(--pp-line);
}

.site-header__inner,
.site-footer__inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--pp-ink);
  border-radius: 6px;
}

.brand__logo {
  display: inline-flex;
  align-items: center;
}

.brand__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation a {
  color: var(--pp-muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.main-navigation a:hover,
.current-menu-item > a { color: var(--pp-ink); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search {
  display: flex;
  align-items: center;
  min-width: 230px;
  border: 1px solid var(--pp-line);
  background: #fff;
}

.header-search input[type="search"] {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--pp-ink);
  font: inherit;
  font-size: 0.9rem;
}

.header-search input[type="search"]:focus {
  outline: none;
}

.header-search button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-left: 1px solid var(--pp-line);
  background: var(--pp-ink);
  color: #fff;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.header-account,
.header-cart {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--pp-line);
  background: #fff;
  color: var(--pp-ink);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.header-account:hover,
.header-cart:hover {
  background: var(--pp-ink);
  border-color: var(--pp-ink);
  color: #fff;
  transform: translateY(-1px);
}

.header-account.is-logged-in {
  border-color: var(--pp-accent);
  color: var(--pp-accent);
}

.header-account.is-logged-in:hover {
  background: var(--pp-accent);
  border-color: var(--pp-accent);
  color: #fff;
}

.header-account svg,
.header-cart svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.header-cart__count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border: 2px solid var(--pp-paper);
  border-radius: 999px;
  background: var(--pp-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.woocommerce-notices-wrapper {
  display: grid;
  gap: 10px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 18px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  min-height: 48px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid var(--pp-line);
  border-left: 4px solid var(--pp-accent);
  border-radius: 6px;
  background: #fff;
  color: var(--pp-ink);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  font-weight: 800;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.woocommerce-no-products-found {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 56px;
}

.woocommerce-no-products-found .woocommerce-info {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 22px 24px;
  border-left-color: #d7a94b;
  background: #fffaf1;
  box-shadow: none;
  color: var(--pp-ink);
  font-size: 1rem;
  line-height: 1.5;
}

.woocommerce-no-products-found .woocommerce-info::before,
.woocommerce-no-products-found .woocommerce-info::after {
  content: none !important;
  display: none !important;
}

.header-cart.is-cart-highlight {
  animation: posterpod-cart-pulse 1.15s ease both;
}

.posterpod-cart-fly {
  position: fixed;
  z-index: 9999;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  background: var(--pp-accent);
  box-shadow: 0 14px 34px rgba(217, 91, 0, 0.34);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: posterpod-cart-fly 0.92s cubic-bezier(0.18, 0.76, 0.22, 1) forwards;
}

.posterpod-cart-fly::before {
  content: "";
  width: 19px;
  height: 19px;
  background: #fff;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.2 6h15.1l-1.6 8.2a2.2 2.2 0 0 1-2.2 1.8H8.9a2.2 2.2 0 0 1-2.2-1.8L5.2 3.8H2.8V2h4l.5 4Zm1.4 1.8 1 6.1c.1.2.2.3.4.3h8.5c.2 0 .4-.1.4-.3l1.2-6.1H7.6ZM9.4 22a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm8 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.2 6h15.1l-1.6 8.2a2.2 2.2 0 0 1-2.2 1.8H8.9a2.2 2.2 0 0 1-2.2-1.8L5.2 3.8H2.8V2h4l.5 4Zm1.4 1.8 1 6.1c.1.2.2.3.4.3h8.5c.2 0 .4-.1.4-.3l1.2-6.1H7.6ZM9.4 22a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm8 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.posterpod-cart-hint {
  position: fixed;
  z-index: 9998;
  top: 86px;
  right: 18px;
  max-width: min(250px, calc(100vw - 28px));
  padding: 10px 13px;
  border: 1px solid var(--pp-line);
  border-radius: 6px;
  background: #fff;
  color: var(--pp-ink);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.posterpod-cart-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.single_add_to_cart_button.is-adding-to-cart {
  opacity: 0.82;
  pointer-events: none;
}

@keyframes posterpod-cart-fly {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72) rotate(-8deg);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1) rotate(-8deg);
  }
  52% {
    opacity: 1;
    transform: translate(calc((var(--pp-cart-x) * 0.48) - 50%), calc((var(--pp-cart-y) * 0.34) - 76px)) scale(1.05) rotate(7deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--pp-cart-x) - 50%), calc(var(--pp-cart-y) - 50%)) scale(0.42) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cart.is-cart-highlight,
  .posterpod-cart-fly {
    animation: none;
  }

  .header-cart.is-cart-highlight {
    border-color: var(--pp-accent);
    background: var(--pp-accent);
    color: #fff;
  }

  .posterpod-cart-hint {
    transition: none;
  }
}

@keyframes posterpod-cart-pulse {
  0% {
    transform: scale(1);
    border-color: var(--pp-line);
  }
  42% {
    transform: scale(1.08);
    border-color: var(--pp-accent);
    background: var(--pp-accent);
    color: #fff;
  }
  100% {
    transform: scale(1);
    border-color: var(--pp-line);
  }
}

.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--pp-ink);
  border-radius: var(--pp-radius);
  background: var(--pp-ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  transform: translateY(-1px);
  background: var(--pp-accent);
  border-color: var(--pp-accent);
  color: #fff;
}

.button--ghost {
  background: transparent;
  color: var(--pp-ink);
}

.button--ghost:hover {
  color: #fff;
  background: var(--pp-ink);
  border-color: var(--pp-ink);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--pp-ink);
  background: linear-gradient(180deg, #f8f6f1 0%, #fff 100%);
}

.hero__content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: 34px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pp-gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 5.75rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero p {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--pp-muted);
  font-size: 1.14rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: #fff;
}

.hero__stat {
  padding: 16px;
  background: #fff;
}

.hero__stat strong {
  display: block;
  font-size: 1.45rem;
}

.hero__stat span {
  color: var(--pp-muted);
  font-size: 0.86rem;
}

.hero__visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero__visual img,
.hero__video {
  width: min(100%, 760px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.hero__video {
  aspect-ratio: 16 / 10;
  display: block;
  height: min(62vh, 560px);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.16);
  background: #111827;
  position: relative;
  z-index: 1;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: min(88%, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.08);
  z-index: -1;
}

.hero-product-stack {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 14px;
  width: min(100%, 690px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-product-pill {
  padding: 14px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
}

.hero-product-pill span {
  display: block;
  color: var(--pp-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product-pill strong {
  display: block;
  margin-top: 3px;
  font-size: 0.96rem;
}

.section {
  padding: 74px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.section--white { background: #fff; }
.section--ink { background: var(--pp-ink); color: #fff; }

.trust-strip {
  padding: 22px 0;
  border-top: 1px solid var(--pp-line);
  border-bottom: 1px solid var(--pp-line);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-strip p {
  margin: 0;
  color: var(--pp-muted);
  font-weight: 800;
}

.platform-logos,
.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.platform-logos span,
.integration-grid div {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: #fff;
  color: var(--pp-ink);
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric-card,
.feature-panel,
.calculator-card,
.testimonial-grid article,
.sample-card {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.metric-card {
  padding: 24px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pp-accent-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.metric-card span {
  color: var(--pp-muted);
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 470px;
  margin: 0;
  color: var(--pp-muted);
}

.section--ink .section-heading p { color: rgba(255, 255, 255, 0.72); }

.split-band--feature {
  align-items: stretch;
}

.feature-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--pp-line);
}

.feature-panel div {
  padding: 30px;
  background: #fff;
}

.feature-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pp-accent-dark);
  font-size: 2.6rem;
  line-height: 1;
}

.feature-panel span {
  color: var(--pp-muted);
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.category-grid--launch .category-tile {
  min-height: 250px;
}

.category-tile,
.product-card,
.process-step,
.faq-item,
.woocommerce ul.products li.product {
  background: var(--pp-panel);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.06);
}

.category-tile {
  min-height: 230px;
  display: grid;
  align-content: end;
  position: relative;
  padding: 20px;
  color: #fff;
  background: var(--tile-bg), #333;
  background-size: cover;
  background-position: center;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68));
}

.category-tile > * { position: relative; }
.category-tile h3 { margin: 0 0 6px; font-size: 1.35rem; }
.category-tile p { margin: 0; color: rgba(255, 255, 255, 0.78); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card--poster {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-card__link {
  display: block;
}

.product-card__media {
  aspect-ratio: 1.08;
  background: #eee;
  object-fit: cover;
}

.product-card__media--poster {
  position: relative;
  aspect-ratio: 707 / 1000;
  overflow: hidden;
  border: 1px solid var(--pp-line);
  border-radius: 0;
  background: #f6f4ef;
}

.product-card__media--poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.32s ease, transform 0.42s ease;
}

.product-card__media--poster img + img {
  opacity: 0;
  transform: scale(1.035);
}

.product-card--poster:hover .product-card__media--poster.has-hover-image img:first-child {
  opacity: 0;
}

.product-card--poster:hover .product-card__media--poster.has-hover-image img + img {
  opacity: 1;
  transform: scale(1);
}

.product-card__body { padding: 18px; }
.product-card h3 { margin: 0 0 6px; font-size: 1.22rem; }
.product-card p { margin: 0 0 16px; color: var(--pp-muted); }
.price-line { display: flex; justify-content: space-between; gap: 14px; color: var(--pp-muted); }
.price-line strong { color: var(--pp-ink); }

.product-card__body--poster {
  padding: 14px 0 0;
}

.product-card__body--poster h3 {
  margin: 0 0 9px;
  color: var(--pp-ink);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}

.product-card__body--poster h3 a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.18s ease;
}

.product-card--poster:hover .product-card__body--poster h3 a {
  text-decoration-color: currentColor;
}

.poster-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--pp-muted);
  font-size: 0.94rem;
}

.poster-price s {
  color: #8d8d8d;
}

.poster-price strong {
  color: #be3f1d;
  font-weight: 600;
}

.store-empty-state {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  border: 1px dashed var(--pp-border);
  background: var(--pp-soft);
  text-align: center;
}

.store-empty-state h3 {
  margin: 0 0 8px;
  font-family: var(--pp-serif);
  font-size: 1.6rem;
}

.store-empty-state p {
  margin: 0;
  color: var(--pp-muted);
}

.product-card .button {
  width: 100%;
  margin-top: 4px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.product-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f3efe7;
  color: var(--pp-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.discount-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: var(--pp-radius);
  background: var(--pp-accent);
  color: #fff;
  box-shadow: var(--pp-shadow);
}

.discount-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.discount-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.discount-band .button {
  background: #fff;
  color: var(--pp-ink);
  border-color: #fff;
}

.calculator-band {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 36px;
}

.calculator-band h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.calculator-band p {
  color: var(--pp-muted);
}

.calculator-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.calculator-card label {
  display: grid;
  gap: 8px;
  color: var(--pp-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-card select,
.calculator-card input {
  min-height: 46px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--pp-line);
  border-radius: 6px;
  background: #fbfaf7;
  color: var(--pp-ink);
  font: inherit;
  font-weight: 800;
}

.calc-total {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 6px;
  background: var(--pp-ink);
  color: #fff;
}

.calc-total span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.calc-total strong {
  font-size: 2rem;
}

.integration-grid div {
  min-height: 90px;
  font-size: 1.08rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-grid article {
  padding: 24px;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  font-size: 1.1rem;
}

.testimonial-grid span {
  margin-top: 4px;
  color: var(--pp-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.testimonial-grid p {
  margin: 18px 0 0;
  color: var(--pp-muted);
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sample-card {
  padding: 30px;
}

.sample-card h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.sample-card p {
  color: var(--pp-muted);
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
}

.split-band__media {
  min-height: 430px;
  border-radius: var(--pp-radius);
  background: url("assets/workflow-studio.svg") center / cover no-repeat;
  box-shadow: var(--pp-shadow);
}

.split-band h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.split-band p,
.process-step p,
.faq-item p { color: var(--pp-muted); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-step { padding: 22px; }
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--pp-teal);
  border-radius: 50%;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item { padding: 20px 22px; }
.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.cta-band {
  padding: 52px;
  border-radius: var(--pp-radius);
  background: #fff;
  color: var(--pp-ink);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #111;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
}

.site-footer h3,
.site-footer h4 { color: #fff; margin-top: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer__identity {
  font-size: 0.92rem;
  line-height: 1.7;
}
.site-footer__identity strong { color: #fff; }

.site-main,
.woocommerce-page .site-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.site-main > article.page {
  width: min(900px, 100%);
  margin: 0 auto;
}

.site-main > article.page > h1 {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.policy-page {
  display: grid;
  gap: 18px;
  color: var(--pp-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.policy-page h2 {
  margin: 20px 0 0;
  color: var(--pp-ink);
  font-family: var(--pp-serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.policy-page p,
.policy-page ul {
  margin: 0;
}

.policy-page ul {
  padding-left: 22px;
}

.policy-page a {
  color: var(--pp-accent);
  font-weight: 800;
}

.woocommerce-account .site-main > article.page {
  width: min(1280px, 100%);
}

.woocommerce-account .site-main > article.page > h1 {
  margin-bottom: 30px;
  text-align: center;
}

.woocommerce-account .woocommerce {
  display: block;
}

.woocommerce-account .woocommerce .u-columns.col2-set,
.woocommerce-account .woocommerce .col2-set {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px;
  width: 100%;
  align-items: start;
}

.woocommerce-account .woocommerce #customer_login {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
  width: 100% !important;
}

.woocommerce-account .woocommerce #customer_login::before,
.woocommerce-account .woocommerce #customer_login::after,
.woocommerce-account .woocommerce .col2-set::before,
.woocommerce-account .woocommerce .col2-set::after {
  content: none !important;
  display: none !important;
}

.woocommerce-account .woocommerce .u-column1,
.woocommerce-account .woocommerce .u-column2,
.woocommerce-account .woocommerce .col2-set .col-1,
.woocommerce-account .woocommerce .col2-set .col-2,
.woocommerce-account .woocommerce #customer_login .u-column1,
.woocommerce-account .woocommerce #customer_login .u-column2,
.woocommerce-account .woocommerce #customer_login .col-1,
.woocommerce-account .woocommerce #customer_login .col-2 {
  display: block !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  clear: none !important;
  grid-column: auto !important;
}

.woocommerce-account .woocommerce .u-column1 > h2,
.woocommerce-account .woocommerce .u-column2 > h2 {
  margin: 0 0 14px;
  font-family: var(--pp-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none;
  width: auto;
  padding: 12px;
  border: 1px solid var(--pp-line);
  background: #fff;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.06);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: var(--pp-muted);
  font-weight: 850;
  text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: var(--pp-ink);
  color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: auto;
  min-height: 420px;
  margin-top: 22px;
  padding: 32px;
  border: 1px solid var(--pp-line);
  background: #fff;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.06);
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
  padding: 18px;
  background: var(--pp-soft);
  color: var(--pp-ink);
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  color: var(--pp-muted);
  line-height: 1.7;
}

.woocommerce-account .woocommerce-MyAccount-content a {
  color: var(--pp-accent);
  font-weight: 800;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-Address-title h3 {
  margin: 0 0 16px;
  color: var(--pp-ink);
  font-family: var(--pp-serif);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}

.woocommerce-account .woocommerce table.shop_table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--pp-line);
  border-radius: 0;
  background: #fff;
}

.woocommerce-account .woocommerce table.shop_table th {
  padding: 14px 16px;
  background: var(--pp-soft);
  color: var(--pp-ink);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce table.shop_table td {
  padding: 16px;
  border-top: 1px solid var(--pp-line);
  color: var(--pp-muted);
}

.woocommerce-account .woocommerce table.shop_table .button,
.woocommerce-account .woocommerce-MyAccount-content .button {
  min-height: 36px;
  padding: 0 14px;
}

.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.woocommerce-account .woocommerce-Address {
  width: auto;
  padding: 22px;
  border: 1px solid var(--pp-line);
  background: var(--pp-soft);
}

.woocommerce-account .woocommerce-Address address {
  color: var(--pp-muted);
  font-style: normal;
  line-height: 1.7;
}

.woocommerce-account .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.woocommerce-account .woocommerce-Address-title a {
  color: var(--pp-accent);
  font-weight: 900;
}

.woocommerce-account form.woocommerce-EditAccountForm,
.woocommerce-account form.woocommerce-address-fields,
.woocommerce-account form.login,
.woocommerce-account form.register {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--pp-line);
  background: var(--pp-soft);
}

.woocommerce-account .woocommerce-form-row,
.woocommerce-account .form-row {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.woocommerce-account label {
  color: var(--pp-ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.woocommerce-account input.input-text,
.woocommerce-account textarea,
.woocommerce-account select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--pp-line);
  background: #fff;
  color: var(--pp-ink);
  font: inherit;
}

.woocommerce-account textarea {
  min-height: 110px;
  padding-top: 12px;
}

.woocommerce-account fieldset {
  display: grid;
  gap: 14px;
  margin: 10px 0 0;
  padding: 18px;
  border: 1px solid var(--pp-line);
  background: #fff;
}

.woocommerce-account legend {
  padding: 0 8px;
  color: var(--pp-ink);
  font-family: var(--pp-serif);
  font-size: 1.35rem;
  font-weight: 800;
}

.posterpod-social-login {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--pp-line);
}

.posterpod-social-login__label {
  color: var(--pp-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce-account .posterpod-social-login .nsl-container,
.woocommerce-account .posterpod-social-login .nsl-container-buttons,
.woocommerce-account .posterpod-social-login a {
  width: 100%;
}

.woocommerce-account .posterpod-social-login .nsl-button {
  width: 100% !important;
  min-height: 46px !important;
  border: 1px solid var(--pp-line) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--pp-ink) !important;
  font-weight: 900 !important;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.woocommerce-account .posterpod-social-login .nsl-button:hover {
  border-color: var(--pp-ink) !important;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08) !important;
  transform: translateY(-1px);
}

.woocommerce-account .posterpod-social-login .nsl-button-label-container {
  font-weight: 900 !important;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none; }

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 0 0 18px !important;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  border-color: #d4c9b9;
  box-shadow: 0 14px 34px rgba(23, 23, 23, 0.1);
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.woocommerce ul.products li.product .onsale {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: #be3f1d;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 0 14px;
  padding: 14px;
  border-bottom: 1px solid var(--pp-line);
  border-radius: var(--pp-radius) var(--pp-radius) 0 0;
  background: #f7f4ee;
}

.woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-left: 16px;
  margin-right: 16px;
}

.woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 2.78em;
  margin-top: 0;
  margin-bottom: 8px;
  overflow: hidden;
  color: var(--pp-ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.38;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.woocommerce ul.products li.product .price {
  display: block;
  margin-top: auto;
  margin-bottom: 8px;
  color: #be3f1d;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.woocommerce ul.products li.product .price .posterpod-price-from {
  color: var(--pp-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.posterpod-loop-benefits {
  margin: 0 16px 14px;
  color: var(--pp-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.woocommerce ul.products li.product .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  margin-top: 0;
  text-align: center;
  white-space: nowrap;
}

.posterpod-custom-fields {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: #fff;
}

.posterpod-custom-fields label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.posterpod-custom-fields input,
.posterpod-custom-fields select,
.posterpod-custom-fields textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--pp-line);
  border-radius: 6px;
  font: inherit;
}

.promo-bar {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 7px 16px;
  background: var(--pp-ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.header-link {
  color: var(--pp-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-link:hover { color: var(--pp-ink); }
.hero--poster-store {
  min-height: auto;
  background: #fff;
}

.hero__content--poster-store {
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 0;
  padding-bottom: 42px;
}

.hero__copy--center {
  display: grid;
  justify-items: center;
  text-align: center;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.hero__copy--center p { max-width: 760px; }

.hero__copy--center .eyebrow {
  margin-bottom: 8px;
}

.hero--poster-store h1 {
  max-width: 100%;
  font-size: clamp(2rem, 3.25vw, 3.25rem);
  line-height: 1.02;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero--poster-store p {
  margin-top: 14px;
  font-size: 1.04rem;
}

.hero--poster-store .hero__actions {
  margin-top: 22px;
}
.hero__visual--wide {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: auto;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.hero__visual--wide:focus-visible {
  outline: 3px solid var(--pp-ink);
  outline-offset: 4px;
}

.hero__visual--wide::before {
  content: none;
}

.hero__video--wide,
.hero__banner--wide {
  width: 100%;
  height: auto;
  aspect-ratio: 1536 / 631;
  display: block;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.hero__visual--wide .hero__banner--wide,
.hero__visual--wide .hero__video--wide {
  width: 100%;
  max-width: none;
}

.hero__visual--has-video-image {
  display: grid;
}

.hero__visual--has-video-image .hero__banner--wide,
.hero__visual--has-video-image .hero__video--wide {
  grid-area: 1 / 1;
}

.hero__video--deferred {
  opacity: 0;
  transition: opacity 360ms ease;
}

.hero__video--deferred.is-ready {
  opacity: 1;
}

.section-heading--center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.product-grid--poster-shop {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.collection-card { display: grid; gap: 10px; }

.collection-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--pp-line);
  background: #fff;
}

.collection-card span {
  color: var(--pp-ink);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.collection-card:hover span { text-decoration-color: currentColor; }

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.room-grid a {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: #fff;
  color: var(--pp-ink);
  font-size: 1.08rem;
  font-weight: 900;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.room-grid a:hover {
  transform: translateY(-1px);
  border-color: var(--pp-ink);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.value-grid div,
.review-band,
.blog-grid article {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: #fff;
}

.value-grid div { padding: 24px; }
.value-grid strong,
.value-grid span { display: block; }
.value-grid strong { margin-bottom: 8px; font-size: 1.08rem; }
.value-grid span { color: var(--pp-muted); }

.review-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px;
}

.review-band h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.review-band p {
  max-width: 760px;
  color: var(--pp-muted);
}

.review-score {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pp-accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-grid article { padding: 24px; }

.blog-grid span {
  color: var(--pp-accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-grid h3 {
  margin: 10px 0;
  font-size: 1.28rem;
}

.blog-grid p {
  margin: 0;
  color: var(--pp-muted);
}

.product-detail-page { padding-top: 44px; }

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 46px;
  align-items: start;
}

.product-mobile-summary {
  display: none;
}

.product-gallery { display: grid; gap: 14px; }

.product-gallery .woocommerce-product-gallery {
  width: 100%;
  float: none;
}

.product-gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.product-gallery .woocommerce-product-gallery__image {
  display: grid;
  place-items: center;
  border: 1px solid var(--pp-line);
  background: #f5f1e9;
}

.product-gallery .woocommerce-product-gallery__image a,
.product-gallery .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
}

.product-gallery .woocommerce-product-gallery__image img {
  height: auto;
  max-height: 760px;
  object-fit: contain;
}

.product-gallery .flex-control-thumbs,
.product-gallery .woocommerce-product-gallery .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(62px, 92px));
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.product-gallery .flex-control-thumbs li {
  width: auto;
  float: none;
}

.product-gallery .flex-control-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--pp-line);
  background: #fff;
  opacity: 1;
}

.product-gallery .flex-control-thumbs img.flex-active {
  border-color: var(--pp-ink);
  box-shadow: inset 0 0 0 1px var(--pp-ink);
}

.product-gallery__main {
  display: grid;
  place-items: center;
  min-height: 640px;
  border: 1px solid var(--pp-line);
  background: #f5f1e9;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(64px, 92px));
  gap: 10px;
  max-width: 500px;
}

.product-gallery__thumbs button {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--pp-line);
  background: #fff;
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--pp-ink);
  box-shadow: inset 0 0 0 1px var(--pp-ink);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.posterpod-plugin-swatch-fallback-image {
  display: block;
  width: 56px;
  height: 72px;
  max-width: 56px;
  max-height: 72px;
  margin: 0 auto 6px;
  object-fit: contain;
}

.product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-native-cart .variable-items-wrapper .variable-item.selected,
.product-native-cart .variable-items-wrapper .variable-item[aria-checked="true"] {
  background: var(--pp-selected-bg) !important;
}

.product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper .variable-item {
  width: 128px;
  min-width: 128px;
  height: auto;
  min-height: 128px;
  padding: 8px 7px;
  border-radius: 8px;
}

.product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper .variable-item.selected {
  background: var(--pp-selected-bg);
  box-shadow: 0 0 0 2px var(--pp-ink);
}

.product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper .variable-item-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 6px;
  width: 100%;
}

.product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper img,
.product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper .variable-item-span-image {
  width: 56px;
  height: 72px;
  max-width: 56px;
  max-height: 72px;
  object-fit: contain;
}

.product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper .variable-item-span-button {
  display: -webkit-box;
  width: 100%;
  max-width: 112px;
  min-height: 2.36em;
  overflow: hidden;
  color: var(--pp-ink);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item {
  width: 62px;
  min-width: 62px;
  height: 46px;
  min-height: 46px;
  padding: 4px;
  border-radius: 7px;
}

.product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item.selected {
  background: var(--pp-selected-bg);
  box-shadow: 0 0 0 2px var(--pp-ink);
}

.product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper img {
  width: 50px;
  height: 36px;
  max-width: 50px;
  max-height: 36px;
  object-fit: cover;
}

.product-summary {
  position: sticky;
  top: 124px;
}

.product-vendor {
  margin: 0 0 8px;
  color: var(--pp-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-summary h1 {
  margin: 0 0 12px;
  max-width: 620px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.product-rating {
  margin-bottom: 14px;
  color: #f4a51c;
  font-size: 0.95rem;
  font-weight: 900;
}

.product-rating span { color: var(--pp-muted); font-weight: 700; }

.product-detail-price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 6px;
  font-size: 1.16rem;
}

.product-detail-price del { color: #8d8d8d; }

.product-detail-price ins,
.product-detail-price .amount {
  color: #be3f1d;
  font-weight: 800;
  text-decoration: none;
}

.product-tax-note {
  margin: 0 0 22px;
  color: var(--pp-muted);
  font-size: 0.92rem;
}

.product-mobile-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.product-mobile-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--pp-line);
  border-radius: 999px;
  background: #fff;
  color: var(--pp-ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-option-block { margin: 22px 0; }
.product-option-block h2 { margin: 0 0 10px; font-size: 0.96rem; }

.product-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.product-option-grid--small { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.product-option-grid button {
  min-height: 46px;
  padding: 9px 10px;
  border: 1px solid var(--pp-line);
  border-radius: 4px;
  background: #fff;
  color: var(--pp-ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.product-option-grid button:hover,
.product-option-grid button:first-child { border-color: var(--pp-ink); }

.product-cart-form {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  margin: 20px 0;
}

.product-cart-form .quantity input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--pp-line);
  border-radius: 6px;
  text-align: center;
}

.product-cart-button,
.product-cart-form .single_add_to_cart_button {
  width: 100%;
  min-height: 50px;
}

.product-native-cart {
  margin: 22px 0;
}

.product-native-cart form.cart,
.product-native-cart form.variations_form {
  display: grid;
  gap: 18px;
  margin: 0;
}

.product-native-cart table.variations {
  width: 100%;
  margin: 0;
  border: 0;
}

.product-native-cart table.variations tr {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.product-native-cart table.variations th,
.product-native-cart table.variations td {
  display: block;
  padding: 0;
  border: 0;
  text-align: left;
}

.product-native-cart table.variations label {
  color: var(--pp-ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.product-native-cart table.variations select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--pp-line);
  border-radius: 6px;
  background: #fff;
  color: var(--pp-ink);
  font: inherit;
}

.product-native-cart .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: var(--pp-muted);
  font-size: 0.9rem;
  text-decoration: underline;
}

.product-native-cart .single_variation_wrap {
  display: grid;
  gap: 20px;
}

.product-native-cart .woocommerce-variation-add-to-cart,
.product-native-cart form.cart:not(.variations_form) {
  display: grid;
  gap: 18px;
}

.product-native-cart .woocommerce-variation-price {
  color: #be3f1d;
  font-weight: 900;
}

.product-native-cart .quantity {
  display: grid;
  gap: 8px;
  margin: 4px 0 6px;
}

.posterpod-quantity-label {
  display: block;
  color: var(--pp-ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.product-native-cart .quantity input {
  width: 112px;
  min-height: 50px;
  border: 1px solid var(--pp-line);
  border-radius: 6px;
  text-align: center;
}

.product-native-cart .single_add_to_cart_button {
  width: 100%;
  min-height: 52px;
  margin-top: 10px;
}

.product-native-cart .posterpod-buy-now-button {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  background: var(--pp-accent);
  border-color: var(--pp-accent);
  color: #fff;
}

.product-native-cart .posterpod-buy-now-button:hover {
  background: var(--pp-accent-dark);
  border-color: var(--pp-accent-dark);
}

.product-service-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.product-service-list div {
  padding: 14px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: #fff;
}

.product-service-list strong,
.product-service-list span { display: block; }
.product-service-list span { color: var(--pp-muted); font-size: 0.92rem; }
.product-accordions { display: grid; gap: 10px; }
.product-accordions details { border-top: 1px solid var(--pp-line); padding: 15px 0; }
.product-accordions summary { cursor: pointer; font-weight: 900; }
.product-accordions p { color: var(--pp-muted); }

@media (max-width: 860px) {
  body.single-product {
    padding-bottom: 0;
  }

  .site-header {
    position: static;
  }

  .site-header__inner { flex-wrap: wrap; padding: 14px 0; }
  .main-navigation { order: 3; width: 100%; overflow-x: auto; }
  .main-navigation ul { width: max-content; }
  .header-actions {
    width: 100%;
    order: 4;
    justify-content: space-between;
  }
  .header-search {
    min-width: 0;
    flex: 1;
  }
  .woocommerce-account .woocommerce .u-columns.col2-set,
  .woocommerce-account .woocommerce .col2-set,
  .woocommerce-account .woocommerce #customer_login {
    grid-template-columns: 1fr !important;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    overflow-x: auto;
    padding: 8px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    flex-wrap: nowrap;
    width: max-content;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 22px;
  }
  .woocommerce-account .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero__content {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero__content--poster-store {
    padding-top: 0;
    padding-bottom: 34px;
  }

  .hero__content--poster-store .hero__visual {
    display: none;
  }

  .hero--poster-store h1 {
    white-space: normal;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }
  .hero__visual,
  .hero__visual img {
    min-height: 0;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__visual--wide {
    min-height: auto;
    width: calc(100vw - 28px);
  }

  .hero__visual img,
  .hero__video {
    width: min(100%, 520px);
  }

  .hero__video--wide,
  .hero__banner--wide,
  .hero__visual--wide .hero__banner--wide,
  .hero__visual--wide .hero__video--wide {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7.2;
  }

  .product-detail-page { padding-top: 10px; }
  .product-detail {
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    gap: 12px 12px;
    align-items: start;
  }
  .product-gallery {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
  }
  .product-summary {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    position: static;
  }
  .product-mobile-summary {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    align-self: stretch;
    align-content: start;
    gap: 7px;
    min-width: 0;
  }
  .product-mobile-summary .product-vendor {
    margin-bottom: 0;
    font-size: 0.72rem;
  }
  .product-mobile-summary h1 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.16;
  }
  .product-mobile-summary .product-detail-price {
    margin: 0;
    font-size: 0.95rem;
  }
  .product-mobile-trust {
    gap: 6px;
  }
  .product-mobile-trust span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.7rem;
  }
  .product-mobile-summary .product-mobile-trust {
    margin: 0;
  }
  .product-mobile-summary__cta {
    min-height: 40px;
    margin-top: 2px;
    padding: 0 10px;
    font-size: 0.86rem;
  }
  .product-summary > .product-vendor,
  .product-summary > h1,
  .product-summary > .product-rating,
  .product-summary > .product-detail-price,
  .product-summary > .product-tax-note,
  .product-summary > .product-mobile-trust {
    display: none;
  }
  .product-summary h1 {
    margin-bottom: 8px;
    font-size: 1.52rem;
  }
  .product-rating { margin-bottom: 10px; }
  .product-detail-price { font-size: 1.08rem; }
  .product-tax-note { margin-bottom: 12px; }
  .product-gallery__main {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }
  .product-gallery__main img {
    max-height: none;
  }
  .product-gallery__thumbs {
    display: none;
  }
  .product-native-cart {
    scroll-margin-top: 18px;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    margin-top: 2px;
    padding: 14px 12px 16px;
    border: 1px solid var(--pp-line);
    border-radius: 8px;
    background: #fff;
  }
  .product-native-cart table.variations tr {
    margin-bottom: 12px;
  }
  .product-native-cart table.variations,
  .product-native-cart table.variations tbody,
  .product-native-cart table.variations tr,
  .product-native-cart table.variations th,
  .product-native-cart table.variations td {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .product-native-cart table.variations td.value {
    overflow: visible;
  }
  .product-native-cart table.variations label {
    font-size: 0.9rem;
  }
  .product-native-cart .variable-items-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }
  .product-native-cart .variable-items-wrapper .variable-item {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 44px;
    margin: 0 !important;
  }
  .product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper .variable-item {
    min-height: 104px;
  }
  .product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper img,
  .product-native-cart [data-attribute_name="attribute_pa_color"].image-variable-items-wrapper .variable-item-span-image {
    width: 46px;
    height: 60px;
  }
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item {
    position: relative;
    min-height: 72px;
    padding: 7px;
  }
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item-contents {
    display: grid;
    place-items: center;
    min-height: 56px;
  }
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper img,
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .posterpod-plugin-swatch-fallback-image,
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item-span-image {
    display: block !important;
    width: 74px !important;
    height: 48px !important;
    max-width: 100% !important;
    max-height: 48px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item-span-button {
    display: none !important;
  }
  .product-native-cart .variable-item.selected,
  .product-native-cart .variable-item[aria-checked="true"] {
    border-color: var(--pp-ink) !important;
    background: var(--pp-selected-bg) !important;
    box-shadow: inset 0 0 0 1px var(--pp-ink) !important;
  }
  .product-native-cart .variable-item.selected::before,
  .product-native-cart .variable-item.selected::after,
  .product-native-cart .variable-item[aria-checked="true"]::before,
  .product-native-cart .variable-item[aria-checked="true"]::after,
  .product-native-cart .variable-item.selected .variable-item-contents::before,
  .product-native-cart .variable-item.selected .variable-item-contents::after,
  .product-native-cart .variable-item[aria-checked="true"] .variable-item-contents::before,
  .product-native-cart .variable-item[aria-checked="true"] .variable-item-contents::after {
    content: none !important;
    display: none !important;
  }
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item.selected,
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item[aria-checked="true"] {
    border-width: 2px !important;
  }
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item.selected .variable-item-contents::after,
  .product-native-cart [data-attribute_name="attribute_pa_frame-type"].image-variable-items-wrapper .variable-item[aria-checked="true"] .variable-item-contents::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 7px;
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 999px;
    background: var(--pp-ink);
  }
  .product-native-cart .woocommerce-variation-add-to-cart,
  .product-native-cart form.cart:not(.variations_form) {
    position: static;
    z-index: 20;
    bottom: 0;
    box-sizing: border-box;
    width: 100%;
    margin: 12px 0 0;
    padding: 0;
    border-top: 0;
    background: transparent;
    box-shadow: none;
  }
  .product-native-cart .woocommerce-variation-add-to-cart {
    grid-template-columns: 84px minmax(0, 1fr);
    align-items: end;
    gap: 10px;
  }
  .product-native-cart .woocommerce-variation-price {
    margin: 6px 0 2px;
    font-size: 1.04rem;
  }
  .product-native-cart .woocommerce-variation-add-to-cart .quantity {
    grid-column: 1;
    margin: 0;
  }
  .product-native-cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    grid-column: 2;
    margin-top: 0;
  }
  .product-native-cart .woocommerce-variation-add-to-cart .posterpod-buy-now-button {
    grid-column: 1 / -1;
    margin-top: 0;
  }
  .product-native-cart .single_add_to_cart_button,
  .product-native-cart .posterpod-buy-now-button {
    min-height: 52px;
    font-size: 0.96rem;
  }
  .product-native-cart .quantity input {
    width: 100%;
  }
  .product-option-grid,
  .product-option-grid--small,
  .product-cart-form {
    grid-template-columns: 1fr;
  }

  .hero-product-stack {
    position: static;
    width: auto;
    transform: none;
    grid-template-columns: 1fr;
    margin-top: -20px;
  }
  .hero__stats,
  .category-grid,
  .product-grid,
  .product-grid--poster-shop,
  .collection-grid,
  .room-grid,
  .value-grid,
  .review-band,
  .blog-grid,
  .metric-grid,
  .platform-logos,
  .integration-grid,
  .testimonial-grid,
  .sample-grid,
  .process-grid,
  .site-footer__inner,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .woocommerce ul.products li.product {
    padding-bottom: 12px !important;
  }
  .woocommerce ul.products li.product a img {
    margin-bottom: 10px;
    padding: 10px;
  }
  .woocommerce-loop-product__title,
  .woocommerce ul.products li.product .price,
  .woocommerce ul.products li.product .button,
  .posterpod-loop-benefits {
    margin-left: 10px;
    margin-right: 10px;
  }
  .woocommerce-loop-product__title {
    min-height: 2.64em;
    margin-bottom: 6px;
    font-size: 0.88rem;
    line-height: 1.32;
  }
  .woocommerce ul.products li.product .price {
    font-size: 0.9rem;
  }
  .posterpod-loop-benefits {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }
  .woocommerce ul.products li.product .button {
    width: calc(100% - 20px);
    min-height: 42px;
    padding: 0 8px;
    font-size: 0.82rem;
  }
  .section-heading,
  .split-band,
  .trust-strip__inner,
  .calculator-band,
  .calculator-card {
    display: grid;
    grid-template-columns: 1fr;
  }
  .split-band__media { min-height: 300px; }
  .discount-band,
  .cta-band {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}
