:root {
  --aura-ink: #211a17;
  --aura-muted: #756963;
  --aura-soft: #f8f1eb;
  --aura-cream: #fffaf4;
  --aura-clay: #b98465;
  --aura-clay-dark: #8f5f45;
  --aura-rose: #ead0c3;
  --aura-gold: #c9a66b;
  --aura-line: rgba(33, 26, 23, 0.12);
  --aura-glass: rgba(255, 255, 255, 0.48);
  --aura-glass-strong: rgba(255, 255, 255, 0.68);
  --aura-shadow: 0 30px 90px rgba(73, 48, 36, 0.16);
  --aura-glow: 0 0 50px rgba(201, 166, 107, 0.22);
  --aura-radius: 28px;
}

body {
  min-height: 100%;
  color: var(--aura-ink);
  background:
    radial-gradient(900px 520px at 8% -10%, rgba(244, 193, 202, 0.48), transparent 60%),
    radial-gradient(760px 420px at 96% 4%, rgba(201, 166, 107, 0.32), transparent 58%),
    radial-gradient(700px 520px at 54% 14%, rgba(255, 255, 255, 0.82), transparent 52%),
    linear-gradient(180deg, var(--aura-cream) 0%, #f4e4da 48%, #fff7ee 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, h4, h5, h6,
.aura-display {
  color: var(--aura-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.025em;
}

a {
  color: var(--aura-clay-dark);
}

a:hover {
  color: var(--aura-ink);
}

#container {
  min-height: 100vh;
  position: relative;
  margin-bottom: 0;
}

#content, #column-left, #column-right {
  padding-bottom: 64px;
}

#top {
  margin-bottom: 0;
  border: 0;
  background: rgba(255, 250, 244, 0.7);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border-bottom: 1px solid var(--aura-line);
  font-size: 13px;
}

#top .list-inline-item > a,
#top .list-inline-item .dropdown > a {
  color: var(--aura-muted);
}

header.aura-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.82), rgba(255, 250, 244, 0.58));
  backdrop-filter: blur(28px) saturate(1.28);
  -webkit-backdrop-filter: blur(28px) saturate(1.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 54px rgba(73, 48, 36, 0.09);
}

#logo {
  margin: 0;
  text-align: left;
}

#logo h1 {
  margin: 0;
  font-size: 34px;
  line-height: 0.9;
}

#logo h1 a,
.aura-brand {
  text-decoration: none;
  color: var(--aura-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.aura-brand span {
  color: var(--aura-clay-dark);
}

#search input {
  border-radius: 999px 0 0 999px;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 12px 34px rgba(73, 48, 36, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#search button,
#cart .btn,
.btn-primary,
.aura-btn {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--aura-clay-dark), var(--aura-clay));
  color: #fff;
  box-shadow: 0 12px 28px rgba(143, 95, 69, 0.24);
}

.aura-btn::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 36%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  animation: aura-shimmer 4.6s ease-in-out infinite;
}

#search button {
  border-radius: 0 999px 999px 0;
}

.aura-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aura-line);
  border-radius: 999px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--aura-ink);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68), 0 14px 34px rgba(73, 48, 36, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#menu {
  margin: 14px 0 18px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(33, 26, 23, .88), rgba(80, 54, 44, .76)),
    rgba(33, 26, 23, 0.82) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 22px 70px rgba(73, 48, 36, .16);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.aura-menu-container {
  position: relative;
  z-index: 70;
}

.aura-menu-list {
  align-items: center;
  gap: 4px;
  width: 100%;
  justify-content: center;
}

#menu .navbar-nav > li > a,
#menu .aura-menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255, 250, 244, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

#menu .aura-menu-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 166, 107, .74);
  box-shadow: 0 0 18px rgba(201, 166, 107, .45);
  opacity: .72;
  transition: transform .2s ease, opacity .2s ease;
}

#menu .navbar-nav > li:hover > .aura-menu-link,
#menu .aura-menu-link:focus {
  color: #fffaf4;
  background: rgba(255, 255, 255, .12);
  transform: translateY(-1px);
}

#menu .navbar-nav > li:hover > .aura-menu-link::before,
#menu .aura-menu-link:focus::before {
  opacity: 1;
  transform: scale(1.35);
}

#menu .dropdown-toggle::after {
  margin-left: 2px;
  opacity: .72;
}

#menu .dropdown-menu,
#menu .aura-dropdown {
  min-width: min(720px, calc(100vw - 32px));
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,.72), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .38));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 34px 98px rgba(73, 48, 36, .2);
  backdrop-filter: blur(28px) saturate(1.22);
  -webkit-backdrop-filter: blur(28px) saturate(1.22);
}

.aura-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 32px;
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.62);
  transform: rotate(45deg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.aura-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding: 6px 4px 16px;
  border-bottom: 1px solid rgba(33, 26, 23, .09);
}

.aura-dropdown-kicker {
  color: var(--aura-clay-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: .96;
}

.aura-dropdown-head a,
.aura-submenu-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(33, 26, 23, .9);
  color: #fffaf4 !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(73, 48, 36, .16);
}

.aura-dropdown-inner {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 10px;
}

.aura-submenu-list {
  margin: 0;
}

#menu .dropdown-item,
#menu .aura-submenu-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  margin: 2px 0;
  border-radius: 16px;
  padding: 10px 12px;
  color: rgba(33, 26, 23, .82);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: normal;
  transition: background .18s ease, transform .18s ease, color .18s ease;
}

#menu .aura-submenu-link::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(201, 166, 107, .62);
  box-shadow: 0 0 16px rgba(201, 166, 107, .28);
}

#menu .dropdown-item:hover,
#menu .aura-submenu-link:hover {
  background: rgba(255, 255, 255, .72);
  color: var(--aura-clay-dark);
  transform: translateX(4px);
}

.aura-dropdown-footer {
  margin: 12px 0 0;
}

.aura-dropdown-footer .dropdown-divider {
  border-color: rgba(33, 26, 23, .08);
}

.aura-hero {
  position: relative;
  overflow: hidden;
  margin: 0 auto 44px;
  padding: clamp(58px, 8vw, 122px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.94) 0 11%, transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(201, 166, 107, 0.34), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(244, 193, 202, 0.42), transparent 26%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.9), rgba(235, 208, 194, 0.86));
}

.aura-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0 42%, transparent 72%);
  opacity: .42;
}

