/*
Theme Name: PARTH WooCommerce
Theme URI: https://parthpower.co.uk/
Author: PARTH
Description: Light WooCommerce storefront for PARTH extension leads.
Version: 1.0.0
Text Domain: parth-wc
*/

:root {
  --page: #fbfbf8;
  --surface: #ffffff;
  --surface-soft: #f3f5f2;
  --ink: #111111;
  --muted: #626a75;
  --faint: #9098a4;
  --line: #e4e8ee;
  --blue: #1769ff;
  --blue-soft: rgba(23, 105, 255, 0.11);
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.09);
  --radius: 20px;
  --wrap: min(1180px, calc(100vw - 40px));
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --blue-glow: 0 18px 44px rgba(23, 105, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.home {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: rgba(251, 251, 248, 0.74);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 251, 248, 0.96);
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a,
.header-action,
.mobile-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #3f4650;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.header-action:hover,
.mobile-toggle:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

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

.cart-pill {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.cart-pill span {
  min-width: 21px;
  height: 21px;
  margin-left: 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
}

.hero {
  min-height: clamp(640px, calc(100vh - 72px), 860px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 78px max(20px, calc((100vw - 1180px) / 2)) 54px;
  background:
    radial-gradient(ellipse 42% 52% at 82% 42%, rgba(23, 105, 255, 0.18), transparent 68%),
    radial-gradient(ellipse 52% 36% at 20% 6%, rgba(255, 255, 255, 0.88), transparent 70%),
    linear-gradient(180deg, #fbfbf8 0%, #f4f6f2 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12vw -18vw auto;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 105, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  pointer-events: none;
}

.hero-number {
  position: absolute;
  right: clamp(-18px, -1vw, 8px);
  bottom: -54px;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 24, 39, 0.08);
  font-size: clamp(150px, 23vw, 340px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-head h2,
.product-summary h1,
.entry-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 6.9vw, 98px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 span,
.section-head h2 span {
  color: var(--blue);
}

.hero-copy {
  max-width: 520px;
}

.hero-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button-primary,
.button-secondary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wp-block-button__link,
.single_add_to_cart_button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  border: 1px solid var(--ink) !important;
  background: var(--ink) !important;
  color: #fff !important;
  padding: 0 24px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  transition: transform 220ms var(--motion-ease), background 180ms ease, border-color 180ms ease, box-shadow 220ms var(--motion-ease);
}

.button-primary::after,
.button-secondary::after,
.woocommerce a.button::after,
.woocommerce button.button::after,
.woocommerce input.button::after,
.woocommerce #respond input#submit::after,
.wp-block-button__link::after,
.single_add_to_cart_button::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px -46%;
  z-index: -1;
  width: 38%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg) translateX(0);
  opacity: 0;
  pointer-events: none;
}

.button-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.wp-block-button__link:hover,
.single_add_to_cart_button:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  box-shadow: var(--blue-glow);
  transform: translateY(-2px);
}

.button-primary:hover::after,
.button-secondary:hover::after,
.woocommerce a.button:hover::after,
.woocommerce button.button:hover::after,
.woocommerce input.button:hover::after,
.woocommerce #respond input#submit:hover::after,
.wp-block-button__link:hover::after,
.single_add_to_cart_button:hover::after {
  opacity: 1;
  animation: parthButtonSheen 680ms var(--motion-ease) both;
}

@keyframes parthButtonSheen {
  from { transform: skewX(-18deg) translateX(0); }
  to { transform: skewX(-18deg) translateX(420%); }
}
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76) !important;
  border-color: rgba(17, 17, 17, 0.13) !important;
  color: var(--ink) !important;
}

.button-secondary:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #fff !important;
}

.hero-media {
  min-height: 510px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 11% 5% 7%;
  border: 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at 50% 54%, rgba(23, 105, 255, 0.16), rgba(23, 105, 255, 0.06) 42%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  transition: opacity 460ms var(--motion-ease), transform 600ms var(--motion-ease), filter 460ms var(--motion-ease);
}

.hero-media img {
  position: relative;
  z-index: 1;
  max-height: min(68vh, 620px);
  object-fit: contain;
  filter: drop-shadow(0 32px 54px rgba(17, 24, 39, 0.18));
  transform: translateY(4px);
  animation: productFloat 8.8s ease-in-out infinite;
  transition: transform 520ms var(--motion-ease), filter 520ms var(--motion-ease);
  will-change: transform;
}

.hero-media:hover::before {
  opacity: 1;
  filter: blur(13px);
  transform: scale(1.06);
}

.hero-media:hover img {
  filter: drop-shadow(0 34px 58px rgba(17, 24, 39, 0.18)) drop-shadow(0 0 26px rgba(23, 105, 255, 0.16));
}

@keyframes productFloat {
  0%, 100% { transform: translateY(5px) rotate(-0.25deg); }
  50% { transform: translateY(-14px) rotate(0.35deg); }
}

.hero-media picture,
.split-card picture,
.product-card-media picture,
.floating-card-img picture,
.static-hero-visual picture,
.static-gallery-card picture,
.static-safety-image picture,
.static-spec-hero picture,
.catalog-product-media picture,
.entry-content figure picture {
  display: contents;
}

.trust-strip,
.marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.marquee {
  padding: 17px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: max-content;
}

.marquee span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.marquee em {
  padding: 0 24px 0 8px;
  color: var(--faint);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

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

.trust-track {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.trust-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px var(--blue-soft);
}

.section {
  padding: 92px max(20px, calc((100vw - 1180px) / 2));
}

.split-section {
  min-height: clamp(620px, 86vh, 780px);
  display: grid;
  align-items: center;
}

.section-soft {
  background: var(--surface-soft);
}

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

.section-head h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.split-card {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.split-card::before {
  content: "";
  position: absolute;
  inset: 8% 2% 4%;
  border: 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at 50% 52%, rgba(23, 105, 255, 0.13), rgba(23, 105, 255, 0.045) 44%, transparent 74%);
  filter: blur(18px);
  pointer-events: none;
}

.product-stage img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 28px 48px rgba(17, 24, 39, 0.16));
  animation: productStageFloat 9.2s ease-in-out infinite;
}

.split-card img {
  max-height: 440px;
  object-fit: contain;
}

.split-grid-reverse .product-stage img {
  animation-delay: -3.2s;
}

.dark-product-stage {
  background: transparent;
}

.dark-product-stage::before {
  background: radial-gradient(ellipse at 50% 52%, rgba(23, 105, 255, 0.16), rgba(23, 105, 255, 0.055) 44%, transparent 74%);
}

@keyframes productStageFloat {
  0%, 100% { transform: translateY(6px) rotate(-0.2deg); }
  50% { transform: translateY(-12px) rotate(0.25deg); }
}

.copy-panel {
  padding: 8px 0;
}

.copy-panel h2 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.copy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: #2f363f;
  font-size: 14px;
  font-weight: 800;
  transition: transform 260ms var(--motion-ease), border-color 260ms ease, box-shadow 260ms var(--motion-ease), background 260ms ease;
}

.feature-row:hover {
  transform: translateX(4px);
  border-color: rgba(23, 105, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.075);
}

.feature-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 16px;
}

.product-grid,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product-card,
.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.07);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 105, 255, 0.3);
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.11);
}

.product-card-media,
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  background:
    radial-gradient(ellipse 62% 72% at 50% 44%, rgba(23,105,255,0.12), transparent 70%),
    linear-gradient(155deg, #f0f5ff, #ffffff);
  object-fit: contain;
}

.product-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.product-card-media img,
.woocommerce ul.products li.product a img {
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-media img,
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.055);
}

.product-card-body,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.product-card-body {
  padding: 20px;
}

.product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 8px !important;
  color: var(--ink);
  font-size: 18px !important;
  line-height: 1.22;
  font-weight: 900;
}

.product-card p {
  min-height: 44px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--ink) !important;
  font-size: 21px !important;
  font-weight: 900 !important;
}

.mini-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 900;
}

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

.stat-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.88) 100%);
  text-align: center;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
  transition: transform 320ms var(--motion-ease), border-color 320ms var(--motion-ease), box-shadow 320ms var(--motion-ease);
}

.stat-card::before,
.stat-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.stat-card::before {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 18%, rgba(23, 105, 255, 0.16), transparent 44%),
    linear-gradient(135deg, rgba(23, 105, 255, 0.09), transparent 58%);
  opacity: 0;
  transition: opacity 320ms var(--motion-ease);
}

.stat-card::after {
  top: 0;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(23, 105, 255, 0.88), transparent);
  opacity: 0.42;
  transform: translateX(-22%);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 105, 255, 0.24);
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.08), var(--blue-glow);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 10px 28px rgba(23, 105, 255, 0.12);
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.stat-card p {
  max-width: 210px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.stats-grid.is-visible .stat-card {
  animation: statCardIn 720ms var(--motion-ease) both;
}

.stats-grid.is-visible .stat-card:nth-child(2) {
  animation-delay: 90ms;
}

.stats-grid.is-visible .stat-card:nth-child(3) {
  animation-delay: 180ms;
}

.stats-grid.is-visible .stat-card:nth-child(4) {
  animation-delay: 270ms;
}

.stats-grid.is-visible .stat-card strong {
  animation: statNumberGlow 2600ms ease-in-out infinite;
}

.stats-grid.is-visible .stat-card:nth-child(2) strong {
  animation-delay: 260ms;
}

.stats-grid.is-visible .stat-card:nth-child(3) strong {
  animation-delay: 520ms;
}

.stats-grid.is-visible .stat-card:nth-child(4) strong {
  animation-delay: 780ms;
}

@keyframes statCardIn {
  from {
    opacity: 0;
    translate: 0 22px;
    scale: 0.97;
  }
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes statNumberGlow {
  0%,
  100% {
    text-shadow: 0 10px 28px rgba(23, 105, 255, 0.12);
  }
  48% {
    text-shadow: 0 10px 32px rgba(23, 105, 255, 0.32), 0 0 12px rgba(23, 105, 255, 0.18);
  }
}

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

.review-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 105, 255, 0.28);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.1);
}

.stars {
  color: #e7a400;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
}

.review-card p {
  margin: 16px 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.review-card strong {
  color: var(--ink);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 46% 100% at 88% 50%, rgba(23, 105, 255, 0.16), transparent 70%),
    linear-gradient(150deg, #fff 0%, #f7faff 100%);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
  font-weight: 900;
}

.cta-panel h2 span {
  color: var(--blue);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: var(--page);
  color: var(--ink);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.loader-bar {
  width: 124px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.loader-bar::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  animation: loaderBar 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loaderBar {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99998;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, border-color 160ms ease, background 160ms ease;
  mix-blend-mode: multiply;
}

.cursor.hover {
  width: 44px;
  height: 44px;
  border-color: rgba(17, 17, 17, 0.34);
  background: rgba(23, 105, 255, 0.06);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-indicator span {
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.16);
}

.scroll-indicator span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

.product-floating {
  position: fixed;
  left: 50%;
  bottom: max(6px, env(safe-area-inset-bottom));
  z-index: 900;
  width: min(900px, calc(100vw - 72px));
  transform: translate(-50%, 22px);
  opacity: 0;
  pointer-events: none;
  isolation: isolate;
  transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
}

.product-floating.is-visible {
  opacity: 0.94;
  pointer-events: auto;
  transform: translate(-50%, 0);
  animation: productFloatingBreathe 8.5s ease-in-out infinite;
}

@keyframes productFloatingBreathe {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -4px);
  }
}

.floating-cards {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(4px, 0.8vw, 11px);
  padding: 8px 10px 4px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse 78% 54% at 50% 100%, rgba(23, 105, 255, 0.08), transparent 72%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 24%, rgba(255, 255, 255, 0.3) 76%, transparent 100%);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.floating-cards::-webkit-scrollbar {
  display: none;
}

.floating-card {
  --base-y: 0px;
  --tilt: 0deg;
  --item-scale: 1;
  --hover-scale: 1.08;
  --img-w: 112px;
  --img-h: 84px;
  flex: 0 0 clamp(104px, 10.2vw, 126px);
  min-width: 0;
  min-height: 112px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 4px;
  padding: 2px 4px 6px;
  border: 1px solid transparent;
  border-radius: 999px 999px 22px 22px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  translate: 0 var(--base-y);
  transform: rotate(var(--tilt)) scale(var(--item-scale));
  transform-origin: 50% 82%;
  animation: floatingCardDrift 8.4s ease-in-out infinite;
  transition: transform 280ms var(--motion-ease), border-color 240ms var(--motion-ease), background 240ms var(--motion-ease), box-shadow 240ms var(--motion-ease);
}

.floating-card::before,
.floating-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease, transform 420ms ease;
}

.floating-card::before {
  inset: auto auto 17px 50%;
  width: 74%;
  height: 36px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 60%, rgba(23, 105, 255, 0.32), rgba(23, 105, 255, 0.11) 44%, transparent 76%);
  filter: blur(13px);
  opacity: 0.2;
  transform: translateX(-50%) scale(0.78);
}

.floating-card::after {
  top: 14px;
  right: auto;
  bottom: 24px;
  width: 34%;
  left: -48%;
  border-radius: 999px;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.82) 50%, rgba(23, 105, 255, 0.16) 62%, transparent 100%);
  transform: skewX(-18deg);
}

.floating-card:hover {
  transform: translateY(-8px) rotate(0deg) scale(var(--hover-scale));
  border-color: transparent;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 40px rgba(23, 105, 255, 0.12);
}

.floating-card:hover::before {
  opacity: 0.95;
  transform: translateX(-50%) scale(1.12);
}

.floating-card:hover::after {
  opacity: 1;
  transform: translateX(320%) skewX(-18deg);
}

.floating-card:nth-child(1) {
  --base-y: 10px;
  --tilt: -2.5deg;
  --item-scale: 0.92;
  --hover-scale: 1.02;
  --img-w: 104px;
  --img-h: 80px;
  animation-delay: -0.4s;
}

.floating-card:nth-child(2) {
  --base-y: -1px;
  --tilt: 1.7deg;
  --item-scale: 0.98;
  --hover-scale: 1.08;
  --img-w: 112px;
  --img-h: 86px;
  animation-delay: -1.5s;
}

.floating-card:nth-child(3) {
  --base-y: 7px;
  --tilt: -1.8deg;
  --item-scale: 1.05;
  --hover-scale: 1.14;
  --img-w: 124px;
  --img-h: 92px;
  animation-delay: -2.6s;
}

.floating-card:nth-child(4) {
  --base-y: -5px;
  --tilt: 2.2deg;
  --item-scale: 1.02;
  --hover-scale: 1.11;
  --img-w: 118px;
  --img-h: 90px;
  animation-delay: -3.7s;
}

.floating-card:nth-child(5) {
  --base-y: 9px;
  --tilt: -1.4deg;
  --item-scale: 0.96;
  --hover-scale: 1.06;
  --img-w: 112px;
  --img-h: 86px;
  animation-delay: -4.8s;
}

.floating-card:nth-child(6) {
  --base-y: 1px;
  --tilt: 1.9deg;
  --item-scale: 0.94;
  --hover-scale: 1.04;
  --img-w: 108px;
  --img-h: 84px;
  animation-delay: -5.9s;
}

.floating-card-img {
  width: var(--img-w);
  height: var(--img-h);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: transparent;
  overflow: visible;
  filter: drop-shadow(0 15px 20px rgba(17, 24, 39, 0.12));
  transition: transform 260ms var(--motion-ease), filter 260ms var(--motion-ease);
}

.floating-card-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: 50% 82%;
  transition: transform 260ms var(--motion-ease);
}

.floating-card:hover .floating-card-img {
  filter: drop-shadow(0 18px 28px rgba(23, 105, 255, 0.22));
  transform: translateY(-3px);
}

.floating-card:hover .floating-card-img img {
  transform: scale(1.06);
}

