:root {
  --gold: #ac832b;
  --gold-deep: #8b661d;
  --gold-soft: #dfc991;
  --ink: #211d18;
  --muted: #6d655a;
  --paper: #f8f4ed;
  --paper-deep: #efe7db;
  --white: #fffdf9;
  --line: rgba(68, 53, 28, 0.14);
  --shadow: 0 18px 50px rgba(63, 48, 27, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  color-scheme: light;
  font-family: Poppins, Avenir Next, Avenir, Helvetica Neue, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 28%, rgba(172, 131, 43, 0.09), transparent 24rem),
    radial-gradient(circle at 92% 66%, rgba(82, 111, 87, 0.07), transparent 29rem),
    var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(172, 131, 43, 0.32);
  outline-offset: 3px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 8;
  width: min(1440px, calc(100% - 48px));
  margin: 14px auto 0;
  min-height: 86px;
  padding: 0 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(91, 68, 31, 0.1);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 10px 40px rgba(65, 48, 26, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  width: 142px;
  height: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 142px;
  mix-blend-mode: multiply;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-meta strong {
  color: var(--ink);
  font-weight: 650;
}

.header-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.header-actions,
.header-link,
.catalogue-status {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 14px;
}

.catalogue-status {
  gap: 8px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalogue-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6e9b66;
  box-shadow: 0 0 0 5px rgba(110, 155, 102, 0.12);
}

.header-link {
  gap: 7px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(126, 91, 26, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(217, 188, 127, 0.15), rgba(255, 255, 255, 0.7));
  color: var(--ink);
  font-size: 0.74rem;
  text-decoration: none;
}

.header-link strong {
  color: var(--gold-deep);
}

main {
  overflow: hidden;
}

.intro,
.collection-pulse,
.catalogue,
.catalogue-note,
footer {
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
}

.collection-pulse {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(89, 67, 34, 0.12);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 18px 50px rgba(63, 48, 27, 0.06);
  backdrop-filter: blur(16px);
}

.pulse-intro,
.pulse-item {
  min-height: 178px;
  padding: 30px;
}

.pulse-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 78% 20%, rgba(225, 188, 111, 0.22), transparent 34%),
    #1b1814;
  color: #fff8e9;
}

