:root {
  color-scheme: light;
  --pv3-bg: #fff8ed;
  --pv3-bg-strong: #ffffff;
  --pv3-surface: rgba(255, 255, 255, 0.72);
  --pv3-surface-strong: rgba(255, 255, 255, 0.9);
  --pv3-text: #3b0708;
  --pv3-muted: #6f5750;
  --pv3-red: #a70711;
  --pv3-red-strong: #780209;
  --pv3-gold: #ffc72c;
  --pv3-gold-strong: #f4a900;
  --pv3-border: rgba(118, 22, 21, 0.13);
  --pv3-shadow: 0 26px 70px rgba(101, 10, 12, 0.16);
  --pv3-shadow-soft: 0 18px 44px rgba(58, 10, 10, 0.12);
  --pv3-radius-xl: 34px;
  --pv3-radius-lg: 24px;
  --pv3-radius-md: 16px;
  --pv3-header-h: 82px;
  --pv3-ease: cubic-bezier(.22, 1, .36, 1);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --pv3-bg: #0f1718;
  --pv3-bg-strong: #141e20;
  --pv3-surface: rgba(22, 31, 33, 0.72);
  --pv3-surface-strong: rgba(18, 27, 29, 0.9);
  --pv3-text: #fff0bd;
  --pv3-muted: #c4b99a;
  --pv3-red: #b31a1d;
  --pv3-red-strong: #7f0e12;
  --pv3-gold: #ffd04a;
  --pv3-gold-strong: #ffbd19;
  --pv3-border: rgba(255, 218, 105, 0.16);
  --pv3-shadow: 0 28px 80px rgba(255, 196, 44, 0.11);
  --pv3-shadow-soft: 0 18px 52px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pv3-bg);
  color: var(--pv3-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 16% 13%, rgba(255, 199, 44, .34), transparent 23rem),
    radial-gradient(circle at 86% 22%, rgba(167, 7, 17, .18), transparent 24rem),
    linear-gradient(145deg, var(--pv3-bg), var(--pv3-bg-strong));
}

:root[data-theme="dark"] body::before {
  background:
    radial-gradient(circle at 14% 12%, rgba(167, 7, 17, .34), transparent 22rem),
    radial-gradient(circle at 84% 18%, rgba(255, 199, 44, .16), transparent 24rem),
    linear-gradient(145deg, #0f1718, #10191b 58%, #1b1010);
}

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

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

.pv3-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
}

.pv3-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .76;
  background-image:
    radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--pv3-red) 34%, transparent) 1px, transparent 0),
    linear-gradient(135deg, transparent 0 46%, color-mix(in srgb, var(--pv3-gold) 14%, transparent) 46% 47%, transparent 47% 100%);
  background-size: 28px 28px, 220px 220px;
  mask-image: radial-gradient(circle at center, #000 0, transparent 80%);
}

.pv3-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: auto;
  padding: 28px clamp(16px, 4vw, 72px) 0;
  transform: none;
  transition: padding .28s var(--pv3-ease);
}

.pv3-header.is-scrolled {
  padding-top: 14px;
}

.pv3-nav {
  width: min(1180px, 100%);
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 14px 10px 18px;
  border: 1px solid var(--pv3-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--pv3-surface-strong) 84%, transparent);
  box-shadow: var(--pv3-shadow-soft);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

.pv3-brand,
.pv3-nav__links,
.pv3-theme-toggle,
.pv3-nav__actions {
  display: flex;
  align-items: center;
}

.pv3-brand {
  gap: 10px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.pv3-brand__text {
  display: inline;
}

.pv3-brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--pv3-red);
  color: #fff;
  box-shadow: 0 10px 28px rgba(167, 7, 17, .28);
}

:root[data-theme="dark"] .pv3-brand__mark {
  background: var(--pv3-gold);
  color: #101719;
}

.pv3-nav__links {
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.pv3-nav-link,
.pv3-nav__links a {
  position: relative;
  padding: 8px 0;
  color: color-mix(in srgb, var(--pv3-text) 76%, transparent);
  transition: color .22s var(--pv3-ease), transform .22s var(--pv3-ease);
}

.pv3-nav-link:hover,
.pv3-nav__links a:hover {
  color: var(--pv3-red);
  transform: translateY(-2px);
}

:root[data-theme="dark"] .pv3-nav-link:hover,
:root[data-theme="dark"] .pv3-nav__links a:hover {
  color: var(--pv3-gold);
}

.pv3-theme-toggle,
.pv3-menu-toggle,
.pv3-mini-select__button,
.pv3-mini-select__menu button {
  border: 0;
  cursor: pointer;
  color: inherit;
}

.pv3-nav__actions {
  justify-content: end;
  gap: 8px;
}

.pv3-mobile-tools {
  display: none;
}

.pv3-mini-select {
  position: relative;
}

.pv3-mini-select__button,
.pv3-icon-link {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pv3-text) 8%, transparent);
  color: var(--pv3-text);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .2s var(--pv3-ease), background .2s var(--pv3-ease), box-shadow .2s var(--pv3-ease);
}

.pv3-mini-select__button {
  padding: 0 12px;
}

.pv3-icon-link {
  width: 42px;
}

.pv3-mini-select__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 156px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--pv3-border);
  border-radius: 18px;
  padding: 8px;
  background: color-mix(in srgb, var(--pv3-surface-strong) 94%, transparent);
  box-shadow: var(--pv3-shadow-soft);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s var(--pv3-ease), transform .2s var(--pv3-ease);
}

.pv3-mini-select:hover .pv3-mini-select__menu,
.pv3-mini-select:focus-within .pv3-mini-select__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pv3-mini-select__menu a,
.pv3-mini-select__menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 12px;
  padding: 9px 10px;
  background: transparent;
  color: var(--pv3-text);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
}