.floating-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  max-width: 100%;
  text-align: center;
}

.floating-card-name {
  display: none;
}

.floating-card-sub {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  transition: color 220ms var(--motion-ease), background 220ms var(--motion-ease), border-color 220ms var(--motion-ease), box-shadow 220ms var(--motion-ease), transform 220ms var(--motion-ease);
}

.floating-card:hover .floating-card-sub {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(23, 105, 255, 0.24);
  transform: translateY(-1px);
}

@keyframes floatingCardDrift {
  0%,
  100% {
    translate: 0 var(--base-y);
  }
  50% {
    translate: 0 calc(var(--base-y) - 5px);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .product-floating {
    width: min(820px, calc(100vw - 54px));
  }

  .floating-cards {
    gap: 3px;
    padding-inline: 8px;
  }

  .floating-card {
    flex-basis: clamp(94px, 12.5vw, 118px);
    min-height: 106px;
    padding-inline: 5px;
  }

  .floating-card-img {
    width: calc(var(--img-w) * 0.86);
    height: calc(var(--img-h) * 0.86);
  }

  .floating-card-sub {
    min-height: 23px;
    padding-inline: 9px;
    font-size: 11px;
  }
}

.product-floating .floating-card {
  --base-y: 0px;
  --tilt: 0deg;
  --item-scale: 1;
  --hover-scale: 1;
  flex-basis: clamp(112px, 10.5vw, 132px);
  min-height: 126px;
  transform: none !important;
  translate: 0 0 !important;
  animation: none !important;
  transition: none;
}

.product-floating .floating-card:nth-child(n) {
  --base-y: 0px;
  --tilt: 0deg;
  --item-scale: 1;
  --hover-scale: 1;
  --img-w: 124px;
  --img-h: 94px;
  animation-delay: 0s;
}

.product-floating .floating-card:nth-child(n + 4) {
  --img-w: 92px;
  --img-h: 104px;
}

.product-floating .floating-card::before,
.product-floating .floating-card::after {
  display: none;
}

.product-floating .floating-card:hover {
  transform: none !important;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.product-floating .floating-card-img {
  width: var(--img-w);
  height: var(--img-h);
  overflow: visible;
  filter: none;
  transition: none;
}

.product-floating .floating-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none !important;
  transition: none;
}

.product-floating .floating-card:hover .floating-card-img,
.product-floating .floating-card:hover .floating-card-img img {
  filter: none;
  transform: none !important;
}

.product-floating .floating-card:hover .floating-card-sub {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(17, 24, 39, 0.08);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.cta-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 64px max(20px, calc((100vw - 1180px) / 2)) 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.footer-grid p,
.footer-bottom,
.footer-col a,
.footer-email-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-email-text {
  display: inline-block;
  user-select: text;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin: 0 0 10px;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.page-hero,
.store-hero {
  padding: 72px max(20px, calc((100vw - 1180px) / 2)) 38px;
  background: linear-gradient(180deg, #fbfbf8, #f4f6f2);
}

.page-hero p,
.store-hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.content-shell,
.woocommerce-page-shell {
  width: var(--wrap);
  margin: 0 auto;
  padding: 50px 0 84px;
}

.page-content {
  max-width: 860px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.06);
}

.page-content p,
.page-content li {
  color: var(--muted);
  line-height: 1.75;
}

.woocommerce-notices-wrapper {
  width: var(--wrap);
  margin: 18px auto 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--blue) !important;
  border-radius: 16px;
  background: #fff !important;
  color: var(--ink) !important;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
}

.store-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin: 0 !important;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce input.qty {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
}

.product-page {
  width: 100%;
  padding: 54px max(20px, calc((100vw - 1180px) / 2)) 92px;
  background:
    radial-gradient(circle at 24% 14%, rgba(23, 105, 255, 0.08), transparent 34%),
    radial-gradient(circle at 78% 6%, rgba(23, 105, 255, 0.045), transparent 28%),
    linear-gradient(180deg, #fbfbf8 0%, #f7f8f5 100%);
}

.parth-single-product {
  width: 100%;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.product-media-panel {
  position: sticky;
  top: 96px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

.parth-product-main-image {
  min-height: clamp(420px, 55vw, 650px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.parth-product-main-image::before {
  content: "";
  position: absolute;
  inset: 10% 5% 6%;
  border-radius: 999px;
  background: radial-gradient(ellipse at 50% 54%, rgba(23, 105, 255, 0.16), rgba(23, 105, 255, 0.055) 44%, transparent 74%);
  filter: blur(20px);
  pointer-events: none;
}

.parth-product-main-image img,
.parth-product-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  max-height: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 54px rgba(17, 24, 39, 0.18));
  animation: productStageFloat 9.2s ease-in-out infinite;
}

.product-page .parth-product-gallery img {
  display: block;
  float: none !important;
}

.parth-product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}

.parth-product-thumb {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.parth-product-thumb:hover,
.parth-product-thumb.is-active {
  border-color: rgba(23, 105, 255, 0.62);
  box-shadow: 0 12px 28px rgba(23, 105, 255, 0.12);
  transform: translateY(-2px);
}

.parth-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary-panel {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: clamp(26px, 4vw, 46px);
}

.product-summary h1 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.product-summary .price {
  margin: 18px 0 18px;
  font-size: 26px;
}

.woocommerce-product-details__short-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.product-trust span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: #f5f7f2;
  color: #343b44;
  font-size: 13px;
  font-weight: 800;
}

.product-trust b {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
}

.product-page.woocommerce div.product form.cart {
  display: flex !important;
  gap: 12px;
  align-items: stretch;
  margin: 0 !important;
}

.product-page.woocommerce div.product form.cart div.quantity {
  width: 104px !important;
  flex: 0 0 104px;
  float: none !important;
  margin: 0 !important;
}

.product-page.woocommerce div.product form.cart .quantity .qty,
.woocommerce input.qty {
  width: 100%;
  min-height: 52px;
  text-align: center;
}

.product-page .woocommerce-notices-wrapper {
  max-width: var(--wrap);
  margin: 0 auto 22px;
}

.product-page .woocommerce-message,
.product-page .woocommerce-info,
.product-page .woocommerce-error {
  margin-bottom: 14px !important;
}

.product-page .single_add_to_cart_button {
  width: auto !important;
  flex: 1 1 auto;
  float: none !important;
  min-height: 52px;
}

.product_meta {
  display: none;
}

.product-detail-section {
  margin-top: 42px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  border-radius: 0;
  padding: clamp(26px, 4vw, 42px);
}

.product-detail-section h2,
.product-detail-section h3 {
  color: var(--ink);
}

.product-detail-section p,
.product-detail-section li {
  color: var(--muted);
  line-height: 1.75;
}

.related.products {
  margin-top: 58px;
}

.related.products h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
}

.related.products ul.products {
  gap: 18px;
}

.related.products ul.products li.product {
  min-height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.055);
}

.related.products ul.products li.product a img {
  height: 180px;
  aspect-ratio: auto;
}

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

.related.products ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px !important;
}

.related.products ul.products li.product .button {
  min-height: 40px;
  margin-bottom: 16px !important;
}

.static-product-page {
  --static-paper: #fbfbf8;
  --static-soft: #f5f6f8;
  --static-line: #e8eaee;
  --static-glass: rgba(255, 255, 255, 0.94);
  --static-glass-line: rgba(178, 187, 199, 0.28);
  --static-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
  --static-radius: 24px;
  background: var(--static-paper);
  color: var(--ink);
  overflow: hidden;
}

.static-product-page .woocommerce-notices-wrapper {
  width: var(--wrap);
  margin: 18px auto 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wc-block-components-notice-banner {
  animation: parthNoticeIn 420ms var(--motion-ease) both;
}

@keyframes parthNoticeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.static-product-hero {
  position: relative;
  padding: 34px max(20px, calc((100vw - 1120px) / 2)) 40px;
  background:
    radial-gradient(ellipse 38% 44% at 70% 58%, rgba(23, 105, 255, 0.12), transparent 72%),
    linear-gradient(180deg, #fbfbf8 0%, #f7f8f5 58%, #fbfbf8 100%);
  overflow: hidden;
}

.static-product-hero::before,
.static-product-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

.static-product-hero::before {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  background: radial-gradient(circle, rgba(23, 105, 255, 0.15), transparent 70%);
}

.static-product-hero::after {
  width: 250px;
  height: 250px;
  right: -3%;
  bottom: 20%;
  background: radial-gradient(circle, rgba(10, 124, 87, 0.12), transparent 70%);
  animation-delay: -4s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.static-hero-inner,
.static-section-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.static-hero-inner {
  display: grid;
  gap: 18px;
}

.static-hero-content {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.static-hero-title {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(90deg, #111 40%, #1769ff 50%, #111 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: staticTitleGlow 4s linear infinite;
}

@keyframes staticTitleGlow {
  to { background-position: 200% center; }
}

.static-hero-tagline {
  margin: 8px 0 0;
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 700;
  line-height: 1.2;
}

.static-hero-copy {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.static-uk-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.static-uk-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #333a43;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.static-hero-showcase {
  display: grid;
  grid-template-columns: minmax(330px, 390px) minmax(450px, 1fr);
  gap: 30px;
  align-items: start;
}

.static-purchase-panel,
.static-hero-visual,
.static-gallery-card,
.static-safety-image,
.static-spec-hero {
  border: 1px solid var(--static-glass-line);
  border-radius: var(--static-radius);
  background: var(--static-glass);
  box-shadow: var(--static-shadow);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.static-purchase-panel {
  position: relative;
  isolation: isolate;
  height: auto;
  padding: 20px;
  border-color: rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
  transition: transform 320ms var(--motion-ease), box-shadow 320ms var(--motion-ease), border-color 320ms ease;
}

.static-purchase-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 70% 38% at 50% 0%, rgba(23, 105, 255, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78));
  opacity: 0;
  transition: opacity 320ms var(--motion-ease);
  pointer-events: none;
}

.static-purchase-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 105, 255, 0.2);
  box-shadow: 0 22px 58px rgba(31, 41, 55, 0.1);
}

.static-purchase-panel:hover::before {
  opacity: 1;
}

.static-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--static-line);
}

.static-price {
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.static-price .amount {
  color: var(--ink);
}

.static-price-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.static-stock {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(8, 116, 67, 0.16);
  border-radius: 999px;
  background: rgba(8, 116, 67, 0.08);
  color: #087443;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.static-selection-name {
  margin-top: 12px;
  color: #4d535b;
  font-size: 13px;
  line-height: 1.35;
}

.static-selection-name strong {
  color: #111;
  font-weight: 900;
}

.static-variant-groups {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--static-line);
}

.static-variant-group label {
  display: block;
  margin-bottom: 7px;
  color: #4d535b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.static-variant-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.static-variant-option {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 12px;
  background: #fff;
  color: #111;
  text-align: center;
  transition: border-color 220ms ease, transform 220ms var(--motion-ease), box-shadow 220ms var(--motion-ease), background 220ms ease;
}

.static-variant-option:hover {
  border-color: #1f65ad;
  transform: translateY(-1px);
}

.static-variant-option.is-selected {
  border-color: #1f65ad;
  background: #f8fbff;
  box-shadow: inset 0 0 0 1px #1f65ad;
}

.static-variant-option strong {
  font-size: 13px;
  line-height: 1.1;
}

.static-purchase-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--static-line);
}

.static-purchase-specs div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  padding: 9px 11px;
  border-radius: 12px;
  background: #f6f8fb;
}

.static-purchase-specs dt,
.static-purchase-specs dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.static-purchase-specs dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.static-purchase-specs dd {
  color: #1f2832;
  font-weight: 900;
}

.static-purchase-panel form.cart {
  width: 100%;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 12px;
  margin: 14px 0 0 !important;
}

.static-purchase-panel form.cart div.quantity {
  position: relative;
  width: 90px !important;
  flex: 0 0 90px !important;
  min-height: 54px;
  float: none !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.13);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.static-purchase-panel form.cart .quantity .qty {
  width: 100% !important;
  min-height: 54px;
  padding: 0 28px 0 14px !important;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 54px;
  appearance: textfield;
  -moz-appearance: textfield;
  transition: transform 170ms var(--motion-ease), color 170ms ease;
}

.static-purchase-panel form.cart .quantity .parth-quantity-controls {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 18px;
  height: 38px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  border-radius: 999px;
  background: #f3f7ff;
  box-shadow: inset 0 0 0 1px rgba(23, 105, 255, 0.1);
}

.static-purchase-panel form.cart .quantity .parth-quantity-step {
  width: 18px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6a7584;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}

.static-purchase-panel form.cart .quantity .parth-quantity-step:hover {
  background: var(--blue);
  color: #fff;
}

.static-purchase-panel form.cart .quantity .parth-quantity-step span {
  transform: translateY(1px);
}

.static-purchase-panel form.cart .quantity .parth-quantity-step-up span {
  transform: translateY(3px);
}

.static-purchase-panel form.cart .quantity .parth-quantity-step-down span {
  transform: translateY(-3px);
}

.static-purchase-panel form.cart .quantity .qty::-webkit-outer-spin-button,
.static-purchase-panel form.cart .quantity .qty::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.static-product-page.woocommerce .static-purchase-panel form.cart .single_add_to_cart_button,
.static-product-page.woocommerce .static-purchase-panel form.cart button.single_add_to_cart_button,
.static-product-page.woocommerce .static-purchase-panel form.cart button.button.single_add_to_cart_button {
  width: auto !important;
  flex: 1 1 auto !important;
  float: none !important;
  margin: 0 !important;
  min-height: 54px;
  border-radius: 999px !important;
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(23, 105, 255, 0.22);
  font-size: 14px !important;
  position: relative;
  overflow: hidden;
}

.static-product-page.woocommerce .static-purchase-panel form.cart .single_add_to_cart_button:hover,
.static-product-page.woocommerce .static-purchase-panel form.cart button.single_add_to_cart_button:hover,
.static-product-page.woocommerce .static-purchase-panel form.cart button.button.single_add_to_cart_button:hover {
  background: #111 !important;
  border-color: #111 !important;
  transform: translateY(-1px);
}

.static-purchase-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.static-purchase-notes span {
  min-height: 50px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 9px 12px;
  border: 1px solid var(--static-line);
  border-radius: 14px;
  background: #f8fafc;
  color: #4d535b;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
}

.static-purchase-notes strong {
  color: #4d535b;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
}

.static-purchase-notes small {
  color: #66717f;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
}

.static-hero-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.static-hero-visual::before {
  content: "";
  position: absolute;
  width: min(70%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 105, 255, 0.16), rgba(23, 105, 255, 0.07) 36%, transparent 68%);
  filter: blur(12px);
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 440ms var(--motion-ease), transform 520ms var(--motion-ease), filter 440ms var(--motion-ease);
}

.static-hero-product {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 480px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 28px 34px rgba(17, 17, 17, 0.12));
  animation: staticProductFloat 4s ease-in-out infinite;
  transition: filter 420ms var(--motion-ease);
  will-change: transform;
}

.static-hero-visual:hover::before {
  opacity: 0.98;
  filter: blur(8px);
  transform: scale(1.08);
}

.static-hero-visual:hover .static-hero-product {
  filter: drop-shadow(0 28px 34px rgba(17, 17, 17, 0.12)) drop-shadow(0 0 26px rgba(23, 105, 255, 0.18));
}

@keyframes staticProductFloat {
  0%, 100% { transform: translateY(8px); }
  50% { transform: translateY(-8px); }
}

.static-gallery-strip,
.static-specs {
  padding: 72px max(20px, calc((100vw - 1180px) / 2));
  background: #fff;
}

.static-safety-band {
  position: relative;
  padding: 96px max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: #f1f3f5;
}

.static-safety-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#dfe3e8 1px, transparent 1px), linear-gradient(90deg, #dfe3e8 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.42;
  pointer-events: none;
}