.aura-hero::after {
  content: "";
  position: absolute;
  inset: 8% 4% auto auto;
  width: 240px;
  height: 240px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 46% 54% 58% 42%;
  background: linear-gradient(145deg, rgba(255,255,255,.34), rgba(255,255,255,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 26px 80px rgba(143,95,69,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: aura-piece-drift 10s ease-in-out infinite;
}

.aura-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .82;
  mix-blend-mode: multiply;
  animation: aura-float 8s ease-in-out infinite;
}

.aura-orb-one {
  width: 180px;
  height: 180px;
  left: 7%;
  top: 18%;
  background: rgba(244, 193, 202, .74);
  box-shadow: 0 0 80px rgba(244, 193, 202, .38);
}

.aura-orb-two {
  width: 130px;
  height: 130px;
  right: 11%;
  top: 16%;
  background: rgba(201, 166, 107, .48);
  box-shadow: 0 0 70px rgba(201, 166, 107, .32);
  animation-delay: -2s;
}

.aura-orb-three {
  width: 90px;
  height: 90px;
  right: 22%;
  bottom: 12%;
  background: rgba(255, 250, 244, .8);
  animation-delay: -4s;
}

.aura-hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(30px, 5vw, 62px);
  padding-right: clamp(320px, 34vw, 440px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.65), transparent 28%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 34px 110px rgba(73, 48, 36, 0.19), var(--aura-glow);
  backdrop-filter: blur(30px) saturate(1.24);
  -webkit-backdrop-filter: blur(30px) saturate(1.24);
}

.aura-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.7) 36%, transparent 62%);
  transform: translateX(-120%);
  animation: aura-glass-sweep 5.8s ease-in-out infinite;
}

.aura-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% 36%;
  z-index: -1;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,107,.25), transparent 64%);
  filter: blur(2px);
}

.aura-floating-piece {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .72);
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(234,208,195,.32));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 22px 58px rgba(73, 48, 36, .16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: aura-piece-drift 8s ease-in-out infinite;
}

.aura-piece-one {
  width: 74px;
  height: 98px;
  right: 8%;
  top: 18%;
  border-radius: 46% 54% 54% 46% / 60% 42% 58% 40%;
}

.aura-piece-two {
  width: 58px;
  height: 58px;
  right: 21%;
  bottom: 17%;
  border-radius: 22px;
  transform: rotate(20deg);
  animation-delay: -3s;
}

.aura-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--aura-clay-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aura-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--aura-gold);
}

.aura-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  text-wrap: balance;
}

.aura-hero p {
  position: relative;
  z-index: 2;
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--aura-muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

.aura-hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.aura-chip-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.aura-chip-row span {
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--aura-muted);
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.aura-glass-showcase {
  position: absolute;
  top: 50%;
  right: clamp(24px, 4vw, 54px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: min(330px, 34vw);
  transform: translateY(-50%);
}

.aura-glass-tile {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.68), rgba(255,255,255,.24)),
    radial-gradient(circle at 70% 12%, rgba(255,255,255,.9), transparent 26%),
    linear-gradient(135deg, rgba(244,193,202,.34), rgba(201,166,107,.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 24px 70px rgba(73, 48, 36, .16);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  animation: aura-tile-float 7s ease-in-out infinite;
}

.aura-glass-tile::before {
  content: "";
  position: absolute;
  inset: 16px 18px auto auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  box-shadow: 0 0 38px rgba(255,255,255,.54);
}

.aura-glass-tile span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(33, 26, 23, .86);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: .95;
}

.aura-glass-tile-large {
  grid-row: span 2;
  min-height: 290px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 68% 18%, rgba(255,255,255,.86), transparent 22%),
    linear-gradient(145deg, rgba(255,255,255,.62), rgba(234,208,195,.28)),
    linear-gradient(135deg, rgba(201,166,107,.18), rgba(244,193,202,.22));
}

.aura-glass-tile:nth-child(2) {
  animation-delay: -2s;
}

.aura-glass-tile:nth-child(3) {
  animation-delay: -4s;
}

.aura-mood-section,
.aura-story-strip {
  padding: 34px 0 18px;
}

.aura-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.aura-section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--aura-muted);
}

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

.aura-mood-card {
  position: relative;
  overflow: hidden;
  min-height: 226px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .96), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(201,166,107,.22), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.64), rgba(244,226,216,.42));
  color: var(--aura-ink);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76), 0 20px 64px rgba(73, 48, 36, .12);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.aura-mood-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -32% 18%;
  height: 90px;
  border-radius: 999px;
  background: rgba(201, 166, 107, .18);
  transform: rotate(-10deg);
}

.aura-mood-card:hover {
  transform: translateY(-9px) rotate(-1deg) scale(1.01);
  border-color: rgba(255, 255, 255, .92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 34px 96px rgba(73, 48, 36, .18);
}

.aura-mood-card strong {
  display: block;
  margin-top: 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1;
}

.aura-mood-card small {
  display: block;
  max-width: 210px;
  margin-top: 12px;
  color: var(--aura-muted);
  font-size: 13px;
  line-height: 1.65;
}

.aura-mood-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(33, 26, 23, .92);
  color: #fffaf4;
}

.aura-story-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .32));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), var(--aura-shadow);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.aura-story-card h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
}

.aura-story-card p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--aura-muted);
  line-height: 1.75;
}

.aura-season-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.78), transparent 22%),
    radial-gradient(circle at 12% 88%, rgba(201,166,107,.28), transparent 34%),
    linear-gradient(145deg, #2a211d, #8f5f45);
  color: #fffaf4;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 28px 90px rgba(73,48,36,.2);
}

.aura-season-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -42px;
  bottom: -46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 48% 52% 40% 60%;
  animation: aura-piece-drift 9s ease-in-out infinite;
}

.aura-season-card span {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255,250,244,.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.aura-season-card h3 {
  max-width: 320px;
  margin: 42px 0 0;
  color: #fffaf4;
  font-size: 42px;
  line-height: .95;
}

.aura-season-card p {
  position: relative;
  max-width: 330px;
  color: rgba(255,250,244,.78);
}

.aura-artisan-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 84px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.38), transparent 28%),
    rgba(143, 95, 69, .9);
  color: #fffaf4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 14px 34px rgba(73, 48, 36, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.aura-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}

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

.product-thumb.aura-reveal {
  transition: opacity .7s ease, transform .7s ease, box-shadow .22s ease;
}

.aura-sparkle {
  position: fixed;
  z-index: 9999;
  width: 10px;
  height: 10px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.98), rgba(201,166,107,.86) 42%, rgba(244,193,202,.42) 58%, transparent 72%);
  box-shadow: 0 0 18px rgba(201,166,107,.42);
  transform: translate(-50%, -50%);
  animation: aura-spark .75s ease-out forwards;
}