.pv3-mini-select__menu small {
  color: var(--pv3-muted);
  font-size: 11px;
}

.pv3-mini-select__menu .is-active,
.pv3-mini-select__menu a:hover,
.pv3-mini-select__menu button:hover,
.pv3-icon-link:hover {
  background: var(--pv3-red);
  color: #fff;
}

:root[data-theme="dark"] .pv3-mini-select__menu .is-active,
:root[data-theme="dark"] .pv3-mini-select__menu a:hover,
:root[data-theme="dark"] .pv3-mini-select__menu button:hover,
:root[data-theme="dark"] .pv3-icon-link:hover {
  background: var(--pv3-gold);
  color: #111719;
}

.pv3-theme-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  justify-content: space-between;
  padding: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pv3-text) 10%, transparent);
  transition: transform .2s var(--pv3-ease), background .2s var(--pv3-ease), box-shadow .2s var(--pv3-ease);
}

.pv3-theme-toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pv3-red);
  transition: transform .26s var(--pv3-ease), background .26s var(--pv3-ease);
}

:root[data-theme="dark"] .pv3-theme-toggle::after {
  transform: translateX(24px);
  background: var(--pv3-gold);
}

.pv3-theme-toggle span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  font-size: 10px;
}

.pv3-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--pv3-red);
  transition: transform .2s var(--pv3-ease), box-shadow .2s var(--pv3-ease), background .2s var(--pv3-ease);
}

.pv3-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
}

.pv3-hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  padding: 156px 42px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
  align-items: center;
  gap: 46px;
}

.pv3-hero::before {
  content: "";
  position: absolute;
  inset: 108px 0 42px;
  border: 1px solid var(--pv3-border);
  border-radius: var(--pv3-radius-xl);
  background: linear-gradient(135deg, color-mix(in srgb, var(--pv3-surface) 86%, transparent), color-mix(in srgb, var(--pv3-surface) 58%, transparent));
  box-shadow: var(--pv3-shadow);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
}

.pv3-hero__content,
.pv3-hero__visual {
  position: relative;
  z-index: 1;
}

.pv3-hero__content {
  text-align: center;
}

.pv3-hero h1 {
  max-width: 740px;
  margin: 0 auto;
  color: var(--pv3-red-strong);
  font-size: clamp(43px, 6vw, 78px);
  font-weight: 1000;
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
}

:root[data-theme="dark"] .pv3-hero h1 {
  color: var(--pv3-gold);
  text-shadow: 0 16px 42px rgba(255, 199, 44, .14);
}

.pv3-hero p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--pv3-muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.7;
  text-transform: uppercase;
}

.pv3-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pv3-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 23px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .24s var(--pv3-ease), box-shadow .24s var(--pv3-ease), background .24s var(--pv3-ease);
}

.pv3-btn:hover {
  transform: translateY(-4px);
}

.pv3-btn--primary {
  background: var(--pv3-red);
  color: #fff;
  box-shadow: 0 14px 34px rgba(167, 7, 17, .28);
}

:root[data-theme="dark"] .pv3-btn--primary {
  background: var(--pv3-gold);
  color: #141719;
  box-shadow: 0 14px 34px rgba(255, 199, 44, .24);
}

.pv3-btn--ghost {
  border: 1px solid var(--pv3-border);
  background: color-mix(in srgb, var(--pv3-surface-strong) 82%, transparent);
  color: var(--pv3-text);
}

.pv3-hero__visual {
  min-height: 440px;
}

.pv3-hero-card {
  position: relative;
  overflow: hidden;
  width: min(390px, 100%);
  margin: 0 auto;
  border: 1px solid var(--pv3-border);
  border-radius: 32px;
  background: color-mix(in srgb, var(--pv3-surface-strong) 74%, transparent);
  box-shadow: var(--pv3-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pv3-hero-card::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 44, .42), rgba(167, 7, 17, .14) 56%, transparent 72%);
  filter: blur(20px);
}

.pv3-hero-card img {
  position: relative;
  width: 100%;
  height: 420px;
  object-fit: contain;
  padding: 42px;
  transform: scale(1.08);
}

.pv3-hero-note {
  position: absolute;
  right: 8px;
  bottom: 18px;
  padding: 14px 18px;
  border: 1px solid var(--pv3-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--pv3-surface-strong) 88%, transparent);
  box-shadow: var(--pv3-shadow-soft);
  backdrop-filter: blur(18px);
}

.pv3-hero-note strong,
.pv3-hero-note span {
  display: block;
}

.pv3-hero-note strong {
  color: var(--pv3-red);
  font-size: 16px;
  text-transform: uppercase;
}

.pv3-hero-note span {
  margin-top: 2px;
  color: var(--pv3-muted);
  font-size: 12px;
  font-weight: 800;
}

.pv3-burger-orbit span,
.pv3-hero__decor {
  position: absolute;
  pointer-events: none;
}

.pv3-burger-orbit span:first-child {
  inset: 40px 18px auto auto;
  width: 112px;
  height: 112px;
  border: 2px dashed color-mix(in srgb, var(--pv3-gold) 64%, transparent);
  border-radius: 50%;
}

.pv3-burger-orbit span:last-child {
  left: 18px;
  bottom: 74px;
  width: 74px;
  height: 74px;
  border: 2px solid color-mix(in srgb, var(--pv3-red) 32%, transparent);
  border-radius: 24px;
  transform: rotate(16deg);
}

.pv3-hero__decor--left {
  left: 14px;
  top: 260px;
  width: 96px;
  height: 96px;
  border-left: 8px solid color-mix(in srgb, var(--pv3-red) 20%, transparent);
  border-radius: 50%;
}

.pv3-hero__decor--right {
  right: 28px;
  top: 194px;
  width: 88px;
  height: 88px;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--pv3-text) 35%, transparent) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

