:root {
  --gold: #d3b16d;
  --paper: #efe1c3;
  --ink: #070806;
  --seal-red: #9f1f25;
  --seal-red-bright: #c43a40;
  --warm-bg: #e8dcc2;
  --warm-bg-2: #d8c39a;
  --mx: 0px;
  --my: 0px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #050605;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", serif;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-shell {
  min-height: 100svh;
  background: #050605;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 3vw, 46px) clamp(26px, 4vw, 76px);
}

.header {
  position: fixed;
  z-index: 9999;
  top: clamp(24px, 3vw, 46px);
  left: clamp(26px, 4vw, 76px);
  right: clamp(26px, 4vw, 76px);

  display: grid;
  grid-template-columns: minmax(230px, 300px) 1fr minmax(130px, 160px);
  align-items: center;
  gap: 24px;

  height: 56px;
  padding: 4px 18px;
  border-radius: 14px;

  background: rgba(8, 13, 13, .58);
  border: 1px solid rgba(211, 177, 109, .10);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, .10),
    inset 0 1px 0 rgba(255, 255, 255, .03);

  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition:
    top .28s ease,
    height .28s ease,
    padding .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    border-radius .28s ease;
}

.header.is-scrolled {
  top: 12px;
  height: 48px;
  padding: 3px 16px;
  border-radius: 12px;
  background: rgba(7, 10, 9, .86);
  border-color: rgba(211, 177, 109, .18);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .035);
}

.header::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(159,31,37,.30) 24%,
    rgba(211,177,109,.24) 50%,
    rgba(159,31,37,.30) 76%,
    transparent 100%
  );
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(300px, 18vw);
  min-width: 230px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand img {
  display: block;
  width: 100%;
  max-height: 41px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 8px rgba(0, 0, 0, .38))
    drop-shadow(0 0 8px rgba(211, 177, 109, .08));
  transition: max-height .28s ease;
}

.header.is-scrolled .brand img {
  max-height: 34px;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(26px, 2.8vw, 50px);

  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(14px, .88vw, 17px);
  font-weight: 800;

  color: rgba(239, 225, 195, .92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .32);
  white-space: nowrap;
  transition: font-size .28s ease, gap .28s ease;
}

.header.is-scrolled .nav {
  gap: clamp(22px, 2.5vw, 44px);
  font-size: clamp(13px, .82vw, 16px);
}

.nav a {
  position: relative;
  padding: 5px 0 8px;
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.header.is-scrolled .nav a {
  padding: 4px 0 7px;
}

.nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--seal-red-bright);
  box-shadow: 0 0 8px rgba(179, 38, 44, .34);
  transform: translateX(-50%) scale(.45);
  opacity: 0;
  transition: all .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--seal-red) 0%, var(--gold) 100%);
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav a:hover {
  color: #f3d8c9;
  transform: translateY(-1px);
}

.nav a:hover::before,
.nav a.active::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: #f4dfd2;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  transition: gap .28s ease;
}

.header.is-scrolled .header-icons {
  gap: 16px;
}

.header-icons button {
  position: relative;
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: color .25s ease, transform .25s ease, width .28s ease, height .28s ease;
}

.header.is-scrolled .header-icons button {
  width: 25px;
  height: 25px;
}

.header-icons button:hover {
  color: #e7b3a8;
  transform: translateY(-1px);
}

.header-icons svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .28));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

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

@keyframes masterBreath {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.003);
  }
}

@keyframes scrollLine {
  0%, 100% {
    opacity: .46;
    transform: translateY(-4px);
  }

  50% {
    opacity: 1;
    transform: translateY(5px);
  }
}

@keyframes smokeRise {
  0% {
    transform: translateY(28%) translateX(0) scale(.82) rotate(-3deg);
    opacity: 0;
  }

  22% {
    opacity: .40;
  }

  72% {
    opacity: .22;
  }

  100% {
    transform: translateY(-34%) translateX(34px) scale(1.18) rotate(4deg);
    opacity: 0;
  }
}

@keyframes dustRise {
  0% {
    transform: translate3d(0, 24px, 0) scale(.45);
    opacity: 0;
  }

  18% {
    opacity: .42;
  }

  76% {
    opacity: .10;
  }

  100% {
    transform: translate3d(var(--drift, 24px), -130px, 0) scale(1);
    opacity: 0;
  }
}
@media (max-width: 1200px) {
  .header {
    grid-template-columns: minmax(210px, 260px) 1fr minmax(115px, 150px);
    gap: 18px;
    height: 54px;
    padding: 4px 16px;
  }

  .header.is-scrolled {
    height: 47px;
  }

  .brand {
    min-width: 210px;
  }

  .brand img {
    max-height: 38px;
  }

  .header.is-scrolled .brand img {
    max-height: 32px;
  }

  .nav {
    gap: 22px;
    font-size: 13px;
  }

  .header-icons {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: 780px;
  }

  .header {
    display: flex;
    justify-content: space-between;
    top: 22px;
    height: 54px;
    padding: 4px 14px;
  }

  .header.is-scrolled {
    top: 10px;
    height: 48px;
  }

  .nav {
    display: none;
  }

  .brand {
    width: 205px;
    min-width: 0;
  }

  .brand img {
    max-height: 36px;
  }

  .header.is-scrolled .brand img {
    max-height: 32px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 740px;
    padding: 22px 18px;
  }

  .header {
    height: 50px;
    border-radius: 14px;
    padding: 0 12px;
  }

  .brand {
    width: 170px;
  }

  .brand img {
    max-height: 32px;
  }

  .header.is-scrolled .brand img {
    max-height: 29px;
  }

  .header-icons {
    gap: 10px;
  }

  .header-icons button {
    width: 25px;
    height: 25px;
  }

  .btn {
    min-height: 40px;
    padding: 0 18px;
  }
}.wood{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(238,246,231,.74))}.fire{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(252,235,224,.74))}.earth{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(246,237,215,.78))}.metal{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(238,238,234,.78))}.water{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(231,240,244,.76))}

.objects-showcase .category-card:not(:last-child) .product-info {
  border-right: 1px solid rgba(126, 91, 45, .16);
  padding-right: clamp(28px, 2.4vw, 46px);
}

.bottom-cta p:not(.bottom-cta__kicker) {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(239,225,195,.72);
  font-size: 18px;
  line-height: 1.72;
}

.site-footer {
  background: #14110d;
  color: rgba(250, 238, 211, .92);
  padding: clamp(48px, 5vw, 72px) clamp(20px, 3vw, 48px) 24px;
  border-top: 1px solid rgba(211,177,109,.14);
}

.footer-shell {
  max-width: 1600px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 2fr);
  gap: clamp(28px, 4vw, 80px);
  padding-bottom: clamp(28px, 3vw, 36px);
  border-bottom: 1px solid rgba(211,177,109,.12);
}

.footer-brand h3 {
  margin: 0;
  color: #f6ebcf;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.03em;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  color: rgba(239,225,195,.66);
  font-size: 16px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}

.footer-column h4 {
  margin: 0 0 14px;
  color: rgba(211,177,109,.92);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-meta a {
  display: block;
  color: rgba(250,238,211,.86);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.9;
  transition: color .2s ease, opacity .2s ease;
}

.footer-column a:hover,
.footer-meta a:hover {
  color: #f6ebcf;
  opacity: .75;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(239,225,195,.54);
  font-size: 14px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-meta a {
  display: inline-block;
  color: rgba(239,225,195,.62);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-footer {
    padding: 40px 16px 20px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
.footer-brand__logo {
  display: inline-block;
  text-decoration: none;
}

.footer-brand__logo img {
  display: block;
  width: clamp(180px, 18vw, 260px);
  height: auto;
}

.footer-brand h3 {
  display: none;
}
.header {
  grid-template-columns: minmax(190px, 250px) 1fr minmax(110px, 140px) !important;
  gap: 16px !important;
}

.brand {
  width: min(250px, 16vw) !important;
  min-width: 190px !important;
}

.nav {
  gap: clamp(16px, 1.7vw, 30px) !important;
  font-size: clamp(12px, .76vw, 15px) !important;
  letter-spacing: .10em !important;
}
@media (max-width: 1280px) {
  .header {
    grid-template-columns: minmax(170px, 220px) 1fr minmax(100px, 120px) !important;
    gap: 12px !important;
  }

  .brand {
    min-width: 170px !important;
  }

  .nav {
    gap: 15px !important;
    font-size: 12px !important;
    letter-spacing: .08em !important;
  }
}

.shop-hero > p:not(.shop-kicker) {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(23,17,9,.62);
  font-size: 18px;
  line-height: 1.72;
}

.shop-product-card:not(.dark-card) h3 {
  color: #171109;
}

.shop-intention p:not(.shop-kicker) {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(23,17,9,.60);
  font-size: 17px;
  line-height: 1.7;
}
.header,
.header.is-scrolled {
  background: rgba(20, 17, 13, .96) !important;
  border: 1px solid rgba(211,177,109,.18) !important;
  box-shadow:
    0 14px 32px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.nav {
  color: rgba(250,238,211,.90) !important;
}

.nav a {
  color: rgba(250,238,211,.88) !important;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: #f6ebcf !important;
}

.header-icons button {
  color: rgba(211,177,109,.88) !important;
}

.shop-filter-head > p:not(.shop-kicker) {
  margin: 0 0 4px;
  color: rgba(23,17,9,.58);
  font-size: 16px;
  line-height: 1.65;
}
body:has(.shop-page) {
  background: #fffefd !important;
}

.shop-simple-hero p:not(.shop-simple-kicker) {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(23,17,9,.58);
  font-size: 17px;
  line-height: 1.7;
}
html,
body {
  background: #fffefd;
}

.shop-simple-hero p:not(.shop-simple-kicker) {
  max-width: 760px;
}

.shop-v3-hero__copy p:not(.shop-v3-kicker) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(23, 17, 9, .62);
  font-size: clamp(16px, 1.28vw, 20px);
  line-height: 1.76;
}

.shop-v3-section-head p:not(.shop-v3-kicker) {
  margin: 16px auto 0;
  max-width: 720px;
  color: rgba(23, 17, 9, .58);
  font-size: 17px;
  line-height: 1.7;
}

.shop-v3-section-head--split p:not(.shop-v3-kicker) {
  margin: 0;
  color: rgba(23, 17, 9, .58);
}
.shop-ritual-shell {
  min-height: 100svh;
  background: #f5f1ea;
  color: var(--paper);
}

.shop-ritual-hero {
  position: relative;
  height: 420px;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 122px clamp(24px, 5vw, 76px) 54px;
  background:
    linear-gradient(180deg, rgba(28, 16, 8, .10) 0%, rgba(28, 16, 8, .04) 42%, rgba(28, 16, 8, .16) 100%),
    url("./img/fenlei_shop_hero_bg.png") center center / cover no-repeat;
}

.shop-ritual-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 239, 205, .14) 0%, rgba(255, 239, 205, .05) 34%, rgba(0,0,0,.08) 72%, rgba(0,0,0,.16) 100%),
    linear-gradient(90deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.04) 24%, rgba(0,0,0,.02) 76%, rgba(0,0,0,.18) 100%);
}

.shop-ritual-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 177, 109, .28), transparent);
}

.shop-ritual-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .10;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.shop-ritual-kicker {
  margin: 0 0 18px;
  color: rgba(225, 193, 125, .98);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(11px, .85vw, 14px);
  font-weight: 900;
  letter-spacing: .34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.shop-ritual-hero h1 {
  margin: 0;
  color: rgba(255, 251, 243, .98);
  font-size: clamp(42px, 5.4vw, 88px);
  line-height: .94;
  font-weight: 500;
  letter-spacing: -.062em;
}

.shop-ritual-divider {
  width: min(260px, 54vw);
  height: 22px;
  margin: 24px auto 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(211, 177, 109, .82);
}

.shop-ritual-divider::before,
.shop-ritual-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 177, 109, .62));
}

.shop-ritual-divider::after {
  background: linear-gradient(90deg, rgba(211, 177, 109, .62), transparent);
}

.shop-ritual-divider span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(211, 177, 109, .42);
  background: rgba(12, 10, 8, .52);
  color: rgba(211, 177, 109, .92);
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 0 22px rgba(211, 177, 109, .12);
}

.shop-ritual-subtitle {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(255, 248, 232, .94);
  font-size: clamp(15px, 1.16vw, 19px);
  line-height: 1.52;
  font-weight: 400;
}

@media (max-width: 900px) {
  .shop-ritual-hero {
    height: 400px;
    min-height: 400px;
    padding-top: 112px;
    padding-bottom: 50px;
    background-position: center center;
  }

  .shop-ritual-hero h1 {
    font-size: clamp(44px, 10vw, 76px);
  }
}

@media (max-width: 560px) {
  .shop-ritual-hero {
    height: 360px;
    min-height: 360px;
    padding: 98px 20px 42px;
  }

  .shop-ritual-kicker {
    letter-spacing: .22em;
    margin-bottom: 14px;
  }

  .shop-ritual-subtitle br {
    display: none;
  }
}
.shop-collection-nav {
  background: #f7f4ef;
  padding: 34px 0 18px;
}

.shop-collection-nav__inner {
  width: min(1520px, calc(100% - 72px));
  margin: 0 auto;
}

.shop-collection-signature {
  background: #f7f4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0 26px;
  color: rgba(184, 143, 73, .95);
}

.shop-collection-signature__line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(220,191,135,0), rgba(220,191,135,.7), rgba(220,191,135,0));
}

.shop-collection-signature__mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(217,188,132,.64);
  display: inline-grid;
  place-items: center;
  font-size: 13px;
}

.shop-collection-signature__word {
  letter-spacing: .22em;
  font-size: 12px;
}

.shop-collection-signature__stamp {
  color: #c15737;
  font-size: 14px;
}

@media (max-width: 820px) {
  .shop-collection-nav {
    padding-top: 26px;
  }

  .shop-collection-nav__inner {
    width: min(100%, calc(100% - 40px));
  }
}

@media (max-width: 560px) {

  .shop-collection-signature__line {
    width: 56px;
  }
}
.shop-collection-nav {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  margin-top: -1px !important;
  padding-top: 154px !important;
  padding-bottom: 42px !important;
  background: #f7f4ef !important;
}

.shop-collection-nav::before {
  content: "";
  position: absolute;
  z-index: -3;
  top: 0;
  left: 0;
  right: 0;
  height: 122px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.02) 44%, rgba(0,0,0,.20)),
    url("./img/fenlei_shop_hero_bg.png") center 78% / cover no-repeat;
  filter: saturate(.96) contrast(1.04);
}

.shop-collection-nav::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 68px;
  left: 0;
  right: 0;
  height: 118px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 220' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f4ef' d='M0 60 C250 72 430 88 650 84 C820 80 900 36 1040 48 C1230 64 1370 88 1540 78 C1700 70 1820 52 1920 62 L1920 220 L0 220 Z'/%3E%3C/svg%3E") top center / 100% 100% no-repeat;
  pointer-events: none;
}

@media (max-width: 900px) {
  .shop-collection-nav {
    padding-top: 132px !important;
    padding-bottom: 34px !important;
  }

  .shop-collection-nav::before {
    height: 104px;
    background-position: center 76%;
  }

  .shop-collection-nav::after {
    top: 56px;
    height: 104px;
  }
}

@media (max-width: 560px) {
  .shop-collection-nav {
    padding-top: 118px !important;
  }

  .shop-collection-nav::before {
    height: 94px;
  }

  .shop-collection-nav::after {
    top: 50px;
    height: 94px;
  }
}
.shop-collection-nav {
  padding-top: 42px !important;
}
.shop-collection-nav {
  padding-top: 34px !important;
}
.shop-collection-nav {
  position: relative !important;
  overflow: hidden !important;
  background: #f7f4ef !important;
  padding-top: 108px !important;
  padding-bottom: 38px !important;
}

.shop-collection-nav::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 88px !important;
  z-index: 0 !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.02) 48%, rgba(0,0,0,.12)),
    url("./img/fenlei_shop_hero_bg.png") center 78% / cover no-repeat !important;
}

.shop-collection-nav::after {
  content: "" !important;
  position: absolute !important;
  top: 54px !important;
  left: 0 !important;
  right: 0 !important;
  height: 112px !important;
  z-index: 0 !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 220' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f4ef' d='M0 82 C250 96 430 118 650 110 C820 103 900 64 1040 72 C1230 84 1370 112 1540 102 C1700 94 1820 76 1920 84 L1920 220 L0 220 Z'/%3E%3C/svg%3E") top center / 100% 100% no-repeat !important;
  pointer-events: none !important;
}

@media (max-width: 1100px) {
  .shop-collection-nav {
    padding-top: 96px !important;
  }
  .shop-collection-nav::before {
    height: 104px !important;
  }
  .shop-collection-nav::after {
    top: 48px !important;
    height: 102px !important;
  }
}

@media (max-width: 820px) {
  .shop-collection-nav {
    padding-top: 86px !important;
  }
  .shop-collection-nav::before {
    height: 92px !important;
    background-position: center 76% !important;
  }
  .shop-collection-nav::after {
    top: 42px !important;
    height: 92px !important;
  }
}