.aura-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(234,208,195,.54), transparent 24%),
    rgba(255, 250, 244, .96);
  color: var(--aura-clay-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -.04em;
  transition: opacity .45s ease, visibility .45s ease;
}

.aura-loader::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(143,95,69,.18);
  border-radius: 48% 52% 42% 58%;
  animation: aura-loader-spin 1.8s ease-in-out infinite;
}

.aura-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.product-thumb {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.4));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76), 0 20px 60px rgba(73, 48, 36, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-thumb:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.84), 0 34px 92px rgba(73, 48, 36, .18);
}

.product-thumb .image {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.7), transparent 32%),
    #f3e5da;
}

.product-thumb .image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.42) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}

.product-thumb:hover .image::after {
  transform: translateX(120%);
}

.product-thumb .image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-thumb:hover .image img {
  transform: scale(1.04);
}

.product-thumb .content {
  padding: 20px;
}

.product-thumb h4 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.05;
}

.product-thumb h4 a {
  color: var(--aura-ink);
  text-decoration: none;
}

.product-thumb .description p {
  color: var(--aura-muted);
  font-size: 14px;
}

.product-thumb .price {
  color: var(--aura-clay-dark);
  font-size: 18px;
  font-weight: 800;
}

.product-thumb .button {
  display: flex;
  gap: 8px;
  padding: 0 20px 20px;
}

.product-thumb .button button {
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--aura-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 22px rgba(73,48,36,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-thumb .button button:first-child {
  flex: 1;
  border-color: transparent;
  background: var(--aura-ink);
  color: #fff;
}

.aura-category-heading {
  position: relative;
  overflow: hidden;
  margin: 18px 0 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.82), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.62), rgba(244,226,216,.36));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 28px 84px rgba(73,48,36,.13);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.aura-category-heading h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .92;
}

.aura-category-intro,
.aura-category-toolbar {
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 28px;
  background: rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 18px 54px rgba(73,48,36,.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.aura-category-toolbar .btn,
.aura-category-toolbar .form-select,
.aura-category-toolbar .input-group-text {
  border-color: rgba(255,255,255,.68);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 24px rgba(73,48,36,.07);
}

.aura-stagger-grid .aura-product-entry {
  perspective: 1000px;
}

.aura-entry-left .product-thumb.aura-reveal:not(.is-visible) {
  transform: translate3d(-42px, 28px, 0) rotateY(-7deg);
}

.aura-entry-right .product-thumb.aura-reveal:not(.is-visible) {
  transform: translate3d(42px, 28px, 0) rotateY(7deg);
}

.aura-stagger-grid .product-thumb.is-visible {
  transform: translate3d(0,0,0) rotateY(0);
}

.aura-stagger-grid .product-thumb:hover {
  transform: translateY(-12px) rotateX(2deg) rotateY(-2deg) scale(1.015);
}

.aura-stagger-grid .product-thumb:active,
.product-thumb.aura-pressed {
  transform: translateY(-4px) scale(.985);
}

.aura-product-page {
  position: relative;
}

.aura-product-breadcrumb {
  margin: 18px 0 22px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 999px;
  background: rgba(255,255,255,.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 14px 40px rgba(73,48,36,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.aura-product-shell {
  align-items: flex-start;
  row-gap: 28px;
}

.aura-product-theatre {
  position: relative;
}

.aura-product-theatre::before,
.aura-product-theatre::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 320px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,.34), rgba(244,193,202,.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 30px 90px rgba(73,48,36,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: aura-stage-drift 8s ease-in-out infinite;
}

.aura-product-theatre::before {
  left: -64px;
  top: 84px;
  transform: rotate(-8deg);
}

.aura-product-theatre::after {
  right: -58px;
  bottom: 42px;
  transform: rotate(7deg);
  animation-delay: -3s;
}

.aura-product-media-col .aura-reveal:not(.is-visible) {
  transform: translate3d(-58px, 24px, 0) rotateY(-8deg);
}

.aura-product-detail-col .aura-reveal:not(.is-visible) {
  transform: translate3d(58px, 24px, 0) rotateY(8deg);
}

.aura-side-block {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 146px;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 12%, rgba(255,255,255,.8), transparent 28%),
    rgba(255,255,255,.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 22px 58px rgba(73,48,36,.14);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  animation: aura-side-pop 5.6s ease-in-out infinite;
}

.aura-side-block span {
  color: var(--aura-clay-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.aura-side-block-left {
  left: -22px;
  top: 34px;
  transform: rotate(-8deg);
}

.aura-side-block-right {
  right: -18px;
  bottom: 112px;
  transform: rotate(7deg);
  animation-delay: -2.8s;
}

.aura-product-gallery {
  position: sticky;
  top: 132px;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.86), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(201,166,107,.26), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.62), rgba(244,226,216,.42));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 36px 110px rgba(73,48,36,.18);
  backdrop-filter: blur(28px) saturate(1.18);
  -webkit-backdrop-filter: blur(28px) saturate(1.18);
}

.aura-product-gallery::before,
.aura-product-gallery::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.aura-product-gallery::before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
  background: rgba(244,193,202,.34);
  box-shadow: 0 0 90px rgba(244,193,202,.34);
  animation: aura-float 8s ease-in-out infinite;
}

.aura-product-gallery::after {
  width: 180px;
  height: 180px;
  left: -54px;
  bottom: 18%;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: aura-piece-drift 9s ease-in-out infinite;
}

.aura-product-main-image {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 500px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.88), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.54), rgba(255,255,255,.18));
  transform-style: preserve-3d;
  transition: transform .25s ease;
}

.aura-product-main-image img {
  width: min(100%, 560px);
  max-height: 560px;
  border: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgba(73,48,36,.18));
  transition: transform .5s ease, filter .5s ease;
}

.aura-product-main-image:hover img {
  transform: translateY(-8px) scale(1.035);
  filter: drop-shadow(0 42px 64px rgba(73,48,36,.22));
}

.aura-product-thumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.aura-product-thumbs a {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  background: rgba(255,255,255,.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 12px 30px rgba(73,48,36,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.aura-product-thumbs a:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 18px 42px rgba(73,48,36,.13);
}

.aura-product-thumbs img {
  max-width: 68px;
  max-height: 68px;
  border: 0;
  background: transparent;
  object-fit: contain;
}

.aura-product-panel {
  position: sticky;
  top: 132px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 36px;
  background:
    radial-gradient(circle at 96% 0%, rgba(255,255,255,.76), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.68), rgba(255,255,255,.36));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 34px 96px rgba(73,48,36,.16);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
}

.aura-product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.56) 34%, transparent 58%);
  transform: translateX(-120%);
  animation: aura-glass-sweep 6.4s ease-in-out infinite;
}