.pv3-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.pv3-shell--homepage #products.pv3-section {
  padding-top: 48px;
}

.pv3-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 126px 0 88px;
}

.pv3-page-hero {
  margin-bottom: 34px;
  border: 1px solid var(--pv3-border);
  border-radius: var(--pv3-radius-xl);
  padding: clamp(34px, 6vw, 76px);
  background: linear-gradient(135deg, color-mix(in srgb, var(--pv3-surface) 90%, transparent), color-mix(in srgb, var(--pv3-surface) 56%, transparent));
  box-shadow: var(--pv3-shadow);
  backdrop-filter: blur(24px) saturate(1.2);
}

.pv3-page-hero span,
.pv3-kicker {
  color: var(--pv3-red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}

:root[data-theme="dark"] .pv3-page-hero span,
:root[data-theme="dark"] .pv3-kicker {
  color: var(--pv3-gold);
}

.pv3-page-hero h1 {
  max-width: 840px;
  margin: 10px 0 0;
  color: var(--pv3-text);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 1000;
  line-height: .96;
}

.pv3-page-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--pv3-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

.pv3-section--tight {
  padding-top: 24px;
}

.pv3-section--plain {
  width: 100%;
  margin: 0;
}

.pv3-section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.pv3-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.pv3-section-heading span,
.pv3-product-section__head small,
.pv3-story__copy span {
  color: var(--pv3-red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

:root[data-theme="dark"] .pv3-section-heading span,
:root[data-theme="dark"] .pv3-product-section__head small,
:root[data-theme="dark"] .pv3-story__copy span {
  color: var(--pv3-gold);
}

.pv3-section-heading h2,
.pv3-story__copy h2 {
  margin: 8px 0 0;
  color: var(--pv3-text);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 1000;
  line-height: 1.02;
}

.pv3-category-rail-wrap--mobile {
  display: none;
}

.pv3-category-rail-wrap--desktop {
  position: fixed;
  top: 50%;
  left: 26px;
  z-index: 90;
  width: 148px;
  margin: 0;
  overflow: visible;
  padding: 0;
  transform: translateY(-50%);
  scrollbar-width: none;
}

.pv3-category-rail-wrap--desktop::-webkit-scrollbar,
.pv3-category-rail-wrap--mobile::-webkit-scrollbar {
  display: none;
}

.pv3-category-rail-wrap--desktop .pv3-category-rail {
  display: flex;
  width: 100%;
  max-height: calc(100vh - 190px);
  flex-direction: column;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--pv3-border);
  border-radius: 28px;
  background: color-mix(in srgb, var(--pv3-surface-strong) 82%, transparent);
  box-shadow: var(--pv3-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow-y: auto;
  scrollbar-width: none;
}

.pv3-category-rail-wrap--mobile .pv3-category-rail {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  max-height: none;
  flex-direction: row;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--pv3-border);
  border-radius: 28px;
  background: color-mix(in srgb, var(--pv3-surface-strong) 82%, transparent);
  box-shadow: var(--pv3-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.pv3-category-rail-wrap--desktop .pv3-category-rail::-webkit-scrollbar,
.pv3-category-rail-wrap--mobile .pv3-category-rail::-webkit-scrollbar {
  display: none;
}

.pv3-chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 12px;
  color: var(--pv3-muted);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
  transition: transform .22s var(--pv3-ease), background .22s var(--pv3-ease), color .22s var(--pv3-ease), box-shadow .22s var(--pv3-ease);
}

.pv3-category-rail-wrap--desktop .pv3-chip:hover {
  transform: translateX(5px);
  color: var(--pv3-red);
}

.pv3-category-rail-wrap--desktop .pv3-chip.is-active {
  background: var(--pv3-red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(167, 7, 17, .24);
  transform: translateX(5px);
}

:root[data-theme="dark"] .pv3-category-rail-wrap--desktop .pv3-chip.is-active {
  background: var(--pv3-gold);
  color: #11191a;
}

.pv3-category-rail-wrap--mobile .pv3-chip:hover {
  transform: translateY(-3px);
  color: var(--pv3-red);
}

.pv3-category-rail-wrap--mobile .pv3-chip.is-active {
  background: var(--pv3-red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(167, 7, 17, .24);
  transform: translateY(-3px);
}

:root[data-theme="dark"] .pv3-category-rail-wrap--mobile .pv3-chip.is-active {
  background: var(--pv3-gold);
  color: #11191a;
}

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

.pv3-category-card,
.pv3-product-card,
.pv3-story,
.pv3-empty {
  border: 1px solid var(--pv3-border);
  background: color-mix(in srgb, var(--pv3-surface) 88%, transparent);
  box-shadow: var(--pv3-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pv3-category-card {
  display: flex;
  min-height: 152px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--pv3-radius-lg);
  padding: 18px;
  transition: transform .25s var(--pv3-ease), box-shadow .25s var(--pv3-ease);
}

.pv3-category-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--pv3-shadow);
}

.pv3-category-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: var(--pv3-gold);
  color: #1b1710;
  font-size: 22px;
}

.pv3-category-card__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.pv3-category-card__icon.is-fallback::after {
  content: "\f805";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.pv3-category-card strong {
  margin-top: 14px;
  color: var(--pv3-text);
  font-size: 17px;
  line-height: 1.15;
}

.pv3-category-card small {
  margin-top: 6px;
  color: var(--pv3-muted);
  font-weight: 800;
}

.pv3-product-section {
  scroll-margin-top: 128px;
  padding-top: 26px;
}

.pv3-product-section + .pv3-product-section {
  margin-top: 46px;
}

.pv3-product-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.pv3-product-section__head h3 {
  margin: 4px 0 0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 1000;
}

.pv3-product-section__head a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 11px 16px;
  background: color-mix(in srgb, var(--pv3-text) 8%, transparent);
  color: var(--pv3-red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.pv3-product-card {
  overflow: hidden;
  border-radius: var(--pv3-radius-lg);
  transition: transform .25s var(--pv3-ease), box-shadow .25s var(--pv3-ease);
}

.pv3-product-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--pv3-shadow);
}

.pv3-product-card__media {
  display: block;
  height: 210px;
  overflow: hidden;
  background: color-mix(in srgb, var(--pv3-text) 8%, transparent);
}

.pv3-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--pv3-ease);
}

.pv3-product-card:hover .pv3-product-card__media img {
  transform: scale(1.08);
}

.pv3-product-card__body {
  padding: 18px;
}

.pv3-product-card__body span {
  display: inline-flex;
  margin-bottom: 9px;
  border-radius: 999px;
  padding: 5px 10px;
  background: color-mix(in srgb, var(--pv3-gold) 38%, transparent);
  color: var(--pv3-red-strong);
  font-size: 11px;
  font-weight: 950;
}

:root[data-theme="dark"] .pv3-product-card__body span {
  color: var(--pv3-gold);
}

.pv3-product-card__body h4 {
  min-height: 48px;
  margin: 0;
  color: var(--pv3-text);
  font-size: 22px;
  font-weight: 1000;
  line-height: 1.1;
}

.pv3-product-card__body p {
  min-height: 46px;
  margin: 10px 0 0;
  color: var(--pv3-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.pv3-product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.pv3-product-card__foot strong {
  color: var(--pv3-red);
  font-size: 23px;
  font-weight: 1000;
}

:root[data-theme="dark"] .pv3-product-card__foot strong {
  color: var(--pv3-gold);
}

.pv3-product-card__foot a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--pv3-red);
  color: #fff;
}

.pv3-card-cart-form {
  margin-top: 14px;
}

.pv3-card-cart-form .pv3-btn {
  width: 100%;
  min-height: 40px;
}

:root[data-theme="dark"] .pv3-product-card__foot a {
  background: var(--pv3-gold);
  color: #101719;
}

.pv3-story {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 82px;
  display: grid;
  grid-template-columns: .8fr 1fr;
  align-items: center;
  gap: 36px;
  border-radius: var(--pv3-radius-xl);
  padding: 24px;
}

.pv3-story__image {
  overflow: hidden;
  border-radius: 28px;
  background: var(--pv3-red);
}

.pv3-story__image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.pv3-story__copy {
  padding: 18px clamp(4px, 3vw, 34px);
}

.pv3-story__copy p {
  max-width: 620px;
  margin: 18px 0 26px;
  color: var(--pv3-muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.pv3-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--pv3-border);
  border-radius: var(--pv3-radius-lg);
  padding: 24px;
  background: #111719;
  color: #fff;
}

.pv3-footer strong {
  font-size: 20px;
  font-weight: 1000;
}

.pv3-footer p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.66);
}