@media (max-width: 560px) {
  .shop-collection-nav {
    padding-top: 76px !important;
    padding-bottom: 30px !important;
  }
  .shop-collection-nav::before {
    height: 60px !important;
  }
  .shop-collection-nav::after {
    top: 38px !important;
    height: 80px !important;
  }
}
.dao-category-products {
  background: #f7f4ef;
  padding: 16px 0 78px;
}

.dao-category-products + .dao-category-products {
  padding-top: 10px;
}

.dao-category-products__inner {
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
}

.dao-category-products__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 26px;
  padding-top: 4px;
  border-top: 1px solid rgba(225, 203, 168, .42);
}

.dao-category-products__heading span {
  color: rgba(190, 157, 101, .80);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.dao-category-products__heading h2 {
  margin: 0;
  color: #3f3026;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 1120px) {

  .dao-category-products__heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .dao-category-products {
    padding-bottom: 58px;
  }

  .dao-category-products__inner {
    width: min(100%, calc(100% - 40px));
  }
}

@media (max-width: 560px) {

  .dao-category-products__heading h2 {
    font-size: 28px;
  }
}
.dao-category-products:first-of-type {
  padding-top: 54px !important;
}

.dao-category-products {
  padding-top: 44px !important;
  padding-bottom: 76px !important;
}

.dao-category-products__heading {
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto 28px !important;
  padding-top: 26px !important;
  border-top: 1px solid rgba(225, 203, 168, .42) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 12px !important;
}

.dao-category-products__heading span {
  order: 1;
  color: rgba(190, 157, 101, .82) !important;
  font-family: Arial, "Helvetica Neue", sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
}

.dao-category-products__heading h2 {
  order: 2;
  margin: 0 !important;
  color: #3f3026 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(42px, 4.2vw, 76px) !important;
  font-weight: 400 !important;
  letter-spacing: .08em !important;
  line-height: .95 !important;
  text-transform: uppercase !important;
  text-align: left !important;
}

.dao-category-products__inner {
  width: min(1480px, calc(100% - 72px)) !important;
  margin: 0 auto !important;
}

.shop-collection-signature {
  padding-top: 10px !important;
}

@media (max-width: 820px) {
  .dao-category-products:first-of-type {
    padding-top: 40px !important;
  }

  .dao-category-products {
    padding-top: 34px !important;
    padding-bottom: 58px !important;
  }

  .dao-category-products__heading,
  .dao-category-products__inner {
    width: min(100%, calc(100% - 40px)) !important;
  }

  .dao-category-products__heading {
    padding-top: 20px !important;
    margin-bottom: 22px !important;
  }

  .dao-category-products__heading h2 {
    font-size: clamp(32px, 9vw, 50px) !important;
  }
}
.dao-category-products__heading {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  column-gap: 48px !important;
  row-gap: 10px !important;
}

.dao-category-products__heading h2 {
  order: initial !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.dao-category-products__heading span {
  order: initial !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  align-self: end !important;
  margin-bottom: 10px !important;
  padding-left: 52px !important;
  position: relative !important;
  white-space: nowrap !important;
  color: rgba(190, 157, 101, .82) !important;
}

.dao-category-products__heading span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(211,177,109,0), rgba(211,177,109,.78));
}

@media (max-width: 900px) {
  .dao-category-products__heading {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .dao-category-products__heading h2,
  .dao-category-products__heading span {
    grid-column: 1 !important;
  }

  .dao-category-products__heading h2 {
    grid-row: 1 !important;
  }

  .dao-category-products__heading span {
    grid-row: 2 !important;
    justify-self: start !important;
    align-self: start !important;
    margin-bottom: 0 !important;
    padding-left: 42px !important;
    white-space: normal !important;
  }

  .dao-category-products__heading span::before {
    width: 28px;
  }
}
html {
  scroll-behavior: smooth;
}

.dao-category-products {
  scroll-margin-top: 120px;
}

.deities-hero__copy > p:not(.deities-kicker) {
  max-width: 690px;
  margin: 34px 0 0;
  color: rgba(255,244,220,.78);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.65;
}

@media (max-width: 560px) {

  .deities-hero__copy > p:not(.deities-kicker) {
    font-size: 16px;
  }
}
.shop-ritual-hero {
  position: relative !important;
  height: 600px !important;
  min-height: 600px !important;
  padding: 114px clamp(24px, 5vw, 76px) 92px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    linear-gradient(180deg, rgba(28, 16, 8, .08) 0%, rgba(28, 16, 8, .03) 46%, rgba(28, 16, 8, .10) 100%),
    url("./img/fenlei_shop_hero_bg.png") center center / cover no-repeat !important;
}

.shop-ritual-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 50% 49%, rgba(255, 239, 205, .15) 0%, rgba(255, 239, 205, .05) 35%, rgba(0,0,0,.08) 76%, rgba(0,0,0,.15) 100%),
    linear-gradient(90deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.035) 24%, rgba(0,0,0,.035) 76%, rgba(0,0,0,.18) 100%) !important;
}
.shop-ritual-hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  z-index: 4 !important;
  height: 88px !important;
  pointer-events: none !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 220' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f4ef' d='M0 116 C250 126 430 148 650 136 C820 126 900 84 1040 94 C1230 108 1370 140 1540 130 C1700 120 1820 100 1920 112 L1920 220 L0 220 Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat !important;
}
.shop-collection-nav {
  position: relative !important;
  overflow: hidden !important;
  background: #f7f4ef !important;
  padding-top: 42px !important;
  padding-bottom: 36px !important;
}

.shop-collection-nav__inner {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 1100px) {
  .shop-ritual-hero {
    height: 540px !important;
    min-height: 540px !important;
    padding-top: 104px !important;
    padding-bottom: 82px !important;
  }

  .shop-ritual-hero::after {
    height: 74px !important;
  }
}

@media (max-width: 720px) {
  .shop-ritual-hero {
    height: 460px !important;
    min-height: 460px !important;
    padding-top: 92px !important;
    padding-bottom: 66px !important;
    background-position: center center !important;
  }

  .shop-ritual-hero::after {
    height: 60px !important;
  }

  .shop-collection-nav {
    padding-top: 28px !important;
  }
}
.shop-ritual-hero h1 { margin-bottom: 16px !important; }
.shop-ritual-hero p { margin-top: 10px !important; }
.shop-ritual-hero::after {
  height: 92px !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 220' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f4ef' d='M0 118 C160 126 300 144 470 148 C640 152 790 126 960 112 C1130 126 1280 152 1450 148 C1620 144 1760 126 1920 118 L1920 220 L0 220 Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat !important;
}

.shop-collection-nav {
  padding-top: 18px !important;
  padding-bottom: 32px !important;
}

.shop-collection-nav__inner {
  transform: translateY(-10px) !important;
}

@media (max-width: 1100px) {
  .shop-ritual-hero::after {
    height: 78px !important;
  }
  .shop-collection-nav {
    padding-top: 14px !important;
    padding-bottom: 28px !important;
  }
  .shop-collection-nav__inner {
    transform: translateY(-8px) !important;
  }
}

@media (max-width: 720px) {
  .shop-ritual-hero::after {
    height: 66px !important;
  }
  .shop-collection-nav {
    padding-top: 12px !important;
    padding-bottom: 24px !important;
  }
  .shop-collection-nav__inner {
    transform: translateY(-6px) !important;
  }
}
.shop-ritual-hero::after {
  height: 96px !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 220' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f4ef' d='M0 116 C210 120 360 137 560 136 C710 135 830 108 960 108 C1090 108 1210 135 1360 136 C1560 137 1710 120 1920 116 L1920 220 L0 220 Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat !important;
}

@media (max-width: 1100px) {
  .shop-ritual-hero::after {
    height: 82px !important;
  }
}

@media (max-width: 720px) {
  .shop-ritual-hero::after {
    height: 68px !important;
  }
}
.shop-ritual-hero::after {
  height: 138px !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 260' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f4ef' d='M0 78 C190 70 340 98 520 112 C700 126 840 162 960 162 C1080 162 1220 126 1400 112 C1580 98 1730 70 1920 78 L1920 260 L0 260 Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat !important;
}

@media (max-width: 1100px) {
  .shop-ritual-hero::after {
    height: 116px !important;
  }
}

@media (max-width: 720px) {
  .shop-ritual-hero::after {
    height: 92px !important;
  }
}
.shop-ritual-hero {
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1920 / 800 !important;
  padding: clamp(96px, 7vw, 132px) clamp(24px, 5vw, 76px) clamp(120px, 9vw, 176px) !important;
  display: grid !important;
  place-items: center !important;
  overflow: visible !important;
  isolation: isolate !important;
  background: url("./img/fenlei_shop_hero_bg.png") center center / cover no-repeat !important;
}
.shop-ritual-hero::before,
.shop-ritual-hero__overlay {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
}
.shop-ritual-hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  z-index: 4 !important;
  height: clamp(150px, 11vw, 210px) !important;
  pointer-events: none !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 260' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f4ef' d='M0 78 C185 74 330 122 505 164 C650 199 765 178 875 124 C930 98 990 98 1045 124 C1155 178 1270 199 1415 164 C1590 122 1735 74 1920 78 L1920 260 L0 260 Z'/%3E%3Cpath d='M0 78 C185 74 330 122 505 164 C650 199 765 178 875 124 C930 98 990 98 1045 124 C1155 178 1270 199 1415 164 C1590 122 1735 74 1920 78' fill='none' stroke='%23d6ad5f' stroke-width='5' stroke-opacity='.62'/%3E%3Cpath d='M0 94 C190 90 336 136 508 174 C655 206 765 188 875 136 C930 111 990 111 1045 136 C1155 188 1265 206 1412 174 C1584 136 1730 90 1920 94' fill='none' stroke='%23f9ecd0' stroke-width='8' stroke-opacity='.75'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat !important;
}
.shop-collection-nav::before,
.shop-collection-nav::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.shop-collection-nav__inner {
  transform: translateY(-8px) !important;
}

@media (max-width: 1100px) {
  .shop-ritual-hero {
    aspect-ratio: 16 / 7.4 !important;
    padding-top: 112px !important;
    padding-bottom: 138px !important;
  }

  .shop-ritual-hero::after {
    height: 150px !important;
  }
}

@media (max-width: 720px) {
  .shop-ritual-hero {
    aspect-ratio: auto !important;
    min-height: 470px !important;
    padding-top: 96px !important;
    padding-bottom: 116px !important;
    background-position: center center !important;
  }

  .shop-ritual-hero::after {
    height: 116px !important;
  }

  .shop-collection-nav {
    padding-top: 24px !important;
  }

  .shop-collection-nav__inner {
    transform: translateY(-4px) !important;
  }
}
.shop-ritual-hero {
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1920 / 800 !important;
  padding: clamp(96px, 7vw, 132px) clamp(24px, 5vw, 76px) clamp(120px, 9vw, 176px) !important;
  display: grid !important;
  place-items: center !important;
  overflow: visible !important;
  isolation: isolate !important;
  background-color: transparent !important;
  background-image: url("./img/fenlei_shop_hero_bg.png") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.shop-ritual-hero::before,
.shop-ritual-hero::after,
.shop-ritual-hero__overlay {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
}
.shop-collection-nav::before,
.shop-collection-nav::after {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
}

@media (max-width: 1100px) {
  .shop-ritual-hero {
    aspect-ratio: 16 / 7.4 !important;
    padding-top: 112px !important;
    padding-bottom: 138px !important;
  }
}

@media (max-width: 720px) {
  .shop-ritual-hero {
    aspect-ratio: auto !important;
    min-height: 470px !important;
    padding-top: 96px !important;
    padding-bottom: 116px !important;
    background-position: center center !important;
  }

  .shop-collection-nav {
    padding-top: 24px !important;
  }
}
.shop-ritual-hero {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  isolation: isolate !important;
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}

.shop-ritual-hero__image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center top !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.shop-ritual-hero::before,
.shop-ritual-hero::after,
.shop-ritual-hero__overlay {
  display: none !important;
  content: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}
.shop-collection-nav {
  margin-top: 0 !important;
  padding-top: clamp(24px, 3vw, 44px) !important;
  padding-bottom: 34px !important;
  background: #f7f4ef !important;
  overflow: hidden !important;
}

.shop-collection-nav::before,
.shop-collection-nav::after {
  display: none !important;
  content: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

.shop-collection-nav__inner {
  transform: none !important;
}

@media (max-width: 720px) {
  .shop-ritual-hero__image {
    width: 100% !important;
    height: auto !important;
  }

  .shop-collection-nav {
    padding-top: 22px !important;
  }
}

:root {
  --shop-cream-final: #f7f4ef;
}

html,
body,
.site-shell.shop-ritual-shell,
.shop-ritual-shell,
.shop-collection-nav,
main.shop-ritual-shell {
  background: var(--shop-cream-final) !important;
  background-color: var(--shop-cream-final) !important;
}
.shop-ritual-hero {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 340px !important;
  min-height: 340px !important;
  max-height: 340px !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.shop-ritual-hero__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center 50% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.shop-ritual-hero::before,
.shop-ritual-hero::after,
.shop-ritual-hero__overlay,
.shop-collection-nav::before,
.shop-collection-nav::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}
.shop-collection-nav {
  margin-top: -118px !important;
  padding-top: 0 !important;
  padding-bottom: 18px !important;
  position: relative !important;
  z-index: 6 !important;
  overflow: visible !important;
  border: 0 !important;
}

.shop-collection-nav__inner {
  transform: translateY(-10px) !important;
  position: relative !important;
  z-index: 7 !important;
}

@media (max-width: 1100px) {
  .shop-ritual-hero {
    height: 290px !important;
    min-height: 290px !important;
    max-height: 290px !important;
  }

  .shop-collection-nav {
    margin-top: -92px !important;
  }

  .shop-collection-nav__inner {
    transform: translateY(-8px) !important;
  }
}

@media (max-width: 720px) {
  .shop-ritual-hero {
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
  }

  .shop-ritual-hero__image {
    object-position: center 48% !important;
  }

  .shop-collection-nav {
    margin-top: -52px !important;
    padding-top: 0 !important;
    padding-bottom: 14px !important;
  }

  .shop-collection-nav__inner {
    transform: translateY(-4px) !important;
  }
}

@media (max-width: 520px) {
  .shop-ritual-hero {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
  }

  .shop-ritual-hero__image {
    object-position: center 47% !important;
  }
}
.shop-collection-nav {
  margin-top: -178px !important;
  padding-top: 0 !important;
  padding-bottom: 10px !important;
  position: relative !important;
  z-index: 8 !important;
  overflow: visible !important;
}

.shop-collection-nav__inner {
  transform: translateY(-18px) !important;
  position: relative !important;
  z-index: 9 !important;
}

.dao-category-products:first-of-type {
  margin-top: -34px !important;
  padding-top: 8px !important;
}

.dao-category-products {
  padding-top: 28px !important;
  padding-bottom: 70px !important;
}

.dao-category-products__heading {
  padding-top: 18px !important;
  margin-bottom: 22px !important;
}

@media (max-width: 1100px) {
  .shop-collection-nav {
    margin-top: -132px !important;
  }

  .shop-collection-nav__inner {
    transform: translateY(-12px) !important;
  }

  .dao-category-products:first-of-type {
    margin-top: -24px !important;
  }
}

@media (max-width: 720px) {
  .shop-collection-nav {
    margin-top: -72px !important;
    padding-bottom: 8px !important;
  }

  .shop-collection-nav__inner {
    transform: translateY(-6px) !important;
  }

  .dao-category-products:first-of-type {
    margin-top: -12px !important;
    padding-top: 6px !important;
  }

  .dao-category-products {
    padding-top: 22px !important;
    padding-bottom: 56px !important;
  }

  .dao-category-products__heading {
    padding-top: 14px !important;
    margin-bottom: 18px !important;
  }
}
.shop-collection-nav {
  padding-bottom: 48px !important;
}

.dao-category-products:first-of-type {
  margin-top: 0 !important;
  padding-top: 46px !important;
}

.dao-category-products__heading {
  padding-top: 0 !important;
}

@media (max-width: 1100px) {
  .shop-collection-nav {
    padding-bottom: 36px !important;
  }

  .dao-category-products:first-of-type {
    margin-top: 0 !important;
    padding-top: 36px !important;
  }
}

@media (max-width: 720px) {
  .shop-collection-nav {
    padding-bottom: 28px !important;
  }

  .dao-category-products:first-of-type {
    padding-top: 28px !important;
  }
}
.shop-collection-nav {
  margin-top: -96px !important;
  padding-top: 42px !important;
  padding-bottom: 56px !important;
  position: relative !important;
  z-index: 6 !important;
}

.shop-collection-nav__inner {
  transform: translateY(0) !important;
}

.dao-category-products:first-of-type {
  margin-top: 0 !important;
  padding-top: 58px !important;
}

@media (max-width: 1100px) {
  .shop-collection-nav {
    margin-top: -72px !important;
    padding-top: 34px !important;
    padding-bottom: 44px !important;
  }

  .dao-category-products:first-of-type {
    padding-top: 44px !important;
  }
}

@media (max-width: 720px) {
  .shop-collection-nav {
    margin-top: -36px !important;
    padding-top: 28px !important;
    padding-bottom: 34px !important;
  }

  .dao-category-products:first-of-type {
    padding-top: 34px !important;
  }
}
.shop-collection-nav {
  margin-top: 0 !important;
  padding-top: 0% !important;
  padding-bottom: 64px !important;
  position: relative !important;
  z-index: 5 !important;
  background: #f7f4ef !important;
}

.shop-collection-nav__inner {
  transform: none !important;
  position: relative !important;
  z-index: 6 !important;
}

.dao-category-products:first-of-type {
  margin-top: 0 !important;
  padding-top: 76px !important;
}

@media (max-width: 1100px) {
  .shop-collection-nav {
    margin-top: 0 !important;
    padding-top: 100px !important;
    padding-bottom: 52px !important;
  }

  .dao-category-products:first-of-type {
    padding-top: 56px !important;
  }
}

@media (max-width: 720px) {
  .shop-collection-nav {
    margin-top: 0 !important;
    padding-top: 76px !important;
    padding-bottom: 42px !important;
  }

  .dao-category-products:first-of-type {
    padding-top: 42px !important;
  }
}
.header {
  position: fixed !important;
  z-index: 9999 !important;
  top: clamp(24px, 3vw, 46px) !important;
  left: clamp(26px, 4vw, 76px) !important;
  right: clamp(26px, 4vw, 76px) !important;
  display: grid !important;
  grid-template-columns: minmax(230px, 300px) 1fr minmax(130px, 160px) !important;
  align-items: center !important;
  gap: 24px !important;
  height: 56px !important;
  padding: 4px 18px !important;
  border-radius: 14px !important;
  background: rgba(8, 13, 13, .72) !important;
  border: 1px solid rgba(211, 177, 109, .10) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10), inset 0 1px 0 rgba(255, 255, 255, .035) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  transition: top .28s ease, height .28s ease, padding .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease, border-radius .28s ease !important;
}

.header.is-scrolled {
  top: 12px !important;
  height: 48px !important;
  padding: 3px 16px !important;
  border-radius: 12px !important;
  background: rgba(7, 10, 9, .88) !important;
  border-color: rgba(211, 177, 109, .18) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .035) !important;
}