.aura-product-kicker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--aura-clay-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.aura-product-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--aura-gold);
}

.aura-product-panel h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: .94;
  text-wrap: balance;
}

.aura-product-mini-badges {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.aura-product-mini-badges span {
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255,255,255,.5);
  color: var(--aura-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.aura-product-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.aura-product-meta li {
  border: 1px solid rgba(33,26,23,.08);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255,255,255,.42);
  color: var(--aura-muted);
  font-size: 13px;
  font-weight: 700;
}

.aura-product-price {
  position: relative;
  z-index: 2;
  margin: 20px 0 12px;
}

.aura-product-price h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
}

.aura-product-price .price-new {
  color: var(--aura-clay-dark);
}

.aura-product-price .price-old {
  color: var(--aura-muted);
  font-weight: 700;
  text-decoration: line-through;
}

.aura-product-actions {
  position: relative;
  z-index: 2;
  gap: 8px;
}

.aura-product-actions .btn,
.aura-product-buy .btn-light {
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  color: var(--aura-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 12px 28px rgba(73,48,36,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.aura-product-buy {
  position: relative;
  z-index: 2;
}

.aura-product-buy h3 {
  margin-top: 18px;
  font-size: 30px;
}

.aura-product-buy .form-control,
.aura-product-buy .form-select,
.aura-product-buy .input-group-text {
  border-color: rgba(255,255,255,.66);
  background: rgba(255,255,255,.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.aura-cart-row .input-group {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 18px 46px rgba(73,48,36,.12);
}

.aura-cart-row .input-group > * {
  border: 0;
}

.aura-cart-row #button-cart {
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--aura-ink), var(--aura-clay-dark));
  box-shadow: 0 16px 38px rgba(33,26,23,.2);
}

.aura-product-trust-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.aura-product-trust {
  min-height: 154px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 22px;
  background: rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 16px 38px rgba(73,48,36,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .22s ease, box-shadow .22s ease;
}

.aura-product-trust:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 24px 58px rgba(73,48,36,.13);
}

.aura-product-trust i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--aura-ink);
  color: #fffaf4;
}

.aura-product-trust strong,
.aura-product-trust span {
  display: block;
}

.aura-product-trust strong {
  margin-top: 12px;
  color: var(--aura-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.aura-product-trust span {
  margin-top: 8px;
  color: var(--aura-muted);
  font-size: 13px;
  line-height: 1.55;
}

.aura-product-story {
  display: grid;
  grid-template-columns: 1.35fr .82fr .82fr;
  gap: 16px;
  margin: 42px 0 28px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244,193,202,.32), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,.64), rgba(255,255,255,.32));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 30px 90px rgba(73,48,36,.14);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.aura-product-story > div:first-child p {
  max-width: 640px;
  margin: 0;
  color: var(--aura-muted);
  font-size: 17px;
  line-height: 1.8;
}

.aura-product-story-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.8), transparent 26%),
    rgba(255,255,255,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76), 0 16px 44px rgba(73,48,36,.08);
}

.aura-product-story-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 130px;
  height: 130px;
  border-radius: 46% 54% 42% 58%;
  border: 1px solid rgba(143,95,69,.14);
  animation: aura-piece-drift 9s ease-in-out infinite;
}

.aura-product-story-card strong {
  display: block;
  max-width: 260px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: .96;
}

.aura-product-story-card span {
  display: block;
  margin-top: 14px;
  color: var(--aura-muted);
  line-height: 1.65;
}

.aura-product-tabs {
  gap: 8px;
  border: 0;
  margin-top: 20px;
}

.aura-product-tabs .nav-link {
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  color: var(--aura-muted);
  font-weight: 800;
}

.aura-product-tabs .nav-link.active {
  background: var(--aura-ink);
  color: #fffaf4;
}

#product-info .tab-content {
  margin-top: 14px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 28px;
  background: rgba(255,255,255,.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 20px 60px rgba(73,48,36,.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.aura-cart-widget {
  position: relative;
}

.aura-cart-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.26) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 82% 16%, rgba(255,255,255,.24), transparent 24%),
    linear-gradient(135deg, var(--aura-ink), var(--aura-clay-dark)) !important;
  color: #fffaf4 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 18px 48px rgba(33,26,23,.2) !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

.aura-cart-button::before {
  content: "";
  position: absolute;
  inset: -70% auto -70% -45%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  animation: aura-shimmer 4.2s ease-in-out infinite;
}

.aura-cart-button i,
.aura-cart-button span {
  position: relative;
  z-index: 2;
}

.aura-cart-button:hover,
.aura-cart-widget.show .aura-cart-button,
.aura-cart-button.aura-pressed {
  transform: translateY(-3px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 26px 68px rgba(33,26,23,.28) !important;
}

.aura-cart-button.aura-cart-bump {
  animation: aura-cart-bump .58s cubic-bezier(.2, 1.4, .4, 1);
}

.aura-cart-dropdown {
  min-width: min(460px, calc(100vw - 28px));
  margin-top: 14px !important;
  border: 1px solid rgba(255,255,255,.72) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,.82), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.76), rgba(255,255,255,.42)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 34px 92px rgba(73,48,36,.22) !important;
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  animation: aura-cart-open .24s ease both;
}

.aura-cart-item {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.34);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.aura-cart-item:hover {
  transform: translateX(-4px);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 30px rgba(73,48,36,.08);
}

.aura-cart-table > :not(caption) > * > * {
  border-bottom-color: rgba(33,26,23,.07);
  background: transparent;
}

.aura-cart-image img {
  border: 0;
  border-radius: 16px;
  background: rgba(255,255,255,.58);
  transition: transform .2s ease;
}

.aura-cart-item:hover .aura-cart-image img {
  transform: rotate(-3deg) scale(1.08);
}

.aura-cart-title {
  color: var(--aura-ink);
  font-weight: 800;
  text-decoration: none;
}

.aura-cart-remove {
  border: 0;
  border-radius: 999px;
}

.aura-cart-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--aura-ink);
  color: #fffaf4;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(33,26,23,.16);
  transition: transform .18s ease;
}

.aura-cart-links a:hover {
  transform: translateY(-3px);
}

.aura-cart-empty {
  color: var(--aura-muted);
  font-weight: 700;
}

.aura-pressed {
  animation: aura-press-pop .36s ease;
}

.aura-click-pop {
  position: fixed;
  z-index: 9998;
  width: 26px;
  height: 26px;
  pointer-events: none;
  border: 1px solid rgba(201,166,107,.62);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: aura-click-pop .52s ease-out forwards;
}

