:root {
  --ppcm-ink: #132023;
  --ppcm-text: #233335;
  --ppcm-muted: #60706f;
  --ppcm-surface: #ffffff;
  --ppcm-soft: #f4f8f7;
  --ppcm-line: #dce7e4;
  --ppcm-primary: #008c8c;
  --ppcm-primary-dark: #006e70;
  --ppcm-accent: #ef6a5b;
  --ppcm-mint: #a7f3d0;
  --ppcm-radius: 8px;
  --ppcm-shadow: 0 18px 48px rgba(19, 32, 35, .10);
}

body {
  color: var(--ppcm-text);
  font-family: Inter, "Avenir Next", "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body > .skip-link.screen-reader-text {
  height: 1px !important;
  left: 12px !important;
  overflow: hidden !important;
  position: absolute !important;
  top: -10000px !important;
  width: 1px !important;
  z-index: 1000;
}

body > .skip-link.screen-reader-text:focus {
  background: var(--ppcm-ink);
  color: #fff;
  height: auto !important;
  padding: 10px 14px;
  top: 12px !important;
  width: auto !important;
}

body:not(.admin-bar) > .wp-site-blocks {
  margin-top: -16px;
}

.ppcm-skip-link {
  background: var(--ppcm-ink);
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: absolute;
  top: -60px;
  z-index: 1000;
}

.ppcm-skip-link:focus {
  top: 12px;
}

.ppcm-site-header {
  background: var(--ppcm-surface);
  border-bottom: 1px solid var(--ppcm-line);
  position: relative;
  z-index: 20;
}

.ppcm-promo-bar {
  align-items: center;
  background: var(--ppcm-ink);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 10px 24px;
  justify-content: center;
  line-height: 1.35;
  padding: 10px 16px;
}

.ppcm-main-header,
.ppcm-mega-nav,
.ppcm-home,
.ppcm-footer {
  margin-inline: auto;
  max-width: 1240px;
  width: min(100% - 32px, 1240px);
}

.ppcm-main-header {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding: 18px 0;
}

.ppcm-main-header > p {
  display: none !important;
  margin: 0 !important;
}

.ppcm-brand {
  align-items: center;
  color: var(--ppcm-ink);
  display: inline-flex;
  gap: 12px;
  min-height: 48px;
  text-decoration: none;
}

.ppcm-brand:hover,
.ppcm-brand:focus {
  color: var(--ppcm-primary-dark);
}

.ppcm-brand-mark {
  align-items: center;
  background: var(--ppcm-primary);
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.ppcm-brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}