.header::before { display: none !important; }

.brand {
  display: inline-flex !important;
  align-items: center !important;
  width: min(300px, 18vw) !important;
  min-width: 230px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.brand img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 41px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.38)) !important;
  transition: max-height .28s ease !important;
}

.header.is-scrolled .brand img { max-height: 34px !important; }

.nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(16px, 1.7vw, 30px) !important;
  text-transform: uppercase !important;
  letter-spacing: .10em !important;
  font-family: Arial, "Helvetica Neue", sans-serif !important;
  font-size: clamp(12px, .76vw, 15px) !important;
  font-weight: 800 !important;
  color: rgba(250,238,211,.90) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.32) !important;
  white-space: nowrap !important;
  transition: font-size .28s ease, gap .28s ease !important;
}

.header.is-scrolled .nav {
  gap: clamp(14px, 1.55vw, 26px) !important;
  font-size: clamp(11px, .72vw, 14px) !important;
}

.nav a {
  position: relative !important;
  padding: 5px 0 8px !important;
  color: rgba(250,238,211,.88) !important;
  transition: color .25s ease, transform .25s ease !important;
}

.nav a::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: var(--seal-red-bright) !important;
  box-shadow: 0 0 8px rgba(179,38,44,.34) !important;
  transform: translateX(-50%) scale(.45) !important;
  opacity: 0 !important;
  transition: all .25s ease !important;
}

.nav a::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  width: 0 !important;
  height: 1.5px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--seal-red) 0%, var(--gold) 100%) !important;
  transform: translateX(-50%) !important;
  transition: width .25s ease !important;
}

.nav a:hover,
.nav a.active { color: #fff3d4 !important; }
.nav a:hover { transform: translateY(-1px) !important; }
.nav a:hover::before,
.nav a.active::before { opacity: 1 !important; transform: translateX(-50%) scale(1) !important; }
.nav a:hover::after,
.nav a.active::after { width: 100% !important; }

.header-icons {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 18px !important;
}

.header-icons button {
  position: relative !important;
  width: 28px !important;
  height: 28px !important;
  color: rgba(211,177,109,.82) !important;
  transition: color .25s ease, transform .25s ease !important;
}

.header-icons button:hover { color: #e7b3a8 !important; transform: translateY(-1px) !important; }

.header-icons svg {
  width: 100% !important;
  height: 100% !important;
  stroke: currentColor !important;
  stroke-width: 1.85 !important;
  fill: none !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.28)) !important;
}

@media (max-width: 1200px) {
  .header { grid-template-columns: minmax(170px, 220px) 1fr minmax(100px, 120px) !important; gap: 12px !important; }
  .brand { min-width: 170px !important; }
  .nav { gap: 15px !important; font-size: 12px !important; letter-spacing: .08em !important; }
}

@media (max-width: 900px) {
  .header { display: flex !important; justify-content: space-between !important; top: 22px !important; height: 54px !important; padding: 4px 14px !important; }
  .header.is-scrolled { top: 10px !important; height: 48px !important; }
  .nav { display: none !important; }
  .brand { width: 205px !important; min-width: 0 !important; }
  .brand img { max-height: 36px !important; }
}

@media (max-width: 560px) {
  .header { left: 18px !important; right: 18px !important; height: 50px !important; border-radius: 14px !important; padding: 0 12px !important; }
  .brand { width: 170px !important; }
  .brand img { max-height: 32px !important; }
  .header-icons { gap: 10px !important; }
  .header-icons button { width: 25px !important; height: 25px !important; }
}

.page-title-below {
  position: relative;
  z-index: 3;
  background: transparent !important;
  text-align: center;
  padding: clamp(46px, 5vw, 82px) 24px clamp(30px, 3.8vw, 56px);
  color: #33241d;
}

.page-title-below__content {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title-below .shop-ritual-kicker {
  margin: 0 0 12px;
  color: #bc8b31;
  font-size: clamp(11px, .85vw, 14px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.page-title-below h1 {
  margin: 0;
  font-family: var(--font-display, Georgia, 'Times New Roman', serif);
  font-size: clamp(54px, 6.4vw, 118px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: -.055em;
  color: #33241d;
}

.page-title-below .shop-ritual-divider {
  width: min(360px, 48vw);
  margin: 20px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #c8a45c;
}

.page-title-below .shop-ritual-divider::before,
.page-title-below .shop-ritual-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 92, .74));
}

.page-title-below .shop-ritual-divider::after {
  background: linear-gradient(90deg, rgba(200, 164, 92, .74), transparent);
}

.page-title-below .shop-ritual-divider span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 92, .42);
  font-size: 16px;
}

.page-title-below .shop-ritual-subtitle {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(51, 36, 29, .72);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .page-title-below {
    padding: 36px 18px 34px;
  }
  .page-title-below h1 {
    font-size: clamp(42px, 13vw, 72px);
  }
  .page-title-below .shop-ritual-kicker {
    letter-spacing: .28em;
  }
  .page-title-below .shop-ritual-subtitle br {
    display: none;
  }
}
.page-title-below {
  padding-bottom: clamp(28px, 3.2vw, 46px) !important;
}

.dao-category-products:first-of-type {
  padding-top: clamp(16px, 2.2vw, 34px) !important;
}
.page-title-below {
  margin-top: clamp(-96px, -5.4vw, -58px) !important;
  padding-top: clamp(18px, 2vw, 36px) !important;
  padding-bottom: clamp(20px, 2.6vw, 38px) !important;
}

.dao-category-products:first-of-type {
  padding-top: clamp(8px, 1.5vw, 24px) !important;
}

@media (max-width: 1180px) {
  .page-title-below {
    margin-top: -54px !important;
  }
}

@media (max-width: 680px) {
  .page-title-below {
    margin-top: -34px !important;
    padding-top: 24px !important;
  }
}
.shop-collection-nav.shop-collection-nav--buttons {
  margin-top: 0 !important;
  padding-top: clamp(4px, .8vw, 14px) !important;
  padding-bottom: clamp(38px, 3.8vw, 66px) !important;
  background: transparent !important;
  position: relative !important;
  z-index: 4 !important;
}

.shop-collection-nav.shop-collection-nav--buttons::before,
.shop-collection-nav.shop-collection-nav--buttons::after {
  display: none !important;
  content: none !important;
}

.shop-collection-nav.shop-collection-nav--buttons .shop-collection-nav__inner {
  width: min(1660px, calc(100% - 86px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.shop-category-button-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(24px, 2.2vw, 42px) !important;
  align-items: center !important;
}

.shop-category-button {
  height: clamp(62px, 4.3vw, 86px) !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  padding: 0 clamp(24px, 2.6vw, 48px) !important;
  border-radius: 9px !important;
  border: 1px solid rgba(203, 161, 82, .58) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(220, 178, 96, .14), transparent 48%),
    linear-gradient(180deg, rgba(43, 34, 20, .98) 0%, rgba(17, 13, 8, .99) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 231, 174, .12),
    0 12px 28px rgba(54, 37, 16, .18) !important;
  color: #fff5e6 !important;
  text-decoration: none !important;
  overflow: hidden !important;
  position: relative !important;
  transform: translateZ(0) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

.shop-category-button::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent),
    radial-gradient(circle at 18% 50%, rgba(212, 171, 91, .16), transparent 32%) !important;
  opacity: .55 !important;
  pointer-events: none !important;
}

.shop-category-button span {
  position: relative !important;
  z-index: 1 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(15px, 1.05vw, 22px) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .42) !important;
}

.shop-category-button i {
  position: absolute !important;
  right: clamp(18px, 1.5vw, 30px) !important;
  top: 50% !important;
  z-index: 1 !important;
  transform: translateY(-52%) !important;
  display: block !important;
  color: #d7b064 !important;
  font-style: normal !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(32px, 2.2vw, 42px) !important;
  line-height: 1 !important;
  opacity: .96 !important;
}

.shop-category-button:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(230, 189, 104, .86) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 231, 174, .18),
    0 18px 34px rgba(54, 37, 16, .24) !important;
}

.dao-category-products:first-of-type {
  padding-top: clamp(20px, 2.4vw, 42px) !important;
}

@media (max-width: 1180px) {
  .shop-category-button-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .shop-category-button {
    height: 72px !important;
  }
}

@media (max-width: 680px) {
  .shop-collection-nav.shop-collection-nav--buttons .shop-collection-nav__inner {
    width: min(100%, calc(100% - 34px)) !important;
  }

  .shop-category-button-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .shop-category-button {
    height: 64px !important;
    justify-content: flex-start !important;
  }

  .shop-category-button span {
    font-size: 18px !important;
    letter-spacing: .15em !important;
  }
}
.page-title-below .shop-ritual-subtitle {
  max-width: 760px !important;
  line-height: 1.48 !important;
}

.shop-collection-nav.shop-collection-nav--buttons {
  padding-top: clamp(4px, .6vw, 12px) !important;
  padding-bottom: clamp(34px, 3.2vw, 54px) !important;
}

.shop-collection-nav.shop-collection-nav--buttons .shop-collection-nav__inner {
  width: min(1480px, calc(100% - 72px)) !important;
  margin: 0 auto !important;
}

.shop-category-button-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: center !important;
}

.shop-category-button {
  width: 100% !important;
  height: clamp(54px, 3.5vw, 68px) !important;
  padding: 0 clamp(18px, 1.8vw, 34px) !important;
  border-radius: 8px !important;
}

.shop-category-button span {
  font-size: clamp(14px, .92vw, 18px) !important;
  letter-spacing: .16em !important;
}

.shop-category-button i {
  right: clamp(14px, 1.1vw, 22px) !important;
  font-size: clamp(27px, 1.8vw, 36px) !important;
}

.dao-category-products:first-of-type {
  padding-top: clamp(20px, 2.2vw, 36px) !important;
}

@media (max-width: 1180px) {
  .shop-category-button-row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .shop-category-button {
    height: 60px !important;
    padding: 0 20px !important;
  }

  .shop-category-button span {
    font-size: 14px !important;
    letter-spacing: .12em !important;
  }

  .shop-category-button i {
    right: 14px !important;
    font-size: 30px !important;
  }
}

@media (max-width: 820px) {
  .shop-collection-nav.shop-collection-nav--buttons .shop-collection-nav__inner {
    width: min(100%, calc(100% - 40px)) !important;
  }

  .shop-category-button-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

@media (max-width: 560px) {
  .shop-category-button-row {
    grid-template-columns: 1fr !important;
  }

  .shop-category-button {
    height: 60px !important;
    justify-content: flex-start !important;
  }

  .page-title-below .shop-ritual-subtitle br {
    display: none !important;
  }
}
.dao-category-products--minimal {
  padding-top: clamp(28px, 3vw, 52px) !important;
}

.dao-category-products__heading--minimal {
  margin-bottom: clamp(30px, 3.4vw, 58px) !important;
}

.dao-product-minimal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(211, 177, 109, .22);
  border-bottom: 1px solid rgba(211, 177, 109, .20);
}

.dao-product-minimal-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(300px, 20vw) auto;
  padding: 0 clamp(18px, 2vw, 34px) clamp(22px, 2.2vw, 36px);
  border-right: 1px solid rgba(211, 177, 109, .20);
  background: transparent;
}

.dao-product-minimal-card:first-child {
  border-left: 0;
}

.dao-product-minimal-card:last-child {
  border-right: 0;
}

.dao-product-minimal-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(410px, 22vw);
  min-height: 300px;
  padding: clamp(18px, 2.2vw, 38px) 0 clamp(8px, 1vw, 16px);
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  text-decoration: none;
  overflow: visible;
}

.dao-product-minimal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(46, 33, 22, .08));
  transition: transform .35s ease, filter .35s ease;
}

.dao-product-minimal-card:hover .dao-product-minimal-card__image img {
  transform: translateY(-4px) scale(1.025);
  filter: drop-shadow(0 20px 34px rgba(46, 33, 22, .12));
}

.dao-product-minimal-card__body {
  display: grid;
  align-content: end;
  min-height: 230px;
  padding-top: clamp(14px, 2vw, 34px);
}

.dao-product-minimal-card__body > i {
  width: 50px;
  height: 1px;
  margin: 0 0 22px;
  display: block;
  background: #c79a44;
}

.dao-product-minimal-card__body h3 {
  margin: 0;
  min-height: 82px;
}

.dao-product-minimal-card__body h3 a {
  color: #31231b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.38vw, 31px);
  line-height: 1.17;
  font-weight: 500;
  letter-spacing: -.04em;
  text-decoration: none;
}

.dao-product-minimal-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(24px, 2.6vw, 44px);
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(184, 139, 55, .62);
}

.dao-product-minimal-card__bottom strong {
  color: #b98123;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 500;
  letter-spacing: -.02em;
}

.dao-product-minimal-card__bottom a {
  color: #b98123;
  font-size: clamp(26px, 1.9vw, 34px);
  line-height: .8;
  text-decoration: none;
  transition: transform .25s ease, color .25s ease;
}

.dao-product-minimal-card:hover .dao-product-minimal-card__bottom a {
  transform: translateX(7px);
  color: #805b1f;
}

@media (max-width: 1440px) {
  .dao-product-minimal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dao-product-minimal-card:nth-child(3n) {
    border-right: 0;
  }

  .dao-product-minimal-card:nth-child(n+4) {
    border-top: 1px solid rgba(211, 177, 109, .20);
  }

  .dao-product-minimal-card__image {
    height: 330px;
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .dao-product-minimal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dao-product-minimal-card:nth-child(3n) {
    border-right: 1px solid rgba(211, 177, 109, .20);
  }

  .dao-product-minimal-card:nth-child(2n) {
    border-right: 0;
  }

  .dao-product-minimal-card:nth-child(n+3) {
    border-top: 1px solid rgba(211, 177, 109, .20);
  }
}

@media (max-width: 620px) {
  .dao-product-minimal-grid {
    grid-template-columns: 1fr;
  }

  .dao-product-minimal-card,
  .dao-product-minimal-card:nth-child(2n),
  .dao-product-minimal-card:nth-child(3n) {
    border-right: 0;
    border-top: 1px solid rgba(211, 177, 109, .20);
  }

  .dao-product-minimal-card:first-child {
    border-top: 0;
  }

  .dao-product-minimal-card {
    grid-template-rows: auto auto;
    padding-inline: 22px;
  }

  .dao-product-minimal-card__image {
    height: 280px;
    min-height: 260px;
  }

  .dao-product-minimal-card__body {
    min-height: auto;
    padding-top: 10px;
  }

  .dao-product-minimal-card__body h3 {
    min-height: auto;
  }
}
.dao-category-products--minimal .dao-category-products__inner {
  max-width: min(1780px, calc(100% - 112px));
}

.dao-category-products__heading--minimal {
  margin-bottom: clamp(22px, 2vw, 34px) !important;
}

.dao-category-products__heading--minimal h2 {
  font-size: clamp(72px, 6.2vw, 118px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.045em !important;
}

.dao-category-products__heading--minimal span {
  margin-top: 20px;
}

.dao-product-minimal-grid {
  align-items: stretch;
}

.dao-product-minimal-card {
  grid-template-rows: auto 1fr;
  padding: clamp(12px, 1.1vw, 18px) clamp(26px, 1.8vw, 42px) clamp(18px, 1.6vw, 28px);
}

.dao-product-minimal-card__image {
  height: clamp(230px, 17vw, 300px);
  min-height: 230px;
  align-items: flex-end;
  padding: clamp(18px, 1.6vw, 26px) 0 clamp(8px, .8vw, 10px);
  overflow: hidden;
}

.dao-product-minimal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.dao-product-minimal-card:nth-child(-n+3) .dao-product-minimal-card__image img {
  transform: scale(1.48) translateY(6px);
  transform-origin: center bottom;
}

.dao-product-minimal-card:nth-child(4) .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5) .dao-product-minimal-card__image img {
  transform: scale(1.12) translateY(3px);
  transform-origin: center bottom;
}

.dao-product-minimal-card:hover .dao-product-minimal-card__image img {
  filter: none;
}

.dao-product-minimal-card:nth-child(-n+3):hover .dao-product-minimal-card__image img {
  transform: scale(1.52) translateY(3px);
}

.dao-product-minimal-card:nth-child(4):hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5):hover .dao-product-minimal-card__image img {
  transform: scale(1.15) translateY(0);
}