.pv3-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pv3-footer a {
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255,255,255,.1);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pv3-footer a:hover {
  background: var(--pv3-gold);
  color: #111719;
}

@media (min-width: 981px) {
  .pv3-shell:has([data-category-bar]) .pv3-hero,
  .pv3-shell:has([data-category-bar]) .pv3-hero-container,
  .pv3-shell:has([data-category-bar]) .pv3-section,
  .pv3-shell:has([data-category-bar]) .pv3-story {
    width: min(1100px, calc(100% - 300px));
    margin-left: auto;
    margin-right: 210px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-hero {
    min-height: 700px;
    padding: 142px 36px 54px;
    gap: 38px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-hero h1 {
    font-size: clamp(40px, 5.2vw, 70px);
  }

  .pv3-shell:has([data-category-bar]) .pv3-hero p {
    font-size: 13px;
    max-width: 560px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-section {
    padding: 60px 0;
  }

  .pv3-shell:has([data-category-bar]) .pv3-product-section__head h3,
  .pv3-shell:has([data-category-bar]) .pv3-section-heading h2,
  .pv3-shell:has([data-category-bar]) .pv3-story__copy h2 {
    font-size: clamp(28px, 3.6vw, 46px);
  }

  .pv3-shell:has([data-category-bar]) .pv3-product-grid {
    gap: 18px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-product-card__media {
    height: 190px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-product-card__body {
    padding: 16px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-product-card__body h4 {
    font-size: 20px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-product-card__body p {
    font-size: 13px;
    min-height: 42px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-product-card__foot strong {
    font-size: 21px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-story {
    gap: 30px;
    padding: 22px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-story__image img {
    height: 300px;
  }

  .pv3-shell:has([data-category-bar]) .pv3-story__copy p {
    font-size: 15px;
    margin: 16px 0 22px;
  }
}

.pv3-empty {
  border-radius: var(--pv3-radius-lg);
  padding: 28px;
  color: var(--pv3-muted);
  font-weight: 800;
}

.pv3-muted {
  color: var(--pv3-muted);
}

.pv3-shop-layout {
  display: grid;
  grid-template-columns: minmax(230px, 280px) 1fr;
  gap: 24px;
  align-items: start;
}

.pv3-filter-panel {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.pv3-filter-card,
.pv3-search-form,
.pv3-shop-toolbar,
.pv3-content-card,
.pv3-form-card,
.pv3-contact-info,
.pv3-detail__media,
.pv3-detail__info {
  border: 1px solid var(--pv3-border);
  border-radius: var(--pv3-radius-lg);
  background: color-mix(in srgb, var(--pv3-surface) 88%, transparent);
  box-shadow: var(--pv3-shadow-soft);
  backdrop-filter: blur(18px);
}

.pv3-filter-card,
.pv3-search-form {
  padding: 18px;
}

.pv3-filter-card h2,
.pv3-content-card h2 {
  margin: 0 0 14px;
  color: var(--pv3-text);
  font-size: 20px;
  font-weight: 1000;
}

.pv3-search-form label,
.pv3-price-grid label,
.pv3-form-card label,
.pv3-lock-form label {
  display: grid;
  gap: 8px;
  color: var(--pv3-muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pv3-input-shell {
  position: relative;
}

.pv3-input-shell i {
  position: absolute;
  left: 14px;
  top: 50%;
  color: var(--pv3-red);
  transform: translateY(-50%);
}

.pv3-input-shell input,
.pv3-price-grid input,
.pv3-shop-toolbar select,
.pv3-form-card input,
.pv3-form-card textarea,
.pv3-form-card select,
.pv3-lock-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--pv3-border);
  border-radius: 16px;
  outline: none;
  background: color-mix(in srgb, var(--pv3-bg-strong) 78%, transparent);
  color: var(--pv3-text);
  padding: 12px 14px;
  font: inherit;
  font-weight: 750;
}

.pv3-input-shell input {
  padding-left: 40px;
}

.pv3-form-card textarea {
  min-height: 132px;
  resize: vertical;
}

.pv3-filter-link {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--pv3-muted);
  font-size: 13px;
  font-weight: 950;
  transition: transform .22s var(--pv3-ease), background .22s var(--pv3-ease), color .22s var(--pv3-ease);
}

.pv3-filter-link:hover,
.pv3-filter-link.is-active {
  background: var(--pv3-red);
  color: #fff;
  transform: translateY(-2px);
}

:root[data-theme="dark"] .pv3-filter-link:hover,
:root[data-theme="dark"] .pv3-filter-link.is-active {
  background: var(--pv3-gold);
  color: #111719;
}

.pv3-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.pv3-shop-main {
  min-width: 0;
}

.pv3-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 14px 16px;
}

.pv3-shop-toolbar strong {
  color: var(--pv3-red);
  font-size: 24px;
  font-weight: 1000;
}

:root[data-theme="dark"] .pv3-shop-toolbar strong {
  color: var(--pv3-gold);
}

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

.pv3-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.pv3-pagination a,
.pv3-pagination span {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pv3-surface-strong) 86%, transparent);
  color: var(--pv3-text);
  font-weight: 1000;
  box-shadow: var(--pv3-shadow-soft);
}

.pv3-detail {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, 1.06fr);
  gap: 26px;
  align-items: start;
}

.pv3-detail__media,
.pv3-detail__info,
.pv3-content-card,
.pv3-form-card {
  padding: 22px;
}

.pv3-detail__media {
  position: sticky;
  top: 24px;
}

.pv3-detail__media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  object-fit: cover;
  background: color-mix(in srgb, var(--pv3-text) 8%, transparent);
}

.pv3-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.pv3-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
}

.pv3-detail__info h1 {
  margin: 10px 0 14px;
  color: var(--pv3-text);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 1000;
  line-height: 1;
}

.pv3-detail__desc {
  color: var(--pv3-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

.pv3-detail__price {
  margin-top: 24px;
  color: var(--pv3-red);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 1000;
}

:root[data-theme="dark"] .pv3-detail__price {
  color: var(--pv3-gold);
}

.pv3-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pv3-variation-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.pv3-variation-list div,
.pv3-detail-meta div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  padding: 13px 15px;
  background: color-mix(in srgb, var(--pv3-text) 7%, transparent);
}

.pv3-variation-list span,
.pv3-detail-meta dt {
  color: var(--pv3-muted);
  font-weight: 850;
}

.pv3-variation-list strong,
.pv3-detail-meta dd {
  margin: 0;
  color: var(--pv3-text);
  font-weight: 1000;
}

.pv3-detail-meta {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.pv3-content-card {
  margin-top: 28px;
}

.pv3-richtext {
  color: var(--pv3-muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.85;
}

.pv3-richtext :is(h1, h2, h3, h4) {
  color: var(--pv3-text);
}

.pv3-contact-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 24px;
}

.pv3-contact-info {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.pv3-contact-info div {
  display: grid;
  gap: 6px;
  border-radius: 22px;
  padding: 20px;
  background: color-mix(in srgb, var(--pv3-text) 7%, transparent);
}

.pv3-contact-info i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: var(--pv3-gold);
  color: #17120a;
}

.pv3-contact-info span {
  color: var(--pv3-muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pv3-contact-info strong {
  color: var(--pv3-text);
  font-size: 18px;
}

.pv3-form-card form,
.pv3-lock-form {
  display: grid;
  gap: 16px;
}

.pv3-form-card h2,
.pv3-summary-card h2,
.pv3-account-main h2 {
  margin: 0 0 18px;
  color: var(--pv3-text);
  font-size: 22px;
  font-weight: 1000;
}

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

.pv3-form-grid__full {
  grid-column: 1 / -1;
}

.pv3-form-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.pv3-form-row--between {
  justify-content: space-between;
}

.pv3-check {
  display: inline-flex !important;
  align-items: center;
  gap: 9px !important;
  color: var(--pv3-muted);
  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.pv3-check input {
  width: auto !important;
  min-height: 0 !important;
}

.pv3-auth-page {
  padding-top: 146px;
}

.pv3-auth-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  gap: 28px;
  align-items: center;
}

.pv3-auth-copy {
  border: 1px solid var(--pv3-border);
  border-radius: var(--pv3-radius-xl);
  padding: clamp(32px, 6vw, 70px);
  background: linear-gradient(135deg, color-mix(in srgb, var(--pv3-surface) 88%, transparent), color-mix(in srgb, var(--pv3-surface) 52%, transparent));
  box-shadow: var(--pv3-shadow);
  backdrop-filter: blur(22px);
}

.pv3-auth-copy h1 {
  margin: 12px 0 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  font-weight: 1000;
}

.pv3-auth-copy p,
.pv3-auth-switch {
  color: var(--pv3-muted);
  font-weight: 700;
  line-height: 1.7;
}

.pv3-auth-switch {
  margin: 18px 0 0;
  text-align: center;
}

.pv3-auth-switch a,
.pv3-form-row a {
  color: var(--pv3-red);
  font-weight: 950;
}

.pv3-buy-box {
  display: grid;
  grid-template-columns: 1fr 120px auto;
  gap: 12px;
  align-items: end;
  margin-top: 24px;
  border: 1px solid var(--pv3-border);
  border-radius: 24px;
  padding: 16px;
  background: color-mix(in srgb, var(--pv3-text) 6%, transparent);
}

.pv3-buy-box label {
  display: grid;
  gap: 8px;
  color: var(--pv3-muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pv3-buy-box input,
.pv3-buy-box select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--pv3-border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--pv3-bg-strong) 78%, transparent);
  color: var(--pv3-text);
  padding: 10px 12px;
  font: inherit;
  font-weight: 800;
}

.pv3-commerce-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.pv3-commerce-list {
  display: grid;
  gap: 14px;
}

.pv3-line-item,
.pv3-summary-card,
.pv3-account-nav,
.pv3-account-hero,
.pv3-stat-card,
.pv3-address-card {
  border: 1px solid var(--pv3-border);
  background: color-mix(in srgb, var(--pv3-surface) 88%, transparent);
  box-shadow: var(--pv3-shadow-soft);
  backdrop-filter: blur(18px);
}

.pv3-line-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  border-radius: var(--pv3-radius-lg);
  padding: 14px;
}

.pv3-line-item__media {
  display: grid;
  width: 86px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: var(--pv3-gold);
  color: #17120a;
}

.pv3-line-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pv3-line-item h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 1000;
}

.pv3-line-item p,
.pv3-line-item small {
  margin: 4px 0 0;
  color: var(--pv3-muted);
  font-weight: 800;
}

.pv3-line-item strong,
.pv3-summary-card strong {
  color: var(--pv3-red);
  font-size: 18px;
  font-weight: 1000;
}

.pv3-summary-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  border-radius: var(--pv3-radius-lg);
  padding: 22px;
}

.pv3-summary-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--pv3-border);
  padding-bottom: 11px;
  color: var(--pv3-muted);
  font-weight: 850;
}

.pv3-summary-card .is-total {
  border-bottom: 0;
  color: var(--pv3-text);
  font-size: 20px;
}

.pv3-account-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.pv3-account-nav {
  position: sticky;
  top: 96px;
  border-radius: var(--pv3-radius-lg);
  padding: 18px;
}

.pv3-account-user {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--pv3-border);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.pv3-account-user > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--pv3-red);
  color: #fff;
  font-weight: 1000;
}