footer {
  margin-top: 70px;
  padding: 56px 0 28px;
  border-top: 1px solid var(--aura-line);
  background: #211a17;
  color: rgba(255, 250, 244, 0.78);
}

footer h5,
footer .aura-footer-brand {
  color: #fffaf4;
}

footer a {
  color: rgba(255, 250, 244, 0.72);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

@keyframes aura-float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-18px,0) scale(1.06); }
}

@keyframes aura-piece-drift {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-14px) rotate(-5deg); }
}

@keyframes aura-glass-sweep {
  0%, 58% { transform: translateX(-120%); }
  75% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes aura-shimmer {
  0%, 62% { left: -42%; }
  84% { left: 112%; }
  100% { left: 112%; }
}

@keyframes aura-tile-float {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,-12px,0) rotate(1.5deg); }
}

@keyframes aura-stage-drift {
  0%, 100% { transform: translate3d(0,0,0) rotate(-8deg); }
  50% { transform: translate3d(14px,-18px,0) rotate(-3deg); }
}

@keyframes aura-side-pop {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes aura-cart-open {
  0% { opacity: 0; transform: translate3d(0, 14px, 0) scale(.96); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes aura-cart-bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.12) rotate(-2deg); }
  70% { transform: scale(.98) rotate(1deg); }
  100% { transform: scale(1); }
}

@keyframes aura-press-pop {
  0% { transform: scale(1); }
  45% { transform: scale(.96); }
  100% { transform: scale(1); }
}

@keyframes aura-click-pop {
  0% { opacity: .9; transform: translate(-50%, -50%) scale(.35); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.4); }
}

@keyframes aura-spark {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(.5); }
  100% { opacity: 0; transform: translate(-50%, -120%) scale(2.4); }
}

@keyframes aura-loader-spin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(14deg) scale(1.08); }
}

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

  .aura-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991px) {
  #menu {
    border-radius: 28px;
  }

  .aura-menu-list {
    align-items: stretch;
    padding-top: 10px;
  }

  #menu .aura-menu-link {
    width: 100%;
    justify-content: flex-start;
  }

  #menu .dropdown-menu,
  #menu .aura-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    padding: 14px;
    border-radius: 24px;
    transform: none;
  }

  .aura-dropdown::before {
    display: none;
  }

  .aura-dropdown-inner {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aura-product-gallery,
  .aura-product-panel {
    position: relative;
    top: auto;
  }

  .aura-product-theatre::before,
  .aura-product-theatre::after {
    display: none;
  }

  .aura-product-gallery {
    min-height: auto;
  }

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

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

  .aura-cart-dropdown {
    min-width: min(420px, calc(100vw - 24px));
  }

  .aura-hero-card {
    min-height: auto;
    padding-right: clamp(24px, 5vw, 42px);
  }

  .aura-hero h1 {
    max-width: 100%;
  }

  .aura-glass-showcase {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 30px;
    transform: none;
  }

  .aura-glass-tile,
  .aura-glass-tile-large {
    min-height: 138px;
  }

  .aura-glass-tile-large {
    grid-row: auto;
  }

  .aura-hero::after {
    width: 170px;
    height: 170px;
    opacity: .72;
  }
}