.dao-product-minimal-card__body {
  min-height: 270px;
  padding-top: 26px;
}

.dao-product-minimal-card__body > i {
  width: 56px;
  margin: 0 0 28px;
  background: rgba(199, 154, 68, 0.78);
}

.dao-product-minimal-card__body h3 {
  min-height: 124px;
  max-width: 95%;
}

.dao-product-minimal-card__body h3 a {
  font-size: clamp(22px, 1.58vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.dao-product-minimal-card__bottom {
  margin-top: auto;
  padding-top: 34px;
  padding-bottom: 12px;
}

.dao-product-minimal-card__bottom strong {
  font-size: clamp(24px, 1.9vw, 36px);
}

.dao-product-minimal-card__bottom a {
  font-size: clamp(28px, 2vw, 36px);
}

@media (max-width: 1500px) {
  .dao-category-products__heading--minimal h2 {
    font-size: clamp(60px, 6vw, 94px) !important;
  }
  .dao-product-minimal-card__image {
    height: 260px;
  }
  .dao-product-minimal-card__body {
    min-height: 230px;
  }
}

@media (max-width: 1440px) {
  .dao-category-products--minimal .dao-category-products__inner {
    max-width: min(1420px, calc(100% - 64px));
  }
  .dao-product-minimal-card {
    padding-inline: 24px;
  }
}

@media (max-width: 900px) {
  .dao-category-products--minimal .dao-category-products__inner {
    max-width: min(920px, calc(100% - 32px));
  }
  .dao-product-minimal-card__image {
    height: 240px;
    min-height: 220px;
  }
  .dao-product-minimal-card__body {
    min-height: 220px;
    padding-top: 22px;
  }
}

@media (max-width: 620px) {
  .dao-category-products__heading--minimal h2 {
    font-size: clamp(44px, 14vw, 64px) !important;
  }
  .dao-product-minimal-card {
    padding-inline: 18px;
  }
  .dao-product-minimal-card__image {
    height: 230px;
    min-height: 230px;
    padding-top: 14px;
  }
  .dao-product-minimal-card:nth-child(-n+3) .dao-product-minimal-card__image img {
    transform: scale(1.32) translateY(4px);
  }
  .dao-product-minimal-card:nth-child(4) .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(5) .dao-product-minimal-card__image img {
    transform: scale(1.04) translateY(2px);
  }
  .dao-product-minimal-card__body {
    min-height: 0;
    padding-top: 18px;
  }
  .dao-product-minimal-card__body h3 {
    min-height: auto;
    max-width: 100%;
  }
  .dao-product-minimal-card__body h3 a {
    font-size: 22px;
  }
}
.dao-product-minimal-grid {
  gap: clamp(18px, 1.6vw, 34px) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.dao-product-minimal-card,
.dao-product-minimal-card:first-child,
.dao-product-minimal-card:last-child,
.dao-product-minimal-card:nth-child(2n),
.dao-product-minimal-card:nth-child(3n),
.dao-product-minimal-card:nth-child(n+3),
.dao-product-minimal-card:nth-child(n+4) {
  border: 0 !important;
  background: transparent !important;
}

.dao-product-minimal-card {
  padding: clamp(8px, .9vw, 14px) clamp(18px, 1.5vw, 30px) clamp(18px, 1.5vw, 28px) !important;
}

.dao-product-minimal-card__image {
  height: clamp(280px, 19vw, 360px) !important;
  min-height: 280px !important;
  padding-top: clamp(8px, 1vw, 16px) !important;
  padding-bottom: clamp(6px, .6vw, 12px) !important;
}

.dao-product-minimal-card:nth-child(-n+3) .dao-product-minimal-card__image img {
  transform: scale(1.66) translateY(8px) !important;
}

.dao-product-minimal-card:nth-child(4) .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5) .dao-product-minimal-card__image img {
  transform: scale(1.24) translateY(6px) !important;
}

.dao-product-minimal-card:nth-child(-n+3):hover .dao-product-minimal-card__image img {
  transform: scale(1.70) translateY(4px) !important;
}

.dao-product-minimal-card:nth-child(4):hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5):hover .dao-product-minimal-card__image img {
  transform: scale(1.28) translateY(2px) !important;
}

.dao-product-minimal-card__body {
  min-height: 250px !important;
  padding-top: clamp(18px, 1.8vw, 30px) !important;
}

.dao-product-minimal-card__bottom {
  margin-top: clamp(26px, 2vw, 38px) !important;
  border-bottom: 2px solid rgba(184, 139, 55, .62) !important;
}

@media (max-width: 1440px) {
  .dao-product-minimal-grid {
    gap: 26px !important;
  }
  .dao-product-minimal-card__image {
    height: 310px !important;
    min-height: 290px !important;
  }
}

@media (max-width: 900px) {
  .dao-product-minimal-grid {
    gap: 22px !important;
  }
  .dao-product-minimal-card__image {
    height: 280px !important;
  }
}

@media (max-width: 620px) {
  .dao-product-minimal-grid {
    gap: 18px !important;
  }
  .dao-product-minimal-card__image {
    height: 260px !important;
    min-height: 250px !important;
  }
}
.dao-product-minimal-grid {
  gap: clamp(6px, .65vw, 12px) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.dao-product-minimal-card {
  padding-left: clamp(14px, 1vw, 22px) !important;
  padding-right: clamp(14px, 1vw, 22px) !important;
}

.dao-product-minimal-card__image {
  height: clamp(250px, 17vw, 320px) !important;
  min-height: 250px !important;
  padding-top: clamp(8px, .8vw, 14px) !important;
  padding-bottom: clamp(6px, .6vw, 10px) !important;
}

.dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(-n+3) .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(4) .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5) .dao-product-minimal-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
  transform-origin: center center !important;
}

.dao-product-minimal-card:hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(-n+3):hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(4):hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5):hover .dao-product-minimal-card__image img {
  transform: translateY(-3px) !important;
}

.dao-product-minimal-card__body {
  min-height: 232px !important;
  padding-top: clamp(14px, 1.25vw, 22px) !important;
}

.dao-product-minimal-card__body > i {
  margin-bottom: 22px !important;
}

.dao-product-minimal-card__bottom {
  margin-top: clamp(18px, 1.5vw, 30px) !important;
}

@media (max-width: 1440px) {
  .dao-product-minimal-grid {
    gap: 10px !important;
  }
  .dao-product-minimal-card__image {
    height: 280px !important;
    min-height: 250px !important;
  }
}

@media (max-width: 900px) {
  .dao-product-minimal-grid {
    gap: 10px !important;
  }
  .dao-product-minimal-card__image {
    height: 250px !important;
  }
}

@media (max-width: 620px) {
  .dao-product-minimal-grid {
    gap: 8px !important;
  }
  .dao-product-minimal-card__image {
    height: 240px !important;
    min-height: 230px !important;
  }
}
.dao-product-minimal-card__bottom {
  margin-top: clamp(18px, 1.6vw, 28px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.dao-product-minimal-card__body {
  min-height: clamp(170px, 11vw, 210px) !important;
}

.dao-product-minimal-card__body h3 {
  min-height: clamp(72px, 5.8vw, 108px) !important;
}

@media (max-width: 900px) {
  .dao-product-minimal-card__body {
    min-height: 180px !important;
  }

  .dao-product-minimal-card__body h3 {
    min-height: 84px !important;
  }
}

@media (max-width: 620px) {
  .dao-product-minimal-card__bottom {
    margin-top: 18px !important;
  }

  .dao-product-minimal-card__body,
  .dao-product-minimal-card__body h3 {
    min-height: 0 !important;
  }
}
.dao-product-minimal-card__bottom {
  margin-top: clamp(14px, 1.2vw, 22px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
  align-items: center !important;
}

.dao-product-minimal-card__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}

.dao-product-minimal-card__prices del {
  color: rgba(49, 35, 27, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.08vw, 22px);
  font-weight: 500;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(49, 35, 27, 0.82);
}

.dao-product-minimal-card__bottom > strong {
  display: none;
}

.dao-product-minimal-card__bottom a,
.dao-product-minimal-card__arrow {
  color: #b98123;
  font-size: clamp(26px, 1.75vw, 32px);
  line-height: 1;
  text-decoration: none;
}

.dao-product-minimal-card__body {
  min-height: 245px !important;
}

.dao-product-minimal-card__body h3 {
  min-height: 92px !important;
}

@media (max-width: 620px) {
  .dao-product-minimal-card__prices {
    gap: 10px;
  }
}

.dao-product-minimal-card__body {
  min-height: clamp(128px, 8.8vw, 170px) !important;
  padding-top: clamp(12px, 1vw, 18px) !important;
  align-content: start !important;
}

.dao-product-minimal-card__body > i {
  margin-bottom: clamp(16px, 1.15vw, 22px) !important;
}

.dao-product-minimal-card__body h3 {
  min-height: clamp(62px, 4.6vw, 88px) !important;
  margin-bottom: 0 !important;
}

.dao-product-minimal-card__bottom {
  margin-top: clamp(6px, .75vw, 14px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
  align-items: center !important;
}

.dao-product-minimal-card__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.dao-product-minimal-card__prices strong {
  color: #b98123;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 1.85vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.dao-product-minimal-card__prices del {
  color: rgba(49, 35, 27, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1vw, 21px);
  font-weight: 500;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(49, 35, 27, 0.82);
}

.dao-product-minimal-card__arrow {
  color: #b98123;
  font-size: clamp(26px, 1.75vw, 32px);
  line-height: 1;
  text-decoration: none;
}

@media (max-width: 900px) {
  .dao-product-minimal-card__body {
    min-height: 150px !important;
  }

  .dao-product-minimal-card__body h3 {
    min-height: 76px !important;
  }
}

@media (max-width: 620px) {
  .dao-product-minimal-card__body,
  .dao-product-minimal-card__body h3 {
    min-height: 0 !important;
  }

  .dao-product-minimal-card__bottom {
    margin-top: 18px !important;
  }
}
.dao-category-products--minimal {
  padding-top: clamp(44px, 4.8vw, 92px) !important;
  padding-bottom: clamp(30px, 3.6vw, 70px) !important;
}

.dao-category-products--minimal + .dao-category-products--minimal {
  margin-top: 0 !important;
}

.dao-category-products--minimal .dao-category-products__inner {
  max-width: min(1780px, calc(100% - 112px)) !important;
}

.dao-category-products__heading--minimal {
  margin-bottom: clamp(24px, 2.4vw, 42px) !important;
  border-top: 1px solid rgba(211, 177, 109, .18);
  padding-top: clamp(18px, 2vw, 32px);
}

.dao-category-products__heading--minimal h2 {
  font-size: clamp(70px, 6vw, 118px) !important;
  line-height: .92 !important;
  letter-spacing: .08em !important;
  font-weight: 500 !important;
}

.dao-category-products__heading--minimal span {
  margin-top: 24px;
}

.dao-product-minimal-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(12px, 1.1vw, 22px) !important;
  border: 0 !important;
  background: transparent !important;
}

.dao-product-minimal-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  padding: 0 clamp(8px, .9vw, 16px) clamp(8px, .8vw, 14px) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.dao-product-minimal-card::after {
  content: none !important;
}

.dao-product-minimal-card__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(250px, 18vw, 340px) !important;
  min-height: 250px !important;
  padding: 0 0 clamp(16px, 1.6vw, 26px) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  text-decoration: none;
}

.dao-product-minimal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
  filter: none !important;
  transform: none !important;
  transition: transform .28s ease;
}

.dao-product-minimal-card:hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(-n+3):hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(4):hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5):hover .dao-product-minimal-card__image img {
  transform: translateY(-3px) !important;
  filter: none !important;
}

.dao-product-minimal-card__body {
  display: grid;
  align-content: start !important;
  min-height: clamp(160px, 10vw, 205px) !important;
  padding-top: clamp(6px, .75vw, 14px) !important;
}

.dao-product-minimal-card__body > i {
  width: 56px;
  height: 1px;
  margin: 0 0 clamp(18px, 1.2vw, 24px) !important;
  background: rgba(199, 154, 68, .82) !important;
}

.dao-product-minimal-card__body h3 {
  min-height: clamp(72px, 5.4vw, 108px) !important;
  margin: 0 !important;
  max-width: 100%;
}

.dao-product-minimal-card__body h3 a {
  color: #31231b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.38vw, 31px) !important;
  line-height: 1.14 !important;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.dao-product-minimal-card__bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin-top: clamp(4px, .5vw, 10px) !important;
  padding: 0 !important;
  border: 0 !important;
}

.dao-product-minimal-card__prices {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  white-space: nowrap !important;
}

.dao-product-minimal-card__prices strong {
  color: #b98123;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 1.8vw, 34px) !important;
  font-weight: 500;
  letter-spacing: -.02em;
}

.dao-product-minimal-card__prices del {
  color: rgba(49, 35, 27, .52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, .95vw, 20px) !important;
  font-weight: 500;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(49, 35, 27, .78);
}

.dao-product-minimal-card__arrow {
  color: #b98123;
  font-size: clamp(26px, 1.7vw, 32px) !important;
  line-height: 1;
  text-decoration: none;
  transform: none;
  transition: transform .22s ease, color .22s ease;
}

.dao-product-minimal-card:hover .dao-product-minimal-card__arrow {
  transform: translateX(5px) !important;
  color: #805b1f;
}

@media (max-width: 1440px) {
  .dao-category-products--minimal .dao-category-products__inner {
    max-width: min(1420px, calc(100% - 64px)) !important;
  }
  .dao-product-minimal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .dao-product-minimal-card__image {
    height: 290px !important;
  }
}

@media (max-width: 900px) {
  .dao-category-products--minimal .dao-category-products__inner {
    max-width: min(900px, calc(100% - 32px)) !important;
  }
  .dao-product-minimal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 18px !important;
  }
  .dao-product-minimal-card__image {
    height: 260px !important;
    min-height: 240px !important;
  }
  .dao-product-minimal-card__body {
    min-height: 170px !important;
  }
}

@media (max-width: 620px) {
  .dao-category-products__heading--minimal h2 {
    font-size: clamp(44px, 13vw, 64px) !important;
  }
  .dao-product-minimal-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .dao-product-minimal-card {
    padding-inline: 0 !important;
  }
  .dao-product-minimal-card__image {
    height: 240px !important;
    min-height: 230px !important;
  }
  .dao-product-minimal-card__body,
  .dao-product-minimal-card__body h3 {
    min-height: auto !important;
  }
}
#bracelets-products .dao-product-minimal-card__image {
  height: clamp(300px, 22vw, 380px);
  min-height: 300px;
  align-items: stretch;
  padding: 0;
}

#bracelets-products .dao-product-minimal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none !important;
}

#bracelets-products .dao-product-minimal-card:hover .dao-product-minimal-card__image img {
  transform: none !important;
}
#bracelets-products .dao-product-minimal-grid {
  column-gap: clamp(10px, 0.9vw, 18px) !important;
  row-gap: 40px !important;
}

#bracelets-products .dao-product-minimal-card {
  padding-inline: clamp(4px, 0.45vw, 10px) !important;
}

#bracelets-products .dao-product-minimal-card__image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#bracelets-products .dao-product-minimal-card__image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.08) !important;
  filter: none !important;
}

#bracelets-products .dao-product-minimal-card:hover .dao-product-minimal-card__image img {
  transform: scale(1.08) !important;
  filter: none !important;
}

#bracelets-products .dao-product-minimal-card__body {
  padding-top: clamp(26px, 2vw, 36px) !important;
  min-height: 230px !important;
}

#bracelets-products .dao-product-minimal-card__body > i {
  margin-bottom: 24px !important;
}

#bracelets-products .dao-product-minimal-card__body h3 {
  min-height: 96px !important;
}

#bracelets-products .dao-product-minimal-card__bottom {
  margin-top: 20px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 0 !important;
}

#bracelets-products .dao-product-minimal-card__bottom::after {
  display: none !important;
}

#bracelets-products .dao-product-minimal-card__prices {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 14px !important;
}