.static-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--static-line);
  color: #4d535b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.static-section-label span:last-child {
  color: var(--blue);
}

.static-section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.static-gallery-strip .static-section-heading {
  max-width: 1100px;
}

.static-gallery-strip .static-section-heading h2 {
  white-space: nowrap;
  font-size: clamp(34px, 3.55vw, 44px);
}

.static-section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.static-section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.static-gallery-card {
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  transition: transform 400ms ease, box-shadow 400ms ease, border-color 400ms ease;
}

.static-gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 32px 80px rgba(31, 41, 55, 0.16);
}

.static-gallery-card img {
  width: min(88%, 360px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 500ms ease;
}

.static-gallery-card:hover img {
  transform: scale(1.055);
}

.static-gallery-card figcaption {
  align-self: end;
  width: 100%;
  padding: 16px 4px 0;
}

.static-gallery-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
}

.static-gallery-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.static-safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  gap: 56px;
  align-items: center;
}

.static-safety-image {
  margin: 0;
  padding: 14px;
}

.static-safety-image img,
.static-spec-hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--static-radius) - 8px);
  background: #fff;
}

.static-safety-copy {
  display: grid;
}

.static-safety-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.static-safety-copy h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
}

.static-safety-subhead {
  margin: 12px 0 30px;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}

.static-safety-copy h2.static-safety-subhead {
  margin: 12px 0 30px;
  max-width: none;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}

.static-safety-title {
  margin: 8px 0 30px;
  max-width: 520px;
  color: var(--blue);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.06;
  font-weight: 900;
}

.static-safety-copy h2.static-safety-title {
  margin: 8px 0 30px;
  max-width: 520px;
  color: var(--blue);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.06;
  font-weight: 900;
}

.static-safety-line {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid #d1d6dd;
  counter-increment: safety;
}

.static-safety-line:last-child {
  border-bottom: 1px solid #d1d6dd;
}

.static-safety-line::before {
  content: "0" counter(safety);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.static-safety-copy {
  counter-reset: safety;
}

.static-safety-line h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.14;
}

.static-safety-line p {
  margin: 0;
  color: #535b66;
  font-size: 16px;
  line-height: 1.55;
}

.static-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.static-spec-hero {
  margin: 0;
  overflow: hidden;
}

.static-spec-hero img {
  padding: 16px;
}

.static-spec-hero figcaption {
  padding: 14px 18px 18px;
}

.static-spec-hero strong {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.static-spec-hero ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.static-spec-hero li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--static-line);
  font-size: 14px;
}

.static-spec-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--static-line);
  font-size: 15px;
}

.static-spec-table th,
.static-spec-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--static-line);
  text-align: left;
  vertical-align: top;
}

.static-spec-table th {
  width: 36%;
  color: var(--ink);
  font-weight: 700;
}

.static-spec-table td {
  color: #4d535b;
}

.static-shop-page,
.static-content-page {
  --static-paper: #fbfbf8;
  --static-soft: #f5f6f8;
  --static-line: #e8eaee;
  --static-glass: rgba(255, 255, 255, 0.76);
  --static-glass-line: rgba(178, 187, 199, 0.38);
  --static-shadow: 0 22px 60px rgba(17, 24, 39, 0.08);
  --static-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.static-shop-hero,
.static-page-hero {
  position: relative;
  padding: 78px max(20px, calc((100vw - 1180px) / 2)) 64px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 42% 52% at 84% 22%, rgba(23, 105, 255, 0.12), transparent 70%),
    linear-gradient(180deg, #fbfbf8 0%, #fff 100%);
}

.static-shop-hero::before,
.static-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17, 24, 39, 0.038) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 39, 0.038) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, #000 0%, #000 56%, transparent 100%);
  pointer-events: none;
}

.static-shop-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.static-shop-copy,
.static-page-hero .static-section-inner {
  position: relative;
  z-index: 1;
}

.static-shop-title,
.static-page-hero .entry-title {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 6.4vw, 86px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.static-shop-title::first-letter,
.static-page-hero .entry-title::first-letter {
  color: var(--blue);
}

.static-shop-copy p,
.static-page-hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.static-shop-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.static-shop-feature-card {
  min-height: 250px;
  position: relative;
  display: grid;
  grid-template-rows: 24px 1fr auto;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--static-glass-line);
  border-radius: var(--static-radius);
  background: var(--static-glass);
  box-shadow: var(--static-shadow);
  overflow: hidden;
  transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

.static-shop-feature-card:nth-child(2) {
  transform: translateY(30px);
}

.static-shop-feature-card:nth-child(3) {
  transform: translateY(12px);
}

.static-shop-feature-card::before {
  content: "";
  position: absolute;
  inset: 14% 2% 8%;
  border-radius: 999px;
  background: radial-gradient(ellipse at 50% 48%, rgba(23, 105, 255, 0.18), rgba(23, 105, 255, 0.05) 52%, transparent 72%);
  filter: blur(14px);
  opacity: 0.82;
  pointer-events: none;
}

.static-shop-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 105, 255, 0.48);
  box-shadow: 0 32px 80px rgba(23, 105, 255, 0.16);
}

.static-shop-feature-card:nth-child(2):hover,
.static-shop-feature-card:nth-child(3):hover {
  transform: translateY(-6px);
}

.static-shop-feature-card span,
.static-shop-feature-card strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-weight: 900;
}

.static-shop-feature-card span {
  color: var(--blue);
  font-size: 12px;
}

.static-shop-feature-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 176px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(17, 24, 39, 0.12));
  transition: transform 520ms ease;
}

.static-shop-feature-card:hover img {
  transform: scale(1.08) translateY(-4px);
}

.static-shop-listing {
  padding-top: 76px;
}

.static-shop-listing .store-toolbar {
  min-height: 54px;
  margin: 0 0 24px;
  padding: 9px 10px 9px 18px;
  border: 1px solid var(--static-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.055);
}

.static-shop-listing .woocommerce-result-count {
  padding-left: 6px;
}

.static-shop-listing .woocommerce-ordering select {
  border-radius: 999px;
  border-color: rgba(17, 17, 17, 0.12);
  font-weight: 800;
}

.static-shop-listing ul.products {
  gap: 24px !important;
}

.static-shop-listing ul.products li.product {
  position: relative;
  isolation: isolate;
  border-color: var(--static-glass-line);
  border-radius: var(--static-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.static-shop-listing ul.products li.product::before {
  content: "";
  position: absolute;
  inset: 20px 14px auto;
  height: 220px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at 50% 46%, rgba(23, 105, 255, 0.16), rgba(23, 105, 255, 0.035) 55%, transparent 74%);
  filter: blur(16px);
  opacity: 0.72;
  transition: opacity 300ms ease, transform 300ms ease;
}

.static-shop-listing ul.products li.product:hover::before {
  opacity: 1;
  transform: scale(1.06);
}

.static-shop-listing ul.products li.product a img {
  padding: 18px;
  background: transparent;
  aspect-ratio: 1 / 0.9;
  object-fit: contain;
}

.static-shop-listing ul.products li.product .woocommerce-loop-product__title {
  min-height: 44px;
  margin-top: 4px !important;
  font-size: 18px !important;
}

.static-shop-listing ul.products li.product .price {
  display: block;
  margin-top: 8px !important;
  margin-bottom: 18px !important;
  font-size: 19px !important;
}

.static-shop-listing ul.products li.product .button {
  min-height: 40px;
  margin-bottom: 20px !important;
  padding: 0 18px !important;
  font-size: 12px !important;
}

.static-content-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 62px 0 92px;
}

.static-page-content {
  width: min(100%, 900px);
  position: relative;
  padding: 42px;
  border: 1px solid var(--static-glass-line);
  border-radius: var(--static-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--static-shadow);
}

.static-commerce-content {
  width: 100%;
  padding: 30px;
}

.static-page-content h2,
.static-page-content h3 {
  margin: 1.2em 0 0.45em;
  color: var(--ink);
  line-height: 1.1;
}

.static-page-content h2:first-child,
.static-page-content h3:first-child {
  margin-top: 0;
}

.static-page-content p,
.static-page-content li {
  color: var(--muted);
  line-height: 1.8;
}

.static-page-content a {
  color: var(--blue);
  font-weight: 800;
}

.static-page-content table,
.static-commerce-content table {
  border-color: var(--static-line);
}

.parth-support-body {
  --support-ink: #101010;
  --support-muted: #68707a;
  --support-paper: #f8f8f5;
  --support-line: rgba(16, 16, 16, 0.12);
  --support-dark: #080808;
  --support-gold: #d18b2c;
  background: var(--support-paper);
  color: var(--support-ink);
}

.support-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  padding: 0 max(18px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  background: rgba(248, 248, 245, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.support-brand {
  grid-column: 2;
  display: grid;
  justify-items: center;
  color: var(--support-ink);
  font-size: 29px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.025em;
}

.support-brand span {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
}

.support-nav {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.support-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--support-ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.support-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 16, 16, 0.24);
  background: #fff;
}

.support-nav b {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--support-ink);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.support-page {
  overflow: hidden;
}

.support-hero {
  width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding: clamp(70px, 8vw, 108px) 0 clamp(52px, 6vw, 82px);
}

.support-hero__copy {
  max-width: 760px;
}

.support-kicker {
  margin: 0 0 16px;
  color: rgba(16, 16, 16, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.support-hero h1,
.support-section-heading h2,
.support-topic h2,
.support-email-card h2,
.support-range-link h2 {
  margin: 0;
  color: var(--support-ink);
  letter-spacing: -0.035em;
}

.support-hero h1 {
  max-width: 700px;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  text-wrap: balance;
}

.support-hero__copy > p:not(.support-kicker) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--support-muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
}

.support-email-card {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(16, 16, 16, 0.08);
}

.support-email-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--support-gold);
}

.support-email-card__copy {
  display: grid;
  gap: 10px;
}

.support-email-card .support-kicker {
  margin: 0;
}

.support-email-card h2 {
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.03;
}

.support-email-card strong {
  overflow-wrap: anywhere;
  color: var(--support-ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.12;
}

.support-email-card__action {
  display: grid;
  gap: 12px;
}

.support-copy-button,
.support-range-link a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--support-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.support-copy-button:hover,
.support-range-link a:hover {
  transform: translateY(-1px);
  background: var(--support-gold);
}

.support-email-card small {
  color: var(--support-muted);
  font-size: 13px;
  line-height: 1.5;
}

.support-guide,
.support-topics {
  width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
}

.support-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 6vw, 96px);
  padding: clamp(44px, 6vw, 78px) 0;
  border-top: 1px solid var(--support-line);
  border-bottom: 1px solid var(--support-line);
}

.support-section-heading {
  max-width: 390px;
}

.support-section-heading h2,
.support-topic h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.02;
  text-wrap: balance;
}

.support-section-heading > p:not(.support-kicker) {
  margin: 22px 0 0;
  color: var(--support-muted);
  font-size: 15px;
  line-height: 1.7;
}

.support-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid var(--support-line);
}

.support-steps article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  align-items: start;
  min-height: 240px;
  padding: 4px clamp(20px, 2.6vw, 36px) 0;
  border-right: 1px solid var(--support-line);
}

.support-steps span {
  color: var(--support-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.support-steps h3 {
  margin: 0;
  color: var(--support-ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
}

.support-steps p,
.support-topic p {
  margin: 0;
  color: var(--support-muted);
  font-size: 15px;
  line-height: 1.7;
}

.support-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: clamp(46px, 6vw, 82px) 0 clamp(68px, 8vw, 110px);
}

.support-topic {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 228px;
  padding: 0 clamp(20px, 3vw, 46px);
  border-right: 1px solid var(--support-line);
}

.support-topic:first-child {
  padding-left: 0;
}

.support-topic:last-child {
  padding-right: 0;
  border-right: 0;
}

.support-topic[id] {
  scroll-margin-top: 96px;
}

.support-range-link {
  width: min(1240px, calc(100vw - 36px));
  margin: 0 auto clamp(44px, 7vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 6px;
  background: var(--support-dark);
  color: #fff;
}

.support-range-link .support-kicker {
  color: rgba(255, 255, 255, 0.58);
}

.support-range-link h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 800;
  line-height: 1;
}

.support-range-link a {
  min-width: 164px;
  background: #fff;
  color: var(--support-ink);
}

.support-footer {
  width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--support-line);
  color: rgba(16, 16, 16, 0.52);
  font-size: 12px;
}

.support-footer span:first-child {
  color: var(--support-ink);
  font-weight: 900;
}

.static-commerce-content .wp-block-woocommerce-cart,
.static-commerce-content .wp-block-woocommerce-checkout {
  margin: 0;
}

.static-commerce-content .wc-block-cart__main,
.static-commerce-content .wc-block-checkout__main {
  padding: 0;
}

.static-commerce-content .wc-block-cart-items,
.static-commerce-content .wc-block-components-sidebar,
.static-commerce-content .wc-block-components-main,
.static-commerce-content .wp-block-woocommerce-empty-cart-block {
  border-color: var(--static-line) !important;
}

.static-commerce-content .wc-block-components-sidebar,
.static-commerce-content .wc-block-components-totals-wrapper,
.static-commerce-content .wc-block-checkout__terms,
.static-commerce-content .wc-block-components-panel {
  border-radius: 18px;
}

.static-commerce-content .wc-block-components-sidebar {
  padding: 22px !important;
  border: 1px solid var(--static-line);
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(23, 105, 255, 0.08), transparent 72%),
    #fff;
}

.static-commerce-content .wc-block-components-button,
.static-commerce-content .wc-block-cart__submit-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px !important;
  background: var(--ink) !important;
  color: #fff !important;
  font-weight: 900 !important;
  transition: background 200ms ease, transform 220ms var(--motion-ease), box-shadow 220ms var(--motion-ease);
}

.static-commerce-content .wc-block-components-button:hover,
.static-commerce-content .wc-block-cart__submit-button:hover {
  background: var(--blue) !important;
  box-shadow: var(--blue-glow);
  transform: translateY(-2px);
}

.static-commerce-content .wc-block-components-text-input input,
.static-commerce-content .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.static-commerce-content .wc-block-components-form .wc-block-components-text-input input[type="email"],
.static-commerce-content .wc-block-components-form .wc-block-components-text-input input[type="tel"],
.static-commerce-content .wc-block-components-form .wc-block-components-text-input input[type="text"] {
  border-color: var(--static-line) !important;
  border-radius: 14px !important;
  background: #fff !important;
}

.static-commerce-content .wc-block-components-sidebar-layout.wc-block-checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 370px);
  gap: clamp(22px, 3vw, 38px);
  align-items: flex-start;
}

.static-commerce-content .wc-block-checkout__main,
.static-commerce-content .wc-block-checkout__sidebar {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  margin: 0 !important;
}

.static-commerce-content .wc-block-checkout__main {
  grid-column: 1;
  order: 1;
}

.static-commerce-content .wc-block-checkout__sidebar {
  grid-column: 2;
  order: 2;
}

.static-commerce-content .wc-block-components-checkout-step {
  margin: 0 0 18px !important;
  padding: 24px !important;
  border: 1px solid var(--static-line);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 72% 48% at 50% 0%, rgba(23, 105, 255, 0.045), transparent 72%),
    #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.055);
  transition: transform 260ms var(--motion-ease), border-color 260ms ease, box-shadow 260ms var(--motion-ease);
}

.static-commerce-content .wc-block-components-checkout-step:focus-within {
  transform: translateY(-1px);
  border-color: rgba(23, 105, 255, 0.2);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.075);
}

.static-commerce-content .wc-block-components-checkout-step__heading {
  margin: 0 0 16px !important;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--static-line);
}