@media (max-width: 767px) {
  body {
    background:
      radial-gradient(520px 320px at 4% -6%, rgba(244, 193, 202, 0.44), transparent 62%),
      radial-gradient(460px 300px at 104% 4%, rgba(201, 166, 107, 0.28), transparent 58%),
      linear-gradient(180deg, #fffaf4 0%, #f4e4da 48%, #fff7ee 100%);
  }

  #top {
    font-size: 12px;
  }

  #top .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  #top .row {
    gap: 8px;
  }

  #top .col-4,
  #top .col {
    width: 100%;
    flex: 0 0 100%;
    text-align: center !important;
  }

  header.aura-header {
    position: relative;
    padding: 14px 0;
    border-radius: 0 0 24px 24px;
  }

  header.aura-header .row {
    gap: 14px;
  }

  header.aura-header [class*="col-"] {
    width: 100%;
    flex: 0 0 100%;
  }

  #logo {
    text-align: center;
  }

  #logo h1 a,
  .aura-brand {
    font-size: 38px;
  }

  #search {
    margin-top: 2px;
  }

  #search input,
  #search button {
    min-height: 48px;
  }

  #cart {
    margin-top: 8px;
  }

  #cart .btn {
    width: 100%;
    min-height: 48px;
  }

  #menu {
    margin: 10px 0 14px;
    padding: 10px;
    border-radius: 24px;
  }

  .aura-menu-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }

  #category {
    color: #fffaf4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  #menu .navbar-toggler {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fffaf4;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  }

  #menu .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201,166,107,.22);
  }

  #menu .navbar-collapse {
    width: 100%;
  }

  .aura-menu-list {
    gap: 6px;
  }

  #menu .navbar-nav > li > a,
  #menu .aura-menu-link {
    min-height: 46px;
    padding: 12px 14px;
    background: rgba(255,255,255,.08);
  }

  .aura-dropdown-head {
    display: block;
    padding-bottom: 12px;
  }

  .aura-dropdown-head a {
    width: 100%;
    margin-top: 12px;
  }

  .aura-dropdown-kicker {
    font-size: 25px;
  }

  .aura-dropdown-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #menu .dropdown-item,
  #menu .aura-submenu-link {
    min-height: 44px;
    border-radius: 14px;
    padding: 10px;
    font-size: 14px;
  }

  .aura-dropdown-footer {
    display: none;
  }

  .aura-product-breadcrumb {
    display: flex;
    overflow-x: auto;
    margin: 12px 0 16px;
    border-radius: 18px;
    white-space: nowrap;
  }

  .aura-product-gallery,
  .aura-product-panel {
    border-radius: 28px;
  }

  .aura-product-gallery {
    padding: 16px;
  }

  .aura-side-block {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: inline-grid;
    width: calc(50% - 6px);
    min-height: 82px;
    margin-bottom: 10px;
    border-radius: 20px;
    transform: none;
  }

  .aura-side-block-right {
    float: right;
  }

  .aura-product-main-image {
    min-height: 320px;
    border-radius: 24px;
  }

  .aura-product-main-image img {
    max-height: 330px;
  }

  .aura-product-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .aura-product-thumbs a {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .aura-product-panel {
    padding: 20px;
  }

  .aura-product-panel h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .aura-product-meta,
  .aura-product-trust-grid {
    grid-template-columns: 1fr;
  }

  .aura-cart-row .input-group {
    display: grid;
    grid-template-columns: auto 72px;
    border-radius: 24px;
  }

  .aura-cart-row #button-cart {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 54px;
  }

  .aura-product-trust {
    min-height: auto;
  }

  .aura-product-story {
    margin: 28px 0 20px;
    padding: 20px;
    border-radius: 28px;
  }

  .aura-product-story-card {
    min-height: auto;
  }

  .aura-product-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .aura-product-tabs .nav-link {
    white-space: nowrap;
  }

  .aura-category-heading {
    padding: 22px;
    border-radius: 28px;
  }

  .aura-category-heading h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .aura-category-toolbar {
    padding: 12px;
  }

  .aura-cart-dropdown {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: auto !important;
    width: auto !important;
    min-width: 0;
    max-height: 70vh;
    overflow: auto;
    transform: none !important;
  }

  .aura-cart-links {
    display: grid;
    gap: 8px;
  }

  .aura-cart-links a {
    justify-content: center;
    width: 100%;
  }

  .aura-hero {
    margin-bottom: 22px;
    padding: 26px 0 34px;
  }

  .aura-hero::before {
    background-size: 34px 34px;
    opacity: .32;
  }

  .aura-hero-card {
    padding: 24px 18px;
    border-radius: 28px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.84), 0 22px 70px rgba(73, 48, 36, .15);
    backdrop-filter: blur(22px) saturate(1.18);
    -webkit-backdrop-filter: blur(22px) saturate(1.18);
  }

  .aura-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
    line-height: .98;
  }

  .aura-hero p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.62;
  }

  .aura-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .aura-hero-actions .aura-btn,
  .aura-hero-actions .aura-ghost-btn {
    width: 100%;
    min-height: 52px;
  }

  .aura-chip-row {
    gap: 8px;
    margin-top: 20px;
  }

  .aura-chip-row span {
    padding: 8px 11px;
    font-size: 11px;
  }

  .aura-glass-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .aura-glass-tile,
  .aura-glass-tile-large {
    min-height: 104px;
    border-radius: 22px;
  }

  .aura-glass-tile span {
    left: 12px;
    bottom: 12px;
    font-size: 18px;
  }

  .aura-orb-one {
    left: -36px;
    top: 18px;
    width: 130px;
    height: 130px;
  }

  .aura-orb-two {
    right: -28px;
    top: 88px;
    width: 110px;
    height: 110px;
  }

  .aura-orb-three,
  .aura-floating-piece {
    display: none;
  }

  .aura-mood-section,
  .aura-story-strip {
    padding: 18px 0 10px;
  }

  .aura-mood-grid,
  .aura-story-card {
    grid-template-columns: 1fr;
  }

  .aura-mood-grid {
    gap: 12px;
  }

  .aura-mood-card {
    min-height: auto;
    padding: 20px;
    border-radius: 24px;
  }

  .aura-mood-card strong {
    margin-top: 18px;
    font-size: 28px;
  }

  .aura-mood-card small {
    max-width: none;
  }

  .aura-section-heading {
    display: block;
    margin-bottom: 14px;
  }

  .aura-section-heading p {
    margin-top: 8px;
  }

  .aura-story-card {
    padding: 20px;
    border-radius: 28px;
  }

  .aura-story-card h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .aura-season-card {
    min-height: 232px;
    padding: 22px;
    border-radius: 24px;
  }

  .aura-season-card h3 {
    margin-top: 28px;
    font-size: 34px;
  }

  .aura-artisan-badge {
    top: 10px;
    left: 10px;
    min-width: 66px;
    min-height: 66px;
    font-size: 9px;
  }

  .product-thumb {
    border-radius: 24px;
  }

  .product-thumb .content {
    padding: 16px;
  }

  .product-thumb h4 {
    font-size: 22px;
  }

  .product-thumb .button {
    padding: 0 16px 16px;
  }

  .product-thumb .button button {
    min-height: 44px;
  }
}

@media (min-width: 992px) {
  #menu .dropdown:hover > .dropdown-menu {
    display: block;
  }

  #menu .dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .aura-mood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Showstopper layer: intentionally stronger than the base skin. */
body {
  background:
    radial-gradient(900px 560px at 8% -10%, rgba(255, 143, 174, .36), transparent 62%),
    radial-gradient(820px 620px at 102% 4%, rgba(255, 201, 111, .34), transparent 58%),
    radial-gradient(900px 680px at 48% 18%, rgba(255, 255, 255, .82), transparent 54%),
    linear-gradient(135deg, #fff6ec 0%, #f0d8cd 48%, #fffaf4 100%);
}

header.aura-header {
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.42)),
    radial-gradient(circle at 80% 0%, rgba(201,166,107,.22), transparent 30%);
}

#logo h1 a,
.aura-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(38px, 5vw, 64px);
  text-shadow: 0 18px 38px rgba(73,48,36,.12);
}

#logo h1 a::before,
.aura-brand::before {
  content: "";
  width: 14px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, var(--aura-gold), var(--aura-clay-dark));
  box-shadow: 0 0 28px rgba(201,166,107,.42);
  animation: aura-logo-pulse 3.4s ease-in-out infinite;
}

#menu {
  outline: 1px solid rgba(255,255,255,.24);
  outline-offset: 5px;
}

.aura-hero {
  min-height: clamp(680px, 78vh, 900px);
  padding: clamp(64px, 9vw, 138px) 0;
  background:
    linear-gradient(115deg, rgba(33,26,23,.82) 0 42%, transparent 42%),
    radial-gradient(circle at 74% 18%, rgba(255,255,255,.92), transparent 13%),
    radial-gradient(circle at 86% 72%, rgba(255,143,174,.42), transparent 24%),
    radial-gradient(circle at 20% 70%, rgba(201,166,107,.28), transparent 24%),
    linear-gradient(135deg, #f9e4d8 0%, #fffaf4 44%, #ead0c3 100%);
}

.aura-hero::before {
  opacity: .68;
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 0 28%, #000 44% 100%);
}

.aura-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .78fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  min-height: 580px;
  padding: clamp(34px, 5vw, 70px);
  padding-right: clamp(34px, 5vw, 70px);
  border-radius: 54px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,.26)),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.82), transparent 26%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 44px 140px rgba(33,26,23,.24),
    0 0 90px rgba(201,166,107,.24);
}

.aura-hero-card > .aura-kicker,
.aura-hero-card > h1,
.aura-hero-card > p,
.aura-hero-card > .aura-hero-actions,
.aura-hero-card > .aura-chip-row {
  grid-column: 1;
}