#bracelets-products .dao-product-minimal-card__prices strong {
  color: #b98224 !important;
}

#bracelets-products .dao-product-minimal-card__prices del {
  color: rgba(52, 37, 29, 0.45) !important;
  font-size: 18px !important;
}

@media (max-width: 900px) {
  #bracelets-products .dao-product-minimal-grid {
    column-gap: 12px !important;
    row-gap: 36px !important;
  }

  #bracelets-products .dao-product-minimal-card__body {
    min-height: 190px !important;
  }
}

@media (max-width: 620px) {
  #bracelets-products .dao-product-minimal-card__body {
    min-height: 0 !important;
  }

  #bracelets-products .dao-product-minimal-card__body h3 {
    min-height: auto !important;
  }
}
#bracelets-products .dao-product-minimal-card__body {
  min-height: 188px !important;
  padding-top: clamp(24px, 1.7vw, 30px) !important;
}

#bracelets-products .dao-product-minimal-card__body > i {
  width: 42px !important;
  height: 1px !important;
  margin-bottom: clamp(18px, 1.1vw, 22px) !important;
  background: rgba(199, 154, 68, 0.46) !important;
  transform: scaleY(0.6);
  transform-origin: left center;
}

#bracelets-products .dao-product-minimal-card__body h3 {
  min-height: 82px !important;
}

#bracelets-products .dao-product-minimal-card__bottom {
  justify-content: flex-start !important;
  gap: clamp(34px, 3.1vw, 58px) !important;
  margin-top: 0 !important;
}

#bracelets-products .dao-product-minimal-card__arrow {
  margin-left: 0 !important;
  font-size: clamp(24px, 1.55vw, 30px) !important;
}

@media (max-width: 900px) {
  #bracelets-products .dao-product-minimal-card__body {
    min-height: 158px !important;
  }

  #bracelets-products .dao-product-minimal-card__body h3 {
    min-height: 72px !important;
  }

  #bracelets-products .dao-product-minimal-card__bottom {
    gap: 34px !important;
  }
}

@media (max-width: 620px) {
  #bracelets-products .dao-product-minimal-card__body,
  #bracelets-products .dao-product-minimal-card__body h3 {
    min-height: 0 !important;
  }
}
.mobile-nav-toggle,
.mobile-search-toggle,
.mobile-panel-backdrop,
.mobile-drawer {
  display: none !important;
}

.footer-accordion-toggle {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(211,177,109,.92);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: left;
}

.footer-accordion-toggle i {
  display: none;
  font-style: normal;
}

.footer-column-links {
  display: block;
}

@media (max-width: 900px) {
  body.mobile-panel-open {
    overflow: hidden !important;
  }

  .header,
  .header.is-scrolled {
    left: 16px !important;
    right: 16px !important;
    top: 24px !important;
    height: 60px !important;
    padding: 0 12px !important;
    display: grid !important;
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px 34px !important;
    align-items: center !important;
    gap: 7px !important;
    border-radius: 18px !important;
    background: rgba(7, 12, 12, .88) !important;
    border: 1px solid rgba(211, 177, 109, .16) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
  }

  .header.is-scrolled {
    top: 12px !important;
    height: 54px !important;
  }

  .mobile-nav-toggle,
  .mobile-search-toggle {
    display: grid !important;
    place-items: center !important;
    width: 34px !important;
    height: 34px !important;
    color: rgba(222, 192, 132, .96) !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
  }

  .mobile-nav-toggle {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .mobile-search-toggle {
    grid-column: 2 !important;
    justify-self: start !important;
  }

  .mobile-nav-toggle span {
    display: block !important;
    width: 20px !important;
    height: 1.7px !important;
    margin: 2.8px 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    box-shadow: 0 1px 7px rgba(0,0,0,.24) !important;
  }

  .mobile-search-toggle svg {
    width: 21px !important;
    height: 21px !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    fill: none !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .header .brand {
    grid-column: 3 !important;
    justify-self: center !important;
    width: min(43vw, 190px) !important;
    min-width: 0 !important;
    max-width: 190px !important;
  }

  .header .brand img,
  .header.is-scrolled .brand img {
    width: 100% !important;
    max-height: 38px !important;
    object-fit: contain !important;
  }

  .header .nav {
    display: none !important;
  }

  .header-icons {
    display: contents !important;
  }

  .desktop-search-btn {
    display: none !important;
  }

  .mobile-panel-backdrop {
    display: block !important;
    position: fixed !important;
    z-index: 10000 !important;
    inset: 0 !important;
    background: rgba(0,0,0,.42) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity .28s ease !important;
  }

  .mobile-panel-backdrop.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mobile-drawer {
    display: block !important;
    position: fixed !important;
    z-index: 10001 !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: min(86vw, 360px) !important;
    padding: 22px 22px 28px !important;
    background: #14110d !important;
    color: rgba(250,238,211,.92) !important;
    border-right: 1px solid rgba(211,177,109,.18) !important;
    box-shadow: 22px 0 46px rgba(0,0,0,.34) !important;
    transform: translateX(-105%) !important;
    transition: transform .32s cubic-bezier(.2,.72,.2,1) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .mobile-drawer.is-open {
    transform: translateX(0) !important;
  }

  .mobile-search-drawer {
    width: min(92vw, 420px) !important;
  }

  .mobile-drawer__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    border-bottom: 1px solid rgba(211,177,109,.14) !important;
  }

  .mobile-drawer__head img {
    width: 185px !important;
    max-width: 70% !important;
    height: auto !important;
    display: block !important;
  }

  .mobile-drawer__head strong {
    color: #f6ebcf !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
  }

  .mobile-drawer-close {
    width: 36px !important;
    height: 36px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211,177,109,.2) !important;
    background: rgba(255,255,255,.035) !important;
    color: rgba(250,238,211,.92) !important;
    font-size: 26px !important;
    line-height: 1 !important;
  }

  .mobile-drawer__links {
    display: grid !important;
    gap: 0 !important;
    padding: 18px 0 !important;
  }

  .mobile-drawer__links a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 48px !important;
    color: rgba(250,238,211,.92) !important;
    text-decoration: none !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(211,177,109,.10) !important;
  }

  .mobile-drawer__links a::after {
    content: "→" !important;
    color: rgba(211,177,109,.82) !important;
  }

  .mobile-drawer__cta a,
  .mobile-search-form button {
    display: inline-grid !important;
    place-items: center !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #dec084 0%, #cfa860 100%) !important;
    color: #171108 !important;
    text-decoration: none !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .13em !important;
    text-transform: uppercase !important;
    border: 0 !important;
  }

  .mobile-search-form {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .mobile-search-form input {
    min-width: 0 !important;
    height: 44px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211,177,109,.22) !important;
    background: rgba(255,255,255,.055) !important;
    color: rgba(250,238,211,.96) !important;
    outline: none !important;
  }

  .mobile-search-form input::placeholder {
    color: rgba(250,238,211,.46) !important;
  }

  .mobile-search-suggestions {
    display: grid !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .mobile-search-suggestions a {
    color: rgba(250,238,211,.86) !important;
    text-decoration: none !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(211,177,109,.10) !important;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 34px 20px 22px !important;
  }

  .footer-shell {
    max-width: 100% !important;
  }

  .footer-top {
    display: block !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(211,177,109,.12) !important;
  }

  .footer-brand {
    text-align: center !important;
    margin-bottom: 24px !important;
  }

  .footer-brand__logo {
    display: inline-block !important;
  }

  .footer-brand__logo img {
    width: min(58vw, 220px) !important;
    margin: 0 auto !important;
  }

  .footer-brand p {
    max-width: 320px !important;
    margin: 16px auto 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: rgba(239,225,195,.66) !important;
  }

  .footer-links {
    display: block !important;
  }

  .footer-column {
    border-top: 1px solid rgba(211,177,109,.14) !important;
  }

  .footer-column:last-child {
    border-bottom: 1px solid rgba(211,177,109,.14) !important;
  }

  .footer-accordion-toggle {
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: rgba(222,192,132,.96) !important;
    cursor: pointer !important;
  }

  .footer-accordion-toggle i {
    display: block !important;
    font-size: 18px !important;
    color: rgba(250,238,211,.72) !important;
    transition: transform .22s ease !important;
  }

  .footer-column.is-open .footer-accordion-toggle i {
    transform: rotate(45deg) !important;
  }

  .footer-column-links {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    padding: 0 !important;
    transition: max-height .28s ease, opacity .22s ease, padding .22s ease !important;
  }

  .footer-column.is-open .footer-column-links {
    max-height: 260px !important;
    opacity: 1 !important;
    padding: 0 0 16px !important;
  }

  .footer-column-links a {
    display: block !important;
    padding: 5px 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .footer-bottom {
    padding-top: 18px !important;
    align-items: center !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .footer-meta {
    justify-content: center !important;
    gap: 14px !important;
  }
}
@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }

  .mobile-nav-toggle span {
    width: 16px !important;
    height: 1.15px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: rgba(224, 190, 118, .92) !important;
    box-shadow: none !important;
    opacity: .96 !important;
  }
}
@media (max-width: 767px) {
  .shop-ritual-shell {
    overflow-x: hidden !important;
  }

  .shop-ritual-hero {
    height: 150px !important;
    min-height: 150px !important;
    max-height: 150px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .shop-ritual-hero__image {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 38% !important;
  }

  .page-title-below {
    margin-top: -18px !important;
    padding: 24px 18px 18px !important;
    background: #f8f4ec !important;
    border-radius: 22px 22px 0 0 !important;
    text-align: center !important;
  }

  .page-title-below__content {
    max-width: 360px !important;
  }

  .page-title-below .shop-ritual-kicker {
    margin: 0 0 9px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    letter-spacing: .24em !important;
  }

  .page-title-below h1 {
    max-width: 330px !important;
    margin: 0 auto !important;
    font-size: clamp(42px, 12.3vw, 56px) !important;
    line-height: .92 !important;
    letter-spacing: -.06em !important;
  }

  .page-title-below .shop-ritual-divider {
    width: min(220px, 68vw) !important;
    margin: 13px auto 12px !important;
    gap: 10px !important;
  }

  .page-title-below .shop-ritual-divider span {
    width: 25px !important;
    height: 25px !important;
    font-size: 13px !important;
  }

  .page-title-below .shop-ritual-subtitle {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    font-size: 17px !important;
    line-height: 1.42 !important;
    color: rgba(51, 36, 29, .72) !important;
    white-space: normal !important;
    overflow: visible !important;
  }

  .page-title-below .shop-ritual-subtitle br {
    display: none !important;
  }

  .shop-collection-nav.shop-collection-nav--buttons {
    padding: 4px 0 22px !important;
    margin: 0 !important;
  }

  .shop-collection-nav.shop-collection-nav--buttons .shop-collection-nav__inner {
    width: calc(100% - 42px) !important;
    max-width: 390px !important;
    margin: 0 auto !important;
  }

  .shop-category-button-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .shop-category-button {
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 8px !important;
    padding: 0 14px !important;
    justify-content: space-between !important;
    gap: 8px !important;
    box-shadow: 0 10px 22px rgba(35, 22, 11, .10) !important;
  }

  .shop-category-button span {
    font-size: 12px !important;
    letter-spacing: .14em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .shop-category-button i {
    position: static !important;
    transform: none !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .dao-category-products:first-of-type {
    padding-top: 2px !important;
    margin-top: 0 !important;
  }

  .dao-category-products {
    padding: 28px 0 34px !important;
  }

  .dao-category-products + .dao-category-products {
    margin-top: 0 !important;
  }

  .dao-category-products__inner {
    width: calc(100% - 32px) !important;
    margin: 0 auto !important;
  }

  .dao-category-products__heading,
  .dao-category-products__heading--minimal {
    margin: 0 0 18px !important;
    padding: 0 !important;
    text-align: left !important;
    display: block !important;
  }

  .dao-category-products__heading span,
  .dao-category-products__heading--minimal span {
    display: block !important;
    margin: 0 0 8px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    letter-spacing: .24em !important;
    color: rgba(178, 132, 57, .76) !important;
    text-align: left !important;
  }

  .dao-category-products__heading h2,
  .dao-category-products__heading--minimal h2 {
    margin: 0 !important;
    font-size: clamp(46px, 14vw, 62px) !important;
    line-height: .88 !important;
    letter-spacing: .05em !important;
    text-align: left !important;
  }

  .dao-product-minimal-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 0 18px !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    scrollbar-width: none !important;
  }

  .dao-product-minimal-grid::-webkit-scrollbar {
    display: none !important;
  }

  .dao-product-minimal-card,
  .dao-product-minimal-card:nth-child(2n),
  .dao-product-minimal-card:nth-child(3n) {
    flex: 0 0 76% !important;
    width: 76% !important;
    min-width: 76% !important;
    max-width: 76% !important;
    scroll-snap-align: start !important;
    display: block !important;
    padding: 0 0 18px !important;
    border: 0 !important;
    background: transparent !important;
  }

  .dao-product-minimal-card__image {
    height: 270px !important;
    min-height: 270px !important;
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: rgba(255, 250, 242, .72) !important;
  }

  .dao-product-minimal-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: none !important;
  }

  .dao-product-minimal-card__body {
    min-height: auto !important;
    padding-top: 14px !important;
    display: block !important;
  }

  .dao-product-minimal-card__body > i {
    width: 34px !important;
    margin: 0 0 12px !important;
  }

  .dao-product-minimal-card__body h3 {
    min-height: auto !important;
    margin: 0 !important;
  }

  .dao-product-minimal-card__body h3 a {
    font-size: 27px !important;
    line-height: 1.05 !important;
    letter-spacing: -.05em !important;
  }

  .dao-product-minimal-card__bottom {
    margin-top: 18px !important;
    padding-bottom: 10px !important;
    border-bottom-width: 1px !important;
  }

  .dao-product-minimal-card__bottom strong {
    font-size: 26px !important;
  }

  .dao-product-minimal-card__bottom a {
    font-size: 28px !important;
  }
}

@media (max-width: 380px) {
  .page-title-below h1 {
    font-size: 40px !important;
  }

  .shop-category-button span {
    font-size: 11px !important;
    letter-spacing: .10em !important;
  }

  .dao-product-minimal-card,
  .dao-product-minimal-card:nth-child(2n),
  .dao-product-minimal-card:nth-child(3n) {
    flex-basis: 82% !important;
    width: 82% !important;
    min-width: 82% !important;
    max-width: 82% !important;
  }
}
@media (max-width: 720px) {
  .shop-ritual-hero {
    height: 182px !important;
    min-height: 182px !important;
    max-height: 182px !important;
  }

  .shop-ritual-hero__image {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 42% !important;
    transform: scale(1.12) !important;
    transform-origin: center center !important;
  }
}
@media (max-width: 720px) {
  .shop-ritual-hero {
    height: 196px !important;
    min-height: 196px !important;
    max-height: 196px !important;
  }

  .shop-ritual-hero__image {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 48% !important;
    transform: scale(1.28) !important;
    transform-origin: center center !important;
  }
}
@media (max-width: 720px) {
  .shop-ritual-hero {
    height: 238px !important;
    min-height: 238px !important;
    max-height: 238px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .shop-ritual-hero__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 54% !important;
    transform: none !important;
    filter: none !important;
  }

  .shop-ritual-hero::before,
  .shop-ritual-hero::after,
  .shop-ritual-hero__overlay {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .page-title-below {
    margin-top: 0 !important;
    border-radius: 0 !important;
    position: relative !important;
    z-index: 2 !important;
  }
}

@media (max-width: 520px) {
  .shop-ritual-hero {
    height: 224px !important;
    min-height: 224px !important;
    max-height: 224px !important;
  }

  .shop-ritual-hero__image {
    object-position: center 55% !important;
  }
}
@media (max-width: 720px) {
  .shop-ritual-hero {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }

  .shop-ritual-hero__image {
    width: 112% !important;
    height: 112% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 56% !important;
    transform: translate(-5.5%, -6%) !important;
    transform-origin: center center !important;
  }
}

@media (max-width: 520px) {
  .shop-ritual-hero {
    height: 208px !important;
    min-height: 208px !important;
    max-height: 208px !important;
  }

  .shop-ritual-hero__image {
    width: 114% !important;
    height: 114% !important;
    object-position: center 57% !important;
    transform: translate(-6.5%, -7%) !important;
  }
}
@media (max-width: 720px) {
  .shop-ritual-hero {
    height: 266px !important;
    min-height: 266px !important;
    max-height: 266px !important;
  }

  .shop-ritual-hero__image {
    width: 112% !important;
    height: 112% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 54% !important;
    transform: translate(-5.5%, -6%) !important;
    transform-origin: center center !important;
  }
}

@media (max-width: 520px) {
  .shop-ritual-hero {
    height: 252px !important;
    min-height: 252px !important;
    max-height: 252px !important;
  }

  .shop-ritual-hero__image {
    width: 114% !important;
    height: 114% !important;
    object-position: center 55% !important;
    transform: translate(-6.5%, -7%) !important;
  }
}
@media (max-width: 720px) {
  .shop-ritual-hero {
    height: 292px !important;
    min-height: 292px !important;
    max-height: 292px !important;
  }

  .shop-ritual-hero__image {
    width: 112% !important;
    height: 112% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 54% !important;
    transform: translate(-5.5%, -6%) !important;
    transform-origin: center center !important;
  }
}

@media (max-width: 520px) {
  .shop-ritual-hero {
    height: 278px !important;
    min-height: 278px !important;
    max-height: 278px !important;
  }

  .shop-ritual-hero__image {
    width: 114% !important;
    height: 114% !important;
    object-position: center 55% !important;
    transform: translate(-6.5%, -7%) !important;
  }
}
@media (max-width: 820px) {
  .dao-category-products {
    padding-top: 34px !important;
    padding-bottom: 48px !important;
  }

  .dao-category-products__inner {
    width: min(100%, calc(100% - 28px)) !important;
  }

  .dao-category-products__heading,
  .dao-category-products__heading--minimal {
    width: 100% !important;
    margin: 0 0 20px !important;
    padding-top: 14px !important;
  }

  .dao-category-products__heading h2,
  .dao-category-products__heading--minimal h2 {
    font-size: clamp(38px, 11.5vw, 58px) !important;
    line-height: .92 !important;
    letter-spacing: .03em !important;
  }

  .dao-product-minimal-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 14px !important;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    -webkit-overflow-scrolling: auto !important;
    padding: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    scrollbar-width: auto !important;
  }

  .dao-product-minimal-grid::-webkit-scrollbar {
    display: none !important;
  }

  .dao-product-minimal-card,
  .dao-product-minimal-card:nth-child(2n),
  .dao-product-minimal-card:nth-child(3n) {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
    scroll-snap-align: none !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .dao-product-minimal-card__image {
    height: 228px !important;
    min-height: 228px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #f4efe7 !important;
  }

  .dao-product-minimal-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: none !important;
  }

  .dao-product-minimal-card__body {
    min-height: 0 !important;
    padding-top: 12px !important;
    display: block !important;
  }

  .dao-product-minimal-card__body > i {
    width: 28px !important;
    margin: 0 0 10px !important;
    background: rgba(211, 177, 109, .9) !important;
  }

  .dao-product-minimal-card__body h3 {
    min-height: 0 !important;
  }

  .dao-product-minimal-card__body h3 a {
    font-size: clamp(17px, 4.8vw, 26px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.045em !important;
    display: block !important;
  }

  .dao-product-minimal-card__bottom {
    margin-top: 10px !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .dao-product-minimal-card__bottom strong {
    font-size: clamp(18px, 5vw, 30px) !important;
    line-height: 1 !important;
  }

  .dao-product-minimal-card__prices {
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
  }

  .dao-product-minimal-card__prices del {
    font-size: 15px !important;
    color: rgba(94, 74, 53, .55) !important;
  }

  .dao-product-minimal-card__arrow {
    margin-left: auto !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 430px) {
  .dao-product-minimal-grid {
    gap: 16px 12px !important;
  }

  .dao-product-minimal-card__image {
    height: 194px !important;
    min-height: 194px !important;
  }

  .dao-product-minimal-card__body h3 a {
    font-size: 15px !important;
  }

  .dao-product-minimal-card__prices del {
    font-size: 13px !important;
  }

  .dao-product-minimal-card__arrow {
    font-size: 22px !important;
  }
}
@media (max-width: 900px) {
  body.mobile-panel-open {
    overflow: hidden !important;
  }

  .header {
    position: fixed !important;
    top: max(16px, calc(env(safe-area-inset-top, 0px) + 10px)) !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 9999 !important;

    height: 64px !important;
    min-height: 64px !important;
    padding: 0 18px !important;
    border-radius: 18px !important;

    display: grid !important;
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px 34px !important;
    align-items: center !important;
    gap: 10px !important;

    background: rgba(5, 10, 9, .92) !important;
    border: 1px solid rgba(211, 177, 109, .16) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header.is-scrolled {
    top: max(12px, calc(env(safe-area-inset-top, 0px) + 8px)) !important;
    height: 60px !important;
    min-height: 60px !important;
    padding: 0 17px !important;
    border-radius: 17px !important;
  }

  .header::before,
  .header::after {
    display: none !important;
    content: none !important;
  }

  .nav {
    display: none !important;
  }

  .brand {
    grid-column: 3 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 180px !important;
  }

  .brand img {
    display: block !important;
    width: auto !important;
    height: 34px !important;
    max-width: 180px !important;
    object-fit: contain !important;
  }

  .mobile-nav-toggle,
.mobile-search-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #d9b76a !important;
  }

  .mobile-nav-toggle {
    grid-column: 1 !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .mobile-nav-toggle span {
    display: block !important;
    width: 17px !important;
    height: 1.4px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    margin: 0 !important;
    opacity: .92 !important;
  }

  .mobile-search-toggle {
    grid-column: 2 !important;
  }

  .mobile-search-toggle svg {
    width: 21px !important;
    height: 21px !important;
    stroke: currentColor !important;
    stroke-width: 1.75 !important;
    fill: none !important;
  }

  .header-icons {
    display: contents !important;
  }

  .desktop-search-btn {
    display: none !important;
  }

  .mobile-panel-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9997 !important;
    display: block !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: rgba(0, 0, 0, .42) !important;
    transition: opacity .24s ease !important;
  }

  .mobile-panel-backdrop.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 9998 !important;
    width: min(86vw, 360px) !important;
    padding: max(22px, calc(env(safe-area-inset-top, 0px) + 18px)) 22px 26px !important;
    background: #120f0b !important;
    color: #f3e6c8 !important;
    box-shadow: 20px 0 50px rgba(0, 0, 0, .35) !important;
    transform: translateX(-104%) !important;
    transition: transform .28s ease !important;
    overflow-y: auto !important;
  }

  .mobile-search-drawer {
    width: min(92vw, 400px) !important;
  }

  .mobile-drawer.is-open {
    transform: translateX(0) !important;
  }

  .mobile-drawer__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(211, 177, 109, .18) !important;
  }

  .mobile-drawer__head img {
    width: 148px !important;
    height: auto !important;
    display: block !important;
  }

  .mobile-drawer__head strong {
    color: #d9b76a !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .mobile-drawer-close {
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #d9b76a !important;
    border: 1px solid rgba(211, 177, 109, .24) !important;
    border-radius: 999px !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .mobile-drawer__links {
    display: grid !important;
    gap: 0 !important;
    padding: 18px 0 !important;
  }

  .mobile-drawer__links a,
  .mobile-search-suggestions a {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    border-bottom: 1px solid rgba(211, 177, 109, .10) !important;
    color: #f4ead0 !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .mobile-drawer__cta a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    margin-top: 10px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #e5c676, #b88932) !important;
    color: #171008 !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .mobile-search-form {
    display: grid !important;
    gap: 12px !important;
    padding: 22px 0 16px !important;
  }

  .mobile-search-form input {
    width: 100% !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211, 177, 109, .22) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #f4ead0 !important;
    outline: 0 !important;
  }

  .mobile-search-form button {
    min-height: 46px !important;
    border-radius: 999px !important;
    background: #d9b76a !important;
    color: #171008 !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 38px 22px 28px !important;
    background: #120f0b !important;
    color: #f3e6c8 !important;
  }

  .footer-shell {
    width: 100% !important;
    max-width: none !important;
  }

  .footer-top {
    display: block !important;
  }

  .footer-brand {
    margin-bottom: 24px !important;
  }

  .footer-brand__logo img,
  .footer-brand img {
    width: 150px !important;
    height: auto !important;
  }

  .footer-brand p {
    margin: 16px 0 0 !important;
    max-width: 330px !important;
    color: rgba(243, 230, 200, .78) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .footer-links {
    display: block !important;
  }

  .footer-column {
    border-top: 1px solid rgba(211, 177, 109, .16) !important;
    padding: 0 !important;
  }

  .footer-column:last-child {
    border-bottom: 1px solid rgba(211, 177, 109, .16) !important;
  }

  .footer-accordion-toggle {
    width: 100% !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    color: #d9b76a !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
  }

  .footer-accordion-toggle i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    font-style: normal !important;
    transition: transform .22s ease !important;
  }

  .footer-column.is-open .footer-accordion-toggle i {
    transform: rotate(45deg) !important;
  }

  .footer-column-links {
    display: none !important;
    padding: 0 0 18px !important;
  }

  .footer-column.is-open .footer-column-links {
    display: grid !important;
    gap: 12px !important;
  }

  .footer-column-links a {
    color: #f4ead0 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .footer-bottom {
    display: block !important;
    margin-top: 24px !important;
    padding-top: 18px !important;
    border-top: 0 !important;
    color: rgba(243, 230, 200, .58) !important;
    font-size: 12px !important;
  }

  .footer-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px 18px !important;
    margin-top: 12px !important;
  }
}

@media (max-width: 420px) {
  .header {
    left: 12px !important;
    right: 12px !important;
    height: 60px !important;
    min-height: 60px !important;
    padding: 0 14px !important;
    grid-template-columns: 30px 30px minmax(0, 1fr) 30px 30px !important;
    gap: 8px !important;
    border-radius: 16px !important;
  }

  .brand img {
    height: 30px !important;
    max-width: 150px !important;
  }

  .mobile-nav-toggle,
.mobile-search-toggle {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .mobile-search-toggle svg {
    width: 20px !important;
    height: 20px !important;
  }

  .mobile-nav-toggle span {
    width: 16px !important;
  }
}
.dao-product-minimal-card__image {
  overflow: hidden;
  background: #f6efe7;
}

.dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(-n+3) .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(4) .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5) .dao-product-minimal-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  display: block;
}

#necklaces-products .dao-product-minimal-card__image,
#bracelets-products .dao-product-minimal-card__image,
#talismans-products .dao-product-minimal-card__image,
#objects-products .dao-product-minimal-card__image {
  background: #f6efe7;
}
.dao-category-products .dao-product-minimal-card__image,
#bracelets-products .dao-product-minimal-card__image,
#necklaces-products .dao-product-minimal-card__image,
#talismans-products .dao-product-minimal-card__image,
#objects-products .dao-product-minimal-card__image {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background: #f6efe7 !important;
}

