:root {
  --plum: #26061f;
  --wine: #3d1034;
  --aubergine: #140713;
  --gold: #d8af68;
  --bright-gold: #f6ddb0;
  --cream: #fff1d5;
  --paper: #f5dfc4;
  --muted: #d6bd98;
  --line: rgba(246, 221, 176, 0.42);
  --shadow: 0 26px 70px rgba(8, 2, 8, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 22% 0%, rgba(141, 51, 116, 0.55), transparent 34rem),
    radial-gradient(circle at 80% 30%, rgba(116, 49, 92, 0.35), transparent 28rem),
    linear-gradient(180deg, #2b0624 0%, #150713 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}

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

button,
input {
  font: inherit;
}

textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(246, 221, 176, 0.48);
  outline-offset: 3px;
}

.page-frame {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow-x: clip;
  border-left: 1px solid rgba(246, 221, 176, 0.22);
  border-right: 1px solid rgba(246, 221, 176, 0.22);
  background:
    radial-gradient(circle at 18% 24%, rgba(246, 221, 176, 0.12), transparent 20rem),
    radial-gradient(circle at 84% 58%, rgba(216, 175, 104, 0.11), transparent 19rem),
    rgba(32, 6, 28, 0.58);
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.28);
}

.announcement {
  margin: 0;
  padding: 11px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  background: rgba(18, 4, 16, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  min-height: 78px;
  padding: 10px clamp(16px, 4vw, 38px);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 4, 14, 0.9);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(24, 6, 21, 0.96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.brand {
  grid-column: 2;
  justify-self: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--bright-gold);
  background: transparent;
  box-shadow: none;
  font-family: Cinzel, Georgia, serif;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.035em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.42), 0 0 18px rgba(246, 221, 176, 0.18);
}

.brand::before,
.brand::after {
  content: none;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: clamp(126px, 12vw, 178px);
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 18px rgba(246, 221, 176, 0.28));
  transform: translateY(-1px);
  image-rendering: auto;
}

.brand span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.menu-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.auth-modal-check {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  grid-column: 1;
  position: relative;
  z-index: 5000;
  display: inline-grid;
  place-content: center;
  gap: 6px;
  width: 54px;
  height: 48px;
  border: 1px solid rgba(246, 221, 176, 0.52);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: currentColor;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--cream);
  font-weight: 800;
}

.header-action,
.header-tools a,
.header-tools button {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-action {
  border: 1px solid rgba(246, 221, 176, 0.3);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.header-action.is-logout-icon,
.nav-auth-link.is-logout-icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
}

.header-action svg,
.nav-auth-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-mini-link {
  position: relative;
  width: 42px;
  min-width: 42px;
  height: 42px;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(246, 221, 176, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  cursor: pointer;
}

.header-mini-link span {
  position: absolute;
  right: -5px;
  bottom: -3px;
  min-width: 18px;
  padding: 1px 5px;
  border-radius: 999px;
  color: #2b0624;
  background: var(--bright-gold);
  font-size: 0.72em;
  line-height: 1.4;
}

.header-mini-link svg,
.header-search-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-search-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(246, 221, 176, 0.26);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.header-search-button:hover {
  color: var(--bright-gold);
  border-color: rgba(246, 221, 176, 0.5);
}

.search-results-panel {
  width: 100%;
  max-height: min(560px, calc(100dvh - 120px));
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.36);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(246, 221, 176, 0.12), transparent 12rem),
    rgba(18, 4, 16, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  overflow-y: auto;
}

.search-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 8px;
  border-bottom: 1px solid rgba(246, 221, 176, 0.18);
}

.search-results-head strong {
  color: var(--bright-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-results-head button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.search-result-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(246, 221, 176, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.search-result-item img,
.search-result-image-empty {
  width: 66px;
  height: 74px;
  border: 1px solid rgba(246, 221, 176, 0.22);
  border-radius: 6px;
  object-fit: cover;
  background: rgba(246, 221, 176, 0.08);
}

.search-result-item div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.search-result-item small {
  color: var(--bright-gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result-item strong {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.05;
}

.search-result-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.search-result-actions {
  display: grid;
  gap: 6px;
}

.search-result-actions button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 999px;
  color: var(--bright-gold);
  background: rgba(246, 221, 176, 0.06);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.search-empty {
  padding: 16px;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  text-align: center;
}

.whatsapp-link {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #2bd66f, #128c3f);
  box-shadow: 0 12px 28px rgba(18, 140, 63, 0.28);
}

.whatsapp-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-nav {
  position: absolute;
  z-index: 5001;
  top: calc(100% + 1px);
  left: clamp(12px, 4vw, 38px);
  right: clamp(12px, 4vw, 38px);
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 6px;
  width: auto;
  max-height: min(72vh, 620px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 0% 0%, rgba(246, 221, 176, 0.12), transparent 16rem),
    rgba(18, 4, 16, 0.98);
  box-shadow: var(--shadow);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.menu-link-list {
  display: contents;
}

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

.nav-toggle[aria-expanded="true"] ~ .site-nav {
  display: grid;
}

.menu-check:checked ~ .site-nav {
  display: grid;
}

.site-nav a,
.site-nav button,
.site-nav label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.14);
  border-bottom: 1px solid transparent;
  color: rgba(255, 241, 213, 0.88);
  background: transparent;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(0.62rem, 0.76vw, 0.76rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav button:hover,
.site-nav label:hover {
  color: var(--bright-gold);
  border-bottom-color: var(--bright-gold);
}

.site-nav span {
  min-width: 0;
  margin-left: 0;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  line-height: inherit;
}

.site-nav .serrabird-wordmark.inline {
  min-width: 0;
  margin-left: 4px;
  padding: 0;
  border-radius: 0;
  color: var(--bright-gold);
  background: transparent;
  -webkit-text-fill-color: currentColor;
  filter: none;
  font-family: inherit;
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: inherit;
}

.menu-icon-action {
  gap: 8px;
}

.menu-icon-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-icon-action b {
  min-width: 18px;
  padding: 1px 6px;
  border-radius: 999px;
  color: #2b0624;
  background: var(--bright-gold);
  font-size: 0.72rem;
  line-height: 1.4;
}

.nav-search {
  position: relative;
  width: clamp(150px, 15vw, 220px);
}

.nav-search span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.nav-search input {
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  outline: none;
}

.site-nav a:last-child,
.site-nav button:last-child,
.site-nav label:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.5%, 0, 0);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 6, 18, 0.08) 0%, rgba(31, 6, 28, 0.18) 42%, rgba(23, 4, 21, 0.72) 66%, rgba(13, 3, 12, 0.94) 100%),
    linear-gradient(0deg, rgba(18, 4, 16, 0.56), rgba(18, 4, 16, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: start;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) clamp(20px, 5vw, 58px);
  text-align: center;
  transform: none;
}

.serrabird-wordmark {
  display: inline-block;
  color: var(--bright-gold);
  font-family: Cinzel, "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff6cf 0%, #f8cf77 36%, #c77736 68%, #fff0ba 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 0 rgba(70, 20, 20, 0.55)) drop-shadow(0 0 16px rgba(255, 216, 128, 0.28));
  text-shadow: 0 0 22px rgba(246, 221, 176, 0.22);
}

.serrabird-wordmark.inline {
  font-size: 0.92em;
  letter-spacing: 0.045em;
  vertical-align: baseline;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5.25rem);
  line-height: 0.93;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

h1.serrabird-wordmark {
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  font-style: italic;
  line-height: 1;
}

h3 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
}

.hero-copy {
  max-width: 660px;
  margin: clamp(30px, 6vh, 76px) auto 0;
  color: #f4dfbf;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.42;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}

.hero-actions {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(22px, 5vw, 46px);
  width: min(680px, calc(100% - 36px));
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--cream);
  background: rgba(72, 16, 55, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(105, 30, 77, 0.82);
}

.button.primary {
  background: linear-gradient(180deg, #5a143f, #330a28);
}

.button.secondary {
  background: rgba(35, 6, 30, 0.48);
}

.button.small {
  min-height: 42px;
  padding: 0 24px;
  font-size: 1.08rem;
}

.premium-section,
.lookbook-section,
.visit-section,
.site-footer {
  border-bottom: 1px solid var(--line);
}

.featured-categories {
  padding: 0 clamp(16px, 4vw, 44px) 36px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 16%, rgba(246, 221, 176, 0.12), transparent 18rem),
    rgba(16, 4, 14, 0.24);
}

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

.featured-category-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: end;
  min-height: 310px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(246, 221, 176, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.92)),
    radial-gradient(circle at 50% 16%, rgba(246, 221, 176, 0.22), transparent 12rem),
    linear-gradient(135deg, #4c123d, #130411);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
  transform: translateY(0);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.featured-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.82;
  background:
    radial-gradient(circle at 50% 28%, rgba(246, 221, 176, 0.18), transparent 4rem),
    conic-gradient(from 210deg at 50% 42%, transparent 0 18%, rgba(246, 221, 176, 0.28) 19% 22%, transparent 23% 100%);
  transform: scale(1);
  transition: transform 320ms ease, opacity 240ms ease;
}

.featured-category-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -32% -20%;
  z-index: -1;
  height: 58%;
  background: radial-gradient(ellipse at center, rgba(216, 175, 104, 0.26), transparent 66%);
  transform: translateY(24px);
  transition: transform 260ms ease;
}

.featured-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 221, 176, 0.64);
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.36);
}

.featured-category-card:hover::before {
  opacity: 1;
  transform: scale(1.08) rotate(3deg);
}

.featured-category-card:hover::after {
  transform: translateY(0);
}

.featured-category-card small {
  color: rgba(246, 221, 176, 0.78);
  font-family: Cinzel, Georgia, serif;
  font-weight: 900;
}

.featured-category-card h3 {
  margin-top: 10px;
  color: var(--bright-gold);
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
}