.static-commerce-content .wc-block-components-checkout-step__title {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.static-commerce-content .wc-block-components-checkout-step__description,
.static-commerce-content .wc-block-components-checkout-step__content,
.static-commerce-content .wc-block-components-checkout-step p {
  color: #697586;
  font-size: 14px;
  line-height: 1.55;
}

.static-commerce-content .wc-block-components-text-input,
.static-commerce-content .wc-block-components-combobox,
.static-commerce-content .wc-blocks-components-select {
  margin-bottom: 14px !important;
}

.static-commerce-content .wc-block-components-text-input input,
.static-commerce-content .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.static-commerce-content .wc-blocks-components-select .wc-blocks-components-select__select {
  min-height: 54px !important;
  border: 1px solid rgba(17, 24, 39, 0.12) !important;
  border-radius: 16px !important;
  background: #fff !important;
  color: var(--ink) !important;
  font-weight: 800;
  box-shadow: none !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--motion-ease);
}

.static-commerce-content .wc-block-components-text-input input:focus,
.static-commerce-content .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.static-commerce-content .wc-blocks-components-select .wc-blocks-components-select__select:focus {
  border-color: rgba(23, 105, 255, 0.42) !important;
  box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.08) !important;
}

.static-commerce-content .wc-block-components-text-input label,
.static-commerce-content .wc-block-components-combobox label,
.static-commerce-content .wc-blocks-components-select .wc-blocks-components-select__label {
  color: #6a7584 !important;
  font-weight: 800 !important;
}

.static-commerce-content .wc-block-components-checkbox {
  padding: 12px 0;
}

.static-commerce-content .wc-block-components-checkbox__label {
  color: var(--ink);
  font-weight: 800;
}

.static-commerce-content .wc-block-checkout__payment-method .wc-block-components-checkout-step__content {
  padding: 16px;
  border: 1px solid rgba(23, 105, 255, 0.14);
  border-radius: 16px;
  background: rgba(23, 105, 255, 0.055);
}

.static-commerce-content .wc-block-checkout__sidebar {
  position: sticky;
  top: 96px;
  padding: 22px !important;
  border: 1px solid var(--static-line);
  border-radius: 24px !important;
  background:
    radial-gradient(ellipse 82% 42% at 50% 0%, rgba(23, 105, 255, 0.09), transparent 72%),
    #fff;
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.07);
}

.static-commerce-content .wc-block-checkout__sidebar .wc-block-components-totals-wrapper,
.static-commerce-content .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
  border-color: var(--static-line) !important;
}

.static-commerce-content .wc-block-components-order-summary__button-text,
.static-commerce-content .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item__label {
  color: var(--ink);
  font-weight: 900;
}

.static-commerce-content .wc-block-components-order-summary .wc-block-components-order-summary-item__image img {
  object-fit: contain !important;
  mix-blend-mode: multiply;
}

.static-commerce-content .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  background: var(--blue) !important;
  color: #fff !important;
  font-weight: 900;
}

.static-commerce-content .wc-block-components-totals-item__value,
.static-commerce-content .wc-block-components-order-summary .wc-block-components-formatted-money-amount {
  color: var(--ink);
  font-weight: 900;
}

.static-commerce-content .wc-block-components-checkout-place-order-button {
  min-height: 56px !important;
  border-radius: 999px !important;
  background: var(--blue) !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(23, 105, 255, 0.22);
  font-size: 15px !important;
  font-weight: 900 !important;
}

.static-commerce-content .wc-block-components-checkout-place-order-button:hover {
  background: var(--ink) !important;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
}

.static-commerce-content .wc-block-components-sidebar-layout.wc-block-cart {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: clamp(22px, 3vw, 38px);
  align-items: flex-start;
}

.static-commerce-content .wc-block-cart__main,
.static-commerce-content .wc-block-cart__sidebar {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  margin: 0 !important;
}

.static-commerce-content .wc-block-cart-items {
  border-collapse: separate !important;
  border-spacing: 0 18px !important;
}

.static-commerce-content .wc-block-cart-items th {
  padding: 0 0 12px !important;
  border: 0 !important;
  color: #8a94a3;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.static-commerce-content .wc-block-cart-items__row {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 48% 82% at 15% 50%, rgba(23, 105, 255, 0.08), transparent 70%),
    #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.055);
  transition: transform 260ms var(--motion-ease), box-shadow 260ms var(--motion-ease);
}

.static-commerce-content .wc-block-cart-items__row:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.08);
}

.static-commerce-content .wc-block-cart-items__row td {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  border-top: 1px solid var(--static-line) !important;
  border-bottom: 1px solid var(--static-line) !important;
}

.static-commerce-content .wc-block-cart-items__row td:first-child {
  border-left: 1px solid var(--static-line) !important;
  border-radius: 24px 0 0 24px;
}

.static-commerce-content .wc-block-cart-items__row td:last-child {
  border-right: 1px solid var(--static-line) !important;
  border-radius: 0 24px 24px 0;
}

.static-commerce-content .wc-block-cart-item__image {
  width: 132px !important;
  padding-left: 22px !important;
  vertical-align: middle !important;
}

.static-commerce-content .wc-block-cart-item__image a {
  display: flex;
  width: 108px;
  height: 118px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 72% 62% at 50% 48%, rgba(23, 105, 255, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.9), rgba(255, 255, 255, 0.2));
  overflow: visible;
}

.static-commerce-content .wc-block-cart-item__image img {
  width: auto !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  mix-blend-mode: multiply;
  transition: transform 300ms var(--motion-ease), filter 300ms var(--motion-ease);
}

.static-commerce-content .wc-block-cart-items__row:hover .wc-block-cart-item__image img {
  transform: translateY(-2px) scale(1.035);
  filter: drop-shadow(0 0 18px rgba(23, 105, 255, 0.12));
}

.static-commerce-content .wc-block-cart-item__product {
  vertical-align: middle !important;
}

.static-commerce-content .wc-block-cart-item__wrap {
  gap: 8px;
}

.static-commerce-content .wc-block-components-product-name {
  color: var(--ink) !important;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  text-decoration: none !important;
}

.static-commerce-content .wc-block-components-product-name:hover {
  color: var(--blue) !important;
}

.static-commerce-content .wc-block-cart-item__prices {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.static-commerce-content .wc-block-components-product-metadata {
  margin-top: 4px !important;
}

.static-commerce-content .wc-block-components-product-metadata__description p {
  max-width: 470px;
  margin: 0 !important;
  color: #6c7786;
  font-size: 13px;
  line-height: 1.45;
}

.static-commerce-content .wc-block-cart-item__quantity {
  margin-top: 12px !important;
}

.static-commerce-content .wc-block-components-quantity-selector {
  min-width: 112px;
  min-height: 38px;
  border: 1px solid rgba(17, 24, 39, 0.13) !important;
  border-radius: 999px !important;
  background: #fff;
  overflow: hidden;
}

.static-commerce-content .wc-block-components-quantity-selector::after {
  display: none !important;
}

.static-commerce-content .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  min-height: 38px !important;
  border: 0 !important;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  box-shadow: none !important;
  transition: transform 170ms var(--motion-ease), color 170ms ease;
}

.static-commerce-content .wc-block-components-quantity-selector button {
  min-width: 36px !important;
  min-height: 38px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  font-weight: 900;
  opacity: 1 !important;
  transition: background 170ms ease, color 170ms ease, transform 170ms var(--motion-ease);
}

.static-commerce-content .wc-block-components-quantity-selector button:hover {
  background: var(--blue-soft) !important;
  color: var(--blue) !important;
  transform: scale(1.08);
}

.static-commerce-content .wc-block-cart-item__total {
  min-width: 106px;
  padding-right: 22px !important;
  vertical-align: middle !important;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.static-commerce-content .wc-block-components-sidebar {
  position: sticky;
  top: 96px;
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.07);
}

.static-commerce-content .wp-block-woocommerce-cart-order-summary-heading-block {
  margin-bottom: 14px !important;
  color: var(--ink);
  font-size: 20px !important;
  font-weight: 900;
}

.static-commerce-content .wc-block-components-totals-coupon {
  display: none !important;
}

.static-commerce-content .wc-block-components-totals-footer-item {
  align-items: baseline !important;
}

.static-commerce-content .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: #5f6b7a;
  font-size: 14px;
  font-weight: 800;
}

.static-commerce-content .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  transition: color 220ms ease, text-shadow 220ms ease, transform 220ms var(--motion-ease);
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block {
  padding: clamp(34px, 5vw, 64px) clamp(16px, 4vw, 42px) !important;
  border: 1px solid var(--static-line);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 38% at 50% 48%, rgba(23, 105, 255, 0.05), transparent 72%),
    #fff;
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.06);
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block > h2 {
  margin-bottom: 22px;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid {
  width: min(100%, 960px);
  margin: 0 auto;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  border: 0 !important;
  text-align: center;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link {
  color: var(--blue);
  text-decoration: none;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
  display: flex;
  height: clamp(150px, 16vw, 210px);
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 72% 62% at 50% 48%, rgba(23, 105, 255, 0.09), transparent 72%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.76), rgba(255, 255, 255, 0));
  overflow: visible;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img {
  width: auto !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  mix-blend-mode: multiply;
  transition: transform 360ms var(--motion-ease), filter 360ms var(--motion-ease);
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product:hover .wc-block-grid__product-image img {
  transform: translateY(-4px) scale(1.035);
  filter: drop-shadow(0 0 20px rgba(23, 105, 255, 0.14));
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
  min-height: 34px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.32;
  font-weight: 900;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price {
  margin: 12px 0 16px !important;
  color: var(--ink) !important;
  font-size: 22px !important;
  line-height: 1;
  font-weight: 900 !important;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart {
  margin: 0 !important;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a {
  display: inline-flex !important;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 24px !important;
  border-radius: 999px !important;
  background: var(--ink) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none !important;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a:hover {
  background: var(--blue) !important;
  box-shadow: 0 14px 28px rgba(23, 105, 255, 0.18);
  transform: translateY(-1px);
}

.parth-qty-pulse {
  animation: parthQtyPulse 260ms var(--motion-ease);
}

.parth-total-pulse {
  color: var(--blue) !important;
  text-shadow: 0 0 18px rgba(23, 105, 255, 0.18);
  transform: scale(1.035);
}

.parth-add-success,
.static-product-page.woocommerce .static-purchase-panel form.cart button.single_add_to_cart_button.parth-add-success,
.static-commerce-content .wc-block-grid__product-add-to-cart a.parth-add-success {
  background: #0a7c57 !important;
  border-color: #0a7c57 !important;
  box-shadow: 0 16px 34px rgba(10, 124, 87, 0.18) !important;
}

.parth-add-loading {
  cursor: progress !important;
  opacity: 0.86;
}

.parth-add-error {
  background: #9b2f1f !important;
  border-color: #9b2f1f !important;
}

body.parth-cart-open {
  overflow: hidden;
}

.parth-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
  visibility: hidden;
}

.parth-cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.parth-cart-drawer__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(8, 10, 12, 0.48);
  opacity: 0;
  cursor: pointer;
  transition: opacity 240ms var(--motion-ease);
}

.parth-cart-drawer.is-open .parth-cart-drawer__scrim {
  opacity: 1;
}

.parth-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, calc(100vw - 18px));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  background: #fbfbf8;
  color: var(--ink);
  box-shadow: -22px 0 70px rgba(17, 24, 39, 0.18);
  transform: translateX(104%);
  transition: transform 300ms var(--motion-ease);
  outline: none;
}

.parth-cart-drawer.is-open .parth-cart-drawer__panel {
  transform: translateX(0);
}

.parth-cart-drawer__header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
}

.parth-cart-drawer__header p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.parth-cart-drawer__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}

.parth-cart-drawer__close {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(17, 24, 39, 0.13);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.parth-cart-drawer__close:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.parth-cart-drawer__close span,
.parth-cart-drawer__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.parth-cart-drawer__close span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.parth-cart-drawer__close span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.parth-cart-drawer__status {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: #7a351d;
  background: #fff4ed;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  transition: max-height 200ms ease, opacity 200ms ease, padding 200ms ease;
}

.parth-cart-drawer.has-status .parth-cart-drawer__status {
  max-height: 88px;
  padding: 11px 26px;
  opacity: 1;
}

.parth-cart-drawer__body {
  overflow: auto;
  padding: 8px 26px 22px;
}

.parth-cart-items {
  display: grid;
  gap: 0;
}

.parth-cart-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
}

.parth-cart-item__image {
  width: 104px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  padding: 8px;
  border-radius: 8px;
  background: #f0f1ed;
}

.parth-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms var(--motion-ease);
}

.parth-cart-item:hover .parth-cart-item__image img {
  transform: scale(1.035);
}

.parth-cart-item__main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
}

.parth-cart-item__name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
  text-wrap: pretty;
}

.parth-cart-item__name:hover {
  color: var(--blue);
}

.parth-cart-item__price {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.parth-cart-item__price del,
.parth-cart-item__price ins {
  text-decoration-thickness: 1px;
}

.parth-cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.parth-cart-qty {
  width: 108px;
  height: 36px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.13);
  border-radius: 6px;
  background: #fff;
}

.parth-cart-qty button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.parth-cart-qty button:hover:not(:disabled) {
  background: var(--ink);
  color: #fff;
}

.parth-cart-qty button:disabled {
  color: rgba(17, 24, 39, 0.28);
  cursor: not-allowed;
}

.parth-cart-qty span {
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.parth-cart-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 160ms ease;
}

.parth-cart-remove:hover {
  color: #9b2f1f;
}

.parth-cart-empty {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 36px 0;
  text-align: left;
}

.parth-cart-empty h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.04;
  font-weight: 900;
}

.parth-cart-empty p {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.parth-cart-empty a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.parth-cart-drawer__footer {
  display: grid;
  gap: 16px;
  padding: 18px 26px 24px;
  border-top: 1px solid rgba(17, 24, 39, 0.09);
  background: #fff;
}

.parth-cart-drawer__footer[hidden] {
  display: none;
}

.parth-cart-drawer__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}

.parth-cart-drawer__total span {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.parth-cart-drawer__total strong {
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.parth-cart-drawer__checkout {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.parth-cart-drawer__checkout:hover {
  background: var(--blue);
  box-shadow: var(--blue-glow);
  transform: translateY(-1px);
}

.parth-cart-drawer.is-loading .parth-cart-drawer__panel {
  cursor: progress;
}

.parth-cart-drawer.is-loading .parth-cart-drawer__body,
.parth-cart-drawer.is-loading .parth-cart-drawer__footer {
  opacity: 0.62;
}

.parth-cart-drawer.is-loading [data-parth-cart-update],
.parth-cart-drawer.is-loading [data-parth-cart-remove],
.parth-cart-drawer.is-loading .parth-cart-drawer__checkout {
  pointer-events: none;
}

.parth-cart-drawer button:focus-visible,
.parth-cart-drawer a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .parth-cart-drawer__panel {
    width: 100%;
  }

  .parth-cart-drawer__header {
    min-height: 78px;
    padding: 20px 18px 15px;
  }

  .parth-cart-drawer__body {
    padding: 6px 18px 18px;
  }

  .parth-cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
  }

  .parth-cart-item__image {
    width: 92px;
    height: 106px;
  }

  .parth-cart-item__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .parth-cart-drawer__footer {
    padding: 16px 18px 20px;
  }
}

@keyframes parthQtyPulse {
  0% { transform: scale(1); color: var(--ink); }
  45% { transform: scale(1.12); color: var(--blue); }
  100% { transform: scale(1); color: var(--ink); }
}

.catalog-shop-page {
  --catalog-width: min(1040px, calc(100vw - 80px));
  background: #fbfbf8;
  color: var(--ink);
  overflow: hidden;
}

.catalog-page-hero {
  position: relative;
  padding: 130px max(20px, calc((100vw - 1180px) / 2)) 76px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 48% at 50% 0%, rgba(23, 105, 255, 0.12) 0%, transparent 64%),
    linear-gradient(180deg, #fbfbf8 0%, #fff 100%);
}

.catalog-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 74%);
  pointer-events: none;
}