.dao-category-products .dao-product-minimal-card__image img,
#bracelets-products .dao-product-minimal-card__image img,
#necklaces-products .dao-product-minimal-card__image img,
#talismans-products .dao-product-minimal-card__image img,
#objects-products .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(-n+3) .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(4) .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5) .dao-product-minimal-card__image img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  background: transparent !important;
  transform: none !important;
}

.dao-category-products .dao-product-minimal-card:hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(-n+3):hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(4):hover .dao-product-minimal-card__image img,
.dao-product-minimal-card:nth-child(5):hover .dao-product-minimal-card__image img {
  transform: scale(1.035) !important;
}

@media (max-width: 760px) {
  .dao-category-products .dao-product-minimal-card__image,
  #bracelets-products .dao-product-minimal-card__image,
  #necklaces-products .dao-product-minimal-card__image,
  #talismans-products .dao-product-minimal-card__image,
  #objects-products .dao-product-minimal-card__image {
    aspect-ratio: 1 / 1 !important;
  }
}
.desktop-search-btn,
.mobile-search-toggle,
.mobile-search-drawer {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.header-social-icon,
.header-whatsapp-btn.header-social-icon,
.desktop-messenger-link.header-social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(211, 177, 109, .34) !important;
  background: rgba(8, 13, 13, .26) !important;
  color: #d9b76a !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
  transition: color .22s ease, border-color .22s ease, transform .22s ease, background .22s ease !important;
}

.header-social-icon:hover,
.header-whatsapp-btn.header-social-icon:hover,
.desktop-messenger-link.header-social-icon:hover {
  color: #f3d8c9 !important;
  border-color: rgba(211, 177, 109, .58) !important;
  background: rgba(211, 177, 109, .08) !important;
  transform: translateY(-1px) !important;
}

.header-social-icon svg,
.header-whatsapp-btn.header-social-icon svg,
.desktop-messenger-link.header-social-icon svg {
  display: block !important;
  width: 19px !important;
  height: 19px !important;
  fill: currentColor !important;
  stroke: none !important;
  filter: none !important;
}