.aura-hero .aura-kicker {
  color: #fffaf4;
  background: rgba(33,26,23,.84);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  width: fit-content;
  padding: 10px 16px;
  box-shadow: 0 16px 36px rgba(33,26,23,.18);
}

.aura-hero h1 {
  max-width: 780px;
  font-size: clamp(56px, 8.6vw, 118px);
  line-height: .84;
  letter-spacing: -.06em;
}

.aura-hero p {
  max-width: 570px;
  font-size: clamp(17px, 2vw, 23px);
  color: rgba(33,26,23,.7);
}

.aura-hero-actions .aura-btn,
.aura-hero-actions .aura-ghost-btn {
  min-height: 58px;
  padding-left: 26px !important;
  padding-right: 26px !important;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.aura-glass-showcase {
  position: relative;
  top: auto;
  right: auto;
  grid-column: 2;
  grid-row: 1 / span 5;
  width: 100%;
  transform: none;
  grid-template-columns: 1fr 1fr;
}

.aura-glass-tile {
  min-height: 180px;
  border-radius: 34px;
  transform: rotate(2deg);
}

.aura-glass-tile-large {
  min-height: 390px;
  transform: rotate(-3deg);
}

.aura-glass-tile:hover {
  transform: translateY(-12px) rotate(0deg) scale(1.03);
}

.aura-mood-section,
.aura-story-strip {
  position: relative;
  margin-top: -10px;
}

.aura-mood-grid {
  gap: 22px;
}

.aura-mood-card {
  min-height: 260px;
  border-radius: 38px;
  transform-style: preserve-3d;
}

.aura-mood-card:nth-child(even) {
  margin-top: 38px;
}

.aura-mood-card:hover {
  transform: translateY(-18px) rotate(-2deg) scale(1.035);
}

.product-thumb {
  border-radius: 38px;
  transition: transform .28s cubic-bezier(.2, 1.3, .32, 1), box-shadow .28s ease, filter .28s ease;
}

.product-thumb:hover {
  filter: saturate(1.08) contrast(1.03);
  transform: translateY(-16px) rotateX(3deg) rotateY(-3deg) scale(1.025);
}

.product-thumb .button button:first-child,
.aura-cart-row #button-cart,
.aura-cart-button {
  background: linear-gradient(135deg, #17100d, #7f4d37, #c9a66b) !important;
  background-size: 180% 180% !important;
  animation: aura-lux-gradient 5.5s ease infinite;
}

.aura-product-gallery,
.aura-product-panel,
.aura-category-heading,
.aura-category-toolbar,
.aura-product-story {
  outline: 1px solid rgba(255,255,255,.38);
  outline-offset: 7px;
}

.aura-product-gallery {
  min-height: 720px;
  border-radius: 58px;
}

.aura-product-main-image {
  min-height: 590px;
}

.aura-side-block {
  width: 178px;
  min-height: 142px;
  border-radius: 36px;
}

.aura-cart-dropdown {
  outline: 1px solid rgba(255,255,255,.4);
  outline-offset: 5px;
}

@keyframes aura-logo-pulse {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: .78; }
  50% { transform: translateY(-5px) scaleY(1.12); opacity: 1; }
}

@keyframes aura-lux-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (max-width: 991px) {
  .aura-hero {
    min-height: auto;
  }

  .aura-hero-card {
    grid-template-columns: 1fr;
  }

  .aura-hero-card > .aura-kicker,
  .aura-hero-card > h1,
  .aura-hero-card > p,
  .aura-hero-card > .aura-hero-actions,
  .aura-hero-card > .aura-chip-row,
  .aura-glass-showcase {
    grid-column: 1;
    grid-row: auto;
  }

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

  .aura-glass-tile,
  .aura-glass-tile-large {
    min-height: 130px;
    transform: none;
  }
}

@media (max-width: 767px) {
  #logo h1 a::before,
  .aura-brand::before {
    height: 32px;
  }

  .aura-hero {
    background:
      radial-gradient(circle at 76% 12%, rgba(255,255,255,.9), transparent 18%),
      radial-gradient(circle at 88% 68%, rgba(255,143,174,.34), transparent 28%),
      linear-gradient(145deg, #fff4eb 0%, #efd7cc 100%);
  }

  .aura-hero-card {
    border-radius: 34px;
  }

  .aura-hero .aura-kicker {
    color: var(--aura-clay-dark);
    background: rgba(255,255,255,.68);
  }

  .aura-hero h1 {
    font-size: clamp(45px, 15vw, 66px);
  }

  .aura-glass-showcase {
    grid-template-columns: 1fr;
  }

  .aura-mood-card:nth-child(even) {
    margin-top: 0;
  }

  .aura-product-gallery {
    min-height: auto;
    border-radius: 34px;
  }

  .aura-product-main-image {
    min-height: 340px;
  }
}

/* Left sticky navigation rail */
@media (min-width: 992px) {
  main {
    padding-right: 0;
    padding-left: clamp(270px, 28vw, 320px);
  }

  .aura-right-nav {
    position: fixed;
    top: 158px;
    right: auto;
    left: 22px;
    bottom: 22px;
    z-index: 78;
    width: clamp(240px, 24vw, 270px);
    pointer-events: none;
  }

  .aura-right-nav .aura-menu-container {
    width: 100%;
    height: 100%;
    padding: 0;
    pointer-events: auto;
  }

  .aura-right-nav #menu {
    position: relative;
    display: block;
    height: 100%;
    margin: 0;
    padding: 16px;
    border-radius: 38px;
    background:
      radial-gradient(circle at 78% 8%, rgba(255,255,255,.2), transparent 26%),
      linear-gradient(165deg, rgba(33,26,23,.94), rgba(92,59,46,.84)),
      rgba(33,26,23,.9) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.2),
      0 30px 90px rgba(33,26,23,.24),
      0 0 54px rgba(201,166,107,.14);
    overflow: visible;
  }

  .aura-right-nav #menu::before {
    content: "Menu";
    display: block;
    margin: 4px 8px 14px;
    color: rgba(255,250,244,.76);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
  }

  .aura-right-nav #menu::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,250,244,.34), transparent);
  }

  .aura-right-nav .aura-menu-mobile-head {
    display: none;
  }

  .aura-right-nav .navbar-expand-lg .navbar-collapse,
  .aura-right-nav #navbar-menu {
    display: block !important;
    height: calc(100% - 52px);
    overflow-y: auto;
    overflow-x: visible;
    padding: 0 4px 34px;
  }

  .aura-right-nav #navbar-menu::-webkit-scrollbar {
    width: 4px;
  }

  .aura-right-nav #navbar-menu::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255,250,244,.24);
  }

  .aura-right-nav .aura-menu-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 9px;
    width: 100%;
  }

  .aura-right-nav .aura-menu-item {
    position: relative;
    width: 100%;
  }

  .aura-right-nav #menu .navbar-nav > li > a,
  .aura-right-nav #menu .aura-menu-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }

  .aura-right-nav #menu .navbar-nav > li:hover > .aura-menu-link,
  .aura-right-nav #menu .aura-menu-link:focus {
    background: rgba(255,255,255,.18);
    transform: translateX(6px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.16),
      0 16px 34px rgba(0,0,0,.16);
  }

  .aura-right-nav #menu .dropdown-menu,
  .aura-right-nav #menu .aura-dropdown {
    top: 0 !important;
    right: auto !important;
    left: calc(100% + 18px) !important;
    min-width: min(620px, calc(100vw - 320px));
    max-height: min(72vh, 680px);
    margin: 0 !important;
    overflow-y: auto;
    transform: none !important;
    border-radius: 34px;
  }

  .aura-right-nav .aura-dropdown::before {
    top: 22px;
    right: auto;
    left: -9px;
    border: 0;
    border-left: 1px solid rgba(255,255,255,.7);
    border-top: 1px solid rgba(255,255,255,.7);
  }

  .aura-right-nav #menu .dropdown:hover > .dropdown-menu {
    display: block;
    animation: aura-side-menu-open .22s ease both;
  }

  .aura-right-nav .aura-dropdown-inner {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aura-right-nav + .aura-hero,
  .aura-right-nav ~ .aura-hero {
    margin-left: 0;
  }
}