.ppcm-brand small {
  color: var(--ppcm-muted);
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.ppcm-search {
  align-items: stretch;
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 48px;
  overflow: hidden;
}

.ppcm-search input {
  border: 0;
  color: var(--ppcm-ink);
  font: inherit;
  min-width: 0;
  padding: 0 14px;
}

.ppcm-search button,
.ppcm-primary-link,
.ppcm-secondary-link,
.ppcm-product-card__footer a,
.ppcm-header-actions a,
.ppcm-menu-toggle,
.ppcm-secondary-action,
.ppcm-upload-control,
.single_add_to_cart_button {
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.ppcm-search button {
  background: var(--ppcm-primary);
  border: 0;
  color: #fff;
  font-weight: 800;
  min-height: 48px;
  padding: 0 18px;
}

.ppcm-search button:hover,
.ppcm-search button:focus {
  background: var(--ppcm-primary-dark);
}

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

.ppcm-header-actions a {
  align-items: center;
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  color: var(--ppcm-ink);
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 0 14px;
  text-decoration: none;
}

.ppcm-header-actions a:hover,
.ppcm-header-actions a:focus {
  border-color: var(--ppcm-primary);
  color: var(--ppcm-primary-dark);
}

.ppcm-header-actions span {
  background: var(--ppcm-accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  height: 22px;
  justify-content: center;
  margin-left: 8px;
  min-width: 22px;
  padding: 0 6px;
}

.ppcm-side-cart {
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
}

.ppcm-side-cart__overlay {
  background: rgba(9, 20, 22, .42);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .22s ease;
}

.ppcm-side-cart__panel {
  background: var(--ppcm-surface);
  box-shadow: -24px 0 60px rgba(19, 32, 35, .22);
  color: var(--ppcm-text);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100dvh;
  margin-left: auto;
  max-width: min(440px, 100vw);
  opacity: .98;
  outline: 0;
  position: relative;
  transform: translateX(104%);
  transition: transform .24s ease;
  width: 440px;
}

.ppcm-side-cart.is-open {
  pointer-events: auto;
}

.ppcm-side-cart.is-open .ppcm-side-cart__overlay {
  opacity: 1;
}

.ppcm-side-cart.is-open .ppcm-side-cart__panel {
  transform: translateX(0);
}

.ppcm-side-cart__header {
  align-items: center;
  border-bottom: 1px solid var(--ppcm-line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px 22px 18px;
}

.ppcm-side-cart__header span {
  color: var(--ppcm-primary-dark);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ppcm-side-cart__header h2 {
  color: var(--ppcm-ink);
  font-size: 24px;
  line-height: 1.15;
  margin: 3px 0 0;
}

.ppcm-side-cart__close {
  align-items: center;
  background: var(--ppcm-soft);
  border: 1px solid var(--ppcm-line);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.ppcm-side-cart__close span,
.ppcm-side-cart__close span::after {
  background: var(--ppcm-ink);
  border-radius: 2px;
  display: block;
  height: 2px;
  width: 16px;
}

.ppcm-side-cart__close span {
  transform: rotate(45deg);
}

.ppcm-side-cart__close span::after {
  content: "";
  transform: rotate(90deg);
}

.ppcm-side-cart__notice {
  color: var(--ppcm-primary-dark);
  font-size: 13px;
  font-weight: 700;
  min-height: 0;
  padding: 0 22px;
}

.ppcm-side-cart__notice:not(:empty) {
  border-bottom: 1px solid var(--ppcm-line);
  padding-bottom: 12px;
  padding-top: 12px;
}

.ppcm-side-cart__notice.is-error {
  color: #b42318;
}

.ppcm-side-cart__body {
  overscroll-behavior: contain;
  overflow: auto;
  padding: 18px 22px;
}

.ppcm-side-cart__empty {
  background: var(--ppcm-soft);
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  padding: 24px;
}

.ppcm-side-cart__empty strong {
  color: var(--ppcm-ink);
  display: block;
  font-size: 18px;
}

.ppcm-side-cart__empty p {
  color: var(--ppcm-muted);
  margin: 8px 0 0;
}

.ppcm-side-cart__items {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ppcm-side-cart__item {
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  display: grid;
  gap: 12px;
  grid-template-columns: 74px 1fr;
  padding: 12px;
}

.ppcm-side-cart__thumb {
  align-items: center;
  background: linear-gradient(135deg, #f6fbfa, #eef5f2);
  border-radius: 7px;
  display: flex;
  justify-content: center;
  min-height: 74px;
  overflow: hidden;
}

.ppcm-side-cart__thumb img {
  display: block;
  height: 100%;
  max-height: 74px;
  object-fit: cover;
  width: 100%;
}

.ppcm-side-cart__details {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.ppcm-side-cart__line {
  align-items: start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.ppcm-side-cart__name {
  color: var(--ppcm-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.ppcm-side-cart__name:hover,
.ppcm-side-cart__name:focus {
  color: var(--ppcm-primary-dark);
}

.ppcm-side-cart__remove {
  color: var(--ppcm-muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ppcm-side-cart__remove:hover,
.ppcm-side-cart__remove:focus {
  color: #b42318;
}

.ppcm-side-cart__meta {
  color: var(--ppcm-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 6px 10px;
  line-height: 1.35;
}

.ppcm-side-cart__meta span {
  background: var(--ppcm-soft);
  border-radius: 999px;
  padding: 4px 8px;
}

.ppcm-side-cart__price {
  color: var(--ppcm-ink);
  font-size: 15px;
  font-weight: 800;
}

.ppcm-side-cart__footer {
  border-top: 1px solid var(--ppcm-line);
  display: grid;
  gap: 14px;
  padding: 18px 22px 22px;
}

.ppcm-side-cart__subtotal {
  align-items: center;
  color: var(--ppcm-ink);
  display: flex;
  justify-content: space-between;
}

.ppcm-side-cart__subtotal span {
  color: var(--ppcm-muted);
  font-size: 13px;
  font-weight: 700;
}

.ppcm-side-cart__subtotal strong {
  font-size: 20px;
}

.ppcm-side-cart__footer p {
  color: var(--ppcm-muted);
  font-size: 13px;
  margin: 0;
}

.ppcm-side-cart__actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.ppcm-side-cart__checkout,
.ppcm-side-cart__view {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  text-decoration: none;
}

.ppcm-side-cart__checkout {
  background: var(--ppcm-accent);
  color: #fff;
}

.ppcm-side-cart__checkout:hover,
.ppcm-side-cart__checkout:focus {
  background: #dc594a;
  color: #fff;
}

.ppcm-side-cart__view {
  background: var(--ppcm-soft);
  border: 1px solid var(--ppcm-line);
  color: var(--ppcm-ink);
}

.ppcm-side-cart__view:hover,
.ppcm-side-cart__view:focus {
  border-color: var(--ppcm-primary);
  color: var(--ppcm-primary-dark);
}

.ppcm-mega-nav {
  padding-bottom: 12px;
  position: relative;
}

.ppcm-nav-strip {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.ppcm-menu-toggle {
  align-items: center;
  background: var(--ppcm-ink);
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  color: #fff;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  white-space: nowrap;
}

.ppcm-menu-toggle:hover,
.ppcm-menu-toggle:focus {
  background: var(--ppcm-primary-dark);
  border-color: var(--ppcm-primary-dark);
}

.ppcm-menu-toggle__chevron {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: inline-block;
  height: 8px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: transform .2s ease;
  width: 8px;
}

.ppcm-site-header.is-menu-open .ppcm-menu-toggle__chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.ppcm-quick-links {
  flex: 1 1 auto;
  display: flex;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 0;
  scrollbar-width: thin;
}

.ppcm-quick-links a {
  align-items: center;
  border: 1px solid var(--ppcm-line);
  border-radius: 999px;
  color: var(--ppcm-ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  min-height: 42px;
  padding: 0 14px;
  text-decoration: none;
  white-space: nowrap;
}

.ppcm-quick-links a:hover,
.ppcm-quick-links a:focus,
.ppcm-quick-links a.is-menu-active {
  border-color: var(--ppcm-primary);
  color: var(--ppcm-primary-dark);
}

.ppcm-quick-links a.is-menu-active {
  background: color-mix(in srgb, var(--ppcm-primary) 10%, white);
}

.ppcm-mega-panel {
  align-items: start;
  display: none;
  gap: 10px;
  padding-top: 10px;
}

.ppcm-site-header.is-menu-open .ppcm-mega-panel {
  display: grid;
  max-height: min(70dvh, 520px);
  overflow: auto;
}

.ppcm-site-header.is-menu-filtered .ppcm-mega-column {
  display: none;
}

.ppcm-site-header.is-menu-filtered .ppcm-mega-column.is-panel-visible {
  display: grid;
}

.ppcm-mega-column {
  background: var(--ppcm-soft);
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  align-content: start;
  display: grid;
  gap: 1px;
  padding: 10px;
}

.ppcm-mega-column strong {
  color: var(--ppcm-ink);
  font-size: 13px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.ppcm-mega-column a {
  color: var(--ppcm-muted);
  font-size: 14px;
  line-height: 1.25;
  min-height: 0;
  padding: 3px 0;
  text-decoration: none;
}

.ppcm-mega-column a:hover,
.ppcm-mega-column a:focus {
  color: var(--ppcm-primary-dark);
}

.ppcm-home {
  padding: 32px 0 56px;
}

.ppcm-hero {
  align-items: center;
  display: grid;
  gap: 28px;
  min-height: 520px;
  padding: 24px 0 40px;
}

.ppcm-eyebrow {
  color: var(--ppcm-primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.ppcm-hero h1,
.ppcm-section-head h2 {
  color: var(--ppcm-ink);
  font-family: "DM Sans", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.ppcm-hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  max-width: 780px;
}

.ppcm-hero p:not(.ppcm-eyebrow),
.ppcm-section-head {
  color: var(--ppcm-muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 680px;
}

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

.ppcm-primary-link,
.ppcm-secondary-link {
  align-items: center;
  border-radius: var(--ppcm-radius);
  display: inline-flex;
  font-weight: 900;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
}

.ppcm-primary-link {
  background: var(--ppcm-primary);
  color: #fff;
}

.ppcm-primary-link:hover,
.ppcm-primary-link:focus {
  background: var(--ppcm-primary-dark);
  color: #fff;
}

.ppcm-secondary-link {
  border: 1px solid var(--ppcm-line);
  color: var(--ppcm-ink);
}

.ppcm-secondary-link:hover,
.ppcm-secondary-link:focus {
  border-color: var(--ppcm-primary);
  color: var(--ppcm-primary-dark);
}

.ppcm-hero__visual {
  background: var(--ppcm-soft);
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.ppcm-paper-stack {
  height: 360px;
  position: relative;
}

.ppcm-paper {
  border-radius: 8px;
  box-shadow: var(--ppcm-shadow);
  display: block;
  position: absolute;
}

.ppcm-paper--poster {
  background: var(--ppcm-surface);
  border: 1px solid var(--ppcm-line);
  height: 280px;
  left: 22%;
  top: 36px;
  transform: rotate(-5deg);
  width: 210px;
}

.ppcm-paper--card {
  background: var(--ppcm-mint);
  height: 148px;
  left: 45%;
  top: 96px;
  transform: rotate(8deg);
  width: 220px;
}

.ppcm-paper--label {
  background: var(--ppcm-accent);
  height: 104px;
  left: 34%;
  top: 220px;
  transform: rotate(-1deg);
  width: 260px;
}

.ppcm-quote-chip {
  background: transparent;
  border-top: 1px solid var(--ppcm-line);
  border-radius: 0;
  bottom: 18px;
  box-shadow: var(--ppcm-shadow);
  display: grid;
  gap: 2px;
  left: 18px;
  padding: 14px 16px;
  position: absolute;
}

.ppcm-quote-chip span {
  color: var(--ppcm-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ppcm-quote-chip strong {
  color: var(--ppcm-ink);
}

.ppcm-section {
  padding: 44px 0;
}

.ppcm-section--muted {
  background: var(--ppcm-soft);
  margin-inline: calc(50% - 50vw);
  padding-inline: max(16px, calc(50vw - 620px));
}

.ppcm-section-head {
  margin-bottom: 22px;
}

.ppcm-section-head h2 {
  font-size: clamp(26px, 3.5vw, 40px);
}

.ppcm-category-grid,
.ppcm-product-grid {
  display: grid;
  gap: 16px;
}

.ppcm-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.ppcm-category-card,
.ppcm-product-card {
  background: var(--ppcm-surface);
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
}

.ppcm-category-card {
  color: var(--ppcm-ink);
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
  text-decoration: none;
}

.ppcm-category-card:hover,
.ppcm-category-card:focus {
  border-color: var(--ppcm-primary);
  color: var(--ppcm-primary-dark);
  transform: translateY(-2px);
}

.ppcm-category-card__icon {
  align-items: center;
  background: var(--ppcm-soft);
  border-radius: 7px;
  color: var(--ppcm-primary-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.ppcm-category-card small,
.ppcm-product-card p {
  color: var(--ppcm-muted);
}

.ppcm-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ppcm-product-card {
  display: grid;
  overflow: hidden;
}

.ppcm-product-card__image {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: var(--ppcm-soft);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

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

.ppcm-product-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.ppcm-product-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

.ppcm-product-card h3 a {
  color: var(--ppcm-ink);
  text-decoration: none;
}

.ppcm-product-card__footer {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.ppcm-product-card__footer span {
  color: var(--ppcm-ink);
  font-weight: 900;
}

.ppcm-product-card__footer a {
  background: var(--ppcm-ink);
  border-radius: var(--ppcm-radius);
  color: #fff;
  font-weight: 900;
  min-height: 44px;
  padding: 11px 14px;
  text-decoration: none;
}

.ppcm-process-band,
.ppcm-footer {
  border-top: 1px solid var(--ppcm-line);
  display: grid;
  gap: 16px;
}

.ppcm-process-band {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-top: 28px;
}

.ppcm-process-band div {
  display: grid;
  gap: 4px;
}

.ppcm-process-band strong {
  color: var(--ppcm-ink);
}

.ppcm-process-band span {
  color: var(--ppcm-muted);
}

.ppcm-footer {
  color: var(--ppcm-muted);
  grid-template-columns: 1fr;
  padding: 32px 0;
}

.ppcm-footer strong {
  color: var(--ppcm-ink);
  font-size: 22px;
}

.ppcm-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ppcm-footer a {
  color: var(--ppcm-ink);
  font-weight: 800;
}

.ppcm-single-product-main {
  margin-inline: auto;
  max-width: 1240px;
  width: min(100% - 32px, 1240px);
}

.ppcm-single-product-main {
  padding: 22px 0 56px;
}

.ppcm-product-breadcrumbs {
  color: var(--ppcm-muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.ppcm-product-breadcrumbs .woocommerce-breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.ppcm-product-breadcrumbs a {
  color: var(--ppcm-ink);
  text-decoration: none;
}

.ppcm-product-breadcrumbs a:hover,
.ppcm-product-breadcrumbs a:focus {
  color: var(--ppcm-primary-dark);
}

.ppcm-single-product {
  display: block;
}

.ppcm-single-product__layout {
  align-items: start;
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.ppcm-single-product .summary {
  background: var(--ppcm-surface);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.ppcm-single-product .summary > .price,
body.ppcm-configured-product.single-product .summary > .price,
body.ppcm-configured-product.single-product form.cart .quantity {
  display: none !important;
}

.ppcm-single-product .product_title,
body.ppcm-configured-product.single-product .product_title {
  color: #b71924;
  font-family: "DM Sans", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(25px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 12px;
}

.ppcm-product-rating-line {
  color: var(--ppcm-muted);
  min-height: 20px;
}

.ppcm-product-promises {
  border-top: 1px solid var(--ppcm-line);
  color: var(--ppcm-muted);
  display: grid;
  gap: 4px;
  line-height: 1.55;
  margin: 12px 0 28px;
  padding-top: 18px;
}

.ppcm-product-promises p {
  margin: 0;
}

.ppcm-product-promises strong {
  color: var(--ppcm-ink);
}

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

.ppcm-product-gallery-main,
.ppcm-product-preview {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 18%, rgba(239, 106, 91, .14), transparent 34%),
    linear-gradient(145deg, #f7ebf0, #f4f8f7 68%);
  border-radius: 28px;
  display: grid;
  overflow: hidden;
  place-items: center;
}

.ppcm-product-gallery-main__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ppcm-product-preview__sheet {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 22px 42px rgba(19, 32, 35, .22);
  display: grid;
  gap: 14px;
  min-height: 72%;
  padding: clamp(22px, 4vw, 44px);
  transform: rotate(-1deg);
  width: min(62%, 420px);
}

.ppcm-product-preview__sheet strong {
  color: var(--ppcm-ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.ppcm-product-preview__bar,
.ppcm-product-preview__footer {
  background: var(--ppcm-primary);
  border-radius: 999px;
  display: block;
  height: 14px;
}

.ppcm-product-preview__line {
  background: var(--ppcm-line);
  border-radius: 999px;
  display: block;
  height: 12px;
  width: 68%;
}

.ppcm-product-preview__line--wide {
  width: 92%;
}

.ppcm-product-preview__image {
  background:
    linear-gradient(135deg, rgba(0, 140, 140, .18), rgba(239, 106, 91, .28)),
    var(--ppcm-soft);
  border-radius: 14px;
  display: block;
  min-height: 130px;
}

.ppcm-product-preview__footer {
  background: var(--ppcm-accent);
  height: 18px;
  margin-top: auto;
  width: 54%;
}

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

.ppcm-product-gallery-thumb {
  align-items: center;
  aspect-ratio: 1 / .72;
  background: var(--ppcm-soft);
  border: 1px solid transparent;
  border-radius: 10px;
  display: grid;
  justify-items: center;
  overflow: hidden;
  padding: 8px;
}

.ppcm-product-gallery-thumb.is-active {
  border-color: var(--ppcm-primary);
}

.ppcm-product-gallery-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ppcm-thumb-sheet,
.ppcm-thumb-stack,
.ppcm-thumb-fold,
.ppcm-thumb-grid {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 14px rgba(19, 32, 35, .14);
  display: block;
  height: 72%;
  position: relative;
  width: 54%;
}

.ppcm-thumb-sheet::before,
.ppcm-thumb-stack::before,
.ppcm-thumb-fold::before,
.ppcm-thumb-grid::before {
  background: var(--ppcm-primary);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 16%;
}

.ppcm-thumb-stack::after,
.ppcm-thumb-fold::after,
.ppcm-thumb-grid::after {
  background: var(--ppcm-accent);
  border-radius: 6px;
  bottom: 15%;
  content: "";
  left: 16%;
  position: absolute;
  right: 16%;
  top: 44%;
}

.ppcm-configurator {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.ppcm-configurator__header h2 {
  color: var(--ppcm-ink);
  font-family: "DM Sans", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
}

.ppcm-configurator__header p:last-child {
  color: var(--ppcm-muted);
  margin: 0;
}

.ppcm-price-panel {
  align-items: center;
  background: var(--ppcm-surface);
  border: 1px solid rgba(19, 32, 35, .06);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(19, 32, 35, .09);
  color: var(--ppcm-ink);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(170px, 1fr) auto minmax(180px, .9fr);
  padding: 16px 16px 16px 24px;
}

.ppcm-price-panel__amounts {
  display: grid;
  gap: 8px;
}

.ppcm-price-line {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ppcm-price-total {
  color: var(--ppcm-ink);
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.ppcm-price-compare {
  color: var(--ppcm-muted);
  font-size: 12px;
  opacity: .9;
}

.ppcm-price-compare[hidden],
.ppcm-price-discount[hidden] {
  display: none !important;
}

.ppcm-price-discount {
  background: #288f32;
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 5px;
}

.ppcm-price-meta {
  align-items: center;
  color: var(--ppcm-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
}

.ppcm-price-meta span + span {
  border-left: 1px solid var(--ppcm-line);
  padding-left: 8px;
}

.ppcm-pack-control {
  align-items: center;
  border-left: 1px solid var(--ppcm-line);
  display: flex;
  gap: 12px;
  min-height: 46px;
  padding-left: 24px;
}

.ppcm-pack-control span {
  color: var(--ppcm-ink);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.ppcm-pack-control select {
  background: var(--ppcm-surface);
  border: 1px solid #cfd8d6;
  border-radius: 5px;
  color: var(--ppcm-ink);
  font: inherit;
  min-height: 34px;
  min-width: 80px;
  padding: 4px 12px;
}

.ppcm-option-stack {
  display: grid;
  gap: 16px;
}

.ppcm-option-group {
  border: 0;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.ppcm-option-group legend {
  color: var(--ppcm-ink);
  font-weight: 500;
  padding: 0;
}

.ppcm-button-options {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.ppcm-option-button {
  align-items: center;
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  color: var(--ppcm-ink);
  display: flex;
  font-weight: 400;
  min-height: 48px;
  padding: 11px 12px;
}

.ppcm-option-button input {
  margin-right: 9px;
}

.ppcm-option-button.is-selected,
.ppcm-option-button:has(input:checked) {
  background: #e8fbf7;
  border-color: var(--ppcm-primary);
  box-shadow: inset 0 0 0 1px var(--ppcm-primary);
}

.ppcm-option-group select,
.ppcm-option-group textarea {
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  box-sizing: border-box;
  color: var(--ppcm-ink);
  font: inherit;
  min-height: 48px;
  padding: 10px 12px;
  width: 100%;
}

.ppcm-artwork-panel,
.ppcm-extra-block {
  background: var(--ppcm-soft);
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  padding: 14px;
}

.ppcm-upload-control {
  align-items: center;
  background: var(--ppcm-surface);
  border: 2px dashed color-mix(in srgb, var(--ppcm-primary) 70%, white);
  border-radius: var(--ppcm-radius);
  color: var(--ppcm-ink);
  display: grid;
  gap: 6px;
  justify-items: center;
  min-height: 132px;
  padding: 20px;
  text-align: center;
}

.ppcm-upload-control:hover,
.ppcm-upload-control:focus-within,
.ppcm-upload-control.is-dragover {
  background: color-mix(in srgb, var(--ppcm-primary) 8%, white);
  border-color: var(--ppcm-primary);
  color: var(--ppcm-primary-dark);
}

.ppcm-upload-control strong {
  font-size: 17px;
  font-weight: 900;
}

.ppcm-upload-control span {
  border: 1px solid var(--ppcm-line);
  border-radius: 999px;
  color: var(--ppcm-primary-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  min-height: 34px;
  padding: 7px 14px;
}

.ppcm-upload-control small,
.ppcm-upload-status,
.ppcm-extra-block span,
.ppcm-extra-block small {
  color: var(--ppcm-muted);
}

.ppcm-upload-input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.ppcm-upload-status {
  margin: 8px 0 0;
}

.ppcm-extra-block {
  display: grid;
  gap: 8px;
}

.ppcm-extra-block strong,
.ppcm-extra-block > label > span {
  color: var(--ppcm-ink);
  font-weight: 900;
}

.ppcm-extra-checkbox {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
}

.ppcm-extra-checkbox input {
  margin-top: 4px;
}

.ppcm-extra-checkbox span,
.ppcm-extra-select {
  display: grid;
  gap: 4px;
}

.ppcm-extra-block em {
  color: var(--ppcm-accent);
  font-style: normal;
  margin-left: 2px;
}

.ppcm-extra-select select {
  background: var(--ppcm-surface);
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  min-height: 44px;
  padding: 0 12px;
  width: 100%;
}

.ppcm-artwork-notes {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.ppcm-artwork-notes span {
  color: var(--ppcm-ink);
  font-size: 14px;
  font-weight: 900;
}

.ppcm-artwork-notes textarea {
  background: var(--ppcm-surface);
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  color: var(--ppcm-text);
  font: inherit;
  min-height: 96px;
  padding: 12px;
  resize: vertical;
  width: 100%;
}

.ppcm-artwork-notes textarea:focus {
  border-color: var(--ppcm-primary);
  outline: 2px solid color-mix(in srgb, var(--ppcm-primary) 18%, transparent);
  outline-offset: 2px;
}

.ppcm-action-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-top: 12px;
}

.ppcm-secondary-action {
  background: var(--ppcm-surface);
  border: 1px solid var(--ppcm-line);
  border-radius: var(--ppcm-radius);
  color: var(--ppcm-ink);
  font-weight: 900;
  min-height: 44px;
  padding: 0 12px;
}

.ppcm-secondary-action:hover,
.ppcm-secondary-action:focus {
  border-color: var(--ppcm-primary);
  color: var(--ppcm-primary-dark);
}

body.ppcm-configured-product.single-product .single_add_to_cart_button {
  background: var(--ppcm-accent) !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: #fff !important;
  font-weight: 700 !important;
  min-height: 44px;
  width: 100%;
}

body.ppcm-configured-product.single-product .single_add_to_cart_button:hover,
body.ppcm-configured-product.single-product .single_add_to_cart_button:focus {
  opacity: .92;
}

.ppcm-single-product .woocommerce-tabs {
  border-top: 1px solid var(--ppcm-line);
  clear: both;
  margin-top: 8px;
  padding-top: 28px;
}

.ppcm-single-product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--ppcm-line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.ppcm-single-product .woocommerce-tabs ul.tabs::before,
.ppcm-single-product .woocommerce-tabs ul.tabs::after {
  display: none !important;
}

.ppcm-single-product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ppcm-single-product .woocommerce-tabs ul.tabs li::before,
.ppcm-single-product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.ppcm-single-product .woocommerce-tabs ul.tabs a {
  border-bottom: 3px solid transparent;
  color: var(--ppcm-muted);
  display: inline-flex;
  font-weight: 900;
  min-height: 44px;
  padding: 12px 4px 9px;
  text-decoration: none;
}

.ppcm-single-product .woocommerce-tabs ul.tabs li.active a {
  border-color: var(--ppcm-primary);
  color: var(--ppcm-ink);
}

.ppcm-single-product .woocommerce-Tabs-panel {
  color: var(--ppcm-text);
  line-height: 1.7;
  max-width: 820px;
}

.ppcm-single-product .woocommerce-Tabs-panel h2 {
  color: var(--ppcm-ink);
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 0;
}

body.woocommerce-cart main,
body.woocommerce-cart .wp-site-blocks > main,
body.woocommerce-cart .entry-content {
  color: var(--ppcm-text);
  font-family: Inter, "Avenir Next", "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

body.woocommerce-cart main,
body.woocommerce-cart .wp-site-blocks > main {
  margin-inline: auto;
  max-width: 1240px;
  padding: 26px 16px 56px;
  width: min(100%, 1240px);
}

body.woocommerce-cart h1,
body.woocommerce-cart .entry-title {
  color: var(--ppcm-ink);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 24px;
}

body.woocommerce-cart .woocommerce {
  display: grid;
  gap: 26px;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals .cart_totals {
  background: var(--ppcm-surface);
  border: 1px solid var(--ppcm-line);
  border-radius: 10px;
  box-shadow: 0 14px 42px rgba(19, 32, 35, .07);
  overflow: hidden;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .woocommerce-cart-form *,
body.woocommerce-cart .cart-collaterals,
body.woocommerce-cart .cart-collaterals * {
  box-sizing: border-box;
}

body.woocommerce-cart table.shop_table {
  border: 0;
  border-collapse: collapse;
  margin: 0;
  width: 100%;
}

body.woocommerce-cart table.shop_table th {
  background: #f7fbfa;
  border: 0;
  border-bottom: 1px solid var(--ppcm-line);
  color: var(--ppcm-ink);
  font-size: 13px;
  font-weight: 800;
  padding: 14px 16px;
  text-transform: none;
}

body.woocommerce-cart table.shop_table td {
  border: 0;
  border-bottom: 1px solid var(--ppcm-line);
  color: var(--ppcm-text);
  padding: 18px 16px;
  vertical-align: middle;
}

body.woocommerce-cart table.shop_table tr:last-child td,
body.woocommerce-cart .cart_totals table.shop_table tr:last-child th,
body.woocommerce-cart .cart_totals table.shop_table tr:last-child td {
  border-bottom: 0;
}

body.woocommerce-cart .product-remove {
  width: 48px;
}

body.woocommerce-cart .product-remove a.remove {
  align-items: center;
  background: transparent;
  border-radius: 0;
  color: var(--ppcm-muted) !important;
  display: inline-flex;
  font-size: 0;
  font-weight: 800;
  height: auto;
  justify-content: center;
  text-decoration: none;
  width: auto;
}

body.woocommerce-cart .product-remove a.remove::before {
  content: "";
}

body.woocommerce-cart .product-remove a.remove::after {
  content: "Remove";
  font-size: 12px;
  line-height: 1;
}

body.woocommerce-cart .product-thumbnail {
  width: 118px;
}

body.woocommerce-cart .product-thumbnail img {
  background: var(--ppcm-soft);
  border-radius: 8px;
  display: block;
  height: 86px;
  object-fit: cover;
  width: 86px;
}

body.woocommerce-cart .product-name > a {
  color: var(--ppcm-ink);
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  text-decoration: none;
}

body.woocommerce-cart .product-name > a:hover,
body.woocommerce-cart .product-name > a:focus {
  color: var(--ppcm-ink);
}

body.woocommerce-cart dl.variation {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

body.woocommerce-cart dl.variation dt,
body.woocommerce-cart dl.variation dd {
  float: none;
  margin: 0;
}

body.woocommerce-cart dl.variation dt {
  display: none !important;
}

body.woocommerce-cart dl.variation dd {
  align-items: center;
  background: #eff6f4;
  border: 0;
  border-radius: 999px;
  color: #546765;
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  margin-left: 0;
  min-height: 28px;
  padding: 6px 9px;
}

body.woocommerce-cart dl.variation dd p,
body.woocommerce-cart dl.variation dd span {
  margin: 0;
}

body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal,
body.woocommerce-cart .cart_totals .amount {
  color: var(--ppcm-ink);
  font-weight: 800;
}

body.woocommerce-cart .quantity .qty {
  border: 1px solid var(--ppcm-line);
  border-radius: 6px;
  color: var(--ppcm-ink);
  font: inherit;
  min-height: 40px;
  text-align: center;
  width: 76px;
}

body.woocommerce-cart .actions {
  background: #fbfdfc;
}

body.woocommerce-cart .coupon {
  align-items: center;
  display: flex;
  gap: 10px;
}

body.woocommerce-cart .coupon input.input-text {
  border: 1px solid var(--ppcm-line);
  border-radius: 7px;
  color: var(--ppcm-ink);
  font: inherit;
  min-height: 46px;
  min-width: 220px;
  padding: 0 14px;
}

body.woocommerce-cart button.button,
body.woocommerce-cart a.button,
body.woocommerce-cart .checkout-button {
  align-items: center;
  border-radius: 7px !important;
  display: inline-flex !important;
  font-weight: 800 !important;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px !important;
  text-decoration: none !important;
}

body.woocommerce-cart .coupon button.button,
body.woocommerce-cart button[name="update_cart"] {
  background: var(--ppcm-soft) !important;
  border: 1px solid var(--ppcm-line) !important;
  color: var(--ppcm-ink) !important;
}

body.woocommerce-cart button[name="update_cart"]:disabled {
  cursor: not-allowed;
  opacity: .45;
}

body.woocommerce-cart .cart-collaterals {
  display: flex;
  justify-content: flex-end;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  max-width: 480px;
  padding: 0;
  width: min(100%, 480px);
}

body.woocommerce-cart .cart_totals h2 {
  background: #f7fbfa;
  border-bottom: 1px solid var(--ppcm-line);
  color: var(--ppcm-ink);
  font-size: 20px;
  margin: 0;
  padding: 18px 20px;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
  background: var(--ppcm-surface);
  padding: 16px 20px;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding: 18px 20px 20px;
}

body.woocommerce-cart .checkout-button {
  background: var(--ppcm-accent) !important;
  color: #fff !important;
  font-size: 16px !important;
  width: 100%;
}

body.woocommerce-cart .checkout-button:hover,
body.woocommerce-cart .checkout-button:focus {
  background: #dc594a !important;
}

*:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--ppcm-primary) 70%, white);
  outline-offset: 2px;
}

@media (min-width: 720px) {
  .ppcm-main-header {
    grid-template-columns: auto minmax(260px, 1fr) auto;
  }

  .ppcm-main-header > .ppcm-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .ppcm-main-header > .ppcm-search {
    grid-column: 2;
    grid-row: 1;
  }

  .ppcm-main-header > .ppcm-header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .ppcm-mega-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ppcm-action-row,
  .ppcm-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  body.woocommerce-cart main,
  body.woocommerce-cart .wp-site-blocks > main {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.woocommerce-cart table.shop_table thead {
    display: none;
  }

  body.woocommerce-cart table.shop_table,
  body.woocommerce-cart table.shop_table tbody,
  body.woocommerce-cart table.shop_table tr,
  body.woocommerce-cart table.shop_table td {
    display: block;
    width: 100%;
  }

  body.woocommerce-cart table.shop_table tr.cart_item {
    display: grid;
    align-items: start;
    gap: 10px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0;
    padding: 16px 14px;
    width: 100%;
  }

  body.woocommerce-cart table.shop_table tr.cart_item td {
    border-bottom: 0;
    padding: 0;
  }

  body.woocommerce-cart table.shop_table tr.cart_item td::before {
    display: none;
  }

  body.woocommerce-cart .product-remove {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 56px;
    text-align: right;
  }

  body.woocommerce-cart .product-thumbnail {
    display: none !important;
  }

  body.woocommerce-cart .product-name {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    text-align: left !important;
  }

  body.woocommerce-cart .product-price,
  body.woocommerce-cart .product-quantity,
  body.woocommerce-cart .product-subtotal {
    grid-column: 1 / -1;
    min-width: 0;
  }

  body.woocommerce-cart .product-name > a {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal !important;
    word-break: break-word;
  }

  body.woocommerce-cart .product-price::before,
  body.woocommerce-cart .product-subtotal::before {
    color: var(--ppcm-muted);
    content: attr(data-title) ": ";
    font-size: 12px;
    font-weight: 800;
    margin-right: 6px;
  }

  body.woocommerce-cart .product-quantity {
    align-items: center;
    display: flex !important;
    gap: 8px;
    justify-content: space-between;
  }

  body.woocommerce-cart .product-quantity::before {
    color: var(--ppcm-muted);
    content: attr(data-title) ": ";
    font-size: 12px;
    font-weight: 800;
  }

  body.woocommerce-cart dl.variation {
    gap: 6px;
  }

  body.woocommerce-cart dl.variation dt {
    display: none !important;
  }

  body.woocommerce-cart dl.variation dd {
    border: 0;
    border-radius: 999px;
    margin-left: 0;
    padding: 6px 9px;
  }

  body.woocommerce-cart .actions {
    display: grid !important;
    gap: 12px;
    padding: 14px !important;
  }

  body.woocommerce-cart .coupon {
    align-items: stretch;
    display: grid;
    gap: 10px;
  }

  body.woocommerce-cart .coupon input.input-text,
  body.woocommerce-cart .coupon button.button,
  body.woocommerce-cart button[name="update_cart"] {
    width: 100% !important;
  }

  body.woocommerce-cart .cart-collaterals {
    display: block;
  }

  .ppcm-side-cart__panel {
    border-radius: 18px 18px 0 0;
    bottom: 0;
    height: min(88dvh, 720px);
    margin-left: 0;
    max-width: 100vw;
    position: absolute;
    transform: translateY(104%);
    width: 100vw;
  }

  .ppcm-side-cart.is-open .ppcm-side-cart__panel {
    transform: translateY(0);
  }

  .ppcm-side-cart__header,
  .ppcm-side-cart__body,
  .ppcm-side-cart__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ppcm-side-cart__item {
    grid-template-columns: 64px 1fr;
  }

  .ppcm-side-cart__thumb {
    min-height: 64px;
  }

  .ppcm-side-cart__thumb img {
    max-height: 64px;
  }

  .ppcm-price-panel {
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .ppcm-pack-control {
    border-left: 0;
    border-top: 1px solid var(--ppcm-line);
    justify-content: space-between;
    padding-left: 0;
    padding-top: 12px;
  }
}

@media (min-width: 980px) {
  .ppcm-menu-toggle {
    display: inline-flex;
    width: auto;
  }

  .ppcm-mega-panel {
    background: var(--ppcm-surface);
    border: 1px solid var(--ppcm-line);
    border-radius: var(--ppcm-radius);
    box-shadow: var(--ppcm-shadow);
    left: 0;
    max-height: min(70vh, 440px);
    overflow: auto;
    padding: 16px;
    position: absolute;
    right: 0;
    top: calc(100% - 1px);
    z-index: 60;
  }

  .ppcm-site-header.is-menu-open .ppcm-mega-panel {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ppcm-site-header.is-menu-open.is-menu-filtered .ppcm-mega-panel {
    grid-template-columns: minmax(240px, 340px);
  }

  .ppcm-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  }

  .ppcm-single-product__layout {
    grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
  }

  .ppcm-single-product .summary {
    position: sticky;
    top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