@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    position: fixed !important;
    z-index: 9999 !important;
    top: clamp(24px, 3vw, 46px) !important;
    left: clamp(26px, 4vw, 76px) !important;
    right: clamp(26px, 4vw, 76px) !important;
    display: grid !important;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) minmax(300px, 360px) !important;
    align-items: center !important;
    column-gap: clamp(18px, 2.2vw, 42px) !important;
    min-height: 76px !important;
    height: 76px !important;
    padding: 0 18px !important;
    border-radius: 14px !important;
    background: rgba(8, 13, 13, .72) !important;
    border: 1px solid rgba(211, 177, 109, .10) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .10), inset 0 1px 0 rgba(255, 255, 255, .035) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  .header.header-chat-icons.is-scrolled {
    top: 12px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 16px !important;
    border-radius: 12px !important;
    background: rgba(7, 10, 9, .88) !important;
    border-color: rgba(211, 177, 109, .18) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .035) !important;
  }

  .header.header-chat-icons::before { display: none !important; }

  .header.header-chat-icons .mobile-nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    width: min(300px, 18vw) !important;
    min-width: 230px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
    background: transparent !important;
  }

  .header.header-chat-icons .brand img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
  }

  .header.header-chat-icons.is-scrolled .brand img {
    max-height: 34px !important;
  }

  .header.header-chat-icons .nav {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: clamp(16px, 1.7vw, 30px) !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
    white-space: nowrap !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    position: static !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    position: fixed !important;
    z-index: 9999 !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 82px !important;
    grid-template-rows: 1fr !important;
    column-gap: 8px !important;
    align-items: center !important;
    min-height: 64px !important;
    height: 64px !important;
    left: 18px !important;
    right: 18px !important;
    top: 22px !important;
    padding: 0 16px !important;
    border-radius: 16px !important;
    background: rgba(8, 13, 13, .78) !important;
    border: 1px solid rgba(211, 177, 109, .12) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  .header.header-chat-icons.is-scrolled {
    top: 10px !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .header.header-chat-icons .brand img {
    display: block !important;
    max-height: 34px !important;
    width: auto !important;
  }

  .header.header-chat-icons .nav { display: none !important; }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 82px !important;
    min-width: 82px !important;
    height: 34px !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211, 177, 109, .30) !important;
    background: rgba(8, 13, 13, .20) !important;
    box-shadow: none !important;
    color: #d9b76a !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 38px minmax(0, 1fr) 72px !important;
    min-height: 60px !important;
    height: 60px !important;
    padding: 0 14px !important;
    left: 14px !important;
    right: 14px !important;
  }

  .header.header-chat-icons .header-icons {
    width: 72px !important;
    min-width: 72px !important;
    gap: 6px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 31px !important;
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .header.header-chat-icons .brand img {
    max-height: 31px !important;
  }
}
@media (min-width: 761px) {
  .shop-ritual-hero {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    isolation: auto !important;
    background: transparent !important;
    background-image: none !important;
  }

  .shop-ritual-hero__image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    transform: none !important;
    filter: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .shop-ritual-hero::before,
  .shop-ritual-hero::after,
  .shop-ritual-hero__overlay,
  .shop-collection-nav::before,
  .shop-collection-nav::after {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .page-title-below {
    margin-top: clamp(-96px, -5.4vw, -58px) !important;
    padding-top: clamp(18px, 2vw, 36px) !important;
    padding-bottom: clamp(20px, 2.6vw, 38px) !important;
    background: transparent !important;
    border-radius: 0 !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .shop-collection-nav.shop-collection-nav--buttons {
    margin-top: 0 !important;
    padding-top: clamp(4px, .6vw, 12px) !important;
  }
}
@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    box-sizing: border-box !important;
    padding-left: clamp(48px, 4.2vw, 88px) !important;
    padding-right: clamp(48px, 4.2vw, 88px) !important;
    grid-template-columns: minmax(250px, 360px) minmax(0, 1fr) minmax(250px, 360px) !important;
    align-items: center !important;
  }

  .header.header-chat-icons .brand {
    justify-self: start !important;
    margin-left: 0 !important;
  }

  .header.header-chat-icons .nav {
    justify-self: center !important;
  }

  .header.header-chat-icons .header-icons {
    justify-self: end !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    box-sizing: border-box !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (min-width: 901px) {
  .dao-category-products__inner {
    width: min(1720px, calc(100% - 96px)) !important;
  }

  .dao-category-products--minimal {
    padding-top: clamp(34px, 3.4vw, 64px) !important;
    padding-bottom: clamp(86px, 6vw, 120px) !important;
  }

  .dao-category-products__heading--minimal {
    margin-bottom: clamp(36px, 3.8vw, 68px) !important;
  }

  .dao-category-products__heading h2 {
    font-size: clamp(78px, 6.4vw, 132px) !important;
    letter-spacing: .045em !important;
  }

  .dao-category-products__heading span {
    font-size: 11px !important;
    letter-spacing: .28em !important;
  }

  .dao-product-minimal-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .dao-product-minimal-card {
    grid-template-rows: auto auto !important;
    padding-left: clamp(10px, 1.15vw, 22px) !important;
    padding-right: clamp(10px, 1.15vw, 22px) !important;
    padding-bottom: clamp(26px, 2.5vw, 46px) !important;
  }

  .dao-category-products .dao-product-minimal-card__image,
  #bracelets-products .dao-product-minimal-card__image,
  #necklaces-products .dao-product-minimal-card__image,
  #talismans-products .dao-product-minimal-card__image,
  #objects-products .dao-product-minimal-card__image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .dao-product-minimal-card__body {
    min-height: 178px !important;
    padding-top: clamp(20px, 1.8vw, 34px) !important;
  }

  .dao-product-minimal-card__body > i {
    width: 62px !important;
    margin-bottom: 24px !important;
  }

  .dao-product-minimal-card__body h3 {
    min-height: 96px !important;
  }

  .dao-product-minimal-card__body h3 a {
    font-size: clamp(27px, 1.65vw, 38px) !important;
    line-height: 1.12 !important;
  }

  .dao-product-minimal-card__bottom {
    margin-top: clamp(16px, 1.25vw, 26px) !important;
  }

  .dao-product-minimal-card__prices strong {
    font-size: clamp(31px, 2.05vw, 42px) !important;
  }

  .dao-product-minimal-card__prices del {
    font-size: clamp(18px, 1.05vw, 23px) !important;
  }

  .dao-product-minimal-card__arrow {
    font-size: clamp(31px, 1.95vw, 40px) !important;
  }
}
@media (min-width: 901px) {
  .page-title-below {
    padding-top: clamp(34px, 2.8vw, 56px) !important;
    padding-bottom: clamp(38px, 3.6vw, 64px) !important;
  }

  .page-title-below__content {
    width: min(1480px, calc(100% - 96px)) !important;
    max-width: 1480px !important;
    margin: 0 auto !important;
  }

  .page-title-below .shop-ritual-kicker {
    margin-bottom: 18px !important;
    font-size: clamp(13px, .92vw, 18px) !important;
    letter-spacing: .42em !important;
  }

  .page-title-below h1 {
    font-size: clamp(86px, 6.8vw, 152px) !important;
    line-height: .90 !important;
  }

  .page-title-below .shop-ritual-divider {
    width: min(430px, 36vw) !important;
    margin: 24px auto 22px !important;
  }

  .page-title-below .shop-ritual-divider span {
    width: 34px !important;
    height: 34px !important;
    font-size: 18px !important;
  }

  .page-title-below .shop-ritual-subtitle {
    max-width: 980px !important;
    font-size: clamp(21px, 1.45vw, 29px) !important;
    line-height: 1.48 !important;
  }

  .shop-collection-nav.shop-collection-nav--buttons {
    padding-top: clamp(10px, .9vw, 18px) !important;
    padding-bottom: clamp(42px, 3.8vw, 70px) !important;
  }

  .shop-collection-nav.shop-collection-nav--buttons .shop-collection-nav__inner {
    width: min(1620px, calc(100% - 96px)) !important;
  }

  .shop-category-button-row {
    gap: clamp(20px, 1.6vw, 30px) !important;
  }

  .shop-category-button {
    height: clamp(64px, 4.2vw, 84px) !important;
    border-radius: 10px !important;
    padding: 0 clamp(22px, 2vw, 42px) !important;
  }

  .shop-category-button span {
    font-size: clamp(17px, 1.08vw, 23px) !important;
    letter-spacing: .18em !important;
  }

  .shop-category-button i {
    right: clamp(16px, 1.15vw, 24px) !important;
    font-size: clamp(30px, 1.95vw, 40px) !important;
  }
}
@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) minmax(220px, 280px) !important;
    column-gap: clamp(22px, 2.4vw, 46px) !important;
    align-items: center !important;
    box-sizing: border-box !important;
    height: 76px !important;
    min-height: 76px !important;
    padding-left: clamp(56px, 4.2vw, 86px) !important;
    padding-right: clamp(56px, 4.2vw, 86px) !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
    background: transparent !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    display: block !important;
    width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header.header-chat-icons .nav {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 170px minmax(0, 1fr) 170px !important;
    column-gap: 16px !important;
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  .header.header-chat-icons .brand {
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    width: 170px !important;
    max-width: 170px !important;
    max-height: 38px !important;
  }

  .header.header-chat-icons .nav {
    gap: 16px !important;
  }

  .header.header-chat-icons .nav a {
    font-size: 12px !important;
    letter-spacing: .12em !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 36px !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 82px !important;
    grid-template-rows: 1fr !important;
    column-gap: 8px !important;
    align-items: center !important;
    box-sizing: border-box !important;
    height: 64px !important;
    min-height: 64px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    display: block !important;
    width: auto !important;
    max-width: min(44vw, 190px) !important;
    height: auto !important;
    max-height: 34px !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .header.header-chat-icons .nav {
    display: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 82px !important;
    min-width: 82px !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    position: static !important;
    transform: none !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    margin: 0 !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 34px minmax(0, 1fr) 72px !important;
    height: 60px !important;
    min-height: 60px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    max-width: min(42vw, 165px) !important;
    max-height: 31px !important;
  }

  .header.header-chat-icons .header-icons {
    width: 72px !important;
    min-width: 72px !important;
    gap: 6px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 31px !important;
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
  }
}
@media (min-width: 901px) {
  .dao-category-products--minimal {
    padding-top: clamp(28px, 2.6vw, 48px) !important;
    padding-bottom: clamp(58px, 4.2vw, 86px) !important;
  }

  .dao-category-products--minimal .dao-category-products__inner {
    width: min(1560px, calc(100% - 110px)) !important;
    max-width: min(1560px, calc(100% - 110px)) !important;
  }

  .dao-category-products__heading--minimal {
    margin-bottom: clamp(24px, 2.5vw, 42px) !important;
    padding-top: clamp(16px, 1.6vw, 28px) !important;
  }

  .dao-category-products__heading--minimal h2,
  .dao-category-products__heading h2 {
    font-size: clamp(62px, 5.3vw, 108px) !important;
    line-height: .92 !important;
    letter-spacing: .06em !important;
  }

  .dao-category-products__heading--minimal span,
  .dao-category-products__heading span {
    font-size: 9px !important;
    letter-spacing: .26em !important;
  }

  .dao-product-minimal-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: clamp(14px, 1.05vw, 22px) !important;
  }

  .dao-product-minimal-card {
    padding-left: clamp(6px, .75vw, 14px) !important;
    padding-right: clamp(6px, .75vw, 14px) !important;
    padding-bottom: clamp(12px, 1.4vw, 24px) !important;
  }

  .dao-category-products .dao-product-minimal-card__image,
  #bracelets-products .dao-product-minimal-card__image,
  #necklaces-products .dao-product-minimal-card__image,
  #talismans-products .dao-product-minimal-card__image,
  #objects-products .dao-product-minimal-card__image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 250px !important;
  }

  .dao-product-minimal-card__body {
    min-height: 138px !important;
    padding-top: clamp(12px, 1.1vw, 22px) !important;
  }

  .dao-product-minimal-card__body > i {
    width: 44px !important;
    margin-bottom: 16px !important;
  }

  .dao-product-minimal-card__body h3 {
    min-height: 72px !important;
  }

  .dao-product-minimal-card__body h3 a {
    font-size: clamp(18px, 1.14vw, 25px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.035em !important;
  }

  .dao-product-minimal-card__bottom {
    margin-top: clamp(6px, .65vw, 12px) !important;
  }

  .dao-product-minimal-card__prices strong {
    font-size: clamp(22px, 1.45vw, 30px) !important;
  }

  .dao-product-minimal-card__prices del {
    font-size: clamp(13px, .8vw, 17px) !important;
  }

  .dao-product-minimal-card__arrow {
    font-size: clamp(22px, 1.35vw, 28px) !important;
  }
}
@media (min-width: 901px) {
  .dao-category-products--minimal {
    padding-top: clamp(22px, 2.1vw, 38px) !important;
    padding-bottom: clamp(46px, 3.5vw, 70px) !important;
  }

  .dao-category-products--minimal .dao-category-products__inner,
  .dao-category-products--minimal .dao-category-products__heading {
    width: min(1380px, calc(100% - 180px)) !important;
    max-width: min(1380px, calc(100% - 180px)) !important;
  }

  .dao-category-products__heading--minimal {
    margin-bottom: clamp(18px, 1.9vw, 32px) !important;
    padding-top: clamp(12px, 1.2vw, 22px) !important;
  }

  .dao-category-products__heading--minimal h2,
  .dao-category-products__heading h2 {
    font-size: clamp(48px, 4.15vw, 86px) !important;
    line-height: .92 !important;
    letter-spacing: .055em !important;
  }

  .dao-category-products__heading--minimal span,
  .dao-category-products__heading span {
    font-size: 8px !important;
    letter-spacing: .24em !important;
  }

  .dao-product-minimal-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: clamp(12px, .85vw, 18px) !important;
  }

  .dao-product-minimal-card {
    padding-left: clamp(4px, .55vw, 10px) !important;
    padding-right: clamp(4px, .55vw, 10px) !important;
    padding-bottom: clamp(8px, .9vw, 16px) !important;
  }

  .dao-category-products .dao-product-minimal-card__image,
  #bracelets-products .dao-product-minimal-card__image,
  #necklaces-products .dao-product-minimal-card__image,
  #talismans-products .dao-product-minimal-card__image,
  #objects-products .dao-product-minimal-card__image {
    width: 80% !important;
    max-width: 245px !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .dao-category-products .dao-product-minimal-card__image img,
  #bracelets-products .dao-product-minimal-card__image img,
  #necklaces-products .dao-product-minimal-card__image img,
  #talismans-products .dao-product-minimal-card__image img,
  #objects-products .dao-product-minimal-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .dao-product-minimal-card__body {
    min-height: 112px !important;
    padding-top: clamp(10px, .85vw, 16px) !important;
  }

  .dao-product-minimal-card__body > i {
    width: 36px !important;
    margin-bottom: 12px !important;
  }

  .dao-product-minimal-card__body h3 {
    min-height: 56px !important;
  }

  .dao-product-minimal-card__body h3 a {
    font-size: clamp(15px, .92vw, 21px) !important;
    line-height: 1.13 !important;
    letter-spacing: -.03em !important;
  }

  .dao-product-minimal-card__bottom {
    margin-top: clamp(4px, .45vw, 8px) !important;
  }

  .dao-product-minimal-card__prices strong {
    font-size: clamp(18px, 1.16vw, 24px) !important;
  }

  .dao-product-minimal-card__prices del {
    font-size: clamp(11px, .68vw, 14px) !important;
  }

  .dao-product-minimal-card__arrow {
    font-size: clamp(18px, 1.08vw, 23px) !important;
  }
}
@media (min-width: 901px) {
  .page-title-below {
    padding-top: clamp(26px, 2.2vw, 45px) !important;
    padding-bottom: clamp(30px, 2.8vw, 52px) !important;
  }

  .page-title-below__content {
    width: min(1320px, calc(100% - 120px)) !important;
    max-width: 1320px !important;
  }

  .page-title-below .shop-ritual-kicker {
    margin-bottom: 14px !important;
    font-size: clamp(10px, .72vw, 14px) !important;
    letter-spacing: .34em !important;
  }

  .page-title-below h1 {
    font-size: clamp(68px, 5.45vw, 122px) !important;
    line-height: .90 !important;
    letter-spacing: -.055em !important;
  }

  .page-title-below .shop-ritual-divider {
    width: min(344px, 29vw) !important;
    margin: 18px auto 17px !important;
  }

  .page-title-below .shop-ritual-divider span {
    width: 27px !important;
    height: 27px !important;
    font-size: 15px !important;
  }

  .page-title-below .shop-ritual-subtitle {
    max-width: 784px !important;
    font-size: clamp(17px, 1.16vw, 23px) !important;
    line-height: 1.45 !important;
  }

  .shop-collection-nav.shop-collection-nav--buttons {
    padding-top: clamp(6px, .7vw, 12px) !important;
    padding-bottom: clamp(34px, 3vw, 56px) !important;
  }

  .shop-collection-nav.shop-collection-nav--buttons .shop-collection-nav__inner {
    width: min(1296px, calc(100% - 120px)) !important;
  }

  .shop-category-button-row {
    gap: clamp(16px, 1.25vw, 24px) !important;
  }

  .shop-category-button {
    height: clamp(51px, 3.35vw, 67px) !important;
    border-radius: 8px !important;
    padding: 0 clamp(18px, 1.6vw, 34px) !important;
  }

  .shop-category-button span {
    font-size: clamp(14px, .86vw, 18px) !important;
    letter-spacing: .16em !important;
  }

  .shop-category-button i {
    right: clamp(13px, .95vw, 19px) !important;
    font-size: clamp(24px, 1.55vw, 32px) !important;
  }
}
@media (min-width: 901px) {
  .dao-category-products {
    padding-top: 34px !important;
    padding-bottom: 62px !important;
  }

  .dao-category-products__heading {
    margin-bottom: 22px !important;
    padding-top: 22px !important;
    column-gap: 36px !important;
    row-gap: 8px !important;
  }

  .dao-category-products__heading h2 {
    font-size: clamp(48px, 4.1vw, 74px) !important;
    letter-spacing: .06em !important;
    line-height: .94 !important;
  }

  .dao-category-products__heading span {
    font-size: 10px !important;
    letter-spacing: .20em !important;
    align-self: center !important;
  }

  .dao-product-minimal-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 30px 28px !important;
    align-items: start !important;
  }

  .dao-product-minimal-card,
  .dao-product-minimal-card:first-child,
  .dao-product-minimal-card:last-child,
  .dao-product-minimal-card:nth-child(2n),
  .dao-product-minimal-card:nth-child(3n),
  .dao-product-minimal-card:nth-child(n+3),
  .dao-product-minimal-card:nth-child(n+4) {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
  }

  .dao-product-minimal-card__image {
    height: clamp(270px, 18vw, 330px) !important;
    min-height: clamp(270px, 18vw, 330px) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(-n+3) .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(4) .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(5) .dao-product-minimal-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.08) !important;
    transition: transform .28s ease !important;
    display: block !important;
  }

  .dao-product-minimal-card:hover .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(-n+3):hover .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(4):hover .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(5):hover .dao-product-minimal-card__image img {
    transform: scale(1.12) !important;
  }

  .dao-product-minimal-card__body {
    min-height: 0 !important;
    padding: 10px 2px 0 !important;
    display: grid !important;
    grid-template-rows: auto auto !important;
    align-content: start !important;
    gap: 16px !important;
  }

  .dao-product-minimal-card__body > i {
    width: 56px !important;
    margin-bottom: 2px !important;
  }

  .dao-product-minimal-card__body h3 {
    min-height: 0 !important;
    margin: 0 !important;
  }

  .dao-product-minimal-card__body h3 a {
    font-size: clamp(15px, 1vw, 19px) !important;
    line-height: 1.24 !important;
    letter-spacing: -.01em !important;
  }

  .dao-product-minimal-card__bottom {
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
  }

  .dao-product-minimal-card__prices {
    gap: 10px !important;
  }

  .dao-product-minimal-card__prices strong {
    font-size: clamp(22px, 1.55vw, 30px) !important;
    line-height: 1 !important;
  }

  .dao-product-minimal-card__prices del {
    font-size: clamp(14px, .94vw, 18px) !important;
    line-height: 1 !important;
  }

  .dao-product-minimal-card__bottom a,
  .dao-product-minimal-card__arrow {
    font-size: clamp(24px, 1.45vw, 30px) !important;
    flex: 0 0 auto !important;
  }
}
@media (min-width: 901px) {
  .dao-category-products--minimal .dao-category-products__inner,
  .dao-category-products--minimal .dao-category-products__heading {
    width: min(1580px, calc(100% - 118px)) !important;
    max-width: min(1580px, calc(100% - 118px)) !important;
  }

  .dao-product-minimal-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: clamp(26px, 1.75vw, 38px) !important;
  }

  .dao-product-minimal-card {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .dao-category-products .dao-product-minimal-card__image,
  #bracelets-products .dao-product-minimal-card__image,
  #necklaces-products .dao-product-minimal-card__image,
  #talismans-products .dao-product-minimal-card__image,
  #objects-products .dao-product-minimal-card__image,
  .dao-product-minimal-card__image {
    width: 100% !important;
    max-width: none !important;
    height: clamp(285px, 17.6vw, 350px) !important;
    min-height: clamp(285px, 17.6vw, 350px) !important;
    aspect-ratio: 1 / 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  .dao-category-products .dao-product-minimal-card__image img,
  #bracelets-products .dao-product-minimal-card__image img,
  #necklaces-products .dao-product-minimal-card__image img,
  #talismans-products .dao-product-minimal-card__image img,
  #objects-products .dao-product-minimal-card__image img,
  .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(-n+3) .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(4) .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(5) .dao-product-minimal-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.04) !important;
    display: block !important;
  }

  .dao-product-minimal-card:hover .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(-n+3):hover .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(4):hover .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(5):hover .dao-product-minimal-card__image img {
    transform: scale(1.08) !important;
  }

  .dao-product-minimal-card__body {
    padding-top: 14px !important;
    gap: 14px !important;
  }

  .dao-product-minimal-card__body h3 a {
    font-size: clamp(16px, 1.05vw, 20px) !important;
    line-height: 1.23 !important;
  }
}
@media (min-width: 901px) {
  .dao-category-products .dao-product-minimal-card__image,
  #bracelets-products .dao-product-minimal-card__image,
  #necklaces-products .dao-product-minimal-card__image,
  #talismans-products .dao-product-minimal-card__image,
  #objects-products .dao-product-minimal-card__image,
  .dao-product-minimal-card__image {
    width: 90% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .dao-category-products .dao-product-minimal-card__image img,
  #bracelets-products .dao-product-minimal-card__image img,
  #necklaces-products .dao-product-minimal-card__image img,
  #talismans-products .dao-product-minimal-card__image img,
  #objects-products .dao-product-minimal-card__image img,
  .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(-n+3) .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(4) .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(5) .dao-product-minimal-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: scale(1.03) !important;
  }

  .dao-product-minimal-card:hover .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(-n+3):hover .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(4):hover .dao-product-minimal-card__image img,
  .dao-product-minimal-card:nth-child(5):hover .dao-product-minimal-card__image img {
    transform: scale(1.06) !important;
  }
}
@media (min-width: 901px) {
  .dao-category-products,
  .dao-category-products--minimal {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .dao-category-products__inner {
    width: min(1420px, calc(100% - 150px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .dao-product-minimal-grid {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    column-gap: clamp(14px, 1vw, 22px) !important;
    row-gap: 0 !important;
  }

  .dao-product-minimal-card {
    padding-left: clamp(10px, 0.8vw, 16px) !important;
    padding-right: clamp(10px, 0.8vw, 16px) !important;
  }

  .dao-product-minimal-card__image {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .dao-product-minimal-card__body {
    min-height: 180px !important;
  }

  .dao-product-minimal-card__body h3 {
    min-height: 72px !important;
  }

  .dao-product-minimal-card__bottom {
    gap: 12px !important;
  }
  .dao-category-products__heading {
    margin-bottom: 24px !important;
  }
}
@media (min-width: 901px) {
  #bracelets-products .dao-category-products__inner,
  #necklaces-products .dao-category-products__inner,
  #talismans-products .dao-category-products__inner,
  #objects-products .dao-category-products__inner {
    width: min(1580px, calc(100% - 230px)) !important;
    max-width: min(1580px, calc(100% - 230px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #bracelets-products .dao-product-minimal-grid,
  #necklaces-products .dao-product-minimal-grid,
  #talismans-products .dao-product-minimal-grid,
  #objects-products .dao-product-minimal-grid {
    width: min(1440px, 100%) !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    column-gap: clamp(18px, 1.35vw, 28px) !important;
    row-gap: 0 !important;
  }

  #bracelets-products .dao-product-minimal-card,
  #necklaces-products .dao-product-minimal-card,
  #talismans-products .dao-product-minimal-card,
  #objects-products .dao-product-minimal-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #bracelets-products .dao-product-minimal-card__image,
  #necklaces-products .dao-product-minimal-card__image,
  #talismans-products .dao-product-minimal-card__image,
  #objects-products .dao-product-minimal-card__image {
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #bracelets-products .dao-product-minimal-card__body,
  #necklaces-products .dao-product-minimal-card__body,
  #talismans-products .dao-product-minimal-card__body,
  #objects-products .dao-product-minimal-card__body {
    padding-top: 14px !important;
    min-height: 150px !important;
  }

  #bracelets-products .dao-product-minimal-card__body h3,
  #necklaces-products .dao-product-minimal-card__body h3,
  #talismans-products .dao-product-minimal-card__body h3,
  #objects-products .dao-product-minimal-card__body h3 {
    min-height: 58px !important;
  }

  #bracelets-products .dao-product-minimal-card__bottom,
  #necklaces-products .dao-product-minimal-card__bottom,
  #talismans-products .dao-product-minimal-card__bottom,
  #objects-products .dao-product-minimal-card__bottom {
    margin-top: 8px !important;
  }
}
@media (min-width: 901px) {
  #bracelets-products .dao-category-products__heading,
  #necklaces-products .dao-category-products__heading,
  #talismans-products .dao-category-products__heading,
  #objects-products .dao-category-products__heading {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 12px !important;
    column-gap: 0 !important;
    row-gap: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #bracelets-products .dao-category-products__heading h2,
  #necklaces-products .dao-category-products__heading h2,
  #talismans-products .dao-category-products__heading h2,
  #objects-products .dao-category-products__heading h2 {
    grid-column: auto !important;
    grid-row: auto !important;
    order: 1 !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #bracelets-products .dao-category-products__heading span,
  #necklaces-products .dao-category-products__heading span,
  #talismans-products .dao-category-products__heading span,
  #objects-products .dao-category-products__heading span {
    grid-column: auto !important;
    grid-row: auto !important;
    order: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #bracelets-products .dao-category-products__heading span::before,
  #necklaces-products .dao-category-products__heading span::before,
  #talismans-products .dao-category-products__heading span::before,
  #objects-products .dao-category-products__heading span::before {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    margin-right: 14px;
    background: rgba(211, 177, 109, .42);
  }

  #bracelets-products .dao-category-products__heading span::after,
  #necklaces-products .dao-category-products__heading span::after,
  #talismans-products .dao-category-products__heading span::after,
  #objects-products .dao-category-products__heading span::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    margin-left: 14px;
    background: rgba(211, 177, 109, .42);
  }
}
@media (min-width: 901px) {
  #bracelets-products .dao-product-minimal-card__body,
  #necklaces-products .dao-product-minimal-card__body,
  #talismans-products .dao-product-minimal-card__body,
  #objects-products .dao-product-minimal-card__body {
    padding-top: 12px !important;
    min-height: 102px !important;
  }

  #bracelets-products .dao-product-minimal-card__body h3,
  #necklaces-products .dao-product-minimal-card__body h3,
  #talismans-products .dao-product-minimal-card__body h3,
  #objects-products .dao-product-minimal-card__body h3 {
    min-height: 42px !important;
    margin-bottom: 0 !important;
  }

  #bracelets-products .dao-product-minimal-card__bottom,
  #necklaces-products .dao-product-minimal-card__bottom,
  #talismans-products .dao-product-minimal-card__bottom,
  #objects-products .dao-product-minimal-card__bottom {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