/* Header embedded dark menu */
.aura-header-menu-row {
  position: relative;
  z-index: 90;
  margin-top: 14px;
}

.aura-header-menu-row .aura-menu-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.aura-header-menu-row #menu {
  display: flex;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255,255,255,.16), transparent 24%),
    linear-gradient(135deg, rgba(33, 26, 23, .96), rgba(80, 54, 44, .9)),
    rgba(33, 26, 23, .94) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 18px 48px rgba(73,48,36,.16);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
  outline: 0;
  overflow: visible;
}

.aura-header-menu-row #menu::before,
.aura-header-menu-row #menu::after {
  display: none;
}

.aura-header-menu-row #navbar-menu {
  width: 100%;
}

.aura-header-menu-row .aura-menu-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.aura-header-menu-row .aura-menu-item {
  width: auto;
}

.aura-header-menu-row #menu .navbar-nav > li > a,
.aura-header-menu-row #menu .aura-menu-link {
  justify-content: center;
  width: auto;
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  color: rgba(255,250,244,.92);
  box-shadow: none;
}

.aura-header-menu-row #menu .navbar-nav > li:hover > .aura-menu-link,
.aura-header-menu-row #menu .aura-menu-link:focus {
  color: #fffaf4;
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.aura-header-menu-row #menu .dropdown-menu,
.aura-header-menu-row #menu .aura-dropdown {
  top: 100% !important;
  right: auto !important;
  left: 0 !important;
  min-width: min(720px, calc(100vw - 32px));
  margin-top: 14px !important;
}

.aura-header-menu-row .aura-dropdown::before {
  top: -8px;
  right: auto;
  left: 32px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.7);
}

@media (max-width: 991px) {
  .aura-header-menu-row #menu {
    border-radius: 24px;
  }

  .aura-header-menu-row .aura-menu-mobile-head {
    display: flex;
  }

  .aura-header-menu-row .aura-menu-list {
    flex-direction: column;
    align-items: stretch;
  }

  .aura-header-menu-row .aura-menu-item,
  .aura-header-menu-row #menu .aura-menu-link {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .aura-right-nav {
    position: relative;
    z-index: 70;
  }
}

@keyframes aura-side-menu-open {
  0% {
    opacity: 0;
    transform: translate3d(-14px, 0, 0) scale(.98);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Top sticky navigation override */
@media (min-width: 992px) {
  main {
    padding-right: 0;
    padding-left: 0;
  }

  .aura-right-nav {
    position: sticky;
    top: 78px;
    right: auto;
    left: auto;
    bottom: auto;
    z-index: 78;
    width: 100%;
    pointer-events: auto;
  }

  .aura-right-nav .aura-menu-container {
    width: min(100%, 1180px);
    height: auto;
    margin: 0 auto;
    padding: 0 clamp(14px, 2vw, 24px);
    pointer-events: auto;
  }

  .aura-right-nav #menu {
    display: flex;
    height: auto;
    margin: -22px auto 18px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 28px;
    background:
      radial-gradient(circle at 88% 0%, rgba(255,255,255,.76), transparent 28%),
      linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.24)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.82),
      0 22px 70px rgba(73,48,36,.14);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    overflow: visible;
  }

  .aura-right-nav #menu::before,
  .aura-right-nav #menu::after {
    display: none;
  }

  .aura-right-nav #navbar-menu {
    display: flex !important;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .aura-right-nav .aura-menu-list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .aura-right-nav .aura-menu-item {
    width: auto;
  }

  .aura-right-nav #menu .navbar-nav > li > a,
  .aura-right-nav #menu .aura-menu-link {
    justify-content: center;
    width: auto;
    min-height: 42px;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(255,255,255,.38);
    color: rgba(33,26,23,.78);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .aura-right-nav #menu .navbar-nav > li:hover > .aura-menu-link,
  .aura-right-nav #menu .aura-menu-link:focus {
    color: var(--aura-ink);
    background: rgba(255,255,255,.72);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 14px 30px rgba(73,48,36,.08);
  }

  .aura-right-nav #menu .aura-menu-link::before {
    background: var(--aura-gold);
    box-shadow: 0 0 16px rgba(201,166,107,.38);
  }

  .aura-right-nav #menu .dropdown-menu,
  .aura-right-nav #menu .aura-dropdown {
    top: 100% !important;
    right: auto !important;
    left: 0 !important;
    min-width: min(720px, calc(100vw - 32px));
    max-height: min(72vh, 680px);
    margin-top: 14px !important;
    transform: none !important;
  }

  .aura-right-nav .aura-dropdown::before {
    top: -8px;
    right: auto;
    left: 32px;
    border: 0;
    border-left: 1px solid rgba(255,255,255,.7);
    border-top: 1px solid rgba(255,255,255,.7);
  }

  .aura-right-nav #menu .dropdown:hover > .dropdown-menu {
    animation: aura-cart-open .22s ease both;
  }

  .aura-right-nav .aura-dropdown-inner {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(170px, 1fr);
  }
}