.catalog-hero-eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.catalog-page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(56px, 9.4vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.catalog-page-hero h1 span {
  color: var(--blue);
}

.catalog-page-hero p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.catalog-divider {
  height: 1px;
  margin: 0 max(20px, calc((100vw - 1180px) / 2));
  background: rgba(17, 24, 39, 0.08);
}

.catalog-filter-bar {
  width: var(--catalog-width);
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 auto;
  padding: 40px 0 52px 80px;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-filter-bar::-webkit-scrollbar {
  display: none;
}

.catalog-filter-btn {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid #e1e5eb;
  border-radius: 999px;
  background: #fff;
  color: #4b535e;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.catalog-filter-btn:hover,
.catalog-filter-btn.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.catalog-filter-btn:hover {
  transform: translateY(-1px);
}

.catalog-filter-divider {
  width: 1px;
  height: 28px;
  flex: 0 0 1px;
  background: #e1e5eb;
}

.catalog-products-list {
  width: var(--catalog-width);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
  padding: 0 0 100px;
}

.catalog-product-row {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 220px minmax(0, 470px) 118px;
  justify-content: center;
  align-items: center;
  gap: 36px;
  min-height: 184px;
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 360ms ease, opacity 220ms ease;
}

.catalog-product-row::before {
  content: "";
  position: absolute;
  inset: 10px -14px;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 42% 88% at 12% 50%, rgba(23, 105, 255, 0.15), transparent 68%),
    radial-gradient(ellipse 34% 82% at 40% 50%, rgba(23, 105, 255, 0.055), transparent 72%);
  opacity: 0;
  filter: blur(1px);
  transition: opacity 420ms ease, transform 520ms ease;
}

.catalog-product-row::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: -18%;
  z-index: -1;
  width: 16%;
  border-radius: 999px;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.78), rgba(23, 105, 255, 0.13), transparent);
  opacity: 0;
  filter: blur(2px);
  transform: skewX(-12deg);
  pointer-events: none;
}

.catalog-product-row:hover {
  transform: translateX(5px);
}

.catalog-product-row:hover::before {
  opacity: 1;
  transform: scaleX(1.015);
}

.catalog-product-row:hover::after {
  opacity: 1;
  animation: parthRowSheen 780ms var(--motion-ease) both;
}

@keyframes parthRowSheen {
  from { transform: translateX(0) skewX(-12deg); }
  to { transform: translateX(760%) skewX(-12deg); }
}

.catalog-product-row.is-hidden {
  display: none;
}

.catalog-product-media {
  width: 220px;
  height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.catalog-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(17, 24, 39, 0.12));
  transition: transform 520ms var(--motion-ease), filter 520ms var(--motion-ease);
}

.catalog-product-row:hover .catalog-product-media img {
  transform: scale(1.08) translateY(-3px);
  filter: drop-shadow(0 24px 34px rgba(17, 24, 39, 0.12)) drop-shadow(0 0 24px rgba(23, 105, 255, 0.16));
}

.catalog-product-info,
.catalog-product-meta {
  display: grid;
}

.catalog-product-info {
  align-content: center;
  min-width: 0;
}

.catalog-product-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 13px;
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-radius: 999px;
  background: rgba(23, 105, 255, 0.06);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-product-name {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.catalog-product-desc {
  max-width: 440px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
  text-wrap: pretty;
  overflow-wrap: normal;
}

.catalog-product-meta {
  justify-items: end;
  align-content: center;
  gap: 12px;
}

.catalog-product-price {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.catalog-product-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.catalog-product-price .amount {
  color: inherit;
}

.catalog-product-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11.5px;
  font-weight: 900;
  transition: background 220ms ease, border-color 220ms ease;
}

.catalog-product-row:hover .catalog-product-link {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 24px rgba(23, 105, 255, 0.18);
}

.catalog-product-link svg {
  width: 11px;
  height: 11px;
  transition: transform 220ms var(--motion-ease);
}

.catalog-product-row:hover .catalog-product-link svg {
  transform: translateX(2px);
}

.catalog-features-banner {
  position: relative;
  padding: 80px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid #e8eaee;
  background: #fbfbf8;
  text-align: center;
  overflow: hidden;
}

.catalog-features-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(23, 105, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.catalog-features-banner h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 48px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
}

.catalog-features-banner h2 span {
  color: var(--blue);
}

.catalog-features-grid {
  position: relative;
  z-index: 1;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.catalog-feature-item {
  padding: 28px 20px;
  border: 1px solid #e8eaee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
  text-align: center;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.catalog-feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 105, 255, 0.3);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.1);
}

.catalog-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(23, 105, 255, 0.11);
  color: var(--blue);
}

.catalog-feature-icon svg {
  width: 22px;
  height: 22px;
}