.pulse-intro span,
.pulse-item > span {
  color: #c9a963;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pulse-intro strong {
  max-width: 220px;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.pulse-item {
  border-left: 1px solid var(--line);
}

.pulse-item strong {
  display: block;
  margin-top: 24px;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.pulse-item strong b {
  color: var(--gold-deep);
  font-weight: inherit;
}

.pulse-item p {
  max-width: 250px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.55;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  grid-template-rows: minmax(610px, auto) auto;
  gap: 12px 42px;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 30px;
  padding: 54px 54px 0;
  overflow: hidden;
  border: 1px solid rgba(230, 201, 139, 0.14);
  border-radius: 40px;
  background:
    radial-gradient(circle at 14% 18%, rgba(208, 158, 73, 0.16), transparent 27%),
    radial-gradient(circle at 84% 28%, rgba(248, 211, 146, 0.11), transparent 22%),
    linear-gradient(145deg, #211912 0%, #151311 53%, #211b16 100%);
  box-shadow: 0 32px 90px rgba(53, 36, 17, 0.2);
  isolation: isolate;
}

.intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.intro-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: 20px 0 36px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: #eed39d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, #c4943f, #f3dda9);
}

.intro-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(232, 200, 134, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.intro-orbit-one {
  width: 720px;
  height: 720px;
  right: -230px;
  top: -310px;
}

.intro-orbit-two {
  width: 380px;
  height: 380px;
  left: -250px;
  bottom: -270px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  color: #fffaf0;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: clamp(4rem, 6.1vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

h1 em {
  color: #d9aa55;
  font-weight: 400;
}

.intro-description {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(255, 248, 234, 0.66);
  font-size: clamp(0.96rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.hero-button-primary {
  border: 1px solid #d5a451;
  background: linear-gradient(135deg, #c18b34, #e2b963);
  color: #20170d;
  box-shadow: 0 12px 36px rgba(193, 139, 52, 0.2);
}

.hero-button-primary span {
  font-size: 1rem;
}

.hero-button-secondary {
  border: 1px solid rgba(255, 248, 234, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: #fff8ea;
}

.hero-button-secondary:hover {
  border-color: rgba(240, 208, 145, 0.54);
  background: rgba(255, 255, 255, 0.07);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: rgba(255, 248, 234, 0.48);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof span {
  color: #d5a451;
}

.hero-stage {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 610px;
}

.hero-sun {
  position: absolute;
  z-index: -1;
  width: min(43vw, 520px);
  height: min(43vw, 520px);
  top: 50%;
  left: 53%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 243, 212, 0.95), transparent 7%),
    radial-gradient(circle at 46% 43%, #efd29b 0%, #c89543 42%, #80561f 70%, transparent 71%);
  box-shadow: 0 0 100px rgba(205, 145, 57, 0.24);
  transform: translate(-50%, -51%);
}

.hero-sun::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(71, 43, 16, 0.2);
  border-radius: 50%;
}

.hero-gridlines {
  position: absolute;
  z-index: -1;
  right: -54px;
  bottom: 0;
  width: 115%;
  height: 46%;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 231, 184, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 231, 184, 0.34) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 45%);
  transform: perspective(400px) rotateX(62deg) scale(1.2);
  transform-origin: bottom;
}

.hero-product {
  position: absolute;
  margin: 0;
  animation: hero-float 7s ease-in-out infinite;
}

.hero-product-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.93);
  box-shadow:
    0 38px 70px rgba(7, 5, 3, 0.36),
    inset 0 0 0 1px rgba(99, 70, 29, 0.06);
  backdrop-filter: blur(10px);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-product figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  color: rgba(255, 248, 234, 0.66);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-product figcaption span {
  color: #dfb765;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: 0.94rem;
  letter-spacing: 0;
}

.hero-product-main {
  z-index: 4;
  width: 224px;
  left: 39%;
  top: 22%;
  transform: rotate(-4deg);
}

.hero-product-main .hero-product-image {
  height: 320px;
}

.hero-product-anua {
  z-index: 3;
  width: 155px;
  left: 4%;
  top: 12%;
  animation-delay: -1.8s;
  transform: rotate(7deg);
}

.hero-product-anua .hero-product-image {
  height: 207px;
  border-radius: 22px;
}

.hero-product-equalberry {
  z-index: 5;
  width: 166px;
  right: 1%;
  top: 42%;
  animation-delay: -3.4s;
  transform: rotate(6deg);
}

.hero-product-equalberry .hero-product-image {
  height: 221px;
  border-radius: 22px;
}

.hero-product-mask {
  z-index: 2;
  width: 124px;
  right: 11%;
  top: 6%;
  animation-delay: -5.2s;
  transform: rotate(13deg);
}

.hero-product-mask .hero-product-image {
  height: 158px;
  border-radius: 20px;
}

.hero-seal {
  position: absolute;
  z-index: 7;
  left: 12%;
  bottom: 8%;
  width: 118px;
  height: 118px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(248, 219, 161, 0.52);
  border-radius: 50%;
  background: rgba(21, 17, 14, 0.72);
  color: #efd8aa;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transform: rotate(-10deg);
}

.hero-seal::before,
.hero-seal::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(248, 219, 161, 0.28);
  border-radius: inherit;
}

.hero-seal::after {
  inset: -7px;
  border-style: solid;
  border-color: rgba(248, 219, 161, 0.12);
}

.hero-seal strong {
  color: #cf9a45;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 0.9;
}

@keyframes hero-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -11px;
  }
}

.catalogue-stats {
  position: relative;
  z-index: 8;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 0;
  min-width: 0;
  margin: 0 -54px;
  padding: 23px 54px;
  background: rgba(255, 255, 255, 0.045);
  border-top: 1px solid rgba(255, 248, 234, 0.12);
  backdrop-filter: blur(18px);
}

.catalogue-stats div {
  padding: 0 24px;
  border-right: 1px solid rgba(255, 248, 234, 0.12);
}

.catalogue-stats div:last-child {
  border-right: 0;
}

.catalogue-stats dt {
  color: #f0cf8b;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: 2rem;
  line-height: 1;
}

.catalogue-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 248, 234, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalogue {
  position: relative;
  padding: 52px;
  background:
    radial-gradient(circle at 100% 0%, rgba(222, 198, 148, 0.14), transparent 24rem),
    var(--white);
  border: 1px solid rgba(68, 53, 28, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.catalogue-intro {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.catalogue-heading-row,
.results-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
}

.catalogue h2 {
  margin-bottom: 0;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.text-button {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.filters {
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) minmax(180px, 0.8fr) auto;
  gap: 10px;
  margin-top: 38px;
  padding: 10px;
  border: 1px solid rgba(87, 65, 30, 0.12);
  border-radius: 20px;
  background: rgba(239, 231, 219, 0.54);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
}

.search-field,
.select-field,
.checkbox-field {
  min-height: 64px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(88, 65, 29, 0.08);
  border-radius: var(--radius-sm);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
}

.search-field:focus-within,
.select-field:focus-within {
  border-color: rgba(172, 131, 43, 0.55);
  background: var(--white);
  box-shadow: 0 7px 24px rgba(91, 67, 30, 0.08);
}

.search-field svg {
  flex: none;
  fill: none;
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-width: 1.6;
}

.search-field input,
.select-field select,
.sort-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-field input::placeholder {
  color: #90877b;
}

.select-field {
  display: grid;
  align-content: center;
  padding: 9px 16px;
}

.select-field span,
.sort-field span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.select-field select {
  margin-top: 2px;
  font-size: 0.9rem;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
  cursor: pointer;
}

.checkbox-field input {
  position: absolute;
  opacity: 0;
}

.checkmark {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
  border: 1px solid #c6bbab;
  border-radius: 6px;
  background: var(--white);
}

.checkbox-field input:checked + .checkmark {
  border-color: var(--gold);
  background: var(--gold);
}

.checkbox-field input:checked + .checkmark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  left: 5px;
  top: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.checkbox-field input:focus-visible + .checkmark {
  outline: 3px solid rgba(172, 131, 43, 0.32);
  outline-offset: 3px;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 34px;
}

.category-filter {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.7);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
}

.category-filter:hover,
.category-filter[aria-pressed="true"] {
  border-color: var(--gold);
  background: #211c16;
  color: var(--gold-deep);
  box-shadow: 0 8px 22px rgba(49, 37, 21, 0.12);
}

.category-filter[aria-pressed="true"],
.category-filter[aria-pressed="true"] span {
  color: #f4d99f;
}

.category-filter span {
  margin-left: 5px;
  color: #948875;
  font-weight: 500;
}

.results-toolbar {
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 244, 237, 0.5);
}

#results-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

#results-count strong {
  color: var(--ink);
}

.sort-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-field select {
  width: auto;
  font-size: 0.8rem;
  font-weight: 650;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 30px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 254, 251, 0.9);
  border: 1px solid rgba(84, 63, 29, 0.12);
  border-radius: 24px;
  box-shadow: 0 7px 24px rgba(63, 48, 27, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(172, 131, 43, 0.42);
  box-shadow: 0 16px 38px rgba(63, 48, 27, 0.1);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  border: 0;
  border-radius: 23px 23px 12px 12px;
  background:
    radial-gradient(circle at 68% 22%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(145deg, #faf7f1, #eee6da);
  color: inherit;
  cursor: zoom-in;
  appearance: none;
}

.product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  pointer-events: none;
}

.product-index {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 15px;
  color: rgba(77, 62, 41, 0.5);
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: 0.74rem;
}

.image-quick-view {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(28, 24, 19, 0.86);
  color: #fff9ed;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  text-transform: uppercase;
}

.image-quick-view b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #c4973d;
  font-size: 0.75rem;
}

.product-image-wrap:hover .image-quick-view,
.product-image-wrap:focus-visible .image-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 260ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.035);
}