@media (min-width: 901px) {
  #bracelets-products .dao-product-minimal-card__body,
  #necklaces-products .dao-product-minimal-card__body,
  #talismans-products .dao-product-minimal-card__body,
  #objects-products .dao-product-minimal-card__body {
    min-height: 72px !important;
    padding-top: 10px !important;
    gap: 6px !important;
  }

  #bracelets-products .dao-product-minimal-card__body h3,
  #necklaces-products .dao-product-minimal-card__body h3,
  #talismans-products .dao-product-minimal-card__body h3,
  #objects-products .dao-product-minimal-card__body h3 {
    min-height: 28px !important;
    margin: 0 !important;
  }

  #bracelets-products .dao-product-minimal-card__bottom,
  #necklaces-products .dao-product-minimal-card__bottom,
  #talismans-products .dao-product-minimal-card__bottom,
  #objects-products .dao-product-minimal-card__bottom {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
.dao-product-minimal-grid {
  column-gap: clamp(18px, 1.6vw, 34px) !important;
  row-gap: clamp(42px, 3.2vw, 62px) !important;
}

@media (max-width: 1440px) {
  .dao-product-minimal-grid {
    column-gap: 26px !important;
    row-gap: 40px !important;
  }
}

@media (max-width: 900px) {
  .dao-product-minimal-grid {
    column-gap: 22px !important;
    row-gap: 32px !important;
  }
}

@media (max-width: 620px) {
  .dao-product-minimal-grid {
    column-gap: 18px !important;
    row-gap: 24px !important;
  }
}
@media (min-width: 901px) {
  .dao-category-products--minimal .dao-product-minimal-grid {
    row-gap: 72px !important;
  }

  .dao-category-products--minimal .dao-product-minimal-card:nth-child(n+6) {
    margin-top: 58px !important;
  }
}

@media (min-width: 621px) and (max-width: 1440px) {
  .dao-category-products--minimal .dao-product-minimal-grid {
    row-gap: 58px !important;
  }

  .dao-category-products--minimal .dao-product-minimal-card:nth-child(n+4) {
    margin-top: 46px !important;
  }
}

@media (max-width: 620px) {
  .dao-category-products--minimal .dao-product-minimal-card:nth-child(n+3) {
    margin-top: 22px !important;
  }
}
@media (min-width: 901px) {
  #necklaces-products .dao-product-minimal-grid {
    row-gap: clamp(110px, 6.4vw, 150px) !important;
  }

  #necklaces-products .dao-product-minimal-card:nth-child(n+6) {
    padding-top: clamp(78px, 5.2vw, 118px) !important;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  #necklaces-products .dao-product-minimal-grid {
    row-gap: 118px !important;
  }

  #necklaces-products .dao-product-minimal-card:nth-child(n+6) {
    padding-top: 92px !important;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  #necklaces-products .dao-product-minimal-grid {
    row-gap: 72px !important;
  }

  #necklaces-products .dao-product-minimal-card:nth-child(n+3) {
    padding-top: 46px !important;
  }
}
@media (min-width: 901px) {
  #necklaces-products .dao-product-minimal-grid {
    row-gap: clamp(46px, 2.8vw, 64px) !important;
  }

  #necklaces-products .dao-product-minimal-card:nth-child(n+6) {
    margin-top: 0 !important;
    padding-top: clamp(10px, 1vw, 18px) !important;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  #necklaces-products .dao-product-minimal-grid {
    row-gap: 52px !important;
  }

  #necklaces-products .dao-product-minimal-card:nth-child(n+6) {
    margin-top: 0 !important;
    padding-top: 14px !important;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  #necklaces-products .dao-product-minimal-grid {
    row-gap: 38px !important;
  }

  #necklaces-products .dao-product-minimal-card:nth-child(n+3) {
    margin-top: 0 !important;
    padding-top: 10px !important;
  }
}
@media (min-width: 901px) {
  #necklaces-products .dao-product-minimal-grid {
    row-gap: clamp(23px, 1.4vw, 32px) !important;
  }

  #necklaces-products .dao-product-minimal-card:nth-child(n+6) {
    margin-top: 0 !important;
    padding-top: clamp(5px, 0.5vw, 9px) !important;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  #necklaces-products .dao-product-minimal-grid {
    row-gap: 26px !important;
  }

  #necklaces-products .dao-product-minimal-card:nth-child(n+6) {
    margin-top: 0 !important;
    padding-top: 7px !important;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  #necklaces-products .dao-product-minimal-grid {
    row-gap: 19px !important;
  }

  #necklaces-products .dao-product-minimal-card:nth-child(n+3) {
    margin-top: 0 !important;
    padding-top: 5px !important;
  }
}
#objects-products .dao-product-minimal-grid--single-object {
  grid-template-columns: minmax(280px, 360px) !important;
  justify-content: center !important;
}

#objects-products .dao-product-minimal-grid--single-object .dao-product-minimal-card__image img {
  object-fit: cover !important;
}
#objects-products .dao-product-minimal-grid--single-object {
  justify-content: start !important;
}
@media (min-width: 901px) {
  #bracelets-products .dao-category-products__inner,
  #necklaces-products .dao-category-products__inner,
  #talismans-products .dao-category-products__inner,
  #objects-products .dao-category-products__inner {
    width: min(1422px, calc(100% - 240px)) !important;
    max-width: min(1422px, calc(100% - 240px)) !important;
  }

  #bracelets-products .dao-product-minimal-grid,
  #necklaces-products .dao-product-minimal-grid,
  #talismans-products .dao-product-minimal-grid,
  #objects-products .dao-product-minimal-grid {
    width: min(1296px, 100%) !important;
    max-width: 1296px !important;
    column-gap: clamp(16px, 1.2vw, 24px) !important;
  }

  #bracelets-products .dao-product-minimal-card__body,
  #necklaces-products .dao-product-minimal-card__body,
  #talismans-products .dao-product-minimal-card__body,
  #objects-products .dao-product-minimal-card__body {
    padding-top: 8px !important;
  }
}

@media (min-width: 901px) {
  #objects-products .dao-product-minimal-grid--single-object {
    grid-template-columns: minmax(252px, 324px) !important;
  }
}
@media (max-width: 900px) {
  .dao-category-products__heading {
    align-items: center !important;
    text-align: center !important;
  }

  .dao-category-products__heading h2 {
    width: 100% !important;
    justify-self: center !important;
    text-align: center !important;
  }

  .dao-category-products__heading span {
    justify-self: center !important;
    align-self: center !important;
    padding-left: 42px !important;
    padding-right: 42px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .dao-category-products__heading span::before {
    left: 0 !important;
    width: 28px !important;
    background: linear-gradient(90deg, rgba(211,177,109,0), rgba(211,177,109,.78)) !important;
  }

  .dao-category-products__heading span::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    width: 28px !important;
    height: 1px !important;
    background: linear-gradient(90deg, rgba(211,177,109,.78), rgba(211,177,109,0)) !important;
  }
}
@media (max-width: 900px) {
  #objects-products .dao-product-minimal-grid--single-object {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: start !important;
    align-items: start !important;
    gap: 18px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #objects-products .dao-product-minimal-grid--single-object .dao-product-minimal-card {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  #objects-products .dao-product-minimal-grid--single-object .dao-product-minimal-card__image {
    height: 228px !important;
    min-height: 228px !important;
    aspect-ratio: auto !important;
  }
}

@media (max-width: 620px) {
  #objects-products .dao-product-minimal-grid--single-object {
    gap: 18px 14px !important;
  }

  #objects-products .dao-product-minimal-grid--single-object .dao-product-minimal-card {
    margin-top: 0 !important;
  }
}

/* === Premium product card arrow refresh === */
.dao-product-minimal-card__arrow {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(185, 143, 70, .30) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(247,241,230,.92)) !important;
  color: transparent !important;
  box-shadow: 0 8px 20px rgba(60, 42, 24, 0.06), inset 0 1px 0 rgba(255,255,255,.95) !important;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease !important;
}
.dao-product-minimal-card__arrow::before {
  content: "↗";
  color: #b07a20;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.dao-product-minimal-card:hover .dao-product-minimal-card__arrow {
  transform: translateY(-2px);
  border-color: rgba(185, 143, 70, .44) !important;
  box-shadow: 0 14px 30px rgba(60, 42, 24, 0.10), inset 0 1px 0 rgba(255,255,255,.98) !important;
}

/* === DAO SIGIL premium product-card arrows === */
.dao-product-minimal-card__arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(185,143,70,0.28) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,241,230,0.94)) !important;
  color: transparent !important;
  text-indent: 0 !important;
  box-shadow: 0 8px 18px rgba(46,32,16,0.06), inset 0 1px 0 rgba(255,255,255,0.9) !important;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease !important;
}
.dao-product-minimal-card__arrow::before {
  content: "↗";
  color: #b07a20;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}
.dao-product-minimal-card:hover .dao-product-minimal-card__arrow {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(46,32,16,0.10), inset 0 1px 0 rgba(255,255,255,0.96) !important;
  border-color: rgba(185,143,70,0.42) !important;
}

/* === 2026-07 final fixes: category page text normalization + arrow alignment === */
#bracelets-products .dao-product-minimal-card__body h3,
#necklaces-products .dao-product-minimal-card__body h3,
#talismans-products .dao-product-minimal-card__body h3,
#objects-products .dao-product-minimal-card__body h3,
#bracelets-products .dao-product-minimal-card__body h3 a,
#necklaces-products .dao-product-minimal-card__body h3 a,
#talismans-products .dao-product-minimal-card__body h3 a,
#objects-products .dao-product-minimal-card__body h3 a {
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

#bracelets-products .dao-product-minimal-card__prices,
#necklaces-products .dao-product-minimal-card__prices,
#talismans-products .dao-product-minimal-card__prices,
#objects-products .dao-product-minimal-card__prices {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 14px !important;
}

#bracelets-products .dao-product-minimal-card__prices strong,
#necklaces-products .dao-product-minimal-card__prices strong,
#talismans-products .dao-product-minimal-card__prices strong,
#objects-products .dao-product-minimal-card__prices strong,
#bracelets-products .dao-product-minimal-card__prices del,
#necklaces-products .dao-product-minimal-card__prices del,
#talismans-products .dao-product-minimal-card__prices del,
#objects-products .dao-product-minimal-card__prices del {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
  font-style: normal !important;
  font-variant-numeric: lining-nums tabular-nums !important;
  letter-spacing: 0 !important;
}

#bracelets-products .dao-product-minimal-card__bottom,
#necklaces-products .dao-product-minimal-card__bottom,
#talismans-products .dao-product-minimal-card__bottom,
#objects-products .dao-product-minimal-card__bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.dao-product-minimal-card__arrow {
  flex: 0 0 42px !important;
  align-self: center !important;
  margin-top: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  vertical-align: middle !important;
}

.dao-product-minimal-card__arrow::before {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: translateY(-1px) !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

/* === Mobile footer brand copy centered === */
@media (max-width: 767px) {
  .footer-brand {
    text-align: center !important;
  }

  .footer-brand__logo {
    display: block !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-brand p {
    margin: 16px auto 0 !important;
    text-align: center !important;
  }
}