.featured-category-card p {
  margin: 10px 0 0;
  color: rgba(255, 241, 213, 0.76);
  line-height: 1.55;
}

.homepage-photo-card {
  isolation: isolate;
}

.homepage-photo-card img,
.homepage-photo-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.homepage-photo-card img {
  z-index: -3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 220ms ease;
}

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

.homepage-photo-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(19, 4, 17, 0.06), rgba(19, 4, 17, 0.88)),
    radial-gradient(circle at 50% 10%, rgba(246, 221, 176, 0.16), transparent 12rem);
}

.homepage-card-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 160px;
  padding: 24px 16px;
  border: 1px dashed rgba(246, 221, 176, 0.3);
  border-radius: 8px;
  background: rgba(18, 4, 16, 0.42);
  text-align: center;
}

.homepage-card-empty strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
}

.homepage-card-empty span {
  color: var(--muted);
}

.featured-category-card.royal {
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.92)),
    radial-gradient(circle at 50% 12%, rgba(246, 221, 176, 0.26), transparent 12rem),
    linear-gradient(135deg, #5a1744, #170412);
}

.featured-category-card.freedom {
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.92)),
    radial-gradient(circle at 60% 18%, rgba(216, 175, 104, 0.24), transparent 12rem),
    linear-gradient(135deg, #301059, #120411);
}

.featured-category-card.bridal {
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.92)),
    radial-gradient(circle at 48% 14%, rgba(255, 241, 213, 0.22), transparent 12rem),
    linear-gradient(135deg, #6b224d, #170612);
}

.featured-category-card.everyday {
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.92)),
    radial-gradient(circle at 46% 18%, rgba(246, 221, 176, 0.18), transparent 12rem),
    linear-gradient(135deg, #3a1534, #110410);
}

.best-seller-section {
  padding: 0 clamp(16px, 4vw, 44px) 36px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 175, 104, 0.1), transparent 18rem),
    rgba(13, 3, 12, 0.34);
}

.best-seller-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.best-seller-card {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(246, 221, 176, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.9)),
    radial-gradient(circle at 50% 24%, rgba(246, 221, 176, 0.18), transparent 7rem),
    linear-gradient(135deg, #421238, #110410);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.best-seller-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: -1;
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 221, 176, 0.18), transparent 68%);
  transition: transform 260ms ease;
}

.best-seller-card:hover {
  transform: translateY(-7px);
  border-color: rgba(246, 221, 176, 0.62);
  box-shadow: 0 30px 66px rgba(0, 0, 0, 0.34);
}

.best-seller-card:hover::before {
  transform: scale(1.28) rotate(14deg);
}

.best-seller-card small {
  color: rgba(246, 221, 176, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.best-seller-card h3 {
  margin-top: 6px;
  color: var(--bright-gold);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.best-seller-card p {
  margin: 8px 0 0;
  color: rgba(255, 241, 213, 0.74);
  line-height: 1.45;
}

.best-seller-card.ring {
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.9)),
    radial-gradient(circle at 50% 20%, rgba(246, 221, 176, 0.22), transparent 7rem),
    linear-gradient(135deg, #4b133d, #10030d);
}

.best-seller-card.necklace {
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.9)),
    radial-gradient(circle at 52% 18%, rgba(216, 175, 104, 0.24), transparent 7rem),
    linear-gradient(135deg, #34155a, #10030d);
}

.best-seller-card.earring {
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.9)),
    radial-gradient(circle at 52% 18%, rgba(255, 241, 213, 0.2), transparent 7rem),
    linear-gradient(135deg, #5a1744, #120411);
}

.best-seller-card.bracelet {
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.9)),
    radial-gradient(circle at 52% 18%, rgba(184, 119, 185, 0.2), transparent 7rem),
    linear-gradient(135deg, #2a173f, #10030d);
}

.best-seller-card.set {
  background:
    linear-gradient(180deg, rgba(12, 3, 11, 0.04), rgba(12, 3, 11, 0.9)),
    radial-gradient(circle at 52% 18%, rgba(246, 221, 176, 0.24), transparent 7rem),
    linear-gradient(135deg, #631b46, #120411);
}

.story-behind-section {
  display: grid;
  place-items: center;
  padding: clamp(34px, 6vw, 62px) clamp(16px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 16%, rgba(246, 221, 176, 0.14), transparent 18rem),
    radial-gradient(circle at 100% 80%, rgba(116, 49, 92, 0.26), transparent 22rem),
    rgba(16, 4, 14, 0.42);
}

.story-behind-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.story-behind-copy h2 {
  max-width: 680px;
  font-style: normal;
  color: var(--cream);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.story-behind-copy .story-tagline {
  max-width: 680px;
  margin: 0;
  color: #f1d7ac;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
}

.story-behind-points {
  display: grid;
  gap: 12px;
}

.story-behind-points article {
  display: grid;
  gap: 7px;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(246, 221, 176, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.62), rgba(18, 5, 16, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(216, 175, 104, 0.12), transparent 12rem);
}

.story-behind-points strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
}

.story-behind-points span {
  color: var(--muted);
  line-height: 1.55;
}

.premium-section,
.lookbook-section {
  padding: 0 clamp(16px, 4vw, 44px) 34px;
}

.ornate-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0 16px;
}

.ornate-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-intro {
  max-width: 760px;
  margin: -4px auto 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  line-height: 1.45;
  text-align: center;
}

.premium-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
  max-width: 1040px;
  margin: 26px auto 0;
  padding: clamp(14px, 2.8vw, 22px);
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 8, 36, 0.86), rgba(14, 3, 12, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(246, 221, 176, 0.18), transparent 18rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.premium-spotlight img {
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 1px solid rgba(246, 221, 176, 0.28);
  border-radius: 6px;
  object-fit: cover;
  background: #2d0b26;
}

.premium-spotlight-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(12px, 2.5vw, 26px);
}

.premium-spotlight-copy h3 {
  color: var(--bright-gold);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-style: normal;
}

.premium-spotlight-copy p:not(.eyebrow) {
  margin: 0;
  color: #f1d7ac;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
  line-height: 1.48;
}

.premium-fomo {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(246, 221, 176, 0.32);
  border-radius: 6px;
  background: rgba(246, 221, 176, 0.08);
}