.catalog-feature-item h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.catalog-feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--line) !important;
  border-radius: 20px !important;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--line) !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .product-hero,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-media {
    min-height: 360px;
    order: -1;
  }

  .hero-number {
    font-size: 150px;
    right: -10px;
    bottom: -24px;
  }

  .product-media-panel {
    position: static;
  }

  .parth-product-main-image {
    min-height: 420px;
  }

  .product-floating {
    display: none;
  }

  .product-grid,
  .woocommerce ul.products,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .trust-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .static-product-hero {
    padding-top: 42px;
  }

  .static-hero-showcase,
  .static-gallery-grid,
  .static-safety-layout,
  .static-spec-layout,
  .static-shop-hero-inner {
    grid-template-columns: 1fr;
  }

  .static-shop-feature {
    width: min(100%, 680px);
    margin: 4px auto 0;
  }

  .static-shop-feature-card:nth-child(2),
  .static-shop-feature-card:nth-child(3) {
    transform: none;
  }

  .static-hero-content {
    width: min(100%, 680px);
  }

  .static-hero-showcase {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .static-hero-title {
    white-space: normal;
    font-size: 42px;
  }

  .static-hero-product {
    min-height: 0;
    max-height: 360px;
  }

  .static-gallery-strip,
  .static-safety-band,
  .static-specs {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .static-content-shell {
    width: var(--wrap);
  }

  .static-commerce-content {
    padding: 22px;
  }

  .static-commerce-content .wc-block-components-sidebar-layout.wc-block-checkout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .static-commerce-content .wc-block-checkout__main,
  .static-commerce-content .wc-block-checkout__sidebar {
    grid-column: auto;
  }

  .static-commerce-content .wc-block-checkout__sidebar {
    position: static;
    order: 1;
  }

  .static-commerce-content .wc-block-checkout__main {
    order: 2;
  }

  .static-commerce-content .wc-block-components-sidebar-layout.wc-block-cart {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .static-commerce-content .wc-block-components-sidebar {
    position: static;
  }

  .static-commerce-content .wc-block-cart-item__image {
    width: 116px !important;
    padding-left: 18px !important;
  }

  .static-commerce-content .wc-block-cart-item__image a {
    width: 94px;
    height: 108px;
  }

  .static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
    height: 190px;
  }

  .catalog-products-list,
  .catalog-filter-bar {
    width: min(100%, 680px);
  }

  .catalog-product-row {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    padding: 24px 0;
  }

  .catalog-product-media {
    width: 168px;
    height: 132px;
  }

  .catalog-product-meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-items: stretch;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
  }

  .catalog-product-desc {
    max-width: 500px;
  }

  .catalog-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: calc(100vw - 28px);
  }

  .static-gallery-strip .static-section-heading h2 {
    white-space: normal;
  }

  .site-header {
    min-height: 64px;
    padding: 0 14px;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(251, 251, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .header-action:not(.cart-pill) {
    display: none;
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding: 22px 14px 44px;
  }

  .hero h1,
  .page-hero h1,
  .entry-title {
    font-size: 42px;
    line-height: 1;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-media {
    min-height: 300px;
    border-radius: 0;
    padding: 0;
  }

  .hero-media img {
    max-height: 290px;
  }

  .split-card {
    min-height: 300px;
  }

  .split-card img {
    max-height: 300px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    line-height: 1.04;
  }

  .hero-number,
  .scroll-indicator,
  .cursor {
    display: none;
  }

  .hero-bg-lines {
    background-size: 64px 64px;
  }

  .marquee {
    padding: 13px 0;
  }

  .marquee span,
  .marquee em {
    font-size: 12px;
  }

  .marquee em {
    padding-right: 18px;
  }

  .section,
  .page-hero,
  .store-hero,
  .static-shop-hero,
  .static-page-hero,
  .product-page,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .section-head h2,
  .copy-panel h2,
  .cta-panel h2 {
    font-size: 36px;
  }

  .product-grid,
  .woocommerce ul.products,
  .reviews-grid,
  .stats-grid,
  .trust-track,
  .product-trust,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 26px;
    border-radius: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .store-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .product-summary-panel,
  .product-detail-section {
    padding: 22px;
  }

  .product-page {
    padding-top: 28px;
  }

  .static-commerce-content .wp-block-woocommerce-empty-cart-block {
    padding: 28px 14px !important;
    border-radius: 20px;
  }

  .static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
    grid-template-columns: 1fr;
    gap: 28px !important;
  }

  .static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
    height: 230px;
    margin-bottom: 10px;
  }

  .static-commerce-content .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
    min-height: 0;
  }

  .parth-product-main-image {
    min-height: 320px;
    border-radius: 20px;
  }

  .parth-product-main-image img,
  .parth-product-image {
    max-height: 360px;
  }

  .product-summary h1 {
    font-size: 34px;
  }

  .woocommerce div.product form.cart {
    gap: 10px;
  }

  .product-page.woocommerce div.product form.cart div.quantity {
    width: 92px !important;
    flex-basis: 92px;
  }

  .parth-product-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .static-product-hero {
    padding: 34px 14px 28px;
  }

  .static-shop-hero,
  .static-page-hero {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .static-shop-title,
  .static-page-hero .entry-title {
    font-size: 40px;
    line-height: 1;
  }

  .static-shop-copy p,
  .static-page-hero p {
    font-size: 14px;
  }

  .static-shop-feature {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 0 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .static-shop-feature::-webkit-scrollbar {
    display: none;
  }

  .static-shop-feature-card {
    flex: 0 0 168px;
    scroll-snap-align: start;
  }

  .static-shop-feature {
    gap: 14px;
  }

  .static-shop-feature-card {
    min-height: 206px;
    grid-template-columns: 1fr;
    grid-template-rows: 22px 1fr auto;
    align-items: stretch;
  }

  .static-shop-feature-card img {
    height: 138px;
  }

  .static-shop-listing {
    padding-top: 58px;
  }

  .static-shop-listing .store-toolbar {
    align-items: stretch;
    border-radius: 20px;
    padding: 14px;
  }

  .static-shop-listing ul.products li.product .woocommerce-loop-product__title {
    min-height: 0;
  }

  .static-content-shell {
    width: calc(100vw - 28px);
    padding: 48px 0 70px;
  }

  .static-page-content,
  .static-commerce-content {
    width: 100%;
    padding: 22px;
    border-radius: 20px;
  }

  .static-commerce-content .wc-block-components-sidebar-layout.wc-block-checkout {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .static-commerce-content .wc-block-checkout__sidebar {
    margin-bottom: 20px !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .static-commerce-content .wc-block-components-checkout-step {
    padding: 18px !important;
    border-radius: 20px;
  }

  .static-commerce-content .wc-block-components-checkout-step__title {
    font-size: 18px;
  }

  .static-commerce-content .wc-block-components-text-input input,
  .static-commerce-content .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
  .static-commerce-content .wc-blocks-components-select .wc-blocks-components-select__select {
    min-height: 50px !important;
    border-radius: 14px !important;
  }

  .static-commerce-content .wc-block-components-checkout-place-order-button {
    min-height: 54px !important;
  }

  .static-commerce-content .wc-block-components-sidebar-layout.wc-block-cart {
    display: block !important;
  }

  .static-commerce-content .wc-block-cart-items {
    display: block !important;
    border-spacing: 0 !important;
  }

  .static-commerce-content .wc-block-cart-items thead {
    display: none;
  }

  .static-commerce-content .wc-block-cart-items tbody,
  .static-commerce-content .wc-block-cart-items__row,
  .static-commerce-content .wc-block-cart-items__row td {
    display: block !important;
    width: 100% !important;
  }

  .static-commerce-content .wc-block-cart-items__row {
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid var(--static-line);
    border-radius: 22px;
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(23, 105, 255, 0.07), transparent 70%),
      #fff;
  }

  .static-commerce-content .wc-block-cart-items__row td {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
  }

  .static-commerce-content .wc-block-cart-item__image {
    padding: 0 !important;
  }

  .static-commerce-content .wc-block-cart-item__image a {
    width: 100%;
    height: 210px;
    margin-bottom: 16px;
  }

  .static-commerce-content .wc-block-cart-item__product {
    text-align: left;
  }

  .static-commerce-content .wc-block-components-product-name {
    font-size: 18px;
  }

  .static-commerce-content .wc-block-cart-item__total {
    min-width: 0;
    padding: 14px 0 0 !important;
    text-align: left !important;
  }

  .static-commerce-content .wc-block-components-sidebar {
    margin-top: 22px !important;
    padding: 18px !important;
  }

  .catalog-page-hero {
    padding: 82px 16px 54px;
  }

  .catalog-page-hero h1 {
    font-size: clamp(48px, 16vw, 68px);
    line-height: 0.92;
  }

  .catalog-page-hero p {
    font-size: 14px;
  }

  .catalog-divider {
    margin: 0 16px;
  }

  .catalog-filter-bar {
    width: 100%;
    padding: 28px 16px 34px;
    scroll-padding-inline: 16px;
  }

  .catalog-filter-btn {
    min-height: 36px;
    padding: 0 16px;
    white-space: nowrap;
  }

  .catalog-products-list {
    width: 100%;
    gap: 12px;
    padding: 0 14px 58px;
  }

  .catalog-product-row {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px 0;
    border-radius: 0;
    transform: none !important;
  }

  .catalog-product-media {
    width: 112px;
    height: 116px;
    border-radius: 0;
  }

  .catalog-product-media img {
    width: 100%;
    height: 100%;
  }

  .catalog-product-badge {
    min-height: 24px;
    margin-bottom: 6px;
    padding: 0 8px;
    font-size: 10px;
  }

  .catalog-product-name {
    font-size: 16px;
    line-height: 1.14;
  }

  .catalog-product-desc {
    max-width: 100%;
    margin-top: 5px;
    font-size: 11.5px;
    line-height: 1.35;
    text-wrap: pretty;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .catalog-product-meta {
    gap: 10px;
    padding-top: 8px;
  }

  .catalog-product-price {
    font-size: 16px;
    text-align: left;
  }

  .catalog-product-link {
    min-height: 32px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .catalog-features-banner {
    padding: 56px 16px;
  }

  .catalog-features-banner h2 {
    margin-bottom: 30px;
    font-size: 34px;
  }

  .catalog-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .catalog-feature-item {
    padding: 22px 14px;
  }

  .static-hero-content {
    justify-items: start;
    text-align: left;
  }

  .static-uk-points {
    justify-content: flex-start;
  }

  .static-hero-title {
    font-size: 32px;
    line-height: 1.02;
  }

  .static-hero-tagline {
    font-size: 15px;
  }

  .static-hero-copy {
    font-size: 13px;
  }

  .static-hero-showcase {
    gap: 14px;
  }

  .static-hero-visual {
    order: -1;
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 8px;
    border-radius: 20px;
  }

  .static-hero-product {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 250px;
    object-fit: contain;
  }

  .static-purchase-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .static-purchase-notes {
    gap: 8px;
    margin-top: 12px;
  }

  .static-purchase-notes span {
    min-height: 42px;
    padding: 8px 10px;
  }

  .static-variant-options,
  .static-gallery-grid,
  .static-purchase-notes {
    grid-template-columns: 1fr;
  }

  .static-purchase-specs div {
    grid-template-columns: 1fr;
  }

  .static-purchase-panel form.cart div.quantity {
    width: 86px !important;
    flex-basis: 86px !important;
  }

  .static-gallery-strip,
  .static-safety-band,
  .static-specs {
    padding: 58px 14px;
  }

  .static-section-heading h2,
  .static-safety-copy h2 {
    font-size: 32px;
  }

  .static-section-heading p,
  .static-safety-line p {
    font-size: 14px;
  }

  .static-gallery-card {
    padding: 18px;
  }

  .static-safety-line {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .static-spec-table th,
  .static-spec-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .static-spec-table th {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Dynamic WooCommerce product pages. */
.parth-pdp {
  --pdp-ink: #151515;
  --pdp-muted: #667085;
  --pdp-line: #e7e5e0;
  --pdp-paper: #f8f8f6;
  --pdp-gold: #d28a2d;
  color: var(--pdp-ink);
  background: #fff;
}

.parth-pdp-shell { max-width: 1360px; margin: 0 auto; padding: 32px 34px 92px; }
.parth-pdp .woocommerce-notices-wrapper { max-width: 1280px; margin: 18px auto 0; }
.parth-pdp-breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin: 0 0 30px; color: #67717d; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.parth-pdp-breadcrumb a { color: inherit; text-decoration: none; }
.parth-pdp-breadcrumb a:hover { color: var(--pdp-gold); }
.parth-pdp-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); gap: clamp(36px, 6vw, 88px); align-items: start; }
.parth-pdp-gallery { min-width: 0; }
.parth-pdp-image-stage { display: grid; place-items: center; height: clamp(520px, 48vw, 670px); overflow: hidden; border-radius: 20px; background: var(--pdp-paper); }
.parth-pdp-main-image { display: block; width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.parth-pdp-thumbnails { display: flex; gap: 10px; overflow-x: auto; padding: 16px 0 4px; scrollbar-width: thin; }
.parth-pdp-thumb { width: 74px; height: 74px; flex: 0 0 74px; padding: 0; overflow: hidden; border: 1px solid transparent; border-radius: 10px; background: var(--pdp-paper); cursor: pointer; }
.parth-pdp-thumb.is-active { border-color: var(--pdp-ink); box-shadow: 0 0 0 1px var(--pdp-ink); }
.parth-pdp-thumb img, .parth-pdp-thumb picture { width: 100%; height: 100%; object-fit: contain; }
.parth-pdp-summary { padding-top: 8px; }
.parth-pdp-origin { display: inline-flex; gap: 9px; align-items: center; color: #435063; font-size: 13px; font-weight: 600; }
.parth-pdp-origin span { padding: 4px 10px; border-radius: 999px; background: var(--pdp-gold); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .05em; }
.parth-pdp-summary h1 { margin: 17px 0 9px; font-size: clamp(32px, 3.35vw, 51px); line-height: 1.02; font-weight: 500; letter-spacing: 0; }
.parth-pdp-intro { max-width: 630px; margin: 0; font-size: 15px; font-weight: 800; line-height: 1.45; letter-spacing: .07em; text-transform: uppercase; }
.parth-pdp-price { margin: 27px 0 24px; font-size: 33px; font-weight: 800; color: #b87723; line-height: 1; }
.parth-pdp-price del { color: #7d7d7d; font-size: 17px; font-weight: 500; }
.parth-pdp-features { display: grid; gap: 13px; margin: 0; padding: 22px 0; list-style: none; border-top: 1px solid var(--pdp-line); border-bottom: 1px solid var(--pdp-line); }
.parth-pdp-features li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.38; }
.parth-pdp-features li::before { content: '✓'; position: absolute; left: 2px; top: 0; color: var(--pdp-ink); font-weight: 800; }
.parth-pdp-purchase { margin-top: 22px; }
.parth-pdp-purchase form.cart { display: flex; gap: 13px; align-items: stretch; width: 100%; margin: 0; }
.parth-pdp-purchase form.cart div.quantity { display: grid; grid-template-columns: 40px 50px 40px; width: 130px; min-height: 54px; margin: 0; overflow: hidden; border: 1px solid var(--pdp-line); border-radius: 999px; background: var(--pdp-paper); }
.parth-pdp-purchase form.cart .quantity .qty { grid-column: 2; width: 50px; min-width: 0; height: 52px; padding: 0; border: 0; background: transparent; color: var(--pdp-ink); font-size: 15px; font-weight: 800; text-align: center; appearance: textfield; }
.parth-pdp-purchase form.cart .quantity .parth-quantity-controls { display: contents; }
.parth-pdp-purchase form.cart .quantity .parth-quantity-step { width: 40px; min-width: 40px; height: 52px; padding: 0; border: 0; background: transparent; color: var(--pdp-ink); font-size: 20px; line-height: 1; cursor: pointer; }
.parth-pdp-purchase form.cart .quantity .parth-quantity-step-down { grid-column: 1; grid-row: 1; }
.parth-pdp-purchase form.cart .quantity .parth-quantity-step-up { grid-column: 3; grid-row: 1; }
.parth-pdp-purchase form.cart .quantity .parth-quantity-step:hover { background: #ece9e2; }
.parth-pdp-purchase form.cart .single_add_to_cart_button,
.parth-pdp-purchase form.cart button.single_add_to_cart_button { flex: 1; min-height: 54px; margin: 0; padding: 0 22px; border: 0; border-radius: 999px; background: var(--pdp-gold); color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.parth-pdp-purchase form.cart .single_add_to_cart_button:hover,
.parth-pdp-purchase form.cart button.single_add_to_cart_button:hover { background: #b87521; }
.parth-pdp-stock { margin: 13px 0 0; color: #657081; font-size: 14px; text-align: center; }
.parth-pdp-stock.is-in-stock::before { content: ''; display: inline-block; width: 8px; height: 8px; margin: 0 8px 1px 0; border-radius: 50%; background: #dff5e9; }
.parth-pdp-assurances { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 25px 0 22px; padding: 17px 0 18px; border-top: 1px solid var(--pdp-line); border-bottom: 1px solid var(--pdp-line); }
.parth-pdp-assurances div { display: grid; justify-items: center; gap: 7px; text-align: center; }
.parth-pdp-assurances strong { display: grid; place-items: center; width: 45px; height: 45px; border: 1px solid var(--pdp-line); border-radius: 50%; font-size: 13px; }
.parth-pdp-assurances span { font-size: 12px; font-weight: 700; line-height: 1.2; }
.parth-pdp-specs { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--pdp-line); }
.parth-pdp-specs div { padding: 14px 0; border-bottom: 1px solid var(--pdp-line); }
.parth-pdp-specs div:nth-child(odd) { padding-right: 22px; }
.parth-pdp-specs dt { margin-bottom: 5px; color: #607083; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.parth-pdp-specs dd { margin: 0; font-size: 15px; font-weight: 800; }
.parth-pdp-detail-section { margin-top: 105px; }
.parth-pdp-section-heading { display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); gap: 25px 9vw; align-items: start; padding-bottom: 30px; border-bottom: 1px solid var(--pdp-line); }
.parth-pdp-section-heading > p:first-child, .parth-pdp-protection > div > p, .parth-pdp-related-heading > p { grid-row: 1 / span 2; margin: 6px 0 0; color: #697586; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.parth-pdp-section-heading h2, .parth-pdp-protection h2, .parth-pdp-related h2 { margin: 0; font-size: clamp(28px, 3vw, 43px); font-weight: 500; line-height: 1.08; }
.parth-pdp-section-heading > p:last-child { grid-column: 2; margin: 0; color: #4e5763; font-size: 16px; line-height: 1.65; }
.parth-pdp-detail-gallery { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 16px; margin-top: 24px; }
.parth-pdp-detail-gallery figure { height: 350px; margin: 0; overflow: hidden; border-radius: 12px; background: var(--pdp-paper); }
.parth-pdp-detail-gallery figure:first-child { grid-row: span 2; height: 716px; }
.parth-pdp-detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.parth-pdp-protection { display: grid; grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr); gap: 7vw; padding: 47px 0; border-top: 1px solid var(--pdp-line); border-bottom: 1px solid var(--pdp-line); }
.parth-pdp-protection > div > p { margin-bottom: 24px; }
.parth-pdp-protection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
.parth-pdp-protection-grid article { padding: 0 0 23px; border-bottom: 1px solid var(--pdp-line); }
.parth-pdp-protection-grid article:nth-child(n + 3) { padding-top: 23px; }
.parth-pdp-protection-grid h3 { margin: 0 0 8px; font-size: 16px; }
.parth-pdp-protection-grid p { margin: 0; color: #5d6673; font-size: 14px; line-height: 1.55; }
.parth-pdp-related { margin-top: 105px; }
.parth-pdp-related-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 27px; }
.parth-pdp-related-heading > p { margin: 0; }
.parth-pdp-related-track { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.parth-pdp-related-card { display: flex; flex-direction: column; min-width: 0; padding: 12px 12px 16px; border: 1px solid #efeeeb; border-radius: 14px; background: #fff; box-shadow: 0 11px 20px rgba(18, 18, 18, .06); }
.parth-pdp-related-image { display: grid; height: 174px; place-items: center; overflow: hidden; border-radius: 10px; background: var(--pdp-paper); }
.parth-pdp-related-image img { width: 100%; height: 100%; object-fit: contain; }
.parth-pdp-related-card > div { padding: 14px 2px 12px; }
.parth-pdp-related-card > div > span { display: inline-block; margin-bottom: 8px; padding: 4px 8px; background: #ebddb0; font-size: 11px; font-weight: 700; }
.parth-pdp-related-card h3 { min-height: 36px; margin: 0 0 6px; font-size: 15px; line-height: 1.18; }
.parth-pdp-related-card p { min-height: 34px; margin: 0; color: #667085; font-size: 12px; line-height: 1.35; }
.parth-pdp-related-link { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding: 11px 14px; border-radius: 999px; background: #111; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.parth-pdp-related-link:hover { background: var(--pdp-gold); }

@media (max-width: 980px) {
  .parth-pdp-shell { padding: 24px 20px 70px; }
  .parth-pdp-hero { grid-template-columns: 1fr; gap: 28px; }
  .parth-pdp-image-stage { height: min(82vw, 640px); }
  .parth-pdp-summary { padding-top: 0; }
  .parth-pdp-related-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .parth-pdp-related-card:nth-child(n + 4) { display: none; }
}

@media (max-width: 640px) {
  .parth-pdp-shell { padding: 18px 16px 55px; }
  .parth-pdp-breadcrumb { margin-bottom: 20px; font-size: 10px; }
  .parth-pdp-image-stage { height: 96vw; max-height: 440px; border-radius: 13px; }
  .parth-pdp-thumbnails { gap: 8px; padding-top: 10px; }
  .parth-pdp-thumb { width: 58px; height: 58px; flex-basis: 58px; border-radius: 8px; }
  .parth-pdp-summary h1 { margin-top: 14px; font-size: 32px; }
  .parth-pdp-intro { font-size: 13px; }
  .parth-pdp-price { margin: 21px 0; font-size: 31px; }
  .parth-pdp-features { gap: 11px; padding: 18px 0; }
  .parth-pdp-features li { padding-left: 24px; font-size: 14px; }
  .parth-pdp-purchase form.cart { flex-wrap: wrap; }
  .parth-pdp-purchase form.cart div.quantity { min-height: 50px; }
  .parth-pdp-purchase form.cart .quantity .qty, .parth-pdp-purchase form.cart .quantity .parth-quantity-step { height: 48px; }
  .parth-pdp-purchase form.cart .single_add_to_cart_button, .parth-pdp-purchase form.cart button.single_add_to_cart_button { min-height: 50px; font-size: 12px; }
  .parth-pdp-assurances { grid-template-columns: repeat(2, 1fr); }
  .parth-pdp-specs { grid-template-columns: 1fr; }
  .parth-pdp-specs div:nth-child(odd) { padding-right: 0; }
  .parth-pdp-detail-section, .parth-pdp-related { margin-top: 70px; }
  .parth-pdp-section-heading, .parth-pdp-protection { grid-template-columns: 1fr; gap: 20px; }
  .parth-pdp-section-heading > p:first-child, .parth-pdp-section-heading > p:last-child { grid-column: auto; grid-row: auto; }
  .parth-pdp-section-heading > p:first-child { margin: 0; }
  .parth-pdp-detail-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .parth-pdp-detail-gallery figure { height: 170px; border-radius: 8px; }
  .parth-pdp-detail-gallery figure:first-child { grid-column: span 2; height: 330px; }
  .parth-pdp-protection { padding: 34px 0; }
  .parth-pdp-protection-grid { gap: 0 20px; }
  .parth-pdp-protection-grid h3 { font-size: 14px; }
  .parth-pdp-protection-grid p { font-size: 12px; }
  .parth-pdp-related-heading { display: block; }
  .parth-pdp-related-heading > p { margin-bottom: 12px; }
  .parth-pdp-related-track { display: flex; gap: 12px; overflow-x: auto; margin: 0 -16px; padding: 0 16px 14px; scroll-snap-type: x mandatory; }
  .parth-pdp-related-card, .parth-pdp-related-card:nth-child(n + 4) { display: flex; flex: 0 0 210px; scroll-snap-align: start; }
  .parth-pdp-related-image { height: 162px; }
}

/* Keep WooCommerce product data inside the approved PDP visual system. */
.product-announce { min-height: 30px; display: flex; align-items: center; justify-content: center; padding: 0 12px; overflow: hidden; background: #111; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .045em; line-height: 1; text-align: center; text-transform: uppercase; white-space: nowrap; text-overflow: ellipsis; }
.product-site-header { position: sticky; top: 0; z-index: 1000; height: 72px; display: grid; grid-template-columns: minmax(88px, 1fr) auto minmax(88px, 1fr); align-items: center; padding: 0 40px; background: #fff; border-bottom: 1px solid rgba(0, 0, 0, .08); }
.product-brand { grid-column: 2; color: #111; font-size: 27px; font-weight: 800; letter-spacing: .16em; line-height: 1; text-align: center; text-decoration: none; }
.product-brand span { display: block; margin: 7px -0.42em 0 0; font-size: 8px; letter-spacing: .42em; }
.product-header-cart { justify-self: end; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-width: 82px; height: 40px; padding: 0 14px; border: 1px solid rgba(0, 0, 0, .14); border-radius: 999px; color: #111; background: #fff; font-size: 13px; font-weight: 800; text-decoration: none; }
.product-header-cart:hover { color: #fff; background: #111; border-color: #111; }
.product-header-cart svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.product-header-cart b { display: none; }

.parth-pdp-shell { max-width: 1222px; padding: 0 0 92px; }
.parth-pdp-breadcrumb { margin: 0; padding: 18px 0 0; color: #555c66; font-size: 12px; letter-spacing: .06em; }
.parth-pdp-hero { grid-template-columns: 599px 530px; justify-content: space-between; gap: 70px; min-height: 715px; margin-top: 32px; }
.parth-pdp-image-stage { width: 599px; height: 599px; padding: 34px; border-radius: 18px; box-shadow: 0 18px 42px rgb(17 17 17 / 10%); }
.parth-pdp-main-image { object-fit: contain; mix-blend-mode: normal; }
.parth-pdp-thumbnails { gap: 8px; margin-top: 16px; padding: 0 0 2px; }
.parth-pdp-thumb { width: 80px; height: 80px; flex-basis: 80px; padding: 4px; border-radius: 10px; background: transparent; }
.parth-pdp-thumb img, .parth-pdp-thumb picture { border-radius: 8px; background: #f6f6f6; object-fit: cover; }
.parth-pdp-summary { min-height: 715px; padding: 8px 0 52px; }
.parth-pdp-origin { margin-bottom: 14px; }
.parth-pdp-summary h1 { margin: 0 0 10px; font-size: 38px; line-height: 1.04; font-weight: 500; letter-spacing: -.01em; }
.parth-pdp-intro { margin: 0 0 24px; max-width: 500px; color: #0f1115; font-size: 15px; line-height: 1.45; letter-spacing: .055em; }
.parth-pdp-price { margin: 0 0 24px; color: #a96f27; font-size: 32px; letter-spacing: -.015em; }
.parth-pdp-features { gap: 12px; padding: 18px 0; margin: 0 0 22px; }
.parth-pdp-features li { grid-template-columns: 18px minmax(0, 1fr); padding-left: 0; font-size: 15px; }
.parth-pdp-features li::before { position: static; content: '\2713'; width: 18px; height: 18px; display: grid; place-items: center; }
.parth-pdp-purchase { margin-top: 0; }
.parth-pdp-purchase form.cart { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 12px; }
.parth-pdp-purchase form.cart div.quantity { width: 132px; grid-template-columns: 42px minmax(0, 1fr) 42px; min-height: 54px; background: #fff; }
.parth-pdp-purchase form.cart .quantity .qty { grid-column: 2; height: 52px; width: 100%; }
.parth-pdp-purchase form.cart .quantity .parth-quantity-step { height: 52px; width: 42px; min-width: 42px; font-size: 20px; }
.parth-pdp-purchase form.cart .quantity .parth-quantity-step span { display: inline; }
.parth-pdp-purchase form.cart .single_add_to_cart_button, .parth-pdp-purchase form.cart button.single_add_to_cart_button { min-height: 54px; border-radius: 999px; background: #cb8a3d; }
.parth-pdp-purchase form.cart .single_add_to_cart_button, .parth-pdp-purchase form.cart button.single_add_to_cart_button { float: none !important; width: 100%; margin: 0 !important; justify-self: stretch; }
.parth-pdp-purchase form.cart .single_add_to_cart_button:hover, .parth-pdp-purchase form.cart button.single_add_to_cart_button:hover { background: #a96f27; }
.parth-pdp-stock { margin-top: 16px; }
.parth-pdp-assurances { margin-top: 24px; padding-top: 18px; border-bottom: 0; }
.parth-pdp-specs { margin-top: 0; border-bottom: 1px solid var(--pdp-line); }
.parth-pdp-detail-section, .parth-pdp-related { max-width: 1240px; margin-top: 64px; }
.parth-pdp-related { margin-left: auto; margin-right: auto; }

@media (max-width: 1240px) {
  .parth-pdp-shell { max-width: calc(100vw - 48px); }
  .parth-pdp-hero { grid-template-columns: minmax(460px, 1fr) minmax(420px, 530px); gap: 44px; }
  .parth-pdp-image-stage { width: 100%; height: auto; aspect-ratio: 1; }
}

@media (max-width: 999px) {
  .product-site-header { height: 66px; padding: 0 20px; }
  .product-brand { font-size: 22px; }
  .product-header-cart { width: 40px; min-width: 40px; padding: 0; }
  .product-header-cart span, .product-header-cart b { display: none; }
  .parth-pdp-shell { max-width: none; padding: 0 0 70px; }
  .parth-pdp-breadcrumb { padding: 14px 20px 0; }
  .parth-pdp-hero { display: block; min-height: 0; margin-top: 22px; }
  .parth-pdp-gallery { padding: 0 20px; }
  .parth-pdp-image-stage { max-height: none; }
  .parth-pdp-summary { min-height: 0; padding: 34px 20px 48px; }
}

@media (max-width: 640px) {
  .product-announce { min-height: 40px; white-space: normal; text-align: left; }
  .parth-pdp-image-stage { height: auto; aspect-ratio: 1; padding: 20px; }
  .parth-pdp-purchase form.cart { grid-template-columns: 1fr; gap: 10px; }
  .parth-pdp-purchase form.cart div.quantity { width: 100%; }
}

/* Product pages: restore the approved static PDP layout while keeping WooCommerce data dynamic. */
.single-product {
  background: #fff;
}

.single-product .pdp-announce {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  overflow: hidden;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.single-product .pdp-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 72px;
  height: 72px;
  display: grid;
  grid-template-columns: minmax(88px, 1fr) auto minmax(88px, 1fr);
  align-items: center;
  gap: 0;
  padding: 0 40px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.single-product .pdp-brand {
  grid-column: 2;
  display: block;
  color: #111;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.single-product .pdp-brand span {
  display: block;
  margin: 7px -0.42em 0 0;
  font-size: 8px;
  letter-spacing: .42em;
}

.single-product .pdp-header-cart {
  grid-column: 3;
  justify-self: end;
  min-width: 82px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.single-product .pdp-header-cart svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.single-product .pdp-header-cart b {
  display: none;
}

.parth-static-pdp {
  --pdp-max: 1222px;
  --pdp-wide: 1240px;
  --pdp-ink: #111;
  --pdp-line: #dedede;
  --pdp-soft: #f6f6f6;
  --pdp-accent: #d18b2c;
  --pdp-accent-dark: #a96f27;
  --pdp-safe: #253a56;
  background: #fff;
  color: var(--pdp-ink);
}

.parth-static-pdp .woocommerce-notices-wrapper {
  max-width: var(--pdp-max);
  margin: 18px auto 0;
}

.parth-static-pdp .breadcrumb {
  max-width: var(--pdp-max);
  margin: 0 auto;
  padding: 18px 0 0;
  color: #555c66;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.parth-static-pdp .breadcrumb a:hover {
  color: var(--pdp-ink);
}

.parth-static-pdp .pdp-shell {
  max-width: var(--pdp-max);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 599px 530px;
  justify-content: space-between;
  gap: 70px;
  min-height: 715px;
}

.parth-static-pdp .product-media {
  position: sticky;
  top: 112px;
  align-self: start;
}

.parth-static-pdp .media-frame {
  width: 599px;
  height: 599px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  background: var(--pdp-soft);
  box-shadow: 0 18px 42px rgb(17 17 17 / 10%);
}

.parth-static-pdp .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 34px;
  transition: opacity .2s ease;
}

.parth-static-pdp .media-frame--fit-loose img {
  padding: 24px;
}

.parth-static-pdp .thumbnail-strip {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.parth-static-pdp .thumbnail-strip::-webkit-scrollbar {
  display: none;
}

.parth-static-pdp .thumb {
  width: 80px;
  height: 80px;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.parth-static-pdp .thumb.is-active {
  border-color: var(--pdp-ink);
  box-shadow: inset 0 0 0 1px var(--pdp-ink), 0 7px 16px rgb(17 17 17 / 10%);
}

.parth-static-pdp .thumb:hover img {
  filter: brightness(1.03);
  transform: scale(1.02);
}

.parth-static-pdp .thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  padding: 0;
  border-radius: 8px;
  background: var(--pdp-soft);
  box-shadow: 0 5px 14px rgb(17 17 17 / 7%);
  transition: filter .18s ease, transform .18s ease;
}

.parth-static-pdp .pdp-shell > .product-info {
  min-height: 715px;
  display: grid;
  align-content: start;
  padding: 8px 0 52px;
}

.parth-static-pdp .review-line {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #3d4652;
  font-size: 13px;
  font-weight: 700;
}

.parth-static-pdp .stars {
  min-width: 38px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pdp-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.parth-static-pdp .product-title {
  margin: 0 0 10px;
  color: var(--pdp-ink);
  font-size: 38px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.parth-static-pdp .product-kicker {
  max-width: 500px;
  margin: 0 0 24px;
  color: #0f1115;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: .055em;
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: pretty;
}

.parth-static-pdp .price {
  width: max-content;
  display: block;
  margin: 0 0 24px;
  color: var(--pdp-accent-dark) !important;
  font-size: 32px !important;
  line-height: 1;
  font-weight: 800 !important;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.parth-static-pdp .feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 22px;
  padding: 18px 0;
  border-top: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
  color: #1d1d1d;
  font-size: 15px;
  line-height: 1.45;
}

.parth-static-pdp .feature-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.parth-static-pdp .feature-list li::before {
  content: "\2713";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  transform: translateY(1px);
}

.parth-static-pdp .product-seo-copy {
  max-width: 520px;
  margin: -4px 0 22px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

.parth-static-pdp .purchase-panel form.cart {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  width: 100%;
}

.parth-static-pdp .purchase-panel form.cart::before,
.parth-static-pdp .purchase-panel form.cart::after {
  display: none;
}

.parth-static-pdp .purchase-panel form.cart div.quantity {
  grid-column: 1;
  grid-row: 1;
  width: 132px;
  height: 54px;
  min-height: 54px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  overflow: hidden;
  margin: 0 !important;
  border: 1px solid var(--pdp-line);
  border-radius: 999px;
  background: #fff;
}

.parth-static-pdp .purchase-panel form.cart div.quantity:focus-within {
  border-color: var(--pdp-ink);
  box-shadow: 0 0 0 2px rgb(17 17 17 / 8%);
}

.parth-static-pdp .purchase-panel form.cart .quantity .qty {
  grid-column: 2;
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0;
  border: 0;
  background: #fff;
  color: var(--pdp-ink);
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  appearance: textfield;
}

.parth-static-pdp .purchase-panel form.cart .quantity .qty:focus {
  outline: 0;
}

.parth-static-pdp .purchase-panel form.cart .quantity .parth-quantity-controls {
  display: contents;
}

.parth-static-pdp .purchase-panel form.cart .quantity .parth-quantity-step {
  width: 42px;
  min-width: 42px;
  height: 52px;
  padding: 0;
  border: 0;
  background: #f7f7f4;
  color: var(--pdp-ink);
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.parth-static-pdp .purchase-panel form.cart .quantity .parth-quantity-step:hover {
  background: #ecebe7;
}

.parth-static-pdp .purchase-panel form.cart .quantity .parth-quantity-step:active {
  transform: scale(.98);
}

.parth-static-pdp .purchase-panel form.cart .quantity .parth-quantity-step-down {
  grid-column: 1;
  grid-row: 1;
}

.parth-static-pdp .purchase-panel form.cart .quantity .parth-quantity-step-up {
  grid-column: 3;
  grid-row: 1;
}

.parth-static-pdp .purchase-panel form.cart .single_add_to_cart_button,
.parth-static-pdp .purchase-panel form.cart button.single_add_to_cart_button {
  grid-column: 2;
  grid-row: 1;
  justify-self: stretch;
  width: 100%;
  min-height: 54px;
  margin: 0 !important;
  padding: 0 22px;
  float: none !important;
  border: 0;
  border-radius: 999px;
  background: var(--pdp-accent) !important;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .18s ease, transform .18s ease;
}

.parth-static-pdp .purchase-panel form.cart .single_add_to_cart_button:hover,
.parth-static-pdp .purchase-panel form.cart button.single_add_to_cart_button:hover {
  background: var(--pdp-accent-dark) !important;
}

.parth-static-pdp .shipping-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  color: #525a64;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.parth-static-pdp .shipping-note::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dff4ea;
  box-shadow: inset 0 0 0 3px #eef9f3;
}

.parth-static-pdp .trust-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--pdp-line);
  text-align: center;
}

.parth-static-pdp .trust-icon {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  color: #242424;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.parth-static-pdp .trust-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pdp-line);
  border-radius: 50%;
  background: #fff;
  color: var(--pdp-safe);
  font-size: 14px;
  font-weight: 800;
}

.parth-static-pdp .spec-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 24px 0 0;
  padding: 16px 0;
  border-top: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
}

.parth-static-pdp .spec-row {
  min-width: 0;
  color: #626973;
  font-size: 13px;
  line-height: 1.35;
}

.parth-static-pdp .spec-row:nth-child(3) {
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid var(--pdp-line);
}

.parth-static-pdp .spec-row span {
  display: block;
  margin-bottom: 5px;
  color: #626973;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.parth-static-pdp .spec-row strong {
  display: block;
  max-width: 100%;
  color: var(--pdp-ink);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 800;
  text-align: left;
}

.parth-static-pdp .detail-suite,
.parth-static-pdp .specification-panel {
  max-width: var(--pdp-wide);
  margin: 64px auto 0;
  padding: 0 40px 28px;
}

.parth-static-pdp .detail-heading {
  display: block;
  max-width: 780px;
  margin-bottom: 30px;
}

.parth-static-pdp .detail-label {
  width: max-content;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: #e3d6a1;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.parth-static-pdp .detail-heading h2,
.parth-static-pdp .protection-copy h2,
.parth-static-pdp .service-panel__heading h2 {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--pdp-ink);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.parth-static-pdp .detail-heading p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #36404a;
  font-size: 18px;
  line-height: 1.62;
}

.parth-static-pdp .feature-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  border-top: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
}

.parth-static-pdp .feature-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--pdp-line);
}

.parth-static-pdp .feature-row:nth-last-child(-n+2) {
  border-bottom: 0;
}

.parth-static-pdp .feature-row__media {
  width: 132px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #f5f5f3;
}

.parth-static-pdp .feature-row__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.parth-static-pdp .feature-row__copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pdp-ink);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
}

.parth-static-pdp .feature-row__copy span {
  display: block;
  max-width: 430px;
  color: #3f4650;
  font-size: 15px;
  line-height: 1.55;
}

.parth-static-pdp .protection-panel,
.parth-static-pdp .service-panel {
  max-width: var(--pdp-wide);
  margin: 56px auto 0;
  padding: 44px 40px 48px;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
}

.parth-static-pdp .protection-image {
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #f5f5f3;
}

.parth-static-pdp .protection-image img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  padding: 18px;
  background: #f5f5f3;
}

.parth-static-pdp .protection-copy h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: 40px;
}

.parth-static-pdp .protection-list,
.parth-static-pdp .service-list {
  display: grid;
  border-top: 1px solid var(--pdp-line);
}

.parth-static-pdp .protection-item,
.parth-static-pdp .service-item {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(170px, .42fr) minmax(0, .58fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--pdp-line);
  background: transparent;
}

.parth-static-pdp .protection-item strong,
.parth-static-pdp .service-item strong {
  display: block;
  margin: 0;
  color: var(--pdp-ink);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 800;
}

.parth-static-pdp .protection-item p,
.parth-static-pdp .service-item p {
  margin: 0;
  color: #3f4650;
  font-size: 14px;
  line-height: 1.6;
}

.parth-static-pdp .specification-panel {
  margin-top: 58px;
  padding-bottom: 54px;
}

.parth-static-pdp .specification-layout {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

.parth-static-pdp .spec-visual {
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.parth-static-pdp .spec-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  border-radius: 18px;
  background: #f5f5f3;
}

.parth-static-pdp .spec-visual figcaption {
  margin-top: 18px;
}

.parth-static-pdp .spec-visual strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.parth-static-pdp .spec-visual ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #3f4650;
  font-size: 14px;
  line-height: 1.45;
}

.parth-static-pdp .spec-visual li {
  position: relative;
  padding-left: 16px;
}

.parth-static-pdp .spec-visual li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pdp-accent);
}

.parth-static-pdp .spec-table {
  display: grid;
  border-top: 1px solid var(--pdp-line);
}

.parth-static-pdp .spec-table-row {
  display: grid;
  grid-template-columns: minmax(150px, .34fr) minmax(0, .66fr);
  gap: 24px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--pdp-line);
}

.parth-static-pdp .spec-table-row span {
  color: #626973;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.parth-static-pdp .spec-table-row strong {
  color: var(--pdp-ink);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.parth-static-pdp .service-panel {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  margin-top: 58px;
}

.parth-static-pdp .service-panel__heading h2 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: 38px;
}

.parth-static-pdp .service-panel__heading p {
  max-width: 440px;
  margin: 0;
  color: #3f4650;
  font-size: 15px;
  line-height: 1.65;
}

.parth-static-pdp .related-products {
  max-width: 1480px;
  margin: 30px auto 110px;
  padding: 0 34px;
  overflow: visible;
}

.parth-static-pdp .related-products h2 {
  margin: 0 0 38px;
  text-align: center;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 300;
}

.parth-static-pdp .related-products__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -18px 0 20px;
}

.parth-static-pdp .related-nav {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pdp-line);
  border-radius: 50%;
  color: var(--pdp-ink);
  background: #fff;
  box-shadow: 0 10px 24px rgb(17 17 17 / 8%);
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease, opacity .22s ease;
}

.parth-static-pdp .related-nav:hover {
  color: #fff;
  background: #111;
  transform: translateY(-1px);
}

.parth-static-pdp .related-nav:disabled {
  color: #8a9099;
  background: #fff;
  opacity: .38;
  cursor: not-allowed;
  transform: none;
}

.parth-static-pdp .related-nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.parth-static-pdp .related-products__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, calc((100% - 90px) / 6)));
  justify-content: center;
  gap: 18px;
  align-items: stretch;
  overflow: visible;
  margin: 0;
  padding: 18px 0 44px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.parth-static-pdp .related-products__grid::-webkit-scrollbar {
  display: none;
}

.parth-static-pdp .related-products .product-card {
  --product-zoom-hover: 1.015;
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  min-height: 352px;
  padding: 14px 14px 20px;
  overflow: visible;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 2px 4px 12px rgb(0 0 0 / 8%);
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease;
}

.parth-static-pdp .related-products .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 2px 8px 20px rgb(0 0 0 / 12%);
}

.parth-static-pdp .related-products .product-media {
  position: relative;
  top: auto;
  width: 100%;
  aspect-ratio: 1.04;
  display: block;
  align-self: start;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 45%, rgb(255 255 255 / 96%), rgb(251 251 253 / 0%) 68%), #fbfbfd;
  box-shadow: none;
}

.parth-static-pdp .related-products .product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  border-radius: inherit;
  transition: opacity .24s ease, transform .24s ease;
}

.parth-static-pdp .related-products .product-media img.hover {
  opacity: 0;
}

.parth-static-pdp .related-products .product-card:hover .product-media img.default {
  opacity: 0;
  transform: scale(var(--product-zoom-hover));
}

.parth-static-pdp .related-products .product-card:hover .product-media img.hover {
  opacity: 1;
  transform: scale(1.015);
}

.parth-static-pdp .related-products .label {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px 4px;
  color: rgb(17 17 17 / 82%);
  background: #e3d6a1;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.parth-static-pdp .related-products .quick-add {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  transition: transform .24s ease, background .24s ease;
}

.parth-static-pdp .related-products .product-card:hover .quick-add {
  transform: translateY(-1px);
  background: var(--pdp-accent);
}

.parth-static-pdp .related-products .quick-add span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.parth-static-pdp .related-products .quick-add svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.parth-static-pdp .related-products .product-info {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-items: start;
  align-items: center;
  gap: 8px 10px;
  padding: 0 8px 72px;
  text-align: left;
}

.parth-static-pdp .related-products .swatches {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-start;
  gap: 9px;
  min-height: 16px;
  align-self: center;
}

.parth-static-pdp .related-products .swatch {
  width: 13px;
  height: 13px;
  border: 1px solid rgb(17 17 17 / 24%);
  border-radius: 50%;
  background: var(--swatch);
}

.parth-static-pdp .related-products .product-name {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--pdp-ink);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.parth-static-pdp .related-products .product-specs {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  max-width: 100%;
  color: rgb(17 17 17 / 62%);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.parth-static-pdp .related-products .product-specs span {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  white-space: nowrap;
}

.parth-static-pdp .related-products .product-specs span:not(:last-child)::after {
  content: "/";
  margin: 0 7px;
  color: rgb(17 17 17 / 32%);
}

@media (max-width: 1240px) {
  .parth-static-pdp .breadcrumb,
  .parth-static-pdp .pdp-shell {
    max-width: calc(100vw - 48px);
  }

  .parth-static-pdp .pdp-shell {
    grid-template-columns: minmax(460px, 1fr) minmax(420px, 530px);
    gap: 44px;
  }

  .parth-static-pdp .media-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 1199px) {
  .parth-static-pdp .related-products {
    position: relative;
    overflow: hidden;
  }

  .parth-static-pdp .related-products.has-related-scroll .related-products__controls {
    display: flex;
  }

  .parth-static-pdp .related-products__grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, calc((100% - 66px) / 4));
    grid-template-columns: none;
    justify-content: start;
    gap: 22px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
  }

  .parth-static-pdp .related-products .product-card {
    min-height: 376px;
    padding: 18px 18px 22px;
    border-radius: 22px;
    scroll-snap-align: start;
  }

  .parth-static-pdp .related-products .product-media {
    border-radius: 18px;
  }

  .parth-static-pdp .related-products .label {
    top: 28px;
    left: 28px;
  }

  .parth-static-pdp .related-products .quick-add {
    left: 28px;
    right: 28px;
    bottom: 22px;
    height: 44px;
  }

  .parth-static-pdp .related-products .product-info {
    padding: 0 10px 76px;
  }
}

@media (max-width: 999px) {
  .single-product .pdp-site-header {
    height: 66px;
    min-height: 66px;
    padding: 0 20px;
  }

  .single-product .pdp-brand {
    font-size: 22px;
  }

  .single-product .pdp-header-cart {
    width: 40px;
    min-width: 40px;
    padding: 0;
  }

  .single-product .pdp-header-cart span,
  .single-product .pdp-header-cart b {
    display: none;
  }

  .parth-static-pdp .breadcrumb {
    max-width: none;
    padding: 14px 20px 0;
  }

  .parth-static-pdp .pdp-shell {
    display: block;
    max-width: none;
    min-height: 0;
    margin: 22px 0 0;
  }

  .parth-static-pdp .product-media {
    position: static;
    padding: 0 20px;
  }

  .parth-static-pdp .media-frame {
    width: 100%;
  }

  .parth-static-pdp .pdp-shell > .product-info {
    min-height: 0;
    padding: 34px 20px 48px;
  }

  .parth-static-pdp .product-title {
    font-size: 34px;
  }

  .parth-static-pdp .trust-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .parth-static-pdp .detail-suite,
  .parth-static-pdp .specification-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .parth-static-pdp .detail-heading {
    margin-bottom: 24px;
  }

  .parth-static-pdp .detail-heading h2,
  .parth-static-pdp .protection-copy h2,
  .parth-static-pdp .service-panel__heading h2 {
    max-width: 720px;
    margin-top: 12px;
    font-size: 32px;
  }

  .parth-static-pdp .feature-ledger {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .parth-static-pdp .feature-row:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--pdp-line);
  }

  .parth-static-pdp .feature-row:last-child {
    border-bottom: 0;
  }

  .parth-static-pdp .protection-panel,
  .parth-static-pdp .service-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 48px 0 0;
    padding: 36px 20px 40px;
  }

  .parth-static-pdp .protection-image img {
    padding: 14px;
  }

  .parth-static-pdp .protection-item,
  .parth-static-pdp .service-item {
    grid-template-columns: minmax(170px, .42fr) minmax(0, .58fr);
  }

  .parth-static-pdp .specification-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .parth-static-pdp .related-products {
    padding: 0 24px;
    overflow: hidden;
  }

  .parth-static-pdp .related-products__grid {
    grid-auto-columns: minmax(290px, calc((100% - 44px) / 3));
    grid-template-columns: none;
  }
}

@media (max-width: 640px) {
  .single-product .pdp-announce {
    min-height: 40px;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }

  .parth-static-pdp .media-frame {
    height: auto;
    aspect-ratio: 1;
  }

  .parth-static-pdp .media-frame img {
    padding: 20px;
  }

  .parth-static-pdp .purchase-panel form.cart {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .parth-static-pdp .purchase-panel form.cart div.quantity {
    width: 100%;
  }

  .parth-static-pdp .purchase-panel form.cart .single_add_to_cart_button,
  .parth-static-pdp .purchase-panel form.cart button.single_add_to_cart_button {
    grid-column: 1;
    grid-row: 2;
    min-height: 54px;
  }

  .parth-static-pdp .feature-list,
  .parth-static-pdp .spec-block {
    grid-template-columns: 1fr;
  }

  .parth-static-pdp .product-title {
    font-size: 32px;
  }

  .parth-static-pdp .price {
    font-size: 28px !important;
  }

  .parth-static-pdp .spec-row:nth-child(3) {
    grid-column: auto;
  }

  .parth-static-pdp .detail-suite {
    margin-top: 38px;
  }

  .parth-static-pdp .detail-heading h2,
  .parth-static-pdp .protection-copy h2,
  .parth-static-pdp .service-panel__heading h2 {
    font-size: 28px;
  }

  .parth-static-pdp .detail-heading p {
    font-size: 15px;
    line-height: 1.55;
  }

  .parth-static-pdp .feature-row {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
  }

  .parth-static-pdp .feature-row__media {
    width: 104px;
    border-radius: 12px;
  }

  .parth-static-pdp .feature-row__media img {
    padding: 8px;
  }

  .parth-static-pdp .feature-row__copy strong {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .parth-static-pdp .feature-row__copy span {
    font-size: 13px;
    line-height: 1.45;
  }

  .parth-static-pdp .protection-item,
  .parth-static-pdp .service-item,
  .parth-static-pdp .spec-table-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .parth-static-pdp .related-products {
    margin: 18px auto 74px;
    padding: 0 16px;
  }

  .parth-static-pdp .related-products h2 {
    margin-bottom: 26px;
    font-size: 28px;
  }

  .parth-static-pdp .related-products__grid {
    grid-auto-columns: minmax(250px, 82vw);
    gap: 14px;
    padding-bottom: 24px;
  }

  .parth-static-pdp .related-products .product-card {
    min-height: 368px;
  }

  .parth-static-pdp .related-products .quick-add {
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 42px;
  }

  .parth-static-pdp .related-products .product-info {
    padding: 0 6px 70px;
  }
}

@media (max-width: 960px) {
  .support-header {
    grid-template-columns: minmax(74px, 1fr) auto minmax(74px, 1fr);
    min-height: 74px;
  }

  .support-brand {
    font-size: 25px;
  }

  .support-nav a:first-child {
    display: none;
  }

  .support-nav a {
    min-height: 38px;
    padding: 0 14px;
  }

  .support-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .support-email-card {
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.48fr);
    align-items: end;
  }

  .support-guide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .support-section-heading {
    max-width: 620px;
  }

  .support-range-link {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .support-header {
    min-height: 72px;
    padding-inline: 16px;
  }

  .support-brand {
    font-size: 23px;
  }

  .support-brand span {
    margin-top: 7px;
    font-size: 9px;
  }

  .support-nav a {
    min-width: 58px;
    padding: 0 12px;
    font-size: 12px;
  }

  .support-page {
    padding-top: 0;
  }

  .support-hero,
  .support-guide,
  .support-topics,
  .support-range-link,
  .support-footer {
    width: calc(100vw - 32px);
  }

  .support-hero {
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .support-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .support-hero__copy > p:not(.support-kicker) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .support-email-card {
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-email-card strong {
    font-size: 20px;
  }

  .support-guide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0;
  }

  .support-section-heading h2,
  .support-topic h2 {
    font-size: 30px;
  }

  .support-steps {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .support-steps article {
    min-height: 0;
    gap: 12px;
    padding: 22px 0;
    border-top: 1px solid var(--support-line);
    border-right: 0;
  }

  .support-steps article:last-child {
    border-bottom: 1px solid var(--support-line);
  }

  .support-topics {
    grid-template-columns: 1fr;
    padding: 38px 0 64px;
  }

  .support-topic,
  .support-topic:first-child,
  .support-topic:last-child {
    min-height: 0;
    gap: 12px;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid var(--support-line);
  }

  .support-topic:last-child {
    border-bottom: 1px solid var(--support-line);
  }

  .support-range-link {
    padding: 24px;
  }

  .support-range-link h2 {
    font-size: 32px;
  }

  .support-range-link a {
    width: 100%;
  }

  .support-footer {
    flex-direction: column;
  }
}

/* PARTH consumer guides. */
.guide-page {
  --guide-text: #111111;
  --guide-muted: #5f625d;
  --guide-line: #dedbd3;
  --guide-soft: #f5f3ec;
  --guide-surface: #ffffff;
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  padding: 132px 0 96px;
  color: var(--guide-text);
}

.guide-page a {
  color: inherit;
  text-decoration: none;
}

.guide-kicker {
  margin: 0 0 14px;
  color: var(--guide-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-hero,
.guide-article-hero {
  max-width: 860px;
  padding-bottom: 58px;
}

.guide-hero h1,
.guide-article-hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.guide-hero p,
.guide-article-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--guide-muted);
  font-size: 18px;
  line-height: 1.65;
}

.guide-featured,
.guide-standard-panel,
.guide-answer-box,
.guide-copy-section,
.guide-faq {
  border-top: 1px solid var(--guide-line);
  padding: 44px 0;
}

.guide-section-heading h2,
.guide-standard-panel h2,
.guide-answer-box h2,
.guide-copy-section h2,
.guide-faq h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.guide-feature-card {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: 30px;
  border: 1px solid var(--guide-line);
  border-radius: 8px;
  background: var(--guide-soft);
}

.guide-feature-card h3 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.guide-feature-card p {
  max-width: 680px;
  margin: 0;
  color: var(--guide-muted);
  font-size: 16px;
  line-height: 1.7;
}

.guide-card-label,
.guide-card-link {
  color: var(--guide-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card-link {
  color: var(--guide-text);
}

.guide-choice-grid,
.guide-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 0 44px;
}

.guide-choice-grid article,
.guide-comparison-grid article,
.guide-faq article {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--guide-line);
  border-radius: 8px;
  background: var(--guide-surface);
}

.guide-choice-grid span,
.guide-comparison-grid span {
  color: var(--guide-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-choice-grid h2,
.guide-comparison-grid h2,
.guide-faq h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.guide-choice-grid p,
.guide-comparison-grid p,
.guide-copy-section p,
.guide-copy-section li,
.guide-answer-box p,
.guide-faq p,
.guide-standard-panel li {
  margin: 0;
  color: var(--guide-muted);
  font-size: 16px;
  line-height: 1.7;
}

.guide-choice-grid a,
.guide-product-links a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-standard-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 44px;
}

.guide-standard-panel ul,
.guide-copy-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-standard-panel li,
.guide-copy-section li {
  position: relative;
  padding-left: 18px;
}

.guide-standard-panel li::before,
.guide-copy-section li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--guide-text);
  content: "";
}

.guide-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--guide-muted);
  font-size: 13px;
}

.guide-breadcrumb strong {
  color: var(--guide-text);
  font-weight: 700;
}

.guide-article {
  max-width: 1040px;
}

.guide-answer-box {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
}

.guide-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.guide-copy-section {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.guide-faq {
  display: grid;
  gap: 18px;
}

@media (max-width: 900px) {
  .guide-page {
    width: min(100% - 32px, 760px);
    padding: 108px 0 72px;
  }

  .guide-choice-grid,
  .guide-comparison-grid,
  .guide-standard-panel,
  .guide-answer-box {
    grid-template-columns: 1fr;
  }

  .guide-hero h1,
  .guide-article-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 560px) {
  .guide-page {
    width: min(100% - 24px, 520px);
    padding-top: 92px;
  }

  .guide-hero,
  .guide-article-hero {
    padding-bottom: 38px;
  }

  .guide-hero h1,
  .guide-article-hero h1 {
    font-size: 38px;
    line-height: 1;
  }

  .guide-feature-card,
  .guide-choice-grid article,
  .guide-comparison-grid article,
  .guide-faq article {
    padding: 20px;
  }
}