.pv3-account-user strong,
.pv3-account-user small {
  display: block;
}

.pv3-account-user small {
  color: var(--pv3-muted);
  margin-top: 3px;
}

.pv3-account-nav nav {
  display: grid;
  gap: 6px;
}

.pv3-account-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 14px;
  padding: 11px 12px;
  color: var(--pv3-muted);
  font-size: 13px;
  font-weight: 950;
}

.pv3-account-nav a:hover,
.pv3-account-nav a.is-active {
  background: var(--pv3-red);
  color: #fff;
}

.pv3-account-main {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.pv3-account-hero {
  border-radius: var(--pv3-radius-xl);
  padding: clamp(26px, 4vw, 44px);
}

.pv3-account-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 1000;
}

.pv3-account-hero p {
  color: var(--pv3-muted);
  font-weight: 700;
  line-height: 1.7;
}

.pv3-account-grid,
.pv3-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pv3-stat-card,
.pv3-address-card {
  border-radius: 22px;
  padding: 18px;
}

.pv3-stat-card strong {
  display: block;
  color: var(--pv3-red);
  font-size: 34px;
  font-weight: 1000;
}

.pv3-stat-card span,
.pv3-address-card span,
.pv3-address-card small {
  display: block;
  color: var(--pv3-muted);
  margin-top: 5px;
  font-weight: 800;
}