.product-card-content {
  padding: 19px 20px 20px;
}

.card-topline,
.dialog-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.brand-badge,
.category-badge {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--gold-deep);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-stack {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.new-badge {
  display: inline-flex;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(172, 131, 43, 0.12);
  color: var(--gold-deep);
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.viral-badge {
  background: #211c16;
  color: #f4d99f;
}

.category-badge {
  color: #847969;
  font-weight: 600;
}

.product-card h3 {
  min-height: 3.7em;
  margin: 10px 0 14px;
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.barcode {
  font-family: SFMono-Regular, Consolas, Liberation Mono, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.card-barcode {
  min-height: 1.2em;
  margin-bottom: 16px;
  color: #8e8579;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.card-action-label {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.details-button {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(245, 238, 227, 0.72);
  color: var(--gold-deep);
  font-size: 1.2rem;
  transition: background 160ms ease, color 160ms ease;
}

.details-button:hover {
  border-color: #211c16;
  background: #211c16;
  color: #f4d99f;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 36px;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.button-primary {
  min-width: 220px;
  border: 1px solid #211c16;
  background: #211c16;
  color: #fff8e9;
  box-shadow: 0 12px 28px rgba(42, 33, 22, 0.16);
}

.button-primary:hover {
  border-color: var(--gold);
  background: var(--gold-deep);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.empty-state {
  padding: 76px 24px;
  text-align: center;
}

.empty-state > span {
  color: var(--gold);
  font-size: 2.2rem;
}

.empty-state h3 {
  margin: 10px 0 4px;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: 2rem;
  font-weight: 400;
}

.empty-state p {
  color: var(--muted);
}

.catalogue-note {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(250px, 0.6fr);
  gap: 46px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid rgba(238, 211, 151, 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(216, 172, 85, 0.18), transparent 28%),
    linear-gradient(135deg, #211b15, #151311);
  box-shadow: 0 26px 70px rgba(49, 34, 17, 0.15);
  color: #fff8e9;
}

.note-mark {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 203, 140, 0.35);
  border-radius: 50%;
  color: #e2bf74;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: 2rem;
  letter-spacing: -0.08em;
  box-shadow: inset 0 0 0 8px rgba(235, 206, 145, 0.05);
}

.note-copy .eyebrow {
  color: #d8b66d;
}

.note-copy h2 {
  max-width: 660px;
  margin: 10px 0 14px;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.note-copy > p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 248, 233, 0.58);
  font-size: 0.92rem;
  line-height: 1.7;
}

.note-points {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(238, 211, 151, 0.18);
}

.note-points span {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(238, 211, 151, 0.18);
  color: #b99a5d;
  font-size: 0.67rem;
}

.note-points b {
  color: #fff4dc;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

footer {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(86, 64, 30, 0.13);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer span:first-child {
  color: var(--gold-deep);
  font-weight: 750;
}

footer div span {
  display: block;
  color: var(--gold-deep);
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: none;
}

footer p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: none;
}

.product-dialog {
  width: min(1050px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(28, 21, 12, 0.28);
}

.product-dialog::backdrop {
  background: rgba(27, 22, 16, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(380px, 1.05fr);
  min-height: 630px;
}

.dialog-image-wrap {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 42px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, #f7f1e8, #e8ddcd);
}

.dialog-image-wrap img {
  width: 100%;
  max-height: 510px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.dialog-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.dialog-badges {
  justify-content: flex-start;
}

.dialog-badges .category-badge::before {
  content: "•";
  margin-right: 8px;
  color: var(--gold-soft);
}

.dialog-content h2 {
  margin: 18px 0 14px;
  font-family: Iowan Old Style, Baskerville, Times New Roman, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.dialog-description {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  gap: 0;
  border-top: 1px solid var(--line);
}

.product-details div {
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line);
}

.product-details div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
}

.product-details div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.product-details div:nth-child(even) {
  padding-left: 18px;
}

.product-details dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-details dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 8px 24px rgba(39, 29, 17, 0.1);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
}

@media (max-width: 1120px) {
  .intro {
    grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1.18fr);
    gap: 10px 24px;
    padding-inline: 42px;
  }

  .catalogue-stats {
    width: auto;
    margin-inline: -42px;
    padding-inline: 42px;
  }

  .collection-pulse {
    grid-template-columns: repeat(3, 1fr);
  }

  .pulse-intro {
    grid-column: 1 / -1;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding-block: 24px;
  }

  .pulse-intro strong {
    max-width: none;
    font-size: 1.8rem;
  }

  .hero-product-main {
    left: 34%;
  }

  .hero-product-anua {
    left: 0;
  }

  .hero-product-equalberry {
    right: -2%;
  }

  .hero-product-mask {
    right: 7%;
  }

  .filters {
    grid-template-columns: 1.5fr 1fr;
  }

  .checkbox-field {
    min-height: 48px;
    grid-column: 1 / -1;
  }

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

  .catalogue-note {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 34px;
  }

  .note-mark {
    width: 86px;
    height: 86px;
  }

  .note-points {
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .note-points span {
    padding-right: 14px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .intro,
  .collection-pulse,
  .catalogue,
  .catalogue-note,
  footer {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    min-height: 88px;
  }

  .catalogue-status {
    display: none;
  }

  .brand {
    width: 118px;
    height: 68px;
  }

  .brand img {
    width: 118px;
  }

  .header-meta span:first-child,
  .header-divider {
    display: none;
  }

  .intro {
    grid-template-columns: 1fr;
    grid-template-rows: auto 500px auto;
    gap: 2px;
    margin-top: 18px;
    margin-bottom: 22px;
    padding: 48px 30px 0;
    border-radius: 28px;
  }

  h1 {
    max-width: 620px;
    font-size: clamp(3.6rem, 13vw, 6rem);
  }

  .intro-copy {
    padding: 0;
  }

  .intro-description {
    max-width: 600px;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-sun {
    width: 430px;
    height: 430px;
    left: 52%;
  }

  .hero-product-main {
    width: 190px;
    left: 38%;
    top: 12%;
  }

  .hero-product-main .hero-product-image {
    height: 270px;
  }

  .hero-product-anua {
    width: 136px;
    left: 7%;
    top: 8%;
  }

  .hero-product-anua .hero-product-image {
    height: 182px;
  }

  .hero-product-equalberry {
    width: 145px;
    right: 3%;
    top: 32%;
  }

  .hero-product-equalberry .hero-product-image {
    height: 194px;
  }

  .hero-product-mask {
    right: 9%;
    top: 2%;
  }

  .hero-seal {
    left: 10%;
    bottom: 5%;
  }

  .catalogue-stats {
    margin-inline: -30px;
    padding-inline: 30px;
  }

  .catalogue {
    padding: 24px;
    border-radius: 22px;
  }

  .collection-pulse {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .pulse-intro {
    grid-column: auto;
  }

  .pulse-item {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pulse-item p {
    max-width: 560px;
  }

  .catalogue-heading-row {
    align-items: flex-start;
  }

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

  .search-field,
  .checkbox-field {
    grid-column: 1 / -1;
  }

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

  .catalogue-note {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 26px;
    padding: 38px;
  }

  .note-mark {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
  }

  .note-points {
    grid-column: 1 / -1;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .dialog-image-wrap {
    min-height: 330px;
    padding: 32px;
  }

  .dialog-image-wrap img {
    max-height: 310px;
  }

  .dialog-content {
    padding: 36px;
  }
}

@media (max-width: 560px) {
  .intro-orbit,
  .hero-gridlines {
    display: none;
  }

  .intro {
    grid-template-rows: auto 390px auto;
    padding: 38px 20px 0;
    border-radius: 24px;
  }

  .site-header {
    margin-top: 8px;
    padding: 0 12px 0 16px;
    border-radius: 18px;
  }

  .header-link {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.64rem;
  }

  .collection-pulse {
    margin-bottom: 20px;
  }

  .pulse-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }

  .pulse-intro strong {
    font-size: 2rem;
  }

  .pulse-item {
    padding: 24px;
  }

  .pulse-item strong {
    margin-top: 15px;
  }

  .hero-kicker {
    margin-bottom: 19px;
    font-size: 0.58rem;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  .intro-description {
    margin-bottom: 24px;
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-button {
    width: 100%;
  }

  .hero-proof {
    font-size: 0.57rem;
    line-height: 1.5;
  }

  .hero-stage {
    min-height: 390px;
  }

  .hero-sun {
    width: 310px;
    height: 310px;
    top: 49%;
  }

  .hero-product-main {
    width: 144px;
    left: 34%;
    top: 15%;
  }

  .hero-product-main .hero-product-image {
    height: 206px;
    border-radius: 20px;
  }

  .hero-product-anua {
    width: 101px;
    left: 1%;
    top: 7%;
  }

  .hero-product-anua .hero-product-image {
    height: 136px;
    border-radius: 17px;
  }

  .hero-product-equalberry {
    width: 105px;
    right: -2%;
    top: 38%;
  }

  .hero-product-equalberry .hero-product-image {
    height: 142px;
    border-radius: 17px;
  }

  .hero-product-mask {
    display: none;
  }

  .hero-product figcaption {
    font-size: 0.48rem;
  }

  .hero-seal {
    left: 4%;
    bottom: 3%;
    width: 88px;
    height: 88px;
    font-size: 0.44rem;
  }

  .hero-seal strong {
    font-size: 1.2rem;
  }

  .catalogue-stats {
    min-width: 0;
    margin-inline: -20px;
    padding: 18px 0;
  }

  .catalogue-stats div {
    padding: 0 12px;
  }

  .catalogue-stats dt {
    font-size: 1.45rem;
  }

  .catalogue-stats dd {
    font-size: 0.58rem;
  }

  .catalogue-heading-row {
    display: block;
  }

  .catalogue-heading-row .text-button {
    margin-top: 18px;
  }

  .filters {
    grid-template-columns: 1fr;
    padding: 7px;
    border-radius: 16px;
  }

  .search-field,
  .checkbox-field {
    grid-column: auto;
  }

  .category-filters {
    flex-wrap: nowrap;
    margin-right: -24px;
    padding-right: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-filter {
    flex: none;
  }

  .results-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .catalogue-note {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .note-mark {
    margin-bottom: 28px;
  }

  .note-points {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .product-card h3 {
    min-height: 0;
  }

  footer {
    min-height: 170px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  footer p {
    max-width: 260px;
  }

  .dialog-content {
    padding: 30px 24px;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .product-details div:nth-child(odd) {
    border-right: 0;
  }

  .product-details div:nth-child(even) {
    padding-left: 0;
  }

  .product-details div:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