.premium-fomo strong {
  color: var(--bright-gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.premium-fomo span {
  color: var(--muted);
  line-height: 1.5;
}

.premium-empty-real {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 24px 18px;
  border: 1px dashed rgba(246, 221, 176, 0.32);
  border-radius: 8px;
  background: rgba(18, 4, 16, 0.42);
  text-align: center;
}

.premium-empty-real strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.premium-empty-real span {
  color: var(--muted);
}

.new-arrival-showcase {
  max-width: 1180px;
  margin: 28px auto 0;
}

.new-arrival-showcase .catalog-product-row {
  margin-top: 18px;
}

.shop-heading {
  display: grid;
  gap: 6px;
  margin: 30px auto 0;
  text-align: center;
}

.shop-heading h3 {
  color: var(--bright-gold);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
}

.shop-heading p {
  margin: 0;
  color: var(--muted);
}

.catalog-categories {
  display: grid;
  gap: 26px;
  margin-top: 26px;
}

.catalog-category-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.catalog-category-menu button,
.catalog-category-menu a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(246, 221, 176, 0.36);
  border-radius: 999px;
  color: var(--bright-gold);
  background: rgba(22, 5, 19, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-category-menu button.active,
.catalog-category-menu a.active {
  color: #2b0624;
  background: var(--bright-gold);
}

.catalog-showroom {
  display: grid;
  gap: 18px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(246, 221, 176, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(43, 8, 35, 0.82), rgba(13, 3, 12, 0.96)),
    radial-gradient(circle at 90% 0%, rgba(246, 221, 176, 0.14), transparent 18rem);
}

.catalog-showroom-story {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.catalog-showroom-story h3 {
  color: var(--bright-gold);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.catalog-showroom-story p:not(.eyebrow) {
  margin: 0;
  color: #f1d7ac;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
  line-height: 1.45;
}

.catalog-showroom-story span {
  color: var(--muted);
  font-weight: 800;
}

.catalog-category-block {
  display: grid;
  gap: 14px;
}

.catalog-product-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.catalog-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px;
  border: 1px dashed rgba(246, 221, 176, 0.32);
  border-radius: 8px;
  background: rgba(18, 4, 16, 0.42);
  text-align: center;
}

.catalog-empty strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
}

.catalog-empty span {
  color: var(--muted);
}

.featured-collection {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  min-height: 220px;
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid rgba(246, 221, 176, 0.32);
  background:
    linear-gradient(90deg, rgba(255, 240, 215, 0.92), rgba(245, 223, 196, 0.74)),
    radial-gradient(circle at 85% 20%, rgba(216, 175, 104, 0.24), transparent 22rem);
  color: #271018;
}

.featured-collection .eyebrow,
.featured-collection h3 {
  color: #3a142d;
}

.featured-collection p:not(.eyebrow) {
  max-width: 700px;
  margin: 12px 0 20px;
  color: #2e1824;
  line-height: 1.65;
}

.phoenix-emblem {
  width: min(100%, 240px);
  aspect-ratio: 1.22;
  justify-self: center;
  background:
    radial-gradient(circle at 56% 36%, #f7d48e 0 12px, transparent 13px),
    radial-gradient(ellipse at 45% 54%, transparent 0 34%, #a65a24 35% 38%, transparent 39%),
    radial-gradient(ellipse at 38% 63%, transparent 0 30%, #d8a04d 31% 35%, transparent 36%),
    conic-gradient(from -20deg at 62% 46%, transparent 0 22%, #8a451e 23% 32%, #f0c36e 33% 43%, transparent 44% 100%),
    linear-gradient(135deg, #4b1236, #bd7a3d);
  clip-path: polygon(6% 88%, 30% 28%, 52% 56%, 88% 12%, 70% 62%, 95% 74%, 62% 74%, 48% 94%, 36% 74%);
  filter: drop-shadow(0 18px 24px rgba(51, 10, 40, 0.28));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 18px;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(140px, 180px));
  gap: 14px;
  max-width: 1040px;
  margin: 18px auto 0;
  padding: 14px;
  border: 1px solid rgba(246, 221, 176, 0.22);
  border-radius: 8px;
  background: rgba(18, 4, 16, 0.48);
}

.shop-toolbar label {
  display: grid;
  gap: 7px;
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-toolbar input,
.shop-toolbar select {
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(246, 221, 176, 0.42);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(16, 4, 14, 0.72);
}

.shop-toolbar option {
  color: #21081b;
}

.filter-chip {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(246, 221, 176, 0.44);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(35, 6, 30, 0.68);
  cursor: pointer;
}

.filter-chip.active {
  color: #2b0624;
  background: var(--bright-gold);
}

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

.live-product-grid,
.product-status {
  grid-column: 1 / -1;
}

.live-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.product-status {
  min-height: 34px;
  color: var(--bright-gold);
  text-align: center;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(246, 221, 176, 0.32);
  background: rgba(20, 5, 18, 0.56);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.product-card.is-hidden {
  display: none;
}

.product-visual {
  width: 118px;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 221, 176, 0.34);
  background-color: #2d0b26;
  background-repeat: no-repeat;
}

.product-photo {
  width: 118px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(246, 221, 176, 0.34);
  background: #2d0b26;
}

.product-photo-empty,
.admin-image-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.live-card {
  align-items: stretch;
}

.ecommerce-card {
  min-height: 0;
  align-items: stretch;
  border-color: rgba(246, 221, 176, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(43, 8, 35, 0.94), rgba(13, 3, 12, 0.96)),
    radial-gradient(circle at 0% 0%, rgba(246, 221, 176, 0.16), transparent 15rem);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ecommerce-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 221, 176, 0.52);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
}

.product-media-button {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 4px;
  overflow: hidden;
  background: #2d0b26;
  cursor: pointer;
}

.product-media-button .product-photo,
.product-media-button .product-photo-empty {
  width: 100%;
  height: 100%;
  min-height: 240px;
  aspect-ratio: 1 / 1.02;
  border: 0;
  object-fit: cover;
}

.product-media-button .hover-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 200ms ease, transform 280ms ease;
}

.product-video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 200ms ease, transform 280ms ease;
}

.product-media-button:hover .hover-photo,
.product-media-button:hover .product-video-preview {
  opacity: 1;
  transform: scale(1.03);
}

.product-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.product-badges b {
  padding: 4px 7px;
  border: 1px solid rgba(246, 221, 176, 0.38);
  color: #22061d;
  background: rgba(246, 221, 176, 0.94);
  font-size: 0.62rem;
  line-height: 1;
  text-transform: uppercase;
}

.product-badges b.tone-rose {
  color: #ffe1eb;
  border-color: rgba(255, 170, 205, 0.75);
  background: rgba(128, 31, 70, 0.84);
}

.product-badges b.tone-emerald {
  color: #e9fff4;
  border-color: rgba(112, 229, 170, 0.7);
  background: rgba(20, 92, 64, 0.82);
}

.product-badges b.tone-plum {
  color: var(--bright-gold);
  border-color: rgba(216, 175, 104, 0.72);
  background: rgba(51, 8, 46, 0.88);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
  text-align: left;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(216, 175, 104, 0.38);
  border-radius: 8px;
  background: rgba(36, 8, 31, 0.72);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card small,
.blog-card h2,
.blog-card p {
  display: block;
  margin: 0;
  padding-inline: 18px;
}

.blog-card small {
  padding-top: 16px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.blog-card h2 {
  padding-top: 8px;
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.blog-card p {
  padding-top: 8px;
  padding-bottom: 18px;
  color: var(--muted);
  line-height: 1.65;
}

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

.section-order-builder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px dashed rgba(216, 175, 104, 0.45);
  border-radius: 8px;
  background: rgba(17, 4, 15, 0.46);
}

.section-order-chip {
  padding: 9px 12px;
  border: 1px solid rgba(216, 175, 104, 0.44);
  border-radius: 999px;
  color: var(--bright-gold);
  background: rgba(71, 14, 57, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: grab;
}

.section-product-row {
  margin-top: clamp(18px, 3vw, 28px);
}

.quick-view-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 221, 176, 0.36);
  color: var(--bright-gold);
  background: rgba(12, 3, 11, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-media-button:hover .quick-view-label {
  opacity: 1;
  transform: translateY(0);
}

.product-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.product-copy small {
  color: rgba(246, 221, 176, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-copy .review-summary {
  color: rgba(255, 241, 213, 0.62);
  font-size: 0.76rem;
  text-transform: none;
  letter-spacing: 0;
}

.product-copy strong {
  color: var(--cream);
  font-size: 1rem;
}

.product-copy em {
  color: #8ee0a5;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.product-copy em.limited-stock {
  color: #ffd280;
}

.live-card del {
  margin-left: 6px;
  color: rgba(255, 241, 213, 0.58);
}

.order-link {
  width: auto;
  min-height: 34px;
  margin-top: 12px;
  padding: 0 16px;
  font-size: 0.96rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.product-actions button,
.product-actions a,
.quantity-tools button,
.commerce-row > button,
.account-tabs button,
.auth-switch,
.auth-close {
  border: 1px solid rgba(246, 221, 176, 0.34);
  color: var(--cream);
  background: rgba(60, 12, 44, 0.72);
  cursor: pointer;
}

.product-actions button,
.product-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 calc(50% - 8px);
  padding: 0 10px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.product-actions button:first-child,
.product-actions button[data-buy-now],
.product-actions button[data-detail-buy] {
  color: #24071e;
  background: var(--bright-gold);
}

.product-help-link {
  display: inline-flex;
  justify-content: center;
  min-height: 36px;
  align-items: center;
  margin-top: 4px;
  border: 1px solid rgba(37, 211, 102, 0.38);
  border-radius: 4px;
  color: #dbffe6;
  background: rgba(18, 140, 63, 0.2);
  font-size: 0.84rem;
  font-weight: 800;
}

.necklace-visual {
  background:
    radial-gradient(circle at 50% 68%, #fff5df 0 15px, #d6a74e 16px 20px, transparent 21px),
    radial-gradient(ellipse at 50% 20%, transparent 42%, #f1cf84 43% 45%, transparent 46%),
    radial-gradient(circle at 28% 72%, #a54488 0 8px, transparent 9px),
    linear-gradient(135deg, #3a0e32, #190616);
}

.ring-visual {
  background:
    radial-gradient(circle at 51% 48%, #b65aa0 0 13px, #f0c36e 14px 20px, transparent 21px),
    radial-gradient(ellipse at 50% 54%, transparent 38%, #d8af68 39% 45%, transparent 46%),
    linear-gradient(135deg, #3a0e32, #1b0718);
}

.bracelet-visual {
  background:
    radial-gradient(circle at 50% 52%, transparent 34%, #f0c36e 35% 40%, transparent 41%),
    radial-gradient(circle at 36% 64%, #fff5df 0 10px, transparent 11px),
    radial-gradient(circle at 66% 64%, #fff5df 0 10px, transparent 11px),
    linear-gradient(135deg, #421039, #1b0718);
}

.product-card p {
  margin: 0 0 6px;
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
}

.product-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.buyer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
  color: var(--bright-gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.buyer-trust span,
.buyer-trust a {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(246, 221, 176, 0.26);
  background: rgba(19, 4, 16, 0.56);
  text-align: center;
}

.buyer-trust a {
  color: var(--bright-gold);
}

.dynamic-collections {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.collection-block {
  padding-top: 10px;
  border-top: 1px solid rgba(246, 221, 176, 0.2);
}

.mini-product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mini-product-row button {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(246, 221, 176, 0.22);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  cursor: pointer;
}

.mini-product-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.mini-product-row strong {
  color: var(--bright-gold);
}

.mini-product-row span {
  color: var(--muted);
}

.shop-toast {
  position: fixed;
  left: 50%;
  bottom: 78px;
  z-index: 80;
  max-width: min(92vw, 360px);
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(246, 221, 176, 0.42);
  color: #26061f;
  background: var(--bright-gold);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.shop-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.premium-empty-state {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  min-height: 280px;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid rgba(246, 221, 176, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(55, 9, 44, 0.86), rgba(16, 4, 14, 0.94)),
    radial-gradient(circle at 12% 20%, rgba(246, 221, 176, 0.18), transparent 18rem);
}

.premium-empty-state img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 18px rgba(246, 221, 176, 0.24));
}

.premium-empty-state h3 {
  margin-bottom: 12px;
  color: var(--bright-gold);
}

.premium-empty-state span,
.premium-empty-state small {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.premium-empty-state small {
  margin-top: 10px;
  color: var(--bright-gold);
  font-weight: 800;
}

.luxury-assurance-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: clamp(30px, 6vw, 58px) clamp(16px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 4, 16, 0.82), rgba(55, 11, 44, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(246, 221, 176, 0.14), transparent 20rem);
}

.assurance-copy h2 {
  max-width: 520px;
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 5.6vw, 4.8rem);
  font-style: normal;
  font-weight: 700;
  line-height: 0.9;
  text-transform: none;
  text-shadow: 0 0 24px rgba(246, 221, 176, 0.22), 0 5px 22px rgba(0, 0, 0, 0.42);
}

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

.assurance-grid article,
.account-benefits span,
.detail-trust span {
  border: 1px solid rgba(246, 221, 176, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.assurance-grid article {
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 22px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 18px 42px rgba(0, 0, 0, 0.18);
}

.assurance-grid article::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 221, 176, 0.32);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 221, 176, 0.16), transparent 68%);
}

.assurance-grid strong {
  color: var(--bright-gold);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assurance-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
}

.brand-story-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(246, 221, 176, 0.3);
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.76), rgba(18, 5, 16, 0.86)),
    radial-gradient(circle at 90% 0%, rgba(216, 175, 104, 0.14), transparent 16rem);
}

.brand-story-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  text-align: center;
}

.lookbook-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(246, 221, 176, 0.3);
  background: rgba(245, 223, 196, 0.92);
  color: #301322;
}

.lookbook-shot {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.shot-one {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 235, 204, 0.95) 0 18px, transparent 19px),
    radial-gradient(circle at 51% 38%, #8e654c 0 34px, transparent 35px),
    radial-gradient(ellipse at 50% 80%, #f3ddc9 0 46%, transparent 47%),
    linear-gradient(135deg, #7a5847, #2b1028);
}

.shot-two {
  background:
    radial-gradient(circle at 53% 28%, rgba(255, 235, 204, 0.95) 0 19px, transparent 20px),
    radial-gradient(circle at 48% 36%, #8b4a37 0 38px, transparent 39px),
    radial-gradient(ellipse at 52% 79%, #d8a780 0 48%, transparent 49%),
    linear-gradient(135deg, #b98561, #2b1028);
}

.shot-three {
  background:
    radial-gradient(circle at 49% 29%, rgba(255, 235, 204, 0.96) 0 18px, transparent 19px),
    radial-gradient(circle at 54% 38%, #7b382c 0 38px, transparent 39px),
    radial-gradient(ellipse at 52% 80%, #c79070 0 48%, transparent 49%),
    linear-gradient(135deg, #8e5c52, #2b1028);
}

.lookbook-gallery p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 16px;
  color: #321323;
  background: rgba(255, 241, 213, 0.86);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-style: italic;
  font-weight: 700;
  text-align: center;
}

.journal-panel {
  display: grid;
  align-content: center;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(246, 221, 176, 0.52);
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.88), rgba(26, 6, 23, 0.9)),
    radial-gradient(circle at 80% 10%, rgba(216, 175, 104, 0.16), transparent 12rem);
  text-align: center;
}

.journal-panel h3 {
  color: var(--bright-gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.journal-panel a:not(.button) {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
}

.journal-panel a:not(.button)::before {
  content: "+ ";
  color: var(--bright-gold);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 20px;
  padding: clamp(34px, 6vw, 66px) clamp(18px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(246, 221, 176, 0.08), transparent 18%, transparent 82%, rgba(246, 221, 176, 0.08)),
    radial-gradient(circle at 10% 20%, rgba(216, 175, 104, 0.16), transparent 12rem),
    radial-gradient(circle at 90% 75%, rgba(126, 45, 98, 0.28), transparent 16rem),
    rgba(33, 6, 29, 0.82);
  text-align: center;
}

.track-order-section {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 6vw, 66px) clamp(18px, 5vw, 58px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 10%, rgba(246, 221, 176, 0.1), transparent 18rem),
    rgba(18, 4, 16, 0.38);
}

.track-order-section .shop-heading {
  margin-top: 8px;
}

.track-result:empty {
  display: none;
}

.track-order-page {
  display: grid;
  gap: 18px;
}

.track-order-list {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.track-order-list .panel-head h2 {
  margin: 0;
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.shop-order-section {
  padding: 0 clamp(16px, 4vw, 44px) 34px;
  border-bottom: 1px solid var(--line);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(246, 221, 176, 0.3);
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.82), rgba(18, 5, 16, 0.88)),
    radial-gradient(circle at 88% 0%, rgba(216, 175, 104, 0.14), transparent 14rem);
}

.order-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.order-form span {
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(246, 221, 176, 0.48);
  border-radius: 3px;
  color: var(--cream);
  background: rgba(20, 5, 18, 0.76);
  outline: none;
}

.order-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.order-wide,
.order-form .button,
.order-form .form-note {
  grid-column: 1 / -1;
}

.account-gate,
.account-dashboard,
.auth-box {
  border: 1px solid rgba(246, 221, 176, 0.3);
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.84), rgba(18, 5, 16, 0.9)),
    radial-gradient(circle at 88% 0%, rgba(216, 175, 104, 0.14), transparent 14rem);
}

.account-gate {
  display: grid;
  gap: 16px;
  place-items: center;
  padding: clamp(22px, 4vw, 34px);
  text-align: center;
}

.account-gate p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.account-dashboard {
  padding: clamp(14px, 3vw, 24px);
}

.is-hidden {
  display: none !important;
}

.account-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.account-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
}

.account-tabs button.active {
  color: #2b0624;
  background: var(--bright-gold);
}

.account-panel {
  display: none;
}

.account-panel.active {
  display: grid;
  gap: 14px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.panel-head strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
}

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

.commerce-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.cart-control-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(246, 221, 176, 0.18);
  background: rgba(255, 246, 225, 0.055);
}

.cart-control-bar span {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
}

.cart-control-bar button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 3px;
  color: var(--bright-gold);
  background: rgba(60, 12, 44, 0.72);
  cursor: pointer;
}

.cart-line-item {
  align-items: stretch;
}

.cart-line-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.commerce-row strong {
  display: block;
  color: var(--bright-gold);
}

.commerce-row span,
.commerce-row small,
.commerce-empty {
  color: var(--muted);
}

.account-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 18px;
}

.account-benefits span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--bright-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quantity-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.cart-quantity-tools {
  min-width: 178px;
}

.cart-quantity-tools b {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 221, 176, 0.24);
  color: var(--bright-gold);
  background: rgba(255, 255, 255, 0.055);
}

.quantity-tools button,
.commerce-row > button {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 3px;
}

.cart-quantity-tools .qty-button {
  width: 38px;
  min-height: 38px;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.cart-quantity-tools .remove-button {
  flex: 1 1 100%;
  min-height: 38px;
  color: #ffd7d7;
  border-color: rgba(255, 180, 180, 0.36);
}

.checkout-form,
.compact-form {
  margin-top: 8px;
}

.payment-proof-field small {
  color: var(--muted);
  font-size: 0.82rem;
}

.coupon-field > span:last-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.coupon-field button {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  color: var(--bright-gold);
  background: rgba(60, 12, 44, 0.72);
  cursor: pointer;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.checkout-summary p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}

.checkout-summary .total {
  padding-top: 8px;
  border-top: 1px solid rgba(246, 221, 176, 0.18);
  color: var(--bright-gold);
  font-weight: 900;
}

.checkout-summary small {
  color: rgba(255, 241, 213, 0.62);
}

.order-detail-card {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(246, 221, 176, 0.28);
  border-radius: 8px;
  background: rgba(18, 4, 16, 0.62);
}

.order-detail-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.order-detail-card header div,
.order-detail-grid p,
.order-detail-items {
  display: grid;
  gap: 4px;
  margin: 0;
}

.order-detail-card span {
  color: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-detail-card strong,
.order-detail-card em {
  color: var(--cream);
  font-style: normal;
  overflow-wrap: anywhere;
}

.order-detail-card mark {
  padding: 5px 9px;
  border-radius: 999px;
  color: #2b0624;
  background: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.amazon-track {
  display: grid;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(246, 221, 176, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.amazon-track.cancelled {
  border-color: rgba(255, 138, 138, 0.38);
  background: rgba(120, 20, 35, 0.18);
}

.track-headline {
  display: grid;
  gap: 4px;
}

.track-headline strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.track-headline span {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}

.track-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.track-progress::before,
.track-progress::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 999px;
  background: rgba(246, 221, 176, 0.2);
}

.track-progress::after {
  right: calc(10% + (80% * (1 - var(--progress, 0))));
  background: linear-gradient(90deg, #d8af68, #f6ddb0);
}

.track-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.track-step i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(246, 221, 176, 0.36);
  border-radius: 999px;
  color: var(--muted);
  background: #21061d;
  font-style: normal;
  font-weight: 900;
}

.track-step.done i,
.track-step.current i {
  border-color: var(--bright-gold);
  color: #2b0624;
  background: var(--bright-gold);
}

.track-step strong {
  color: var(--cream);
  font-size: 0.82rem;
}

.track-step span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

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

.order-detail-items {
  border-top: 1px solid rgba(246, 221, 176, 0.16);
  padding-top: 10px;
}

.order-detail-items p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.order-details-slot {
  grid-column: 1 / -1;
}

.payment-method-details {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.26);
  border-radius: 8px;
  background: rgba(20, 5, 18, 0.56);
}

.payment-method-details:empty {
  display: none;
}

.payment-method-details strong {
  color: var(--bright-gold);
}

.payment-method-details p {
  display: grid;
  grid-template-columns: minmax(95px, auto) minmax(0, 1fr);
  gap: 8px;
  margin: 0;
  color: var(--muted);
}

.payment-method-details em,
.payment-method-details a {
  color: var(--cream);
  font-style: normal;
  overflow-wrap: anywhere;
}

.payment-qr-image {
  width: min(220px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(246, 221, 176, 0.28);
  border-radius: 8px;
  background: #fff;
}

.crypto-network-picker {
  display: grid;
  gap: 7px;
}

.crypto-payment-box {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.crypto-payment-box .payment-qr-image {
  width: 150px;
}

.crypto-wallet-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.crypto-wallet-copy span,
.crypto-warning span {
  color: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crypto-wallet-copy code {
  display: block;
  padding: 10px;
  border: 1px solid rgba(246, 221, 176, 0.2);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(20, 5, 18, 0.76);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.crypto-wallet-copy button {
  justify-self: start;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.36);
  border-radius: 999px;
  color: #2b0624;
  background: var(--bright-gold);
  font-size: 0.74rem;
  font-weight: 900;
  cursor: pointer;
}

.crypto-warning {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(246, 221, 176, 0.18);
  border-radius: 8px;
  background: rgba(216, 175, 104, 0.08);
}

.crypto-warning em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.order-track-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 14px;
}

.order-track-form label {
  display: grid;
  gap: 6px;
}

.order-track-form span {
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-track-form input {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.48);
  color: var(--cream);
  background: rgba(20, 5, 18, 0.76);
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.checkout-steps span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 221, 176, 0.24);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-steps span.active {
  color: #2b0624;
  background: var(--bright-gold);
}

.checkout-panel {
  display: none;
  grid-column: 1 / -1;
  gap: 12px;
}

.checkout-panel.active {
  display: grid;
}

.checkout-address-select,
.checkout-step-actions {
  grid-column: 1 / -1;
}

.checkout-step-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  justify-items: end;
  pointer-events: none;
  visibility: hidden;
}

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

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 1, 7, 0.68);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.cart-drawer-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  border-left: 1px solid rgba(246, 221, 176, 0.36);
  color: var(--cream);
  background:
    radial-gradient(circle at 100% 0%, rgba(246, 221, 176, 0.14), transparent 16rem),
    linear-gradient(180deg, rgba(44, 8, 35, 0.98), rgba(12, 2, 10, 0.98));
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.46);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

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

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(16px, 4vw, 28px);
  border-bottom: 1px solid rgba(246, 221, 176, 0.24);
}

.cart-drawer-head h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.cart-drawer-body {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px clamp(14px, 4vw, 24px) 28px;
  overflow-y: auto;
}

.cart-drawer-block {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(246, 221, 176, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.cart-drawer-block h3 {
  color: var(--bright-gold);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.drawer-address-form,
.cart-drawer .checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cart-drawer .order-wide,
.cart-drawer .coupon-field,
.cart-drawer .payment-proof-field,
.cart-drawer .checkout-summary,
.cart-drawer .button,
.cart-drawer .form-note,
.cart-drawer .checkout-steps {
  grid-column: 1 / -1;
}

.cart-drawer label {
  display: grid;
  gap: 6px;
}

.cart-drawer label > span:first-child {
  color: var(--bright-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-drawer input,
.cart-drawer select,
.cart-drawer textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.38);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(13, 3, 12, 0.82);
  outline: none;
}

.cart-drawer textarea {
  min-height: 78px;
  padding-top: 10px;
}

.cart-drawer .coupon-field > span:last-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.cart-drawer .coupon-field button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--gold);
  color: var(--bright-gold);
  background: rgba(246, 221, 176, 0.08);
  cursor: pointer;
}

.cart-drawer .checkout-summary {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.2);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.16);
}

.cart-drawer .checkout-summary p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}

.cart-drawer .checkout-summary .total {
  color: var(--bright-gold);
  font-weight: 900;
}

body.drawer-open {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1120;
  display: grid;
  place-items: start center;
  padding: clamp(16px, 5vw, 54px);
  pointer-events: none;
  visibility: hidden;
}

.search-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 1, 7, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.search-overlay.is-open .search-overlay-backdrop {
  opacity: 1;
}

.search-overlay-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100dvh - 32px);
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(246, 221, 176, 0.36);
  border-radius: 12px;
  color: var(--cream);
  background:
    radial-gradient(circle at 100% 0%, rgba(246, 221, 176, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(45, 8, 36, 0.98), rgba(12, 2, 10, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  transform: translateY(-18px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
  overflow: hidden;
}

.search-overlay.is-open .search-overlay-panel {
  transform: translateY(0);
  opacity: 1;
}

.search-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.search-overlay-head h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.search-overlay-input {
  display: grid;
  gap: 7px;
}

.search-overlay-input span {
  color: var(--bright-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-overlay-input input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(246, 221, 176, 0.46);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(13, 3, 12, 0.82);
  font-size: 1rem;
  outline: none;
}

.search-results-panel-static {
  max-height: min(62dvh, 520px);
}

.auth-dialog,
.success-dialog,
.product-dialog {
  width: min(94vw, 460px);
  max-width: calc(100vw - 20px);
  max-height: calc(100dvh - 20px);
  padding: 0;
  border: 0;
  color: var(--cream);
  background: transparent;
  overflow: visible;
}

.auth-dialog[open],
.auth-dialog.is-open,
.auth-modal-check:checked ~ .auth-dialog,
.auth-modal-check:checked ~ .page-frame .auth-dialog,
.success-dialog[open],
.success-dialog.is-open,
.product-dialog[open],
.product-dialog.is-open {
  display: grid;
}

.auth-dialog.is-open:not([open]),
.auth-modal-check:checked ~ .auth-dialog:not([open]),
.auth-modal-check:checked ~ .page-frame .auth-dialog:not([open]),
.success-dialog.is-open:not([open]),
.product-dialog.is-open:not([open]) {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
  max-height: calc(100dvh - 20px);
}

.auth-modal-check:checked ~ .auth-dialog {
  display: grid !important;
}

.auth-modal-check:checked ~ .page-frame .auth-dialog {
  display: grid !important;
}

.auth-dialog::backdrop,
.success-dialog::backdrop,
.product-dialog::backdrop {
  background: rgba(10, 2, 9, 0.72);
  backdrop-filter: blur(5px);
}

.auth-box,
.success-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: 100%;
  max-height: calc(100dvh - 20px);
  padding: 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.success-card {
  justify-items: center;
  border: 1px solid rgba(246, 221, 176, 0.3);
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.94), rgba(18, 5, 16, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(216, 175, 104, 0.2), transparent 16rem);
  text-align: center;
}

.success-logo {
  width: min(220px, 70vw);
  height: 112px;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 14px rgba(246, 221, 176, 0.24));
}

.product-dialog {
  width: min(94vw, 900px);
  max-width: calc(100vw - 20px);
}

.product-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 22px;
  width: 100%;
  max-height: calc(100dvh - 20px);
  padding: 24px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.96), rgba(18, 5, 16, 0.98)),
    radial-gradient(circle at 18% 0%, rgba(216, 175, 104, 0.18), transparent 18rem);
  box-shadow: var(--shadow);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.product-detail-media {
  display: grid;
  grid-template-rows: auto auto;
  gap: 12px;
}

.product-gallery-main img,
.product-gallery-main video,
.product-gallery-main .product-photo-empty {
  width: 100%;
  min-height: 360px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(246, 221, 176, 0.28);
  background: #2d0b26;
}

.product-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 108px;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.product-gallery-strip button {
  display: grid;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(246, 221, 176, 0.22);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.product-gallery-strip button.active {
  border-color: var(--bright-gold);
  color: var(--bright-gold);
}

.product-gallery-strip img,
.product-gallery-strip video,
.product-gallery-strip .product-photo-empty {
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  object-fit: cover;
  border: 0;
  background: #2d0b26;
}

.product-gallery-strip span {
  font-size: 0.72rem;
  font-weight: 800;
}

.order-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.order-timeline span {
  padding: 4px 7px;
  border: 1px solid rgba(246, 221, 176, 0.2);
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.order-timeline span.active {
  color: #2b0624;
  background: var(--bright-gold);
}

.product-detail-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.product-detail-copy h2 {
  margin: 0;
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.98;
}

.product-detail-copy strong {
  color: var(--cream);
  font-size: 1.25rem;
}

.product-detail-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

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

.detail-trust span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.product-review-box {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-list span {
  padding: 7px 10px;
  border: 1px solid rgba(246, 221, 176, 0.22);
  color: var(--bright-gold);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 800;
}

.review-list {
  display: grid;
  gap: 8px;
}

.review-list article {
  display: grid;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(246, 221, 176, 0.14);
}

.review-list strong {
  color: var(--bright-gold);
}

.review-list span {
  color: var(--cream);
  font-weight: 800;
}

.review-list small,
.product-review-box p,
.product-review-box > small {
  margin: 0;
  color: var(--muted);
}

.review-form {
  display: grid;
  gap: 8px;
}

.review-form label {
  display: grid;
  gap: 5px;
}

.review-form span {
  color: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  color: var(--cream);
  background: rgba(20, 5, 18, 0.76);
}

.product-page-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 42px);
}

.product-page-brand {
  width: fit-content;
  margin-bottom: 24px;
}

.product-page-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: start;
}

.product-page-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-page-media img,
.product-page-media video,
.product-page-media .product-photo-empty {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(246, 221, 176, 0.26);
  background: #2d0b26;
}

.product-page-copy {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(246, 221, 176, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.9), rgba(18, 5, 16, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(216, 175, 104, 0.16), transparent 16rem);
}

.product-page-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.product-page-copy > strong {
  color: var(--bright-gold);
  font-size: 1.4rem;
}

.product-page-copy > p {
  color: var(--muted);
  line-height: 1.7;
}

.seo-page {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 70px) clamp(16px, 4vw, 34px);
}

.page-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 999px;
  color: var(--bright-gold);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-back-link::before {
  content: "<";
  margin-right: 8px;
  font-size: 1rem;
  line-height: 1;
}

.seo-page h1 {
  margin-top: 28px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.seo-page p {
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.6;
}

.story-page-body {
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 2.5vw, 1.65rem);
  line-height: 1.68;
  white-space: pre-line;
  margin: 22px 0 28px;
}

.site-page-body {
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 2.5vw, 1.65rem);
  line-height: 1.68;
  white-space: pre-line;
  margin: 22px 0 0;
}

.contact-direct-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact-direct-card a {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(246, 221, 176, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.contact-direct-card span {
  color: var(--bright-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct-card strong {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.success-details {
  width: 100%;
  display: grid;
  gap: 10px;
  margin: 4px 0;
}

.success-details p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.success-details span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.success-details strong {
  color: var(--bright-gold);
  word-break: break-word;
}

.success-note {
  margin: 0;
  color: var(--muted);
}

.order-success-card {
  width: min(94vw, 520px);
}

.auth-box label {
  display: grid;
  gap: 7px;
}

.auth-box span {
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-box input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(246, 221, 176, 0.48);
  color: var(--cream);
  background: rgba(20, 5, 18, 0.76);
}

.phone-field {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px;
}

.phone-field select {
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid rgba(246, 221, 176, 0.48);
  color: var(--cream);
  background: rgba(20, 5, 18, 0.76);
}

.phone-field option {
  color: #1f0919;
}

@media (max-width: 520px) {
  .phone-field {
    grid-template-columns: 1fr;
  }
}

.auth-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
}

.auth-switch {
  min-height: 38px;
}

.visit-section h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--bright-gold);
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  font-style: normal;
  line-height: 0.95;
  text-shadow: 0 0 24px rgba(246, 221, 176, 0.22), 0 5px 22px rgba(0, 0, 0, 0.38);
}

.visit-section p:not(.form-note) {
  margin: 12px auto 0;
  color: #f0d9b3;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.12rem, 2.1vw, 1.48rem);
  font-style: italic;
  font-weight: 600;
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  width: min(980px, 100%);
}

.signup-form label {
  min-width: 0;
}

.signup-form span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(246, 221, 176, 0.64);
  border-radius: 4px;
  color: #2d1022;
  background: var(--paper);
  font-size: 1rem;
  outline: none;
}

.signup-form .phone-field {
  position: static;
  width: auto;
  height: auto;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 8px;
  overflow: visible;
}

.signup-form .button {
  align-self: end;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--bright-gold);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 58px) 18px;
  color: var(--cream);
  background: rgba(17, 4, 15, 0.62);
}

.site-footer nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  align-items: center;
}

.site-footer a {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
}

.social-links a,
.social-links .social-link-disabled {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(246, 221, 176, 0.48);
  border-radius: 50%;
  color: var(--bright-gold);
  background: rgba(246, 221, 176, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--bright-gold);
  background: rgba(246, 221, 176, 0.14);
}

.social-links .social-link-disabled {
  opacity: 0.58;
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label="Facebook"] svg,
.social-links .social-link-disabled[aria-label*="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 241, 213, 0.64);
  text-align: center;
}

@media (max-width: 860px) {
  .page-frame {
    border: 0;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
    gap: 10px;
    position: sticky;
  }

  .nav-toggle {
    grid-column: 1;
    grid-row: 1;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    gap: 0;
    padding: 0;
    font-size: 0;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(246, 221, 176, 0.34);
    border-radius: 4px;
    object-fit: cover;
    object-position: center 18%;
  }

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 40px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    display: none;
    width: auto;
    max-height: min(68vh, 520px);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 4, 16, 0.98);
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.open {
    display: grid;
    gap: 4px;
  }

  .site-nav a,
  .site-nav button,
  .site-nav label {
    min-height: 42px;
    padding: 0 12px;
    justify-content: center;
    text-align: center;
  }

  .nav-search {
    width: 100%;
    order: -1;
  }

  .nav-search input {
    min-height: 44px;
    text-align: center;
  }

  .header-tools {
    grid-column: 3;
    grid-row: 1;
    gap: 5px;
    min-width: 0;
  }

  .header-mini-link {
    min-width: 44px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .whatsapp-link {
    display: inline-grid;
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 72px);
    align-items: end;
  }

  .hero-image {
    object-position: 34% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(18, 4, 16, 0.94) 0%, rgba(25, 5, 22, 0.74) 45%, rgba(20, 4, 18, 0.1) 100%),
      linear-gradient(90deg, rgba(20, 4, 18, 0.04), rgba(20, 4, 18, 0.2));
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 34px 14px 58px;
    text-align: center;
    transform: none;
  }

  h1.serrabird-wordmark {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 4.4rem);
    letter-spacing: 0.025em;
    line-height: 0.92;
  }

  .featured-categories,
  .featured-collection,
  .premium-spotlight,
  .featured-category-grid,
  .best-seller-grid,
  .story-behind-section,
  .lookbook-grid,
  .visit-section,
  .luxury-assurance-section,
  .premium-empty-state {
    grid-template-columns: 1fr;
  }

  .phoenix-emblem {
    max-width: 190px;
  }

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

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

  .shop-toolbar,
  .buyer-trust,
  .product-detail,
  .product-page-detail {
    grid-template-columns: 1fr;
  }

  .product-actions button,
  .product-actions a {
    flex: 1 1 min(160px, 100%);
  }

  .account-dashboard,
  .auth-box,
  .success-card,
  .product-detail {
    width: 100%;
    max-width: 100%;
  }

  .product-page-copy {
    position: static;
  }

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

  .premium-empty-state {
    text-align: center;
  }

  .premium-empty-state img {
    max-width: 260px;
    justify-self: center;
  }

  .premium-spotlight img {
    min-height: 280px;
  }

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

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

  .product-gallery-main img,
  .product-gallery-main video,
  .product-gallery-main .product-photo-empty {
    min-height: 280px;
  }

  .lookbook-gallery {
    grid-template-columns: 1fr;
  }

  .lookbook-shot {
    min-height: 180px;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .signup-form .phone-field {
    grid-template-columns: 1fr;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .order-wide,
  .order-form .button,
  .order-form .form-note {
    grid-column: 1;
  }

  .commerce-row,
  .panel-head {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .quantity-tools {
    justify-content: flex-start;
  }

  .cart-control-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-control-bar button {
    width: 100%;
  }

  .cart-quantity-tools {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    min-width: 0;
    width: 100%;
  }

  .cart-quantity-tools .qty-button,
  .cart-quantity-tools b {
    width: 100%;
    min-height: 42px;
  }

  .cart-quantity-tools .remove-button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 520px) {
  .announcement {
    padding: 9px 10px;
    font-size: 0.95rem;
  }

  .site-header {
    gap: 8px;
    min-height: 68px;
    padding: 8px 10px;
  }

  .nav-toggle {
    width: 44px;
    height: 42px;
  }

  .brand {
    gap: 0;
    padding: 0;
    font-size: 0;
    letter-spacing: 0.015em;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center 18%;
  }

  .brand::before,
  .brand::after {
    left: 10px;
    right: 10px;
  }

  .header-tools {
    gap: 4px;
  }

  .whatsapp-link {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .header-mini-link {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0 6px;
  }

  .header-mini-link span {
    min-width: 15px;
    margin-left: 2px;
    padding: 1px 4px;
    font-size: 0.6rem;
  }

  .hero {
    min-height: calc(100vh - 68px);
  }

  .hero-content {
    padding: 28px 12px 70px;
  }

  .hero-proof span {
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 3.65rem);
  }

  h1.serrabird-wordmark {
    font-size: clamp(2.18rem, 10.5vw, 2.95rem);
    letter-spacing: 0.01em;
    line-height: 0.95;
    white-space: nowrap;
  }

  .hero .serrabird-wordmark {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 78px;
    font-size: clamp(1.05rem, 5.2vw, 1.25rem);
    line-height: 1.35;
  }

  .hero-actions {
    bottom: 18px;
    width: calc(100% - 24px);
    flex-direction: column;
    gap: 9px;
    justify-content: center;
    margin-top: 0;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .cart-drawer-panel {
    width: 100%;
    border-left: 0;
  }

  .drawer-address-form,
  .cart-drawer .checkout-form {
    grid-template-columns: 1fr;
  }

  .cart-drawer .coupon-field > span:last-child {
    grid-template-columns: 1fr;
  }

  .premium-section,
  .lookbook-section,
  .featured-categories,
  .best-seller-section,
  .shop-order-section,
  .luxury-assurance-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ornate-title {
    gap: 10px;
  }

  .featured-categories,
  .featured-collection {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .premium-spotlight {
    gap: 14px;
    margin-top: 20px;
    padding: 12px;
  }

  .premium-spotlight img {
    min-height: 230px;
  }

  .premium-spotlight-copy {
    padding: 4px;
  }

  .premium-fomo {
    padding: 12px;
  }

  .featured-category-grid {
    grid-template-columns: 1fr;
  }

  .featured-category-card {
    min-height: 230px;
  }

  .best-seller-grid {
    grid-template-columns: 1fr;
  }

  .best-seller-card {
    min-height: 160px;
  }

  .filter-bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-left: -12px;
    margin-right: -12px;
    padding: 0 12px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .filter-chip {
    flex: 0 0 auto;
  }

  .catalog-category-menu {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-left: -12px;
    margin-right: -12px;
    padding: 0 12px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-category-menu::-webkit-scrollbar {
    display: none;
  }

  .catalog-category-menu button {
    flex: 0 0 auto;
  }

  .catalog-showroom {
    padding: 14px 10px;
  }

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

  .product-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    min-height: 0;
  }

  .product-visual {
    width: 92px;
  }

  .product-photo {
    width: 100%;
  }

  .product-media-button {
    width: 100%;
  }

  .product-media-button .product-photo,
  .product-media-button .product-photo-empty {
    min-height: 230px;
  }

  .product-card p {
    font-size: 1.22rem;
  }

  .product-actions button,
  .product-actions a {
    flex: 1 1 100%;
    padding: 0 8px;
  }

  .checkout-steps {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-form,
  .profile-form,
  .address-form,
  .support-form,
  .return-form,
  .order-track-form,
  .coupon-field > span:last-child,
  .payment-proof-field {
    grid-template-columns: 1fr;
  }

  .account-tabs {
    margin-left: -12px;
    margin-right: -12px;
    padding: 0 12px 12px;
    scrollbar-width: none;
  }

  .account-tabs::-webkit-scrollbar {
    display: none;
  }

  .buyer-trust {
    grid-template-columns: 1fr;
  }

  .assurance-grid article {
    min-height: 0;
    padding: 16px;
  }

  .product-detail {
    padding: 18px 14px;
  }

  .auth-dialog,
  .success-dialog,
  .product-dialog {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }

  .auth-box,
  .success-card {
    gap: 12px;
    max-height: calc(100dvh - 16px);
    padding: 22px 14px 16px;
    border-radius: 10px;
  }

  .auth-box h2,
  .success-card h2 {
    padding-right: 42px;
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 0.96;
  }

  .auth-box label {
    gap: 6px;
  }

  .auth-box input,
  .phone-field select {
    min-height: 46px;
    width: 100%;
    font-size: 16px;
  }

  .password-toggle {
    width: 38px;
    height: 34px;
  }

  .success-logo {
    width: min(170px, 62vw);
    height: 86px;
  }

  .success-details {
    width: 100%;
  }

  .success-details p {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: left;
  }

  .product-dialog {
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
  }

  .product-detail {
    max-height: calc(100dvh - 10px);
    border-radius: 10px;
  }

  .product-detail-copy h2 {
    padding-right: 42px;
    font-size: clamp(1.9rem, 11vw, 2.7rem);
  }

  .product-detail-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .product-gallery-main img,
  .product-gallery-main video,
  .product-gallery-main .product-photo-empty {
    min-height: 210px;
  }

  .product-gallery-strip {
    grid-auto-columns: 76px;
  }

  .detail-trust {
    grid-template-columns: 1fr;
  }

  .order-track-form,
  .coupon-field > span:last-child {
    grid-template-columns: 1fr;
  }

  .product-gallery-main img,
  .product-gallery-main video,
  .product-gallery-main .product-photo-empty {
    min-height: 210px;
  }

  .product-gallery-strip {
    grid-auto-columns: 76px;
  }

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

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

  .visit-section {
    padding: 28px 14px;
  }

  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 175, 104, 0.16), transparent 20rem),
    radial-gradient(circle at 92% 18%, rgba(141, 51, 116, 0.38), transparent 24rem),
    linear-gradient(135deg, #170714, #35082c 52%, #120510);
}

.admin-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px 18px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(24, 5, 21, 0.94), rgba(12, 3, 11, 0.94)),
    radial-gradient(circle at 0% 0%, rgba(246, 221, 176, 0.14), transparent 16rem);
  box-shadow: 18px 0 54px rgba(0, 0, 0, 0.24);
}

.admin-sidebar-actions {
  display: none;
}

.admin-sidebar-backdrop,
.admin-menu-button {
  display: none;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bright-gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.admin-brand .brand-logo {
  width: 96px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

.admin-nav {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.admin-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px 0 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.admin-nav a.active,
.admin-nav a:hover {
  border-color: rgba(246, 221, 176, 0.34);
  color: var(--cream);
  background: rgba(246, 221, 176, 0.08);
  transform: translateX(2px);
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
}

.admin-stats.admin-view.active {
  display: grid;
}

.admin-main {
  min-width: 0;
  padding: clamp(16px, 3vw, 34px);
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(246, 221, 176, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.62), rgba(18, 5, 16, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(246, 221, 176, 0.12), transparent 16rem);
}

.admin-topbar h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.admin-site-link {
  width: auto;
}

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

body.admin-menu-open {
  overflow: hidden;
}

.admin-user,
.admin-auth-copy,
.admin-auth-message {
  margin: 10px 0 0;
  color: var(--muted);
}

.admin-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.admin-auth.is-hidden,
.admin-shell.is-locked,
.admin-form .is-hidden {
  display: none;
}

.admin-auth-card {
  width: min(100%, 460px);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(246, 221, 176, 0.32);
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.9), rgba(18, 5, 16, 0.94)),
    radial-gradient(circle at 88% 0%, rgba(216, 175, 104, 0.18), transparent 14rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.auth-brand {
  justify-self: center;
}

.admin-auth-card h1 {
  font-size: clamp(2.3rem, 8vw, 4rem);
}

.admin-auth-card label {
  display: grid;
  gap: 7px;
}

.admin-auth-card label span {
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-auth-card input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(246, 221, 176, 0.48);
  border-radius: 3px;
  color: var(--cream);
  background: rgba(20, 5, 18, 0.76);
  outline: none;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 58px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 40px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 221, 176, 0.26);
  border-radius: 4px;
  color: var(--bright-gold);
  background: rgba(246, 221, 176, 0.08);
  transform: translateY(-50%);
  cursor: pointer;
}

.password-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.password-toggle .eye-closed,
.password-toggle.is-visible .eye-open {
  display: none;
}

.password-toggle.is-visible .eye-closed {
  display: block;
}

.admin-auth-message[data-tone="error"] {
  color: #ffc4c4;
}

.admin-auth-message[data-tone="success"] {
  color: var(--bright-gold);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.admin-stats.admin-view:not(.active) {
  display: none;
}

.admin-stat,
.admin-panel {
  border: 1px solid rgba(246, 221, 176, 0.28);
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.82), rgba(18, 5, 16, 0.88)),
    radial-gradient(circle at 90% 0%, rgba(216, 175, 104, 0.16), transparent 12rem);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
}

.admin-stat {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-stat.clickable-stat {
  cursor: pointer;
}

.admin-stat.clickable-stat:focus-visible {
  outline: 3px solid rgba(246, 221, 176, 0.5);
  outline-offset: 3px;
}

.admin-stat:hover,
.admin-panel:hover {
  border-color: rgba(246, 221, 176, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.admin-stat:hover {
  transform: translateY(-2px);
}

.admin-stat span,
.admin-row span,
.admin-feed span {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-stat strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.admin-command-center {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(240px, 0.95fr));
  gap: 16px;
  margin-top: 2px;
}

.admin-command-copy,
.admin-health-card {
  min-height: 260px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(246, 221, 176, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.82), rgba(18, 5, 16, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(216, 175, 104, 0.14), transparent 14rem);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.admin-command-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.admin-command-copy h2 {
  max-width: 560px;
  font-style: normal;
}

.admin-command-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.admin-panel-head.compact {
  margin-bottom: 12px;
}

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

.admin-health-grid div,
.admin-health-grid button {
  display: grid;
  text-align: left;
  gap: 4px;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.18);
  color: inherit;
  background: rgba(255, 255, 255, 0.045);
}

.admin-health-grid button {
  cursor: pointer;
}

.admin-health-grid button:hover {
  border-color: rgba(246, 221, 176, 0.48);
  background: rgba(246, 221, 176, 0.08);
}

.admin-health-grid strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.admin-health-grid span,
.admin-health-grid small {
  color: var(--muted);
}

.admin-health-grid span {
  font-weight: 900;
}

.admin-mini-feed {
  display: grid;
  gap: 9px;
}

.admin-mini-feed button {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(246, 221, 176, 0.18);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  cursor: pointer;
}

.admin-mini-feed button:hover {
  border-color: rgba(246, 221, 176, 0.42);
  color: var(--cream);
}

.admin-mini-feed strong {
  color: var(--bright-gold);
}

.admin-mini-feed small {
  color: rgba(255, 241, 213, 0.62);
}

.admin-grid.lower {
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.admin-panel {
  padding: clamp(16px, 2.4vw, 24px);
  overflow: hidden;
  border-radius: 8px;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-style: normal;
}

.admin-badge,
.admin-clear {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 999px;
  color: var(--bright-gold);
  background: rgba(246, 221, 176, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.admin-clear {
  cursor: pointer;
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px minmax(120px, auto);
  gap: 10px;
  margin-bottom: 14px;
}

.admin-filters input,
.admin-filters select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.38);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(20, 5, 18, 0.72);
}

.admin-filters label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(246, 221, 176, 0.24);
  color: var(--bright-gold);
  font-weight: 800;
}

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

.admin-form.compact {
  grid-template-columns: 1fr auto;
}

.admin-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.admin-form label:first-child,
.admin-form .button,
.admin-wide,
.admin-form-note {
  grid-column: 1 / -1;
}

.admin-form label:first-child {
  grid-column: span 2;
}

.admin-form.compact label,
.admin-form.compact .button {
  grid-column: auto;
}

.admin-form span {
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-help {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(246, 221, 176, 0.48);
  border-radius: 3px;
  color: var(--cream);
  background: rgba(20, 5, 18, 0.76);
  outline: none;
}

.admin-upload-box {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 118px;
  place-content: center;
  padding: 18px;
  border: 1px dashed rgba(246, 221, 176, 0.48);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(20, 5, 18, 0.56);
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.admin-upload-box:hover {
  border-color: var(--bright-gold);
  background: rgba(246, 221, 176, 0.08);
  transform: translateY(-1px);
}

.admin-upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-upload-box strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
}

.media-plus-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(246, 221, 176, 0.62);
  border-radius: 50%;
  color: #2b0624;
  background: linear-gradient(135deg, var(--bright-gold), var(--gold));
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.admin-upload-box small {
  color: var(--muted);
}

.admin-image-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
}

.admin-image-preview div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 221, 176, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.admin-image-preview img,
.admin-image-preview video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.admin-video-preview video {
  background: #140713;
}

.admin-image-preview span {
  position: absolute;
  left: 6px;
  bottom: 6px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #2b0624;
  background: var(--bright-gold);
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-media-preview-card button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 241, 213, 0.5);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(20, 5, 18, 0.82);
  cursor: pointer;
}

.admin-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-section-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  border-radius: 8px;
  background: rgba(20, 5, 18, 0.48);
}

.admin-section-picker legend {
  padding: 0 8px;
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-section-picker .admin-help {
  grid-column: 1 / -1;
}

.admin-payment-section {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(246, 221, 176, 0.28);
  border-radius: 8px;
  background: rgba(20, 5, 18, 0.42);
}

.admin-payment-section legend {
  padding: 0 8px;
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.admin-payment-section label:first-child {
  grid-column: auto;
}

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

.admin-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.admin-form-note {
  min-height: 22px;
  margin: 0;
  color: var(--bright-gold);
}

.admin-form-note[data-tone="error"],
.admin-auth-message[data-tone="error"] {
  color: #ffc4c4;
}

.admin-form option {
  color: #1f0919;
}

.admin-table,
.admin-feed,
.admin-leads {
  display: grid;
  gap: 10px;
}

.admin-row,
.admin-feed div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.16);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.admin-row:hover,
.admin-order-row:hover {
  border-color: rgba(246, 221, 176, 0.34);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-1px);
}

.product-admin-row {
  grid-template-columns: 72px minmax(220px, 1fr) 96px minmax(220px, auto);
  align-items: center;
}

.product-admin-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(246, 221, 176, 0.22);
  border-radius: 5px;
}

.admin-image-empty {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(246, 221, 176, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.admin-feed div {
  grid-template-columns: 110px minmax(0, 1fr);
}

.admin-order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.16);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.admin-order-row.is-new-order {
  border-color: rgba(246, 221, 176, 0.48);
  background:
    radial-gradient(circle at 0% 0%, rgba(246, 221, 176, 0.12), transparent 12rem),
    rgba(80, 16, 55, 0.38);
}

.admin-order-row strong em {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  color: #2b0624;
  background: var(--bright-gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  vertical-align: middle;
}

.admin-order-row select {
  min-height: 40px;
  border: 1px solid rgba(246, 221, 176, 0.36);
  color: var(--cream);
  background: rgba(20, 5, 18, 0.76);
}

.admin-order-row button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.3);
  border-radius: 3px;
  color: var(--cream);
  background: rgba(80, 16, 55, 0.62);
  cursor: pointer;
}

.admin-empty {
  margin: 0;
  color: var(--muted);
}

.admin-empty-state {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px 18px;
  border: 1px solid rgba(246, 221, 176, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(35, 7, 30, 0.76), rgba(13, 4, 12, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(246, 221, 176, 0.1), transparent 12rem);
  text-align: center;
}

.admin-empty-state img {
  width: min(190px, 70%);
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.34));
}

.admin-empty-state strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.admin-empty-state span {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.55;
}

.admin-row strong,
.admin-feed strong,
.admin-row small,
.admin-order-row small {
  display: block;
}

.admin-row strong,
.admin-feed strong {
  margin-bottom: 4px;
  color: var(--cream);
}

.admin-row small,
.admin-order-row small {
  color: rgba(255, 241, 213, 0.62);
  font-size: 0.78rem;
}

.admin-row mark {
  padding: 6px 10px;
  border-radius: 999px;
  color: #2b0624;
  background: var(--bright-gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.admin-row button,
.admin-row-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(246, 221, 176, 0.3);
  border-radius: 3px;
  color: var(--cream);
  background: rgba(80, 16, 55, 0.62);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.admin-row button:hover,
.admin-row-actions button:hover,
.admin-order-row button:hover {
  border-color: var(--bright-gold);
  background: rgba(105, 30, 77, 0.78);
  transform: translateY(-1px);
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-inline-reply {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.admin-inline-reply textarea {
  width: 100%;
  min-height: 74px;
  padding: 10px 12px;
  border: 1px solid rgba(246, 221, 176, 0.32);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(20, 5, 18, 0.72);
  resize: vertical;
}

.product-admin-row > div {
  min-width: 0;
}

.product-admin-row strong,
.product-admin-row span,
.product-admin-row small {
  overflow-wrap: anywhere;
}

.admin-row.is-low-stock {
  border-color: rgba(255, 115, 115, 0.55);
  background: rgba(95, 12, 32, 0.34);
}

.admin-dialog {
  width: min(94vw, 900px);
  max-width: calc(100vw - 20px);
  max-height: calc(100dvh - 20px);
  padding: 0;
  border: 0;
  color: var(--cream);
  background: transparent;
  overflow: visible;
}

.admin-dialog[open],
.admin-dialog.is-open {
  display: grid;
}

.admin-dialog::backdrop {
  background: rgba(10, 2, 9, 0.72);
  backdrop-filter: blur(5px);
}

.admin-dialog-card {
  position: relative;
  display: grid;
  gap: 16px;
  max-height: calc(100dvh - 20px);
  padding: 26px;
  border: 1px solid rgba(246, 221, 176, 0.34);
  background:
    linear-gradient(135deg, rgba(54, 12, 43, 0.96), rgba(18, 5, 16, 0.98)),
    radial-gradient(circle at 12% 0%, rgba(216, 175, 104, 0.18), transparent 18rem);
  box-shadow: var(--shadow);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.admin-media-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(246, 221, 176, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.admin-media-card img,
.admin-media-card video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #140713;
}

.admin-media-card span,
.admin-detail-block span,
.admin-detail-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-media-card button {
  min-height: 34px;
  border: 1px solid rgba(255, 115, 115, 0.45);
  color: #ffdede;
  background: rgba(88, 10, 28, 0.7);
  cursor: pointer;
}

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

.admin-detail-grid p,
.admin-detail-block {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(246, 221, 176, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.admin-detail-block {
  margin-top: 10px;
}

.admin-proof-link {
  color: var(--bright-gold);
  font-weight: 900;
}

.admin-proof-image {
  width: min(100%, 360px);
  max-height: 360px;
  object-fit: contain;
  border: 1px solid rgba(246, 221, 176, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

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

.admin-leads {
  margin-top: 14px;
}

.admin-leads span {
  padding: 10px 12px;
  border: 1px solid rgba(246, 221, 176, 0.16);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 80;
    width: min(94vw, 390px);
    height: 100vh;
    padding: 22px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    background:
      linear-gradient(180deg, rgba(33, 7, 28, 0.98), rgba(14, 4, 13, 0.98)),
      radial-gradient(circle at 0% 0%, rgba(216, 175, 104, 0.16), transparent 16rem);
    box-shadow: 28px 0 60px rgba(0, 0, 0, 0.42);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  .admin-shell.sidebar-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    border: 0;
    background: rgba(10, 2, 9, 0.62);
    backdrop-filter: blur(3px);
  }

  .admin-shell.sidebar-open .admin-sidebar-backdrop {
    display: block;
  }

  .admin-sidebar-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    flex: 0 0 auto;
  }

  .admin-sidebar-actions .button {
    width: 100%;
  }

  .admin-nav {
    grid-template-columns: 1fr;
    margin-top: 26px;
    overflow: visible;
    flex: 0 0 auto;
  }

  .admin-brand {
    flex: 0 0 auto;
  }

  .admin-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(246, 221, 176, 0.38);
    border-radius: 4px;
    color: var(--bright-gold);
    background: rgba(246, 221, 176, 0.08);
    font-weight: 900;
    cursor: pointer;
  }

  .admin-topbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .admin-topbar > .admin-actions {
    display: none;
  }

  .admin-stats,
  .admin-grid,
  .admin-grid.lower,
  .admin-form {
    grid-template-columns: 1fr 1fr;
  }

  .admin-command-center {
    grid-template-columns: 1fr;
  }

  .admin-command-copy,
  .admin-health-card {
    min-height: 0;
  }

  .product-admin-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .product-admin-row mark,
  .product-admin-row .admin-row-actions {
    grid-column: 1 / -1;
  }

  .admin-row-actions {
    justify-content: flex-start;
  }

  .admin-form label:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .admin-section-picker {
    grid-template-columns: 1fr;
  }

  .admin-payment-section {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 16px 12px 28px;
  }

  .admin-topbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .admin-menu-button {
    width: 100%;
  }

  .admin-topbar h1 {
    font-size: clamp(2rem, 13vw, 3rem);
  }

  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }

  .admin-stats .admin-stat:nth-child(n+3) {
    display: none;
  }

  .admin-stat {
    min-height: 86px;
    padding: 14px;
  }

  .admin-stat strong {
    font-size: 1.7rem;
  }

  .admin-grid,
  .admin-grid.lower,
  .admin-form,
  .admin-form.compact,
  .admin-filters,
  .admin-detail-grid,
  .admin-health-grid {
    grid-template-columns: 1fr;
  }

  .admin-command-center {
    gap: 12px;
  }

  .admin-command-copy,
  .admin-health-card {
    padding: 16px;
  }

  .admin-quick-actions {
    display: grid;
  }

  .admin-quick-actions .button {
    width: 100%;
  }

  .admin-form.compact label,
  .admin-form.compact .button {
    grid-column: 1 / -1;
  }

  .admin-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .product-admin-row {
    grid-template-columns: 74px 1fr;
    gap: 10px;
  }

  .product-admin-row mark {
    justify-self: start;
  }

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

  .admin-row-actions button {
    width: 100%;
    min-height: 40px;
  }

  .admin-feed div {
    grid-template-columns: 1fr;
  }

  .admin-order-row {
    grid-template-columns: 1fr;
  }

  .admin-panel-head,
  .admin-actions,
  .admin-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions .button,
  .admin-form-actions .button {
    width: 100%;
  }

  .admin-dialog-card {
    max-height: calc(100dvh - 16px);
    padding: 18px 12px;
    border-radius: 10px;
  }

  .admin-dialog {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }

  .admin-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.site-header .menu-check:checked ~ .site-nav,
.site-header .nav-toggle[aria-expanded="true"] ~ .site-nav,
.site-header .site-nav.open {
  display: grid !important;
}

.site-nav [data-auth-open] {
  position: relative;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}

.site-header.force-menu-closed .site-nav,
.site-header.force-menu-closed .menu-check:checked ~ .site-nav,
.site-header.force-menu-closed .nav-toggle[aria-expanded="true"] ~ .site-nav,
.site-header.force-menu-closed .site-nav.open {
  display: none !important;
}

@media (max-width: 620px) {
  .contact-direct-card {
    grid-template-columns: 1fr;
  }

  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .order-detail-items p {
    display: grid;
  }

  .track-progress {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .track-progress::before,
  .track-progress::after {
    top: 18px;
    bottom: 18px;
    left: 19px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .track-progress::after {
    bottom: calc(18px + (100% - 36px) * (1 - var(--progress, 0)));
  }

  .track-step {
    grid-template-columns: 38px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    column-gap: 12px;
  }

  .track-step i {
    grid-row: span 2;
  }

  .crypto-payment-box {
    grid-template-columns: 1fr;
  }

  .crypto-payment-box .payment-qr-image {
    width: min(190px, 100%);
    justify-self: center;
  }
}