.pv3-table {
  display: grid;
  gap: 8px;
}

.pv3-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 13px 14px;
  background: color-mix(in srgb, var(--pv3-text) 6%, transparent);
  color: var(--pv3-muted);
  font-weight: 850;
}

.pv3-table-row strong {
  color: var(--pv3-red);
}

.pv3-form-card small {
  color: var(--pv3-red);
  letter-spacing: 0;
  text-transform: none;
}

.pv3-alert {
  margin-bottom: 16px;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 850;
}

.pv3-alert--success {
  background: rgba(34, 197, 94, .14);
  color: #15803d;
}

.pv3-alert--error {
  background: rgba(167, 7, 17, .12);
  color: var(--pv3-red);
}

.pv3-alert--info {
  background: rgba(59, 130, 246, .12);
  color: #1d4ed8;
}

.pv3-alert--warning {
  background: rgba(245, 158, 11, .16);
  color: #92400e;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--pv3-ease), transform .72s var(--pv3-ease);
}

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

@media (max-width: 980px) {
  .pv3-header {
    top: 14px;
    left: 50%;
    width: min(720px, calc(100% - 24px));
    padding: 0;
    transform: translateX(-50%);
  }

  .pv3-header.is-scrolled {
    transform: translateX(-50%);
  }

  .pv3-nav {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    padding: 10px 12px 10px 14px;
    border-radius: 22px;
  }

  .pv3-brand {
    width: auto;
    justify-content: flex-start;
  }

  .pv3-brand__text {
    display: inline;
  }

  .pv3-category-rail-wrap--desktop {
    display: none;
  }

  .pv3-category-rail-wrap--mobile {
    display: block;
    position: relative;
    z-index: 90;
    width: min(720px, calc(100% - 24px));
    margin: 0 auto;
    overflow-x: auto;
    padding: 0 16px;
    transform: none;
  }

  .pv3-category-rail-wrap--mobile .pv3-category-rail {
    width: max-content;
    max-width: 100%;
    max-height: none;
    flex-direction: row;
    border-radius: 999px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .pv3-category-rail-wrap--mobile .pv3-chip:hover,
  .pv3-category-rail-wrap--mobile .pv3-chip.is-active {
    transform: translateY(-4px);
  }

  .pv3-menu-toggle {
    display: block;
    order: 3;
  }

  .pv3-theme-toggle {
    justify-self: end;
  }

  .pv3-nav__actions {
    gap: 6px;
  }

  .pv3-mini-select__button span,
  .pv3-brand__text {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pv3-nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    width: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--pv3-border);
    border-radius: 18px;
    padding: 12px;
    background: var(--pv3-surface-strong);
    box-shadow: var(--pv3-shadow-soft);
    backdrop-filter: blur(18px);
  }

  .pv3-nav__links.is-open {
    display: flex;
  }

  .pv3-nav__links a {
    min-width: 0;
    min-height: 0;
    justify-content: start;
    padding: 12px 14px;
    text-align: left;
  }

  .pv3-nav__links a:hover {
    transform: translateY(-2px);
  }

  .pv3-nav-link::after,
  .pv3-nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .22s var(--pv3-ease), transform .22s var(--pv3-ease);
  }

  .pv3-nav-link:hover::after,
  .pv3-nav-link.is-pressing::after,
  .pv3-nav__links a:hover::after,
  .pv3-nav__links a.is-pressing::after {
    opacity: .9;
    transform: scaleX(1);
  }

  .pv3-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 188px 24px 54px;
  }

  .pv3-hero::before {
    inset: 98px 0 20px;
  }

  .pv3-hero__visual {
    min-height: 360px;
  }

  .pv3-hero-card img {
    height: 340px;
  }

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

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

  .pv3-story {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .pv3-section,
  .pv3-page,
  .pv3-footer {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
  }

  .pv3-shop-layout,
  .pv3-detail,
  .pv3-contact-grid,
  .pv3-auth-panel,
  .pv3-commerce-layout,
  .pv3-account-shell {
    grid-template-columns: 1fr;
  }

  .pv3-filter-panel,
  .pv3-detail__media,
  .pv3-summary-card,
  .pv3-account-nav {
    position: static;
  }

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

  .pv3-buy-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pv3-header {
    width: calc(100% - 20px);
  }

  .pv3-brand__text {
    max-width: 144px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pv3-hero {
    width: calc(100% - 20px);
    padding: 178px 16px 42px;
  }

  .pv3-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .pv3-hero p {
    font-size: 12px;
  }

  .pv3-hero__actions,
  .pv3-product-section__head,
  .pv3-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .pv3-btn,
  .pv3-product-section__head a {
    width: 100%;
  }

  .pv3-category-grid,
  .pv3-product-grid {
    grid-template-columns: 1fr;
  }

  .pv3-product-card__media {
    height: 230px;
  }

  .pv3-story,
  .pv3-section,
  .pv3-page,
  .pv3-footer {
    width: calc(100% - 20px);
  }

  .pv3-page {
    padding-top: 112px;
  }

  .pv3-page-hero {
    padding: 28px 20px;
  }

  .pv3-page-hero h1,
  .pv3-detail__info h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .pv3-shop-toolbar,
  .pv3-detail__actions,
  .pv3-contact-grid,
  .pv3-price-grid,
  .pv3-form-grid,
  .pv3-account-grid,
  .pv3-address-grid {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .pv3-mini-select__button {
    width: 38px;
    min-width: 38px;
    padding: 0;
  }

  .pv3-mini-select__button span {
    display: none;
  }

  .pv3-icon-link,
  .pv3-theme-toggle {
    width: 38px;
    min-width: 38px;
  }

  .pv3-line-item,
  .pv3-table-row {
    grid-template-columns: 1fr;
  }

  .pv3-line-item__media {
    width: 100%;
    height: 150px;
  }

  .pv3-product-grid--catalog,
  .pv3-thumbs {
    grid-template-columns: 1fr;
  }

  .pv3-detail__media,
  .pv3-detail__info,
  .pv3-content-card,
  .pv3-form-card {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

body.pv3-body--home .pv3-nav {
  grid-template-columns: auto 1fr auto;
}

[data-pressable] {
  -webkit-tap-highlight-color: transparent;
}

/* Desktop default hide mobile navigation / rails */
.pv3-mobile-bottom-nav,
.pv3-mobile-categories-rail {
  display: none;
}

@media (max-width: 980px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .pv3-menu-toggle {
    display: none !important;
  }

  body.pv3-body--home .pv3-nav__links,
  body.pv3-body--home .pv3-menu-toggle {
    display: none !important;
  }

  [data-pressable].is-pressing,
  [data-pressable]:active {
    transform: translateY(1px) scale(.97);
  }

  .pv3-nav-link.is-pressing,
  .pv3-nav__links a.is-pressing {
    opacity: .92;
  }

  .pv3-filter-card--categories {
    display: none !important;
  }

  .pv3-mobile-categories-rail {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 16px 12px;
    margin: 0 -16px 16px -16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .pv3-mobile-categories-rail::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .pv3-mobile-category-chip {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid var(--pv3-border);
    background: color-mix(in srgb, var(--pv3-surface) 90%, transparent);
    color: var(--pv3-text);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s var(--pv3-ease);
  }
  .pv3-mobile-category-chip.is-active,
  .pv3-mobile-category-chip:hover {
    background: var(--pv3-red);
    border-color: var(--pv3-red);
    color: #fff;
  }

  .pv3-mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: color-mix(in srgb, var(--pv3-surface) 80%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--pv3-border);
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
  }

  .pv3-mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pv3-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    gap: 4px;
    flex: 1;
    height: 100%;
    transition: color 0.2s var(--pv3-ease);
  }
  .pv3-mobile-bottom-nav__item i {
    font-size: 20px;
  }
  .pv3-mobile-bottom-nav__item:hover,
  .pv3-mobile-bottom-nav__item.is-active {
    color: var(--pv3-red);
  }
  .pv3-mobile-bottom-nav__cart-icon-wrapper {
    position: relative;
    display: inline-flex;
  }
  .pv3-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--pv3-red);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 5px;
    border-radius: 99px;
    line-height: 1;
    border: 1px solid var(--pv3-surface);
  }
}

@media (max-width: 768px) {
  .pv3-nav__actions {
    display: none;
  }

  .pv3-mobile-tools {
    position: fixed;
    right: 12px;
    left: auto;
    top: 50%;
    z-index: 110;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .pv3-mobile-tools__theme-toggle,
  .pv3-mobile-tools__toggle {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pv3-border);
    border-radius: 999px;
    background: color-mix(in srgb, var(--pv3-surface-strong) 92%, transparent);
    color: var(--pv3-text);
    box-shadow: var(--pv3-shadow-soft);
    backdrop-filter: blur(18px);
    font-size: 17px;
    pointer-events: auto;
  }

  .pv3-mobile-tools__theme-toggle {
    position: absolute;
    right: 0;
    bottom: calc(100% - 162px);
  }

  .pv3-mobile-tools__panel {
    display: grid;
    gap: 14px;
    width: min(260px, calc(100vw - 82px));
    padding: 14px;
    border: 1px solid var(--pv3-border);
    border-radius: 24px;
    background: color-mix(in srgb, var(--pv3-surface-strong) 95%, transparent);
    box-shadow: var(--pv3-shadow-soft);
    backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateX(12px) scale(.96);
    transition: opacity .24s var(--pv3-ease), transform .28s var(--pv3-ease);
    transform-origin: right center;
  }

  .pv3-mobile-tools.is-open .pv3-mobile-tools__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  .pv3-mobile-tools__menu,
  .pv3-mobile-tools__shortcuts,
  .pv3-mobile-tools__subpanels {
    display: grid;
    gap: 8px;
    opacity: 0;
    transform: translateX(14px) translateY(6px);
    transition: opacity .24s var(--pv3-ease), transform .3s var(--pv3-ease);
  }

  .pv3-mobile-tools__menu {
    padding-bottom: 6px;
    border-bottom: 1px solid color-mix(in srgb, var(--pv3-border) 88%, transparent);
  }

  .pv3-mobile-tools__menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--pv3-text) 7%, transparent);
    color: var(--pv3-text);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    transition: transform .2s var(--pv3-ease), background .2s var(--pv3-ease), color .2s var(--pv3-ease);
  }

  .pv3-mobile-tools__menu-link i {
    font-size: 16px;
  }

  .pv3-mobile-tools__shortcuts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pv3-mobile-tools__shortcut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border: 1px solid color-mix(in srgb, var(--pv3-border) 92%, transparent);
    border-radius: 14px;
    background: color-mix(in srgb, var(--pv3-text) 6%, transparent);
    color: var(--pv3-muted);
    font-size: 15px;
    transition: transform .2s var(--pv3-ease), background .2s var(--pv3-ease), color .2s var(--pv3-ease), box-shadow .2s var(--pv3-ease);
  }

  .pv3-mobile-tools__shortcut.is-active {
    background: var(--pv3-red);
    color: #fff;
    box-shadow: 0 14px 28px rgba(167, 7, 17, .22);
  }

  :root[data-theme="dark"] .pv3-mobile-tools__shortcut.is-active {
    background: var(--pv3-gold);
    color: #111719;
  }

  .pv3-mobile-tools__subpanels {
    gap: 10px;
  }

  .pv3-mobile-tools__menu {
    transition-delay: .03s;
  }

  .pv3-mobile-tools__shortcuts {
    transition-delay: .07s;
  }

  .pv3-mobile-tools__subpanels {
    transition-delay: .11s;
  }

  .pv3-mobile-tools.is-open .pv3-mobile-tools__menu,
  .pv3-mobile-tools.is-open .pv3-mobile-tools__shortcuts,
  .pv3-mobile-tools.is-open .pv3-mobile-tools__subpanels {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  .pv3-mobile-tools__section {
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--pv3-text) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--pv3-border) 78%, transparent);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition: opacity .22s var(--pv3-ease), transform .26s var(--pv3-ease), max-height .28s var(--pv3-ease), padding .22s var(--pv3-ease), border-color .22s var(--pv3-ease);
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
  }

  .pv3-mobile-tools__section.is-open {
    opacity: 1;
    max-height: 220px;
    transform: translateY(0);
    padding-top: 12px;
    padding-bottom: 12px;
    border-width: 1px;
  }

  .pv3-mobile-tools__label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pv3-muted);
  }

  .pv3-mobile-tools__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pv3-mobile-tools__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 14px;
    background: color-mix(in srgb, var(--pv3-text) 8%, transparent);
    color: var(--pv3-text);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px transparent;
    transition: transform .2s var(--pv3-ease), background .2s var(--pv3-ease), box-shadow .2s var(--pv3-ease), color .2s var(--pv3-ease);
  }

  .pv3-mobile-tools__item.is-active {
    background: var(--pv3-red);
    color: #fff;
  }

  :root[data-theme="dark"] .pv3-mobile-tools__item.is-active {
    background: var(--pv3-gold);
    color: #111719;
  }
}
