@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap");
:root {
  --bg: #ffffff;
  --text: #070722;
  --muted: #57506d;
  --card: #ffffff;
  --primary: #0036a3;
  --secondary: #D4AF37;
  --tertiary: #bce9d4;
  --accent: #A67C00;
  --gold: #D4AF37;
  --gold-text: #A67C00;
  --gold-soft-08: rgba(212, 175, 55, .08);
  --gold-soft-12: rgba(212, 175, 55, .12);
  --gold-soft-18: rgba(212, 175, 55, .18);
  --border: rgba(29, 25, 48, 0.08);
  --shadow: 0 18px 60px rgba(10, 10, 40, 0.14);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", "Gill Sans", Candara, sans-serif;
  background: #fff;
  color: var(--text);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p { color: var(--muted); line-height: 1.5; }

.ambient {
  position: fixed;
  width: 26rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  z-index: -2;
}
.ambient-a { background: linear-gradient(130deg, var(--gold-soft-12), var(--gold-soft-18)); top: -8rem; left: -6rem; animation: drift 18s ease-in-out infinite alternate; }
.ambient-b { background: linear-gradient(130deg, #0036a3, #bce9d4); bottom: -8rem; right: -8rem; animation: drift 20s ease-in-out infinite alternate-reverse; }
.ambient-c { background: linear-gradient(130deg, #e4dcff, #0036a3); top: 30%; right: -10rem; animation: drift 14s ease-in-out infinite alternate; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-18px, 20px, 0) scale(1.08); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 6;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 28px rgba(7, 7, 34, .08);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem clamp(1rem, 4vw, 4rem);
  background: #20201f;
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.utility-right {
  margin-left: auto;
}

.utility-bar a {
  color: #fff;
  text-decoration: none;
}

.utility-chip {
  position: relative;
  overflow: hidden;
  min-width: 94px;
  padding: .48rem .9rem;
  text-align: center;
  background: var(--secondary);
  border-radius: 3px;
  font-weight: 800;
  animation: chipLift 2.8s ease-in-out infinite;
}

.utility-chip-alt {
  background: #0036a3;
  animation-delay: .25s;
}

.utility-chip::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -80%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  transform: skewX(-20deg);
  animation: chipShine 3.8s ease-in-out infinite;
}

.shipping-marquee {
  position: relative;
  max-width: min(56vw, 660px);
  margin-left: .4rem;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
}

.shipping-marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marqueeText 13s linear infinite;
}

.shipping-marquee:hover span {
  animation-play-state: paused;
}

.distributor-link {
  margin-left: .4rem;
}

.distributor-link strong {
  color: var(--gold-text);
}

@keyframes marqueeText {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes chipLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes chipShine {
  0%, 35% { left: -80%; }
  58%, 100% { left: 130%; }
}

.search-action {
  position: relative;
  overflow: hidden;
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: 0 .82rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 3px;
  background: linear-gradient(135deg, #0036a3, #06175a);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 54, 163, .28);
}

.search-action::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -80%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: chipShine 4.2s ease-in-out infinite;
}

.search-action svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.search-action span {
  position: relative;
  z-index: 1;
}

.contact-mini {
  margin-left: 1rem;
  line-height: 1;
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem clamp(1rem, 4vw, 4rem);
  gap: 1rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
}
.logo span { color: var(--primary); }

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--primary);
  text-decoration: none;
}

.brand-logo img {
  width: 108px;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.brand-logo span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  color: var(--primary);
}

.menu { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.menu a {
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: .35rem .2rem;
  border-radius: 0;
  border: 1px solid transparent;
  color: #171729;
}
.menu a:hover { border-bottom-color: var(--secondary); color: var(--secondary); }

.admin-link {
  color: var(--secondary) !important;
  background: transparent;
}

.header-social {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #171729;
  text-transform: uppercase;
  font-size: .84rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-social a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 900;
}

.social-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 54, 163, .16);
  border-radius: 3px;
  background: #fff;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-icon:hover {
  color: var(--secondary);
  border-color: rgba(212, 175, 55, .35);
  box-shadow: 0 10px 22px rgba(212, 175, 55, .12);
  transform: translateY(-2px);
}

.cart-bag {
  position: relative;
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bag-icon {
  position: absolute;
  left: 11px;
  right: 7px;
  bottom: 5px;
  height: 36px;
  background: linear-gradient(160deg, var(--gold), var(--secondary));
  clip-path: polygon(12% 18%, 88% 18%, 94% 100%, 6% 100%);
  box-shadow: 0 10px 20px rgba(212, 175, 55, .22);
}

.bag-icon::before {
  content: "";
  position: absolute;
  left: 11px;
  top: -9px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background: transparent;
}

.cart-bubble {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}

main { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; padding-bottom: 2rem; }
main.admin-layout { width: min(1200px, calc(100% - 2rem)); }

.banner-slider {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 3px;
  background: #fff;
  border: 1px solid rgba(7, 7, 34, .08);
  box-shadow: 0 24px 70px rgba(0, 54, 163, .14);
  aspect-ratio: 1920 / 550;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .7s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 7, 34, .12);
  border-radius: 4px;
  background: rgba(255,255,255,.84);
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(7,7,34,.14);
}

.slider-prev { left: 14px; }
.slider-next { right: 14px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 4px;
  background: rgba(7,7,34,.25);
  cursor: pointer;
  transition: .2s ease;
}

.slider-dots button.active {
  width: 48px;
  background: var(--secondary);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 88px));
  margin-top: 1.2rem;
  padding: clamp(2rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(6, 6, 23, .94), rgba(6, 6, 23, .74) 52%, rgba(0, 54, 163, .2)),
    linear-gradient(135deg, #0a0a28, #0036a3 58%, var(--gold));
  box-shadow: 0 28px 80px rgba(0, 31, 105, .24);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 110px),
    linear-gradient(0deg, rgba(6,6,23,.2), transparent 36%);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center end;
  padding-right: clamp(1.4rem, 6vw, 5rem);
  opacity: .95;
}

.runway-frame {
  position: relative;
  width: min(45vw, 470px);
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.06), 0 30px 70px rgba(0,0,0,.2);
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,.18), transparent 18%),
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.01));
}

.runway-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(11rem, 24vw, 21rem);
  font-weight: 800;
  color: rgba(255, 255, 255, .12);
}

.runway-line {
  position: absolute;
  left: 14%;
  right: 14%;
  height: 4px;
  background: var(--secondary);
  transform-origin: center;
}

.line-one { top: 28%; transform: rotate(-18deg); }
.line-two { top: 49%; background: var(--tertiary); transform: rotate(14deg); }
.line-three { top: 70%; background: var(--accent); transform: rotate(-9deg); }

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
  padding: 0;
}

.hero-copy h1 {
  max-width: 660px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: .88;
  margin: 0 0 1.15rem;
  color: #fffaf0;
}

.kicker {
  color: var(--accent);
  letter-spacing: .12em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero p {
  max-width: 570px;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, .84);
  font-size: 1.05rem;
}

.hero-editorial {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: start;
  width: min(280px, 100%);
  padding: 1rem 1.1rem;
  color: #fff;
  border-left: 4px solid var(--secondary);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.hero-editorial p {
  margin: 0 0 .2rem;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .1em;
}

.hero-editorial h2 {
  margin: 0 0 .75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.controls { margin-top: 2rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap; }
.search-wrap { flex: 1; min-width: min(100%, 320px); }
input, select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  padding: .8rem 1rem;
  border-radius: 3px;
  font: inherit;
}

.chips { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: flex-end; }
.chip-chip, .pill-btn, .btn-small {
  padding: .48rem .9rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: .2s;
}

.chip-chip.active, .chip-chip:hover, .pill-btn:hover, .btn-small:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
}

.section-title { margin-top: 2.4rem; }
.product-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.45rem;
}

.product-card {
  position: relative;
  isolation: isolate;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transform: translateY(16px);
  opacity: 0;
  transition: .35s;
  cursor: pointer;
}
.product-card.show { transform: translateY(0); opacity: 1; }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.product-media {
  height: 520px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: var(--text);
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid rgba(7, 7, 34, .12);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(7,7,34,.12);
}
.product-media::after { display: none; }
.product-photo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transition: transform .45s ease;
}
.product-card:hover .product-photo {
  transform: scale(1.035);
}

.quick-view {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--primary);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 8px 18px rgba(7,7,34,.12);
}

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

.size-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.size-strip span {
  min-width: 29px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 54, 163, .7);
  background: rgba(255,255,255,.92);
  color: var(--primary);
  font-size: .75rem;
}

.detail-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 38px;
  display: grid;
  place-items: center;
  background: #064764;
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .2s ease, transform .2s ease;
}

.product-card:hover .size-strip,
.product-card:hover .detail-strip {
  opacity: 1;
  transform: translateY(0);
}

.product-info-outside {
  padding: .9rem .4rem 0;
  display: grid;
  gap: .25rem;
  text-align: center;
  background: transparent;
}

.product-info-outside h3 {
  margin: .1rem 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: .88rem;
  line-height: 1.2;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
}

.product-info-outside .price {
  margin: 0;
  color: #04405c;
  font-size: 1.04rem;
  font-weight: 500;
}

.product-info-outside .made-in {
  width: fit-content;
  margin: .2rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .22rem .48rem;
  border: 1px solid rgba(0, 54, 163, .24);
  background: linear-gradient(135deg, rgba(188,233,212,.7), rgba(255,255,255,.92));
  color: #04405c;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.product-body { display: none; }
.denim-icon {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.denim-stitch {
  position: absolute;
  z-index: 1;
  bottom: 48px;
  width: 116px;
  height: 5px;
  background: var(--secondary);
  box-shadow: 0 13px 0 rgba(255,255,255,.72);
}
.product-body {
  position: relative;
  padding: .9rem .4rem 0;
  display: grid;
  gap: .25rem;
  text-align: center;
  background: transparent;
}

.product-body h3 {
  margin: .1rem 0;
  min-height: auto;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: .88rem;
  line-height: 1.2;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 0;
  font-size: 1.04rem;
  color: #04405c;
  font-weight: 500;
}

.made-in {
  margin: 0;
  color: #04405c;
  font-size: .72rem;
  font-weight: 900;
}

.product-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.product-actions select { width: 95px; min-width: 95px; }

.hero-actions, .form-actions { display: flex; gap: .8rem; margin-top: 1rem; flex-wrap: wrap; }

.btn {
  border: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  padding: .75rem 1rem;
  font-weight: 700;
}
.btn-small { background: var(--text); color: #fff; border: none; }
.btn-primary {
  background: linear-gradient(120deg, var(--secondary), var(--primary));
  color: #fff;
  box-shadow: 0 14px 28px rgba(212, 175, 55, .25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.hero .btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.36);
}
.btn-primary:hover { filter: brightness(1.06); }

.promo-strip, .panel-card, .admin-form, .table-wrap {
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.promo-strip {
  margin-top: 2rem;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(6, 6, 23, .94), rgba(0, 54, 163, .86)),
    var(--primary);
  border-radius: 3px;
}

.promo-strip h3 {
  margin: .35rem 0 .4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.promo-strip p {
  color: rgba(255,255,255,.78);
}

.promo-label {
  display: inline-flex;
  padding: .35rem .55rem;
  border-radius: 6px;
  background: var(--secondary);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.cart-panel {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: min(360px, 92vw);
  padding: 1rem;
  background: #fff;
  border-left: 1px solid var(--border);
  transform: translateX(105%);
  transition: transform .35s ease;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cart-panel.open { transform: translateX(0); }
.cart-panel header { display: flex; justify-content: space-between; align-items: center; }
.icon-btn { border: none; background: #f4eef0; border-radius: 4px; width: 34px; height: 34px; }

.cart-items { flex: 1; overflow: auto; display: grid; gap: .6rem; }
.cart-item {
  padding: .7rem .8rem;
  border: 1px solid var(--border);
  border-radius: .8rem;
}
.cart-summary p { margin: .35rem 0; display: flex; justify-content: space-between; }
.cart-summary .total { font-size: 1.05rem; color: var(--text); }
.checkout-form { display: grid; gap: .6rem; }

.empty-state {
  margin-top: .75rem;
  text-align: center;
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: .8rem;
}
.empty-state.hidden { display: none; }

.helper { font-size: .88rem; }
.admin-layout { padding: 1.2rem 0 2rem; }
.admin-panel > p { margin-bottom: 1.2rem; }

.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(150px, 1fr)); gap: .8rem; margin: 1rem 0 1.3rem; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 1rem; }
.stat-card p { margin: 0 0 .35rem; }
.stat-card strong { font-size: 1.35rem; color: var(--text); }

.admin-columns {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}
.panel-card { padding: 1rem; }
.admin-form {
  display: grid;
  gap: .7rem;
}
.admin-form label { display: grid; gap: .45rem; font-size: .95rem; }
.inline-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
}
.admin-topbar { margin-bottom: 1rem; }

.table-wrap { overflow: auto; margin-top: .65rem; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { border-bottom: 1px solid var(--border); text-align: left; padding: .65rem .4rem; font-size: .93rem; vertical-align: middle; }
td .pill-btn { font-size: .75rem; margin-right: .3rem; }

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  bottom: 1.2rem;
  background: #1f1a34;
  color: white;
  padding: .7rem 1rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  z-index: 99;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.wishlist-toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%) translateY(18px);
  z-index: 999;
  min-width: min(90vw, 320px);
  max-width: min(92vw, 420px);
  padding: .88rem 1.05rem;
  border: 1px solid rgba(212, 175, 55, .36);
  border-radius: 4px;
  background: #050509;
  color: #fff;
  box-shadow: 0 18px 44px rgba(5, 5, 9, .2), 0 0 0 1px rgba(255, 255, 255, .04) inset;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}

.wishlist-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wishlist-toast.is-error {
  border-color: rgba(220, 38, 38, .36);
}

.wishlist-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(5, 5, 9, .14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .92);
  color: #050509;
  box-shadow: 0 12px 28px rgba(5, 5, 9, .12);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.wishlist-toggle svg {
  width: 19px;
  height: 19px;
  display: block;
}

.wishlist-toggle svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.wishlist-toggle:hover,
.wishlist-toggle:focus-visible {
  border-color: rgba(212, 175, 55, .78);
  color: #A67C00;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(212, 175, 55, .18);
  outline: none;
}

.wishlist-toggle.is-wishlisted {
  border-color: rgba(212, 175, 55, .72);
  background: #050509;
  color: #D4AF37;
}

.wishlist-toggle.is-wishlisted svg path {
  fill: currentColor;
  stroke: currentColor;
}

.wishlist-toggle.is-loading {
  opacity: .64;
  cursor: wait;
}

.wishlist-toggle-pulse {
  animation: wishlistPulse .26s ease;
}

.product-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;
}

.product-detail-wishlist {
  justify-self: start;
  width: auto;
  height: 40px;
  padding: 0 14px 0 12px;
  gap: 8px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-detail-wishlist svg {
  width: 17px;
  height: 17px;
}

@keyframes wishlistPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (max-width: 760px) {
  .wishlist-toggle {
    width: 38px;
    height: 38px;
  }

  .product-card-wishlist {
    top: 10px;
    right: 10px;
  }
}

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.show { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .06s; }

@media (max-width: 940px) {
  .banner-slider {
    aspect-ratio: 16 / 9;
  }

  .slide img {
    object-fit: cover;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 650px;
    padding: 2rem 1.25rem;
  }
  .hero-copy { order: 1; }
  .admin-columns, .stats-grid { grid-template-columns: 1fr; }
  .menu { gap: .45rem; }
  .hero-backdrop {
    place-items: center;
    padding: 0;
    opacity: .48;
  }
  .runway-frame {
    width: min(82vw, 380px);
  }
  .hero-editorial {
    justify-self: start;
    align-self: end;
  }
  .utility-bar {
    align-items: stretch;
    flex-direction: column;
    padding: .55rem 1rem;
  }

  .utility-left,
  .utility-right {
    flex-wrap: wrap;
  }

  .distributor-link {
    width: 100%;
    margin-left: 0;
  }

  .shipping-marquee {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .contact-mini {
    margin-left: 0;
    text-align: center;
  }

  .topbar {
    align-items: center;
    flex-wrap: wrap;
  }

  .brand-logo img {
    width: 92px;
    height: 50px;
  }

  .menu {
    width: 100%;
    order: 3;
    gap: .55rem;
    padding-top: .35rem;
  }

  .menu a {
    font-size: .78rem;
  }

  .header-social {
    display: none;
  }

  .product-media {
    height: 430px;
  }

  .quick-view,
  .size-strip,
  .detail-strip {
    opacity: 1;
    transform: translateY(0);
  }

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

  .modal-product-media,
  .modal-product-media img {
    min-height: 340px;
  }
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 1rem;
}

.product-modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 23, .72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(900px, 96vw);
  max-height: min(680px, 92vh);
  display: grid;
  grid-template-columns: .9fr 1fr;
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff;
  color: var(--text);
  font-size: 1.45rem;
  cursor: pointer;
}

.modal-product-media {
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(0,54,163,.28), rgba(212,175,55,.18)),
    var(--tone);
}

.modal-product-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.modal-product-copy {
  padding: clamp(1.4rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .85rem;
}

.modal-badge {
  width: fit-content;
  padding: .35rem .55rem;
  background: var(--primary);
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-product-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: .95;
}

.modal-product-copy p {
  margin: 0;
  font-size: 1rem;
}

.modal-price {
  color: #050509;
  font-size: 1.75rem;
}

.modal-product-copy label {
  display: grid;
  gap: .35rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .8rem;
}

.sr-only {
  position: absolute;
  left: -9999px;
}


/* Editorial couture hero */
.couture-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  min-height: 640px;
  margin-top: 1.2rem;
  padding: clamp(2rem, 5vw, 5.4rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(0,54,163,.16), transparent 26%),
    radial-gradient(circle at 17% 82%, rgba(212,175,55,.12), transparent 25%),
    linear-gradient(135deg, #fff 0%, #f8f5ef 48%, #ffffff 100%);
  box-shadow: 0 30px 90px rgba(0, 30, 90, .12);
  isolation: isolate;
}

.couture-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(0, 54, 163, .16);
  pointer-events: none;
  z-index: 1;
}

.couture-hero::after {
  content: "REVEL";
  position: absolute;
  left: -1.3rem;
  bottom: -2.6rem;
  z-index: 0;
  color: rgba(0, 54, 163, .045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 19vw, 18rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .75;
}

.couture-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 650px;
}

.couture-eyebrow {
  display: inline-flex;
  margin-bottom: 1.3rem;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.couture-copy h1 {
  margin: 0;
  color: #071126;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8vw, 7.8rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .78;
}

.couture-copy p {
  max-width: 560px;
  margin: 1.6rem 0 0;
  color: #354052;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.couture-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.couture-primary,
.couture-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .95rem 1.25rem;
  overflow: hidden;
  border: 1px solid #071126;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.couture-primary {
  background: #071126;
  color: #fff;
  box-shadow: 0 18px 44px rgba(7, 17, 38, .22);
}

.couture-secondary {
  background: #fff;
  color: #071126;
}

.couture-primary:hover,
.couture-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(0, 54, 163, .2);
}

.couture-stage {
  position: relative;
  z-index: 2;
  min-height: 520px;
}

.couture-plate {
  position: absolute;
  inset: 4% 1% 6% 15%;
  background:
    linear-gradient(135deg, rgba(0,54,163,.92), rgba(7,17,38,.96) 52%, rgba(212,175,55,.45)),
    #071126;
  clip-path: polygon(16% 0, 100% 0, 86% 100%, 0 92%);
  box-shadow: 0 36px 90px rgba(0, 35, 105, .35);
}

.couture-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(7, 17, 38, .24);
}

.couture-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.02);
}

.couture-photo-main {
  right: 7%;
  top: 0;
  width: min(56%, 390px);
  height: 92%;
  transform: rotate(2.5deg);
}

.couture-photo-side {
  left: 0;
  bottom: 4%;
  width: min(40%, 275px);
  height: 62%;
  transform: rotate(-5deg);
}

.couture-monogram {
  position: absolute;
  left: 23%;
  top: 9%;
  z-index: 3;
  color: rgba(255,255,255,.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 16vw, 15rem);
  font-weight: 900;
  line-height: 1;
}

.couture-drop {
  position: absolute;
  right: 0;
  bottom: 7%;
  z-index: 4;
  min-width: 230px;
  padding: 1rem 1.15rem;
  background: #fff;
  border-left: 5px solid var(--secondary);
  box-shadow: 0 22px 60px rgba(7, 17, 38, .18);
}

.couture-drop span {
  display: block;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.couture-drop strong {
  display: block;
  margin-top: .25rem;
  color: #071126;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.couture-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 4rem);
  padding: .78rem 1rem;
  background: #071126;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .couture-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 4.8rem;
  }

  .couture-stage {
    min-height: 470px;
  }

  .couture-ribbon {
    flex-wrap: wrap;
    row-gap: .35rem;
  }
}

@media (max-width: 640px) {
  .couture-hero {
    padding: 1.5rem 1.2rem 5.4rem;
  }

  .couture-copy h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

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

  .couture-photo-main {
    right: 0;
    width: 65%;
  }

  .couture-photo-side {
    width: 46%;
  }

  .couture-drop {
    right: .2rem;
    bottom: 2rem;
    min-width: 190px;
  }
}

/* Clean white canvas */
html,
body,
main {
  background: #fff !important;
}

.ambient,
.ambient-a,
.ambient-b,
.ambient-c {
  display: none !important;
}



/* Header search beside cart */
.header-search-bag {
  position: relative;
  width: 38px;
  height: 38px;
  margin-right: -4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-bag-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0036a3;
  border-radius: 999px;
  box-shadow: 0 9px 18px rgba(0, 54, 163, .16);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.search-bag-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.header-search-bag:hover .search-bag-icon {
  transform: translateY(-2px);
  background: #06175a;
  box-shadow: 0 12px 22px rgba(0, 54, 163, .22);
}

.cart-bag {
  margin-left: -2px;
}

.cart-bag:hover .bag-icon {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.bag-icon {
  transition: transform .22s ease, filter .22s ease;
}


/* Header actions group */
.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-left: .35rem;
  width: max-content;
}

.header-actions .header-search-bag,
.header-actions .cart-bag {
  flex: 0 0 auto;
  margin-left: 0;
  margin-right: 0;
}

.header-actions .header-search-bag {
  width: 38px;
}

.header-actions .cart-bag {
  width: 48px;
}


/* Big John inspired navigation */
.bj-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-top: 0;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: none;
}

.bj-nav {
  width: min(1400px, calc(100% - 2rem));
  min-height: 62px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto minmax(220px, 420px) auto auto;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.bj-logo {
  color: #050505;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
}

.bj-menu {
  display: inline-flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 1.8rem);
  white-space: nowrap;
}

.bj-menu a {
  position: relative;
  color: #171717;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.bj-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: #D4AF37;
  transition: right .22s ease;
}

.bj-menu a:not(.bj-country):hover {
  color: var(--secondary);
}

.bj-menu a:not(.bj-country):hover::after {
  right: 0;
}

.bj-country {
  min-width: 132px;
  padding: .82rem 1.4rem;
  display: inline-flex;
  justify-content: center;
  color: #fff !important;
  background: var(--gold);
  border-radius: 7px;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
}

.bj-search {
  position: relative;
  width: min(420px, 34vw);
  min-width: 240px;
  justify-self: end;
}

.bj-search input {
  width: 100%;
  height: 40px;
  padding: 0 3rem 0 1rem;
  border: 1px solid #a9b8c6;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: .92rem;
  outline: none;
}

.bj-search input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .12);
}

.bj-search-button {
  position: absolute;
  right: 4px;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.bj-search-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bj-actions {
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
  justify-content: flex-end;
  white-space: nowrap;
}

.bj-action {
  position: relative;
  border: 0;
  background: transparent;
  color: #050505;
  text-decoration: none;
  display: grid;
  justify-items: center;
  gap: .12rem;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.bj-action svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.bj-action span:last-child {
  font-size: .72rem;
  font-weight: 700;
}

.bj-cart-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.bj-cart-bubble {
  top: -8px;
  right: -11px;
  background: var(--gold);
  color: #fff;
  border: 2px solid #fff;
}

.bj-wishlist-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 1px solid #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #050509;
  color: #D4AF37;
  box-shadow: 0 8px 18px rgba(5, 5, 9, .14);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.bj-wishlist-count[hidden] {
  display: none !important;
}

@media (max-width: 1050px) {
  .bj-nav {
    grid-template-columns: auto 1fr auto;
    row-gap: .75rem;
    padding: .75rem 0;
  }

  .bj-menu {
    order: 4;
    grid-column: 1 / -1;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: .2rem;
  }

  .bj-search {
    min-width: 220px;
  }
}

@media (max-width: 720px) {
  .bj-nav {
    grid-template-columns: 1fr auto;
    gap: .8rem;
  }

  .bj-search {
    grid-column: 1 / -1;
    order: 3;
  }

  .bj-menu {
    justify-content: flex-start;
  }

  .bj-actions {
    gap: .7rem;
  }

  .bj-action span:last-child {
    display: none;
  }
}


/* Header advice button */
.bj-advice {
  min-height: 40px;
  padding: 0 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 1px solid #D4AF37;
  background: #050509;
  color: #fff;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(212, 175, 55, .1);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.bj-advice:hover {
  transform: translateY(-2px);
  border-color: #D4AF37;
  background: #101014;
  box-shadow: 0 14px 28px rgba(212, 175, 55, .18);
}

@media (max-width: 1050px) {
  .bj-advice {
    min-height: 38px;
    padding: 0 .95rem;
    font-size: .75rem;
  }

  .bj-search {
    width: 100%;
    min-width: 220px;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .bj-advice {
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
  }
}


/* Clean utility bar */
.utility-bar-clean {
  width: 100%;
  min-height: 42px;
  padding: 0;
  display: block;
  background: #1f1f1d;
  color: #fff;
  overflow: hidden;
}

.utility-bar-clean .shipping-marquee {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(4rem, 9vw, 8rem);
  min-width: max-content;
  padding-left: 100%;
  line-height: 42px;
  animation: revelTopMarquee 58s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}

@keyframes revelTopMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.utility-bar-clean .shipping-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .marquee-track {
    gap: 2rem;
    animation-duration: 42s;
  }

  .marquee-track span {
    font-size: .68rem;
  }
}



/* Force top marquee speed */
.utility-bar-clean .shipping-marquee .marquee-track {
  display: inline-flex !important;
  align-items: center;
  gap: clamp(4rem, 9vw, 8rem);
  min-width: max-content;
  padding-left: 100% !important;
  line-height: 42px;
  animation: revelTopMarquee 40s linear infinite !important;
}

.utility-bar-clean .shipping-marquee .marquee-track > span {
  padding-left: 0 !important;
  animation: none !important;
}

/* Premium advisor CTA motion */
.bj-advice {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
    animation: advisorPulse 4.2s ease-in-out infinite !important;
    box-shadow: 0 10px 22px rgba(212, 175, 55, 0.12) !important;
}

.bj-advice::before {
    content: "";
    position: absolute;
    top: -45%;
    bottom: -45%;
    left: -65%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
    transform: skewX(-18deg);
    animation: advisorShine 5.4s ease-in-out infinite !important;
    pointer-events: none;
    z-index: 0;
}

.bj-advice svg,
.bj-advice span {
    position: relative;
    z-index: 1;
}

.bj-advice:hover {
    transform: translateY(-1px);
    animation-play-state: paused !important;
}

.bj-advice:hover::before {
    animation-play-state: paused !important;
}

@keyframes advisorPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 22px rgba(212, 175, 55, 0.12);
    }
    50% {
        transform: translateY(-1px) scale(1.015);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    }
}

@keyframes advisorShine {
    0%, 38% {
        left: -65%;
        opacity: 0;
    }
    48% {
        opacity: 1;
    }
    68%, 100% {
        left: 125%;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bj-advice,
    .bj-advice::before {
        animation: none !important;
    }
}

/* Refined header action text weight */
.bj-action span:last-child {
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
    color: rgba(3, 7, 18, 0.82) !important;
}

/* Global title typography - DIN Alternate style */
:where(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .section-title,
    .collection-title,
    .product-name,
    .product-card h3,
    .product-info h3,
    .cart-panel h2,
    .modal-title
) {
    font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", "Roboto Condensed", sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

/* Revel experience benefits */
.landing-campaign[hidden] {
    display: none !important;
}

.landing-campaign {
    width: min(1180px, calc(100% - 2rem));
    margin: clamp(2.4rem, 4vw, 4rem) auto;
    padding: 0 0 1.9rem;
    position: relative;
    overflow: visible;
}

.landing-campaign::before {
    display: none;
}

.landing-campaign-header {
    display: none;
}

.landing-campaign-banner[hidden] {
    display: none !important;
}

.landing-campaign-banner {
    width: 100%;
    margin: 0 auto clamp(1.2rem, 2vw, 1.8rem);
    overflow: hidden;
    border-radius: 18px;
    background: #f5f5f3;
    box-shadow: 0 12px 32px rgba(7, 17, 38, 0.08);
}

.landing-campaign-banner picture,
.landing-campaign-banner img {
    display: block;
    width: 100%;
}

.landing-campaign-banner img {
    height: auto;
    object-fit: cover;
}

.landing-campaign-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.56rem;
    margin-bottom: 0.72rem;
    color: #D4AF37;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.landing-campaign-kicker::before,
.landing-campaign-kicker::after {
    content: "";
    width: 44px;
    height: 1px;
    background: rgba(212, 175, 55, 0.34);
}

.landing-campaign-title {
    margin: 0;
    color: #050505;
    font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.landing-campaign-subtitle {
    max-width: 620px;
    margin: 0.9rem auto 0;
    color: rgba(5, 5, 5, 0.68);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.landing-campaign-carousel {
    position: relative;
    margin-inline: auto;
    padding-inline: 0.1rem;
}

.landing-campaign-track {
    display: flex;
    gap: clamp(1rem, 1.55vw, 1.45rem);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.2rem;
    padding: 0.6rem 0.2rem 1rem;
    scrollbar-width: none;
}

.landing-campaign-track::-webkit-scrollbar {
    display: none;
}

.landing-campaign-card {
    flex: 0 0 calc((100% - 2.9rem) / 3);
    min-width: 0;
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    background: #fff !important;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 10px 24px rgba(0, 0, 0, 0.12) !important;
}

.landing-campaign-product-media {
    position: relative;
    min-height: 0;
    aspect-ratio: 1 / 1.38;
    overflow: hidden;
    border-radius: 8px;
    background: #f6f0ea;
    box-shadow: none;
}

.landing-campaign-product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.landing-campaign-product-empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(0, 0, 0, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.landing-campaign-quick-view {
    position: absolute;
    right: 0.8rem;
    top: 0.8rem;
    z-index: 3;
    min-height: 28px;
    padding: 0.28rem 0.66rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #050509;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.landing-campaign-product-social {
    position: absolute;
    left: 0.72rem;
    top: 0.7rem;
    z-index: 3;
    display: grid;
    gap: 0.1rem;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
}

.landing-campaign-product-social span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.landing-campaign-product-rating {
    color: #D4AF37;
    font-size: 17px;
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
}

.landing-campaign-product-rating em {
    color: #fff;
    font-style: normal;
}

.landing-campaign-product-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 0.56rem 0.72rem 0;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(4px);
    text-align: center;
}

.landing-campaign-product-panel h3 {
    margin: 0 0 0.16rem;
    color: #050509;
    font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: none;
}

.landing-campaign-product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.52rem;
    margin: 0 0 0.34rem;
    line-height: 1;
}

.landing-campaign-product-price del {
    color: #5d5d5d;
    font-size: clamp(0.92rem, 1.2vw, 1.15rem);
    font-weight: 500;
}

.landing-campaign-product-price strong {
    color: #050509;
    font-size: clamp(1.16rem, 1.6vw, 1.48rem);
    font-weight: 900;
}

.landing-campaign-product-offer {
    min-height: 33px;
    margin-inline: -0.72rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.landing-campaign-product-offer.has-signal {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.landing-campaign-product-discount {
    height: 100%;
    min-width: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D4AF37;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.landing-campaign-product-offer small {
    padding: 0.34rem 0.56rem;
    color: #050509;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.1;
    text-align: left;
}

.landing-campaign-product-offer.has-discount small,
.landing-campaign-product-offer:not(.has-discount) small,
.product-card-bottom.has-discount small,
.product-card-bottom:not(.has-discount) small {
    text-transform: none !important;
}

.landing-campaign-product-badge {
    height: 100%;
    min-width: 118px;
    padding: 0.34rem 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(181, 133, 50, 0.22);
    background: rgba(255, 250, 236, 0.88);
    color: #9b6a1f;
    font-size: 12px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.landing-campaign-product-badge > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.36rem;
}

.landing-campaign-product-badge .commercial-signal-icon {
    width: 13px;
    height: 13px;
}

.commercial-signal-icon {
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.commercial-signal-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

.landing-campaign-product-offer:not(.has-discount) {
    grid-template-columns: 1fr;
}

.landing-campaign-product-offer:not(.has-discount).has-signal {
    grid-template-columns: minmax(0, 1fr) auto;
}

.landing-campaign-product-offer:not(.has-discount) small {
    text-align: center;
}

.landing-campaign-arrow {
    position: absolute;
    top: 46%;
    z-index: 5;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(4, 6, 13, 0.92);
    color: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.22s ease, background 0.22s ease;
}

.landing-campaign-arrow:hover {
    transform: translateY(-50%) scale(1.04);
    background: rgba(4, 6, 13, 1);
}

.landing-campaign-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.landing-campaign-arrow-prev {
    left: -0.9rem;
}

.landing-campaign-arrow-next {
    right: -0.9rem;
}

.landing-campaign-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.4rem;
}

.landing-campaign-dots button {
    width: 20px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(7, 17, 38, 0.09);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.landing-campaign-dots button.active {
    width: 24px;
    background: #D4AF37;
}

@media (max-width: 980px) {
    .landing-campaign-card {
        flex-basis: calc((100% - 1.45rem) / 2);
    }
}

@media (max-width: 560px) {
    .landing-campaign {
        width: min(100% - 24px, 520px);
        margin-top: 2.4rem;
        padding-inline: 0;
    }

    .landing-campaign-banner {
        width: 100vw;
        margin-left: 50%;
        border-radius: 0;
        transform: translateX(-50%);
        margin-bottom: 1rem;
    }

    .landing-campaign-title {
        font-size: clamp(1.9rem, 13vw, 2.8rem);
    }

    .landing-campaign-carousel {
        padding-inline: 0;
    }

    .landing-campaign-track {
        gap: 0.85rem;
        scroll-padding-inline: 0;
        padding-inline: 0;
    }

    .landing-campaign-card {
        flex-basis: 100%;
    }

    .landing-campaign-arrow {
        top: 43%;
        width: 32px;
        height: 32px;
        display: inline-flex;
        background: rgba(4, 6, 13, 0.78);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    }

    .landing-campaign-arrow svg {
        width: 16px;
        height: 16px;
    }

    .landing-campaign-arrow-prev {
        left: 0.45rem;
    }

    .landing-campaign-arrow-next {
        right: 0.45rem;
    }

}

.benefit-icons.revel-experience {
    width: min(100% - 48px, 1320px);
    margin: clamp(2.6rem, 5vw, 4.8rem) auto clamp(2rem, 4vw, 3.4rem);
    padding: clamp(2.4rem, 5vw, 4.5rem) 0 0;
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.96));
}

.revel-experience-word {
    position: absolute;
    left: -3.6rem;
    top: -1.4rem;
    z-index: -1;
    color: rgba(0, 0, 0, 0.035);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 148px;
    font-weight: 700;
    line-height: 0.78;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    pointer-events: none;
}

.revel-experience-head {
    max-width: 980px;
    margin: 0 auto clamp(2rem, 4vw, 3.2rem);
    text-align: center;
}

.revel-experience-head > span {
    display: inline-flex;
    align-items: center;
    gap: 0.74rem;
    color: #050509;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.revel-experience-head > span::after {
    content: "";
    width: 82px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.revel-experience-head > span strong {
    color: #A67C00;
    font-weight: 600;
}

.revel-experience-head h1 {
    margin: 0.72rem 0 0.92rem;
    color: #050509;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 90px;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.revel-experience-head h1 em {
    color: #A67C00;
    font-style: normal;
}

.revel-experience-head p {
    margin: 0;
    color: rgba(0, 0, 0, 0.66);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

.revel-experience-head p strong {
    color: #050509;
    font-weight: 800;
}

.revel-experience-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #D4AF37;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.revel-experience .benefit-icon-item {
    min-height: clamp(250px, 23vw, 320px);
    padding: clamp(1.6rem, 3vw, 2.8rem) clamp(1rem, 2vw, 1.8rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    position: relative;
    color: #050509;
    text-align: center;
}

.revel-experience .benefit-icon-item + .benefit-icon-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13%;
    bottom: 13%;
    width: 1px;
    background: rgba(0, 0, 0, 0.12);
}

.benefit-icon-orbit {
    width: clamp(112px, 10vw, 138px);
    height: clamp(112px, 10vw, 138px);
    display: grid;
    place-items: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, #fafafa);
}

.benefit-icon-orbit::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, #D4AF37 0 76deg, transparent 76deg 360deg);
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
}

.benefit-icon-orbit svg {
    width: clamp(56px, 5vw, 72px);
    height: clamp(56px, 5vw, 72px);
    fill: none;
    stroke: #050509;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.28s ease, stroke 0.28s ease;
}

.revel-experience .benefit-icon-item:hover .benefit-icon-orbit svg {
    transform: translateY(-3px);
    stroke: #D4AF37;
}

.benefit-copy {
    max-width: 220px;
    color: #050509;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.benefit-copy strong {
    display: block;
    color: #A67C00;
    font-weight: 600;
}

.revel-experience-foot {
    margin: clamp(1.8rem, 3.4vw, 2.8rem) auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.3rem);
    color: #050509;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    text-transform: uppercase;
}

.revel-experience-foot span {
    width: clamp(68px, 11vw, 138px);
    height: 1px;
    background: rgba(0, 0, 0, 0.35);
}

.revel-experience-foot strong {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 820;
    letter-spacing: 0.46em;
}

.revel-experience-foot em {
    color: #A67C00;
    font-style: normal;
    font-weight: 900;
}

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

    .revel-experience .benefit-icon-item:nth-child(3)::before {
        display: none;
    }

    .revel-experience .benefit-icon-item:nth-child(n + 3) {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 560px) {
    .benefit-icons.revel-experience {
        width: min(100% - 24px, 520px);
        padding-top: 2rem;
    }

    .revel-experience-head > span {
        gap: 0.48rem;
        font-size: 16px;
        letter-spacing: 0.22em;
    }

    .revel-experience-head > span::after {
        width: 42px;
    }

    .revel-experience-head h1 {
        font-size: clamp(2.75rem, 16vw, 4.25rem);
    }

    .revel-experience-panel {
        grid-template-columns: 1fr;
    }

    .revel-experience .benefit-icon-item {
        min-height: 230px;
    }

    .revel-experience .benefit-icon-item + .benefit-icon-item::before {
        display: none;
    }

    .revel-experience .benefit-icon-item:not(:first-child) {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .revel-experience-foot {
        gap: 0.8rem;
    }

    .revel-experience-foot strong {
        letter-spacing: 0.28em;
    }
}

/* Premium users module */
.admin-users-module.editing-user > .admin-module-heading,
.admin-users-module.editing-user > .admin-users-card {
    display: none !important;
}

.admin-user-editor:not(.open) {
    display: none !important;
}

.admin-user-editor.open {
    display: block !important;
}

.admin-user-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef5ff, #ffffff);
    color: #1f6bff;
    font-size: .82rem;
    font-weight: 720;
    letter-spacing: .03em;
    box-shadow: inset 0 0 0 1px #dbe8ff, 0 10px 24px rgba(31, 107, 255, .08);
}

.admin-role-pill,
.admin-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 .72rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 620;
    line-height: 1;
}

.admin-role-pill {
    background: #f2f6ff;
    color: #344767;
    border: 1px solid #dfe9ff;
}

.admin-status-pill.is-active {
    background: #e9fff5;
    color: #047857;
    border: 1px solid #c6f7df;
}

.admin-status-pill.is-inactive {
    background: #fff1f3;
    color: #be123c;
    border: 1px solid #ffd0d7;
}

/* Users spacing refinement */
.admin-users-module .admin-module-heading {
    align-items: center !important;
    gap: clamp(1rem, 3vw, 2rem) !important;
}

.admin-users-module .admin-module-heading > div {
    padding-top: 0;
}

.admin-users-module .admin-module-heading p {
    margin-top: .58rem !important;
    margin-bottom: 0 !important;
}

.admin-users-module .admin-primary-action {
    margin-top: 0 !important;
    flex: 0 0 auto;
}

.admin-users-card .table-wrap {
    margin-top: 0 !important;
}

.admin-users-table th,
.admin-users-table td {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
}

/* Revel premium login */
.login-page {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.12), transparent 24%),
        radial-gradient(circle at 82% 72%, rgba(31, 107, 255, 0.14), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eef3fb 100%) !important;
    color: #091227;
}

html:has(body.login-page),
body.login-page,
body.login-page main,
.login-page .revel-login-shell {
    background: transparent !important;
}

.revel-login-shell {
    width: min(1280px, calc(100% - 2rem));
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2.2rem) 0;
    display: grid;
    grid-template-columns: minmax(320px, 460px);
    align-items: center;
    justify-content: center;
    gap: 0;
}

.revel-login-stage,
.revel-login-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(147, 163, 184, .28);
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 30px 90px rgba(15, 23, 42, .12);
}

.revel-login-stage {
    display: none !important;
}

.revel-login-stage {
    min-height: 680px;
    display: grid;
    align-content: end;
    padding: clamp(2rem, 6vw, 5rem);
    isolation: isolate;
}

.revel-login-stage::before {
    content: "REVEL";
    position: absolute;
    left: -2vw;
    top: 7%;
    z-index: -1;
    color: rgba(9, 18, 39, .045);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(7rem, 19vw, 18rem);
    font-weight: 900;
    letter-spacing: -.09em;
    line-height: .8;
    animation: loginWordFloat 9s ease-in-out infinite;
}

.revel-login-stage::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(9, 18, 39, .08);
    pointer-events: none;
}

.login-orbit {
    position: absolute;
    border: 1px solid rgba(9, 18, 39, .11);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    pointer-events: none;
}

.login-orbit-one {
    width: min(54vw, 640px);
    right: 6%;
    top: 11%;
    animation: loginOrbit 10s ease-in-out infinite;
}

.login-orbit-two {
    width: min(33vw, 390px);
    right: 19%;
    top: 26%;
    border-color: rgba(212, 175, 55, .18);
    animation: loginOrbit 8s ease-in-out infinite reverse;
}

.login-runway-line {
    position: absolute;
    right: 7%;
    width: min(38vw, 500px);
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0), #D4AF37, rgba(31, 107, 255, .58));
    transform-origin: center;
    animation: loginLineSweep 5.8s ease-in-out infinite;
}

.login-runway-one {
    top: 29%;
    transform: rotate(-14deg);
}

.login-runway-two {
    top: 48%;
    background: linear-gradient(90deg, rgba(31, 107, 255, 0), #1f6bff, rgba(212, 175, 55, .5));
    transform: rotate(10deg);
    animation-delay: .7s;
}

.login-runway-three {
    top: 67%;
    transform: rotate(-6deg);
    animation-delay: 1.2s;
}

.login-editorial-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: loginCopyIn .95s cubic-bezier(.2, .85, .22, 1) both;
}

.login-kicker {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem;
    color: #A67C00;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: .78rem;
    font-weight: 820;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.login-kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: #D4AF37;
}

.login-editorial-copy h1 {
    margin: 0;
    max-width: min(610px, 100%);
    color: #061126;
    font-family: "DIN Alternate", "Arial Narrow", "Roboto Condensed", sans-serif !important;
    font-size: clamp(2.7rem, 5.55vw, 5.95rem);
    font-weight: 800;
    line-height: .88;
    letter-spacing: -.052em;
    text-transform: uppercase;
}

.login-editorial-copy p {
    max-width: 520px;
    margin: 1.35rem 0 0;
    color: rgba(9, 18, 39, .66);
    font-size: clamp(1rem, 1.3vw, 1.14rem);
    line-height: 1.7;
}

.login-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.65rem;
}

.login-proof-list span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 .85rem;
    border: 1px solid rgba(9, 18, 39, .11);
    background: rgba(255, 255, 255, .68);
    color: rgba(9, 18, 39, .76);
    font-size: .72rem;
    font-weight: 780;
    letter-spacing: .12em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.login-brand-card {
    position: absolute;
    right: clamp(1.2rem, 4vw, 3.5rem);
    top: clamp(1.2rem, 4vw, 3rem);
    width: min(28vw, 290px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .42);
    border: 1px solid rgba(9, 18, 39, .1);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .1);
    backdrop-filter: blur(12px);
    animation: loginCardFloat 7s ease-in-out infinite;
}

.login-brand-card span {
    color: rgba(9, 18, 39, .08);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(8rem, 15vw, 15rem);
    font-weight: 900;
    line-height: .8;
}

.login-brand-card strong {
    position: absolute;
    bottom: 1.15rem;
    left: 1.15rem;
    color: #061126;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    letter-spacing: -.06em;
}

.revel-login-panel {
    width: min(460px, calc(100vw - 2rem));
    min-height: auto;
    padding: clamp(1.4rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .36)),
        radial-gradient(circle at 20% 0%, rgba(31, 107, 255, .09), transparent 42%);
    border-color: rgba(255, 255, 255, .52);
    box-shadow: 0 32px 90px rgba(31, 107, 255, .16), 0 12px 44px rgba(212, 175, 55, .08);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.login-logo {
    display: none;
    position: absolute;
    left: clamp(1.4rem, 3vw, 2rem);
    top: clamp(1.4rem, 3vw, 2rem);
    color: #061126;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.07em;
    text-decoration: none;
}

.login-logo img {
    display: block;
    width: 180px;
    height: auto;
    object-fit: contain;
}

.login-panel-heading {
    margin-bottom: 1.45rem;
    padding-top: 0;
}

.login-panel-heading span {
    color: #1f6bff;
    font-size: .72rem;
    font-weight: 760;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.login-panel-heading h2 {
    margin: .35rem 0 .45rem;
    color: #061126;
    font-family: "DIN Alternate", "Arial Narrow", "Roboto Condensed", sans-serif !important;
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 760;
    letter-spacing: -.045em;
    white-space: nowrap;
    text-transform: none;
}

.login-panel-heading p {
    max-width: 360px;
    margin: 0 auto;
    color: rgba(9, 18, 39, .6);
    text-align: center;
    line-height: 1.55;
}

.login-form {
    display: grid;
    gap: 1rem;
}

.login-form label {
    display: grid;
    gap: .5rem;
    color: #344767;
    font-size: .86rem;
    font-weight: 680;
}

.login-form input {
    min-height: 48px;
    border: 1px solid #d5e2f3;
    border-radius: 12px;
    background: rgba(255, 255, 255, .9);
    color: #061126;
    font-size: .95rem;
    font-weight: 430;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.login-form input:focus {
    border-color: #1f6bff;
    box-shadow: 0 0 0 4px rgba(31, 107, 255, .1);
    transform: translateY(-1px);
}

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

.login-password-field input {
    padding-right: 4.5rem;
}

.login-password-field button {
    position: absolute;
    right: .45rem;
    top: 50%;
    transform: translateY(-50%);
    height: 34px;
    padding: 0 .75rem;
    border: 1px solid #d5e2f3;
    border-radius: 999px;
    background: #fff;
    color: #1f6bff;
    font: inherit;
    font-size: .78rem;
    font-weight: 650;
    cursor: pointer;
}

.login-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(9, 18, 39, .64);
    font-size: .84rem;
}

.login-form-row a {
    color: #1f6bff;
    text-decoration: none;
    font-weight: 650;
}

.login-check {
    display: inline-flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: .45rem !important;
}

.login-check input {
    width: 16px;
    min-height: 16px;
    accent-color: #1f6bff;
}

.login-submit {
    position: relative;
    min-height: 52px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: #1f6bff;
    color: #fff;
    font-size: .95rem;
    font-weight: 760;
    letter-spacing: .03em;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(31, 107, 255, .28);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.login-submit::before {
    content: "";
    position: absolute;
    inset: -40% auto -40% -55%;
    width: 38%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
    transform: skewX(-18deg);
    animation: loginButtonShine 4.4s ease-in-out infinite;
}

.login-submit:hover {
    transform: translateY(-2px);
    background: #155ce6;
    box-shadow: 0 22px 52px rgba(31, 107, 255, .34);
}

.login-footer-note {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: 1.35rem;
    color: rgba(9, 18, 39, .52);
    font-size: .82rem;
}

.login-footer-note span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4AF37;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .08);
}

.login-footer-note p {
    margin: 0;
}

@keyframes loginCopyIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loginWordFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes loginOrbit {
    0%, 100% {
        transform: rotate(-10deg) scale(1);
    }
    50% {
        transform: rotate(-4deg) scale(1.03);
    }
}

@keyframes loginLineSweep {
    0%, 100% {
        opacity: .42;
        clip-path: inset(0 0 0 22%);
    }
    50% {
        opacity: 1;
        clip-path: inset(0 18% 0 0);
    }
}

@keyframes loginCardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes loginButtonShine {
    0%, 42% {
        left: -55%;
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    75%, 100% {
        left: 120%;
        opacity: 0;
    }
}

@media (max-width: 920px) {
    .revel-login-shell {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .revel-login-panel {
        min-height: auto;
    }

}

@media (max-width: 560px) {
    .revel-login-shell {
        width: 100%;
        padding: 0;
        gap: 0;
    }

    .revel-login-stage,
    .revel-login-panel {
        border-left: 0;
        border-right: 0;
    }

    .revel-login-stage {
        min-height: 520px;
        padding: 5rem 1.2rem 2rem;
    }

    .login-brand-card {
        width: 170px;
        right: 1rem;
        top: 1rem;
    }

    .login-editorial-copy h1 {
        font-size: clamp(2.65rem, 15vw, 4rem);
    }

    .revel-login-panel {
        width: calc(100vw - 1.5rem);
        padding: 2rem 1.2rem;
        border-radius: 22px;
    }

    .login-form-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .login-page *,
    .login-page *::before,
    .login-page *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* Product typography refinement */
.product-name,
.product-card h3,
.product-info h3,
.product-card-title,
.catalog-card h3,
.product-info-outside h3 {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif !important;
    color: #111 !important;
    text-transform: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
    line-height: 1.25 !important;
}

.product-price,
.price,
.product-card .price,
.product-info .price,
.catalog-card .price,
.product-info-outside .price {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif !important;
    color: #050509 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
}

/* Revel exclusive editorial hero */
.revel-editorial-hero {
    position: relative;
    width: min(100%, 1180px);
    min-height: clamp(520px, 54vw, 690px);
    margin: 1.1rem auto 1.7rem;
    padding: clamp(2rem, 5vw, 4.7rem);
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.07);
}

.revel-editorial-hero::before {
    content: "";
    position: absolute;
    inset: clamp(0.75rem, 1.6vw, 1.2rem);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 7px;
    pointer-events: none;
}

.hero-kicker {
    position: absolute;
    top: clamp(1rem, 2.5vw, 2rem);
    left: clamp(1.2rem, 3vw, 3rem);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #A67C00;
}

.hero-copy-block {
    position: relative;
    z-index: 2;
    max-width: 470px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.2rem;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #111;
}

.hero-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #111;
}

.hero-copy-block h1 {
    margin: 0;
    max-width: 460px;
    font-family: "DIN Alternate", "DIN Condensed", "Roboto Condensed", "Arial Narrow", sans-serif !important;
    font-size: clamp(3.1rem, 7.2vw, 6.9rem);
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    color: #050505;
}

.hero-copy-block p {
    max-width: 390px;
    margin: 1.35rem 0 0;
    color: #3f3f46;
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    line-height: 1.65;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.65rem;
}

.hero-primary-link,
.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.78rem 1.15rem;
    border-radius: 4px;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.hero-primary-link {
    color: #fff;
    background: #050505;
    border: 1px solid #050505;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
}

.hero-secondary-link {
    color: #fff;
    background: #050505;
    border: 1px solid #050505;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
}

.hero-primary-link:hover,
.hero-secondary-link:hover {
    transform: translateY(-2px);
}

.hero-secondary-link:hover {
    color: #fff;
    border-color: #050505;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero-visual-stage {
    position: relative;
    z-index: 1;
    min-height: clamp(420px, 49vw, 590px);
}

.hero-back-word {
    position: absolute;
    top: 5%;
    right: -5%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(5.5rem, 12vw, 12rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(0, 0, 0, 0.035);
    user-select: none;
}

.hero-main-photo,
.hero-side-card {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e2e2;
}

.hero-main-photo {
    right: 12%;
    top: 3%;
    width: min(66%, 390px);
    height: 92%;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.hero-main-photo img,
.hero-side-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-main-photo img {
    object-position: center top;
}

.hero-side-card {
    width: min(34%, 190px);
    height: min(35%, 220px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.hero-side-card-top {
    left: 0;
    top: 16%;
}

.hero-side-card-bottom {
    left: 8%;
    bottom: 3%;
}

.hero-side-card-top img {
    object-position: center top;
}

.hero-side-card-bottom img {
    object-position: center center;
}

.hero-proof-line {
    position: absolute;
    left: clamp(1.2rem, 3vw, 3rem);
    right: clamp(1.2rem, 3vw, 3rem);
    bottom: clamp(1rem, 2.3vw, 1.8rem);
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #ececec;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #202020;
}

.hero-proof-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.hero-proof-line span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 999px;
}

@media (max-width: 900px) {
    .revel-editorial-hero {
        grid-template-columns: 1fr;
        padding: 4.7rem 1.25rem 5.2rem;
    }

    .hero-copy-block {
        max-width: 100%;
    }

    .hero-copy-block h1 {
        max-width: 650px;
    }

    .hero-visual-stage {
        min-height: 520px;
    }

    .hero-main-photo {
        right: 4%;
        width: min(68%, 410px);
    }
}

@media (max-width: 560px) {
    .revel-editorial-hero {
        margin-top: 0.7rem;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }

    .hero-copy-block h1 {
        font-size: clamp(2.75rem, 16vw, 4.25rem);
    }

    .hero-cta-row {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-primary-link,
    .hero-secondary-link {
        width: 100%;
    }

    .hero-visual-stage {
        min-height: 430px;
    }

    .hero-main-photo {
        right: 0;
        width: 72%;
        height: 88%;
    }

    .hero-side-card {
        width: 38%;
        height: 34%;
    }

    .hero-proof-line {
        font-size: 0.64rem;
    }
}

/* Transparent layered hero motion */
.revel-layered-hero {
    min-height: clamp(560px, 58vw, 720px) !important;
    background:
        radial-gradient(circle at 74% 47%, rgba(212, 175, 55, 0.075), transparent 27%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 52%, #f7f7f7 100%) !important;
}

.revel-layered-hero .hero-copy-block {
    transform: translateY(12px);
    opacity: 0;
    animation: revelCopyIn 0.9s cubic-bezier(.2, .85, .22, 1) 0.12s forwards;
}

.layered-stage {
    min-height: clamp(450px, 52vw, 640px) !important;
    perspective: 1200px;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 999px;
    pointer-events: none;
}

.hero-orbit-one {
    width: 78%;
    height: 78%;
    right: 2%;
    top: 9%;
    transform: rotate(-10deg);
    animation: revelOrbitFloat 9s ease-in-out infinite;
}

.hero-orbit-two {
    width: 48%;
    height: 48%;
    right: 22%;
    top: 25%;
    border-color: rgba(212, 175, 55, 0.18);
    transform: rotate(18deg);
    animation: revelOrbitFloat 7.5s ease-in-out infinite reverse;
}

.revel-layered-hero .hero-back-word {
    top: 10% !important;
    right: -4% !important;
    color: rgba(0, 0, 0, 0.045) !important;
    animation: revelWordIn 1.1s ease both;
}

.hero-cutout {
    position: absolute;
    display: block;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.16));
    will-change: transform, opacity;
    user-select: none;
    pointer-events: none;
}

.hero-cutout-jeans {
    height: 74%;
    right: 30%;
    bottom: -4%;
    z-index: 3;
    transform: translate3d(-42px, 24px, 0) rotate(-4deg) scale(0.96);
    opacity: 0;
    animation: revelCutoutJeansIn 1s cubic-bezier(.2, .85, .22, 1) 0.2s forwards, revelFloatSoft 6.6s ease-in-out 1.45s infinite;
}

.hero-cutout-model {
    height: 91%;
    right: 4%;
    bottom: -9%;
    z-index: 4;
    transform: translate3d(58px, 20px, 0) rotate(2deg) scale(0.98);
    opacity: 0;
    animation: revelCutoutModelIn 1s cubic-bezier(.2, .85, .22, 1) 0.34s forwards, revelFloatMain 7.2s ease-in-out 1.55s infinite;
}

.hero-cutout-coat {
    height: 68%;
    right: 52%;
    bottom: -2%;
    z-index: 2;
    transform: translate3d(-52px, 26px, 0) rotate(-1deg) scale(0.94);
    opacity: 0;
    filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.13));
    animation: revelCutoutCoatIn 1s cubic-bezier(.2, .85, .22, 1) 0.48s forwards, revelFloatSoft 7.8s ease-in-out 1.65s infinite reverse;
}

@keyframes revelCopyIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes revelWordIn {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes revelCutoutJeansIn {
    to { opacity: 1; transform: translate3d(0, 0, 0) rotate(-4deg) scale(1); }
}

@keyframes revelCutoutModelIn {
    to { opacity: 1; transform: translate3d(0, 0, 0) rotate(1deg) scale(1); }
}

@keyframes revelCutoutCoatIn {
    to { opacity: 1; transform: translate3d(0, 0, 0) rotate(-2deg) scale(1); }
}

@keyframes revelFloatMain {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -13px; }
}

@keyframes revelFloatSoft {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -9px; }
}

@keyframes revelOrbitFloat {
    0%, 100% { transform: rotate(-10deg) scale(1); }
    50% { transform: rotate(-6deg) scale(1.025); }
}

@media (max-width: 900px) {
    .revel-layered-hero {
        min-height: 900px !important;
    }

    .layered-stage {
        min-height: 530px !important;
    }

    .hero-cutout-model {
        height: 86%;
        right: 1%;
    }

    .hero-cutout-jeans {
        height: 66%;
        right: 32%;
    }

    .hero-cutout-coat {
        height: 58%;
        right: 56%;
    }
}

@media (max-width: 560px) {
    .revel-layered-hero {
        min-height: 820px !important;
        overflow: hidden;
    }

    .layered-stage {
        min-height: 440px !important;
    }

    .hero-cutout-model {
        height: 82%;
        right: -18%;
        bottom: -7%;
    }

    .hero-cutout-jeans {
        height: 62%;
        right: 30%;
        bottom: -2%;
    }

    .hero-cutout-coat {
        height: 50%;
        right: 57%;
        bottom: 4%;
    }

    .hero-orbit-one {
        width: 96%;
        height: 76%;
        right: -12%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .revel-layered-hero .hero-copy-block,
    .revel-layered-hero .hero-back-word,
    .hero-cutout,
    .hero-orbit {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* Hero two-model layout refinement */
.hero-cutout-jeans {
    display: none !important;
}

.hero-cutout-model {
    height: 106% !important;
    right: -1% !important;
    bottom: -14% !important;
    z-index: 4 !important;
}

.hero-cutout-coat {
    height: 88% !important;
    right: 43% !important;
    bottom: -10% !important;
    z-index: 3 !important;
}

.revel-layered-hero .hero-back-word {
    right: -8% !important;
}

.hero-orbit-one {
    width: 88% !important;
    height: 84% !important;
    right: -4% !important;
}

.hero-orbit-two {
    width: 54% !important;
    height: 54% !important;
    right: 21% !important;
}

@media (max-width: 900px) {
    .hero-cutout-model {
        height: 98% !important;
        right: -6% !important;
        bottom: -12% !important;
    }

    .hero-cutout-coat {
        height: 76% !important;
        right: 48% !important;
        bottom: -5% !important;
    }
}

@media (max-width: 560px) {
    .hero-cutout-model {
        height: 90% !important;
        right: -26% !important;
        bottom: -9% !important;
    }

    .hero-cutout-coat {
        height: 66% !important;
        right: 48% !important;
        bottom: 1% !important;
    }
}

/* Hero vertical balance and true orbit circles */
.revel-layered-hero .hero-visual-stage {
    overflow: visible;
}

.hero-cutout-model {
    bottom: -5% !important;
}

.hero-cutout-coat {
    bottom: 1% !important;
}

.hero-orbit {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    border-radius: 50% !important;
}

.hero-orbit-one {
    width: clamp(420px, 52vw, 620px) !important;
    right: -2% !important;
    top: 8% !important;
}

.hero-orbit-two {
    width: clamp(260px, 34vw, 390px) !important;
    right: 24% !important;
    top: 22% !important;
}

@media (max-width: 900px) {
    .hero-cutout-model {
        bottom: -4% !important;
    }

    .hero-cutout-coat {
        bottom: 4% !important;
    }

    .hero-orbit-one {
        width: clamp(390px, 72vw, 560px) !important;
        right: -5% !important;
    }

    .hero-orbit-two {
        width: clamp(240px, 48vw, 360px) !important;
        right: 22% !important;
    }
}

@media (max-width: 560px) {
    .hero-cutout-model {
        bottom: -3% !important;
    }

    .hero-cutout-coat {
        bottom: 6% !important;
    }

    .hero-orbit-one {
        width: 118vw !important;
        right: -28% !important;
        top: 8% !important;
    }

    .hero-orbit-two {
        width: 72vw !important;
        right: 14% !important;
        top: 26% !important;
    }
}

/* Full-width cinematic banner hero */
.revel-layered-hero {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    padding-left: max(clamp(1.2rem, 4vw, 4.7rem), calc((100vw - 1180px) / 2 + 2rem)) !important;
    padding-right: max(clamp(1.2rem, 4vw, 4.7rem), calc((100vw - 1180px) / 2 + 2rem)) !important;
}

.revel-layered-hero::before {
    left: max(1rem, calc((100vw - 1180px) / 2 + 1rem)) !important;
    right: max(1rem, calc((100vw - 1180px) / 2 + 1rem)) !important;
    border-color: rgba(0, 0, 0, 0.065) !important;
}

.revel-layered-hero .hero-kicker {
    left: max(1.2rem, calc((100vw - 1180px) / 2 + 2rem)) !important;
}

.revel-layered-hero .hero-proof-line {
    left: max(1.2rem, calc((100vw - 1180px) / 2 + 2rem)) !important;
    right: max(1.2rem, calc((100vw - 1180px) / 2 + 2rem)) !important;
}

.revel-layered-hero .hero-copy-block h1 {
    position: relative;
    color: transparent !important;
    background: linear-gradient(100deg, #050505 0%, #050505 36%, #D4AF37 48%, #050505 62%, #050505 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    transform-origin: left center;
    animation: revelTitleEnter 0.95s cubic-bezier(.2, .85, .22, 1) 0.22s both, revelTitleShine 6.8s ease-in-out 1.35s infinite;
}

.revel-layered-hero .hero-copy-block h1::after {
    content: "";
    position: absolute;
    left: 0.02em;
    bottom: -0.12em;
    width: clamp(86px, 16vw, 180px);
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0));
    transform-origin: left center;
    animation: revelTitleStroke 1.15s cubic-bezier(.2, .85, .22, 1) 0.7s both;
}

.revel-layered-hero .hero-copy-block p,
.revel-layered-hero .hero-cta-row {
    animation: revelSoftLift 0.85s ease 0.52s both;
}

.revel-layered-hero .hero-cta-row {
    animation-delay: 0.68s;
}

@keyframes revelTitleEnter {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(24px) scale(0.985);
        letter-spacing: -0.11em;
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@keyframes revelTitleShine {
    0%, 62%, 100% {
        background-position: 0% 50%;
    }
    78% {
        background-position: 100% 50%;
    }
}

@keyframes revelTitleStroke {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes revelSoftLift {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .revel-layered-hero {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .revel-layered-hero::before,
    .revel-layered-hero .hero-proof-line {
        left: 1rem !important;
        right: 1rem !important;
    }

    .revel-layered-hero .hero-kicker {
        left: 1.25rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .revel-layered-hero .hero-copy-block h1,
    .revel-layered-hero .hero-copy-block h1::after,
    .revel-layered-hero .hero-copy-block p,
    .revel-layered-hero .hero-cta-row {
        animation: none !important;
    }
}

/* Editorial magazine kicker */
.revel-layered-hero .hero-kicker {
    left: 50% !important;
    right: auto !important;
    top: clamp(1.1rem, 2vw, 1.65rem) !important;
    width: max-content;
    max-width: calc(100% - 2rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.7rem, 1.8vw, 1.4rem);
    transform: translateX(-50%);
    color: #111 !important;
    font-size: clamp(0.86rem, 1.08vw, 1.06rem) !important;
    font-weight: 800 !important;
    letter-spacing: clamp(0.14em, 0.85vw, 0.28em) !important;
    text-align: center;
    white-space: nowrap;
    animation: revelMagazineKickerIn 0.9s cubic-bezier(.2, .85, .22, 1) both;
}

.revel-layered-hero .hero-kicker::before,
.revel-layered-hero .hero-kicker::after {
    content: "";
    width: clamp(28px, 5vw, 74px);
    height: 1px;
    background: rgba(0, 0, 0, 0.34);
    transform-origin: center;
    animation: revelMagazineLineIn 1s cubic-bezier(.2, .85, .22, 1) 0.28s both;
}

@keyframes revelMagazineKickerIn {
    from {
        opacity: 0;
        transform: translate(-50%, -12px);
        letter-spacing: 0.38em;
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes revelMagazineLineIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@media (max-width: 560px) {
    .revel-layered-hero .hero-kicker {
        top: 1rem !important;
        gap: 0.55rem;
        font-size: 0.72rem !important;
        letter-spacing: 0.13em !important;
    }

    .revel-layered-hero .hero-kicker::before,
    .revel-layered-hero .hero-kicker::after {
        width: 22px;
    }
}

/* Red editorial accents and CTA motion */
.revel-layered-hero .hero-kicker em,
.revel-layered-hero .hero-eyebrow em {
    color: #A67C00;
    font-style: normal;
}

.revel-layered-hero .hero-kicker em {
    display: inline-block;
    animation: revelRedAccentBeat 2.8s ease-in-out infinite;
}

.revel-layered-hero .hero-kicker span:first-of-type {
    animation: revelKickerWordLeft 0.85s cubic-bezier(.2, .85, .22, 1) 0.18s both;
}

.revel-layered-hero .hero-kicker span:last-of-type {
    color: #A67C00;
    animation: revelKickerWordRight 0.85s cubic-bezier(.2, .85, .22, 1) 0.32s both;
}

.revel-layered-hero .hero-eyebrow em {
    position: relative;
    display: inline-block;
    animation: revelRedAccentSlide 4.8s ease-in-out infinite;
}

.revel-layered-hero .hero-primary-link,
.revel-layered-hero .hero-secondary-link {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.revel-layered-hero .hero-primary-link::before,
.revel-layered-hero .hero-secondary-link::before {
    content: "";
    position: absolute;
    inset: -35% auto -35% -55%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-18deg);
    animation: revelButtonSweep 4.8s ease-in-out infinite;
    z-index: -1;
}

.revel-layered-hero .hero-secondary-link::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.revel-layered-hero .hero-primary-link {
    animation: revelButtonPulseDark 4.2s ease-in-out infinite;
}

.revel-layered-hero .hero-secondary-link {
    animation: revelButtonPulseDark 4.8s ease-in-out infinite;
}

@keyframes revelRedAccentBeat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-1px) scale(1.08);
        opacity: 0.82;
    }
}

@keyframes revelKickerWordLeft {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revelKickerWordRight {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revelRedAccentSlide {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes revelButtonSweep {
    0%, 48% {
        left: -55%;
        opacity: 0;
    }
    58% {
        opacity: 1;
    }
    76%, 100% {
        left: 120%;
        opacity: 0;
    }
}

@keyframes revelButtonPulseDark {
    0%, 100% {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
    }
    50% {
        box-shadow: 0 18px 36px rgba(212, 175, 55, 0.22);
    }
}

@keyframes revelButtonPulseLight {
    0%, 100% {
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
    50% {
        box-shadow: 0 12px 28px rgba(212, 175, 55, 0.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .revel-layered-hero .hero-kicker em,
    .revel-layered-hero .hero-kicker span,
    .revel-layered-hero .hero-eyebrow em,
    .revel-layered-hero .hero-primary-link,
    .revel-layered-hero .hero-secondary-link,
    .revel-layered-hero .hero-primary-link::before,
    .revel-layered-hero .hero-secondary-link::before {
        animation: none !important;
    }
}

/* Mobile premium refinement */
@media (max-width: 760px) {
    html,
    body {
        overflow-x: hidden !important;
    }

    .utility-bar,
    .utility-bar-clean {
        min-height: 34px !important;
    }

    .shipping-marquee {
        font-size: 0.68rem !important;
        letter-spacing: 0.08em !important;
    }

    .bj-nav {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        gap: 0.65rem 0.8rem !important;
        padding: 0.72rem 1rem 0.88rem !important;
    }

    .bj-logo {
        grid-column: 1 !important;
        justify-self: start !important;
        font-size: clamp(1.7rem, 8vw, 2.2rem) !important;
        line-height: 1 !important;
    }

    .bj-actions {
        grid-column: 2 !important;
        justify-self: end !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.58rem !important;
    }

    .bj-action {
        min-width: auto !important;
        gap: 0 !important;
    }

    .bj-action span:last-child {
        display: none !important;
    }

    .bj-menu {
        grid-column: 1 / -1 !important;
        order: 3 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        gap: 1.05rem !important;
        overflow-x: auto !important;
        padding: 0.28rem 0 0.1rem !important;
        scrollbar-width: none;
        white-space: nowrap !important;
    }

    .bj-menu::-webkit-scrollbar {
        display: none;
    }

    .bj-menu a {
        flex: 0 0 auto !important;
        font-size: 0.78rem !important;
        letter-spacing: 0.055em !important;
    }

    .bj-search {
        grid-column: 1 / -1 !important;
        order: 4 !important;
        width: 100% !important;
        max-width: none !important;
    }

    .bj-search input {
        min-height: 42px !important;
        font-size: 0.88rem !important;
    }

    .bj-advice {
        grid-column: 1 / -1 !important;
        order: 5 !important;
        width: 100% !important;
        justify-self: stretch !important;
        min-height: 40px !important;
        font-size: 0.88rem !important;
    }

    .revel-layered-hero {
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.15rem !important;
        padding: 4.25rem 1rem 1.25rem !important;
        margin-top: 0 !important;
    }

    .revel-layered-hero::before {
        left: 0.7rem !important;
        right: 0.7rem !important;
        top: 0.7rem !important;
        bottom: 0.7rem !important;
    }

    .revel-layered-hero .hero-kicker {
        top: 1.02rem !important;
        max-width: calc(100vw - 1.4rem) !important;
        font-size: 11px !important;
        letter-spacing: 0.12em !important;
    }

    .revel-layered-hero .hero-kicker::before,
    .revel-layered-hero .hero-kicker::after {
        width: clamp(18px, 8vw, 34px) !important;
    }

    .hero-copy-block {
        width: 100% !important;
        max-width: none !important;
        z-index: 6 !important;
    }

    .hero-eyebrow {
        margin-bottom: 0.85rem !important;
        font-size: 11px !important;
        letter-spacing: 0.17em !important;
    }

    .hero-copy-block h1,
    .revel-layered-hero .hero-copy-block h1 {
        max-width: 96vw !important;
        font-size: clamp(2.55rem, 14.4vw, 4.45rem) !important;
        line-height: 0.88 !important;
        letter-spacing: -0.075em !important;
    }

    .hero-copy-block p {
        max-width: 92vw !important;
        margin-top: 1rem !important;
        font-size: 0.95rem !important;
        line-height: 1.52 !important;
    }

    .hero-cta-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.65rem !important;
        margin-top: 1.15rem !important;
    }

    .hero-primary-link,
    .hero-secondary-link {
        width: 100% !important;
        min-height: 43px !important;
        font-size: 0.78rem !important;
    }

    .layered-stage,
    .hero-visual-stage {
        width: 100% !important;
        min-height: clamp(380px, 100vw, 520px) !important;
        order: 2 !important;
    }

    .hero-cutout-model {
        height: 90% !important;
        right: -24% !important;
        bottom: -2% !important;
    }

    .hero-cutout-coat {
        height: 68% !important;
        right: 45% !important;
        bottom: 6% !important;
    }

    .hero-orbit-one {
        width: 114vw !important;
        right: -27% !important;
        top: 5% !important;
    }

    .hero-orbit-two {
        width: 72vw !important;
        right: 12% !important;
        top: 23% !important;
    }

    .hero-proof-line {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        order: 3 !important;
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.45rem !important;
        margin-top: 0 !important;
        padding-top: 0.85rem !important;
        font-size: 0.63rem !important;
        letter-spacing: 0.11em !important;
    }

    .section-title {
        width: min(94vw, 1180px) !important;
        margin-inline: auto !important;
    }

    .product-grid,
    #productGrid {
        width: min(94vw, 1180px) !important;
        margin-inline: auto !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem 0.8rem !important;
    }

    .product-media {
        min-height: clamp(230px, 72vw, 390px) !important;
    }

    .product-info-outside h3,
    .product-card h3 {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    .product-info-outside .price,
    .product-card .price {
        font-size: 15px !important;
    }
}

@media (max-width: 390px) {
    .hero-copy-block h1,
    .revel-layered-hero .hero-copy-block h1 {
        font-size: clamp(2.25rem, 14vw, 3.6rem) !important;
    }

    .product-grid,
    #productGrid {
        gap: 0.85rem 0.65rem !important;
    }

    .product-media {
        min-height: 218px !important;
    }
}
/* End mobile premium refinement */

/* Mobile hero visual balance correction */
@media (max-width: 760px) {
    .revel-layered-hero {
        padding-bottom: 1rem !important;
    }

    .layered-stage,
    .hero-visual-stage {
        min-height: clamp(360px, 92vw, 470px) !important;
        overflow: hidden !important;
    }

    .hero-cutout-model {
        height: 82% !important;
        right: -5% !important;
        bottom: 7% !important;
        z-index: 4 !important;
    }

    .hero-cutout-coat {
        height: 74% !important;
        right: 44% !important;
        bottom: 8% !important;
        z-index: 3 !important;
    }

    .hero-orbit-one {
        width: 104vw !important;
        right: -18% !important;
        top: 3% !important;
    }

    .hero-orbit-two {
        width: 66vw !important;
        right: 18% !important;
        top: 22% !important;
    }

    .revel-layered-hero .hero-back-word {
        right: 1% !important;
        top: 7% !important;
        font-size: clamp(4.8rem, 22vw, 7rem) !important;
    }

    .hero-proof-line {
        margin-top: -0.2rem !important;
    }
}

@media (max-width: 430px) {
    .hero-cutout-model {
        height: 80% !important;
        right: -9% !important;
        bottom: 8% !important;
    }

    .hero-cutout-coat {
        height: 72% !important;
        right: 43% !important;
        bottom: 9% !important;
    }
}

/* Final hero model composition */
.revel-layered-hero .layered-stage,
.revel-layered-hero .hero-visual-stage {
    overflow: hidden !important;
    isolation: isolate;
}

.revel-layered-hero .hero-cutout {
    transform-origin: center bottom;
}

@media (min-width: 761px) {
    .revel-layered-hero .layered-stage,
    .revel-layered-hero .hero-visual-stage {
        min-height: clamp(540px, 51vw, 680px) !important;
    }

    .hero-cutout-model {
        height: 112% !important;
        right: -1.5% !important;
        bottom: -7% !important;
        z-index: 5 !important;
    }

    .hero-cutout-coat {
        height: 96% !important;
        right: 31% !important;
        bottom: -4% !important;
        z-index: 4 !important;
    }

    .hero-orbit-one {
        width: clamp(500px, 48vw, 680px) !important;
        right: 1% !important;
        top: 5% !important;
    }

    .hero-orbit-two {
        width: clamp(300px, 31vw, 440px) !important;
        right: 25% !important;
        top: 23% !important;
    }
}

@media (max-width: 760px) {
    .revel-layered-hero {
        padding-bottom: 0.95rem !important;
    }

    .revel-layered-hero .layered-stage,
    .revel-layered-hero .hero-visual-stage {
        min-height: clamp(430px, 112vw, 560px) !important;
        margin-top: 0.15rem !important;
        overflow: hidden !important;
    }

    .hero-cutout-model {
        height: 96% !important;
        right: -12% !important;
        bottom: 2% !important;
        z-index: 5 !important;
    }

    .hero-cutout-coat {
        height: 88% !important;
        right: 31% !important;
        bottom: 4% !important;
        z-index: 4 !important;
    }

    .hero-orbit-one {
        width: 116vw !important;
        right: -22% !important;
        top: 2% !important;
    }

    .hero-orbit-two {
        width: 76vw !important;
        right: 13% !important;
        top: 22% !important;
    }

    .revel-layered-hero .hero-back-word {
        right: -3% !important;
        top: 6% !important;
        font-size: clamp(5.2rem, 24vw, 7.4rem) !important;
    }

    .hero-proof-line {
        margin-top: -0.1rem !important;
    }
}

@media (max-width: 430px) {
    .revel-layered-hero .layered-stage,
    .revel-layered-hero .hero-visual-stage {
        min-height: clamp(410px, 118vw, 510px) !important;
    }

    .hero-cutout-model {
        height: 94% !important;
        right: -18% !important;
        bottom: 3% !important;
    }

    .hero-cutout-coat {
        height: 86% !important;
        right: 29% !important;
        bottom: 5% !important;
    }
}

@media (max-width: 360px) {
    .hero-cutout-model {
        height: 91% !important;
        right: -23% !important;
    }

    .hero-cutout-coat {
        height: 82% !important;
        right: 31% !important;
    }
}
/* End final hero model composition */

/* Mobile hero containment final correction */
@media (max-width: 760px) {
    .revel-layered-hero .layered-stage,
    .revel-layered-hero .hero-visual-stage {
        min-height: clamp(420px, 108vw, 540px) !important;
        overflow: hidden !important;
    }

    .hero-cutout-model {
        height: 86% !important;
        right: 3% !important;
        bottom: 5% !important;
        z-index: 5 !important;
    }

    .hero-cutout-coat {
        height: 82% !important;
        right: 38% !important;
        bottom: 6% !important;
        z-index: 4 !important;
    }

    .hero-orbit-one {
        width: 106vw !important;
        right: -11% !important;
        top: 3% !important;
    }

    .hero-orbit-two {
        width: 68vw !important;
        right: 16% !important;
        top: 23% !important;
    }
}

@media (max-width: 430px) {
    .hero-cutout-model {
        height: 84% !important;
        right: 2% !important;
        bottom: 6% !important;
    }

    .hero-cutout-coat {
        height: 80% !important;
        right: 39% !important;
        bottom: 7% !important;
    }
}

@media (max-width: 360px) {
    .hero-cutout-model {
        height: 80% !important;
        right: 1% !important;
    }

    .hero-cutout-coat {
        height: 76% !important;
        right: 40% !important;
    }
}

/* Single-model hero centered composition */
.revel-layered-hero {
    overflow: clip !important;
}

.revel-layered-hero .layered-stage,
.revel-layered-hero .hero-visual-stage {
    position: relative !important;
    overflow: visible !important;
}

.revel-layered-hero .hero-back-word {
    left: 50% !important;
    right: auto !important;
    top: 48% !important;
    width: 100% !important;
    text-align: center !important;
    transform: translate(-50%, -50%) !important;
}

.revel-layered-hero .hero-orbit {
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.revel-layered-hero .hero-orbit-one {
    width: clamp(460px, 42vw, 640px) !important;
}

.revel-layered-hero .hero-orbit-two {
    width: clamp(280px, 27vw, 430px) !important;
}

.revel-layered-hero .hero-cutout-coat {
    left: 50% !important;
    right: auto !important;
    bottom: -3% !important;
    height: 98% !important;
    transform: translateX(-50%) !important;
    z-index: 5 !important;
}

.revel-layered-hero .hero-clouds {
    position: absolute;
    left: 50%;
    bottom: -7%;
    z-index: 6;
    width: clamp(760px, 76vw, 1180px);
    max-width: none;
    height: auto;
    pointer-events: none;
    user-select: none;
    transform: translateX(-50%);
}

@media (min-width: 1500px) {
    .revel-layered-hero .hero-orbit,
    .revel-layered-hero .hero-cutout-coat,
    .revel-layered-hero .hero-clouds {
        left: 48% !important;
    }

    .revel-layered-hero .hero-back-word {
        left: 45% !important;
    }

    .revel-layered-hero .hero-orbit-one {
        width: min(38vw, 590px) !important;
    }

    .revel-layered-hero .hero-orbit-two {
        width: min(24vw, 370px) !important;
    }

    .revel-layered-hero .hero-clouds {
        width: min(72vw, 1120px);
    }
}

@media (max-width: 760px) {
    .revel-layered-hero .hero-back-word {
        top: 44% !important;
        font-size: clamp(5rem, 23vw, 7.2rem) !important;
    }

    .revel-layered-hero .hero-orbit {
        top: 49% !important;
    }

    .revel-layered-hero .hero-orbit-one {
        width: min(92vw, 380px) !important;
    }

    .revel-layered-hero .hero-orbit-two {
        width: min(58vw, 250px) !important;
    }

    .revel-layered-hero .hero-cutout-coat {
        left: 50% !important;
        bottom: 3% !important;
        height: 86% !important;
        transform: translateX(-50%) !important;
    }

    .revel-layered-hero .hero-clouds {
        bottom: -1%;
        width: min(205vw, 860px);
    }
}

@media (max-width: 430px) {
    .revel-layered-hero .hero-back-word {
        top: 43% !important;
    }

    .revel-layered-hero .hero-orbit-one {
        width: 88vw !important;
    }

    .revel-layered-hero .hero-orbit-two {
        width: 56vw !important;
    }

    .revel-layered-hero .hero-cutout-coat {
        bottom: 4% !important;
        height: 84% !important;
    }

    .revel-layered-hero .hero-clouds {
        bottom: 0;
        width: 218vw;
    }
}

@media (max-width: 360px) {
    .revel-layered-hero .hero-cutout-coat {
        height: 80% !important;
    }

    .revel-layered-hero .hero-clouds {
        width: 230vw;
    }
}
/* End single-model hero centered composition */

/* Revel premium commerce system */
#catalogo.section-title {
    padding-top: clamp(2.7rem, 5vw, 4.6rem) !important;
}

.catalog-intro {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto clamp(1.8rem, 3vw, 2.5rem);
    text-align: center;
}

.catalog-intro h1 {
    margin: 0;
    color: #050509;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 90px;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.catalog-intro h1 span {
    color: #A67C00;
}

.catalog-intro p {
    margin: 0.55rem auto 0;
    max-width: 560px;
    color: rgba(5, 5, 9, 0.68);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.55;
    text-transform: none !important;
}

.catalog-intro p strong {
    color: #050509;
    font-weight: 800;
    text-transform: none !important;
}

.catalog-intro p .catalog-intro-accent {
    color: #A67C00;
}

@media (max-width: 760px) {
    .revel-experience-head p,
    .catalog-intro p,
    .revel-club-copy p {
        max-width: 92vw !important;
        font-size: 0.95rem !important;
        line-height: 1.52 !important;
    }
}

@media (max-width: 760px) {
    .revel-experience-head h1,
    .catalog-intro h1 {
        max-width: 96vw !important;
        margin-inline: auto !important;
        font-size: clamp(2.55rem, 14.4vw, 4.45rem) !important;
        line-height: 0.88 !important;
        letter-spacing: -0.075em !important;
    }

    .catalog-intro h1 {
        white-space: normal !important;
    }
}

@media (max-width: 390px) {
    .revel-experience-head h1,
    .catalog-intro h1 {
        font-size: clamp(2.25rem, 14vw, 3.6rem) !important;
    }
}

@media (max-width: 760px) {
    .revel-experience-head > span {
        font-size: 11px !important;
        letter-spacing: 0.13em !important;
    }

    .revel-experience-foot strong {
        font-size: 11px !important;
        font-weight: 760 !important;
        letter-spacing: 0.18em !important;
    }

    .revel-club-copy > span {
        font-size: 11px !important;
        letter-spacing: 0.28em !important;
    }

    .revel-club-form label {
        font-size: 11px !important;
    }
}

.product-grid,
#productGrid {
    align-items: start !important;
}

.product-card {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.product-card:hover {
    transform: translateY(-4px) !important;
}

.product-media {
    overflow: hidden !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 4px !important;
    background: #f7f4f1 !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08) !important;
}

.product-media img {
    transition: transform 0.7s cubic-bezier(.2, .8, .2, 1), filter 0.7s ease !important;
}

.product-card:hover .product-media img {
    transform: scale(1.035) !important;
    filter: contrast(1.03) saturate(1.03) !important;
}

.product-info,
.product-card .product-copy,
.product-card footer {
    text-align: center !important;
}

.product-name,
.product-card h3 {
    color: #000 !important;
    font-family: "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(0.98rem, 1.15vw, 1.08rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
}

.product-price,
.product-card .price {
    color: #050509 !important;
    font-family: "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(1rem, 1.22vw, 1.16rem) !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
}

.product-card-signal {
    width: fit-content;
    margin: .34rem auto .42rem !important;
    padding: .28rem .6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .38rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--signal-bg, rgba(7, 17, 38, .08)), rgba(255, 255, 255, .72));
    border: 1px solid var(--signal-accent, rgba(7, 17, 38, .14));
    color: #071126;
    font: 700 .72rem/1 "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
}

.product-card-signal::before {
    content: "";
    position: absolute;
    inset: -40% auto -40% -55%;
    width: 44%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
    transform: skewX(-18deg);
    animation: productSignalSweep 4.6s ease-in-out infinite;
}

.product-card-signal span,
.product-card-signal em {
    position: relative;
    z-index: 1;
}

.product-card-signal span {
    color: var(--signal-color, #071126);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-card-signal em {
    color: rgba(7, 17, 38, .72);
    font-style: normal;
}

@keyframes productSignalSweep {
    0%, 46% {
        left: -55%;
        opacity: 0;
    }
    56% {
        opacity: 1;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

.product-modal .modal-card {
    width: min(1040px, calc(100vw - 2rem)) !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    background: #fff !important;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28) !important;
    overflow: hidden !important;
}

.modal-product-media {
    background: linear-gradient(135deg, #f4f0ec, #ffffff) !important;
}

.modal-product-media img {
    object-fit: contain !important;
    filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.13)) !important;
}

.modal-product-copy {
    position: relative !important;
    padding: clamp(1.4rem, 3vw, 2.7rem) !important;
}

.modal-badge {
    display: inline-flex !important;
    width: fit-content !important;
    margin-bottom: 0.75rem !important;
    padding: 0.35rem 0.75rem !important;
    border: 1px solid rgba(212, 175, 55, 0.22) !important;
    color: #050509 !important;
    background: rgba(212, 175, 55, 0.08) !important;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
}

.modal-product-copy h2,
#modalProductName {
    color: #060609 !important;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif !important;
    font-size: clamp(1.85rem, 3.8vw, 3.65rem) !important;
    font-weight: 850 !important;
    line-height: 0.95 !important;
    letter-spacing: -0.035em !important;
    text-transform: none !important;
}

.modal-product-copy p,
#modalProductDesc {
    color: rgba(0, 0, 0, 0.68) !important;
    font-size: 0.98rem !important;
    line-height: 1.75 !important;
}

.modal-price,
#modalProductPrice {
    color: #050509 !important;
    font-family: "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(1.5rem, 2.4vw, 2.15rem) !important;
    font-weight: 900 !important;
}

#modalProductSize {
    min-height: 44px !important;
    border: 1px solid rgba(0, 0, 0, 0.16) !important;
    border-radius: 3px !important;
    background: #fff !important;
}

#modalAddToCart {
    border-radius: 3px !important;
    border: 1px solid #D4AF37 !important;
    background: #D4AF37 !important;
    color: #050509 !important;
    box-shadow: 0 16px 34px rgba(212, 175, 55, 0.18) !important;
}

#modalAddToCart:hover {
    background: #C99A16 !important;
    color: #050509 !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 760px) {
    .product-modal .modal-card {
        width: calc(100vw - 1rem) !important;
    }
}
/* End Revel premium commerce system */

/* Product detail conversion layer */
.product-main-image {
    border-radius: 8px;
    background: linear-gradient(180deg, #f8f6f1 0%, #ffffff 100%);
    box-shadow: inset 0 0 0 1px rgba(5, 5, 9, 0.06);
}

.product-thumbs img {
    border: 1px solid rgba(5, 5, 9, 0.1);
    border-radius: 6px;
    background: #f8f6f1;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.product-thumbs img:hover {
    border-color: rgba(212, 175, 55, 0.55);
    transform: translateY(-1px);
}

.product-thumbs img.active {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.16), 0 10px 24px rgba(5, 5, 9, 0.08);
}

.product-detail-copy {
    gap: 18px;
    padding: clamp(1.25rem, 2.2vw, 1.7rem);
    border: 1px solid rgba(5, 5, 9, 0.08);
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(5, 5, 9, 0.045);
}

.product-detail-copy h1 {
    font-family: "DIN Alternate", "DIN Condensed", "Roboto Condensed", "Arial Narrow", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .product-detail-copy h1 {
        font-size: 28px;
    }
}

.product-reference {
    margin-top: -0.35rem;
    color: rgba(5, 5, 9, 0.48);
}

.product-price-line {
    gap: 0.65rem 0.8rem;
    margin: 0.2rem 0 0;
    font-family: "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(2rem, 3vw, 2.45rem);
    font-weight: 900;
    line-height: 1;
}

.product-tax {
    margin-top: -0.15rem;
    color: rgba(5, 5, 9, 0.52);
}

.product-accordion {
    border-top-color: rgba(5, 5, 9, 0.075);
}

.product-accordion:last-of-type {
    border-bottom-color: rgba(5, 5, 9, 0.075);
}

.product-accordion summary {
    min-height: 48px;
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-accordion-content {
    padding: 0 0 1.05rem;
    color: rgba(5, 5, 9, 0.64);
    font-size: 0.95rem;
    line-height: 1.68;
}

.product-service-grid {
    padding: 0.8rem;
    border: 1px solid rgba(5, 5, 9, 0.06);
    border-radius: 8px;
    background: #fbfaf7;
    gap: 0.5rem;
}

.product-service-grid span {
    min-height: 74px;
    padding: 0.7rem 0.55rem;
    border: 1px solid rgba(5, 5, 9, 0.055);
    border-radius: 6px;
    background: #fff;
    gap: 0.4rem;
}

.product-info-outside {
    padding-top: 0.82rem !important;
    text-align: center !important;
}

.product-info-outside h3 {
    margin: 0 0 0.35rem !important;
    color: #000 !important;
    font-family: "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(1rem, 1.15vw, 1.1rem) !important;
    font-weight: 850 !important;
    letter-spacing: -0.015em !important;
    text-transform: none !important;
}

.product-info-outside .price {
    margin: 0 !important;
    color: #050509 !important;
    font-family: "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(1.02rem, 1.25vw, 1.18rem) !important;
    font-weight: 850 !important;
}

.quick-view {
    min-width: 42px !important;
    height: 28px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.74) !important;
    background: rgba(0, 0, 0, 0.56) !important;
    color: #fff !important;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    backdrop-filter: blur(10px) !important;
}

.detail-strip {
    background: rgba(5, 5, 9, 0.86) !important;
    color: #fff !important;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
}

.modal-service-panel {
    margin-top: clamp(1rem, 2vw, 1.4rem);
    padding-top: clamp(1rem, 2vw, 1.35rem);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 0.95rem;
}

.modal-service-grid span {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fafafa;
    color: rgba(0, 0, 0, 0.72);
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
}

.modal-whatsapp {
    position: relative;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #D4AF37;
    background: #050509;
    color: #fff;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 820;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(212, 175, 55, 0.14);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.modal-whatsapp::before {
    content: "";
    position: absolute;
    inset: -60% auto -60% -30%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-18deg);
    animation: modalWhatsappShine 3.4s ease-in-out infinite;
}

.modal-whatsapp:hover {
    transform: translateY(-2px);
    background: #101014;
    box-shadow: 0 20px 42px rgba(212, 175, 55, 0.2);
}

.modal-note {
    margin: 0.75rem 0 0 !important;
    color: rgba(0, 0, 0, 0.54) !important;
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
}

@keyframes modalWhatsappShine {
    0%, 42% {
        transform: translateX(0) skewX(-18deg);
    }

    68%, 100% {
        transform: translateX(420%) skewX(-18deg);
    }
}

@media (max-width: 760px) {
    .modal-service-grid {
        grid-template-columns: 1fr;
    }

    .modal-service-grid span {
        min-height: 40px;
    }
}
/* End product detail conversion layer */

/* Premium footer */
.revel-footer {
    width: 100%;
    margin-top: 64px;
    padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 48px) 24px;
    background: #1f1f1d;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.revel-footer::before {
    content: "REVEL";
    position: absolute;
    right: -4vw;
    top: 18px;
    color: rgba(255, 255, 255, .035);
    font: 900 clamp(6rem, 18vw, 17rem)/.8 Georgia, serif;
    letter-spacing: -.08em;
    pointer-events: none;
}

.footer-aura {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 34px;
    pointer-events: none;
}

.footer-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) .8fr .95fr minmax(250px, 1fr);
    gap: clamp(24px, 4vw, 54px);
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: inline-flex;
    width: min(380px, 100%);
    max-width: 100%;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.footer-brand-panel p {
    max-width: 420px;
    margin: 22px 0 24px;
    color: rgba(255, 255, 255, .68);
    font-size: .98rem;
    line-height: 1.8;
}

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

.footer-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    text-decoration: none;
    transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.footer-socials a:hover {
    transform: translateY(-4px);
    background: #fff;
    color: #081126;
    border-color: #fff;
}

.footer-socials .footer-whatsapp-icon:hover {
    background: #050509;
    border-color: #D4AF37;
    color: #fff;
}

.footer-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-links,
.footer-contact-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h2,
.footer-contact-card h2 {
    margin: 0 0 8px;
    color: #fff;
    font: 800 .82rem/1 "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact-card p,
.footer-contact-card span {
    color: rgba(255, 255, 255, .66);
    font-size: .94rem;
    line-height: 1.65;
}

.footer-links a {
    width: fit-content;
    text-decoration: none;
    position: relative;
    transition: color .22s ease, transform .22s ease;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 1px;
    background: #e51131;
    transition: right .22s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links a:hover::after {
    right: 0;
}

.footer-contact-card {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #D4AF37;
    background: #050509;
    color: #fff;
    font: 800 .9rem/1 "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(212, 175, 55, .16);
}

.footer-contact-card p {
    margin: 6px 0 0;
}

.footer-payments {
    width: min(1180px, 100%);
    margin: 34px auto 0;
    padding: 18px clamp(16px, 3vw, 26px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .16);
    position: relative;
    z-index: 1;
}

.footer-payments > span {
    color: rgba(255, 255, 255, .92);
    font: 800 .78rem/1 "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.payment-badges span {
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .78);
    font: 700 .82rem/1 "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: .02em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, .62);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: .9rem;
}

.footer-bottom a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #A67C00;
}

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

    .footer-brand-panel,
    .footer-contact-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .revel-footer {
        margin-top: 44px;
        padding-inline: 14px;
    }

    .footer-aura {
        inset: 10px;
        border-radius: 24px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-payments {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 20px;
    }

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

/* End premium footer */

/* Revel Club editorial footer */
.revel-footer {
    margin-top: 64px;
    padding: 0;
    overflow: hidden;
    background: #f7f3ef;
    color: #1b1715;
}

.revel-footer::before,
.footer-aura {
    display: none;
}

.revel-club {
    position: relative;
    width: 100%;
    min-height: 250px;
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(310px, 0.78fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4.2rem);
    padding: clamp(2.2rem, 4.8vw, 4.4rem) max(24px, calc((100vw - 1180px) / 2)) clamp(2.2rem, 4.8vw, 4.4rem) max(220px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background:
        linear-gradient(90deg, rgba(247, 243, 239, 0.72), rgba(251, 248, 245, 0.92) 42%, rgba(244, 238, 232, 0.96)),
        url("/images/brand/fondo-footer.png") left center / auto 100% no-repeat,
        radial-gradient(circle at 13% 8%, rgba(167, 126, 99, 0.12), transparent 34%),
        linear-gradient(100deg, #f0ebe5 0%, #fbf8f5 54%, #f4eee8 100%);
}

.revel-club-copy {
    text-align: center;
}

.revel-club-copy > span {
    display: block;
    margin-bottom: 0.72rem;
    color: var(--gold-text);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.46em;
    text-transform: uppercase;
}

.revel-club-copy h2 {
    margin: 0;
    color: #0c0908;
    font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", "Roboto Condensed", sans-serif !important;
    font-size: 50px;
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.revel-club-copy p {
    max-width: 460px;
    margin: 1.05rem auto 1.9rem;
    color: rgba(12, 9, 8, 0.66);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.45;
}

.revel-club-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.8rem);
}

.revel-club-benefits span {
    display: grid;
    place-items: center;
    gap: 0.62rem;
    color: rgba(12, 9, 8, 0.68);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 560;
    line-height: 1.24;
    text-align: center;
}

.revel-club-benefits svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.88;
}

.revel-club-form {
    display: grid;
    gap: 1.05rem;
    padding-left: clamp(1.8rem, 4vw, 4rem);
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.revel-club-form label {
    color: #15110f;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.22em;
    text-align: center;
    text-transform: uppercase;
}

.revel-club-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 1.35rem;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.54);
    color: #111;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.94rem;
    outline: none;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.revel-club-form input::placeholder {
    color: rgba(0, 0, 0, 0.38);
}

.revel-club-form input:focus {
    border-color: rgba(212, 175, 55, 0.62);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.revel-club-form button {
    min-height: 52px;
    border: 1px solid #050505;
    border-radius: 5px;
    background: #050505;
    color: #fff;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.revel-club-form button:hover {
    border-color: #D4AF37;
    background: #0c0c0c;
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.14);
    transform: translateY(-1px);
}

.revel-club-form p {
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: center;
}

.revel-footer .footer-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.25rem 0 1.55rem;
    display: grid;
    grid-template-columns: minmax(190px, 1.45fr) repeat(4, minmax(120px, 0.72fr));
    gap: clamp(1.5rem, 4vw, 4.5rem);
}

.revel-footer .footer-brand-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-wordmark {
    color: #0c0908;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.54em;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-logo-mark {
    width: min(250px, 100%);
    display: inline-flex;
    align-items: center;
}

.footer-logo-mark img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-brand-panel i {
    margin: 0.42rem 0 0.65rem 4.3rem;
    color: #A67C00;
    font-style: normal;
    font-weight: 900;
}

.revel-footer .footer-brand-panel p {
    margin: 0 0 1.05rem;
    color: rgba(0, 0, 0, 0.62);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.revel-footer .footer-socials {
    justify-content: center;
    gap: 0.65rem;
}

.revel-footer .footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: transparent;
    color: #171211;
}

.revel-footer .footer-socials a:hover {
    transform: translateY(-2px);
    border-color: #171211;
    background: #171211;
    color: #fff;
}

.revel-footer .footer-socials svg {
    width: 18px;
    height: 18px;
}

.revel-footer .footer-links {
    gap: 0.22rem;
}

.revel-footer .footer-links h2 {
    margin: 0 0 0.55rem;
    color: #0c0908;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.revel-footer .footer-links a {
    color: rgba(0, 0, 0, 0.64);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.82rem;
    line-height: 1.38;
}

.revel-footer .footer-links a::after {
    display: none;
}

.revel-footer .footer-links a:hover {
    color: #A67C00;
    transform: none;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.revel-footer .footer-bottom {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 1.25rem;
    border: 0;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
}

.revel-footer .footer-bottom p {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.78rem;
}

.revel-footer .footer-bottom a {
    color: #0c0908;
    font-weight: 800;
    text-decoration: none;
}

.revel-footer .footer-bottom a:hover {
    color: #A67C00;
}

@media (max-width: 980px) {
    .revel-club {
        grid-template-columns: 1fr;
        text-align: center;
        padding-left: 1rem;
    }

    .revel-club-form {
        width: min(420px, 100%);
        margin: 0 auto;
        padding-left: 0;
        border-left: 0;
    }

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

    .revel-footer .footer-brand-panel {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer-brand-panel i {
        margin-left: 0;
    }
}

@media (max-width: 620px) {
    .revel-footer {
        margin-top: 44px;
    }

    .revel-club {
        padding: 2.4rem 1rem;
    }

    .revel-club-copy h2 {
        font-size: 36px;
    }

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

    .revel-footer .footer-shell {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .revel-footer .footer-links {
        align-items: center;
    }
}
/* End Revel Club editorial footer */

/* Moda Revel applied logo layer */
.bj-logo-image {
    width: clamp(126px, 12vw, 190px);
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.bj-logo-image img {
    display: block;
    width: 100%;
    max-height: 52px;
    object-fit: contain;
}

.login-logo-mark {
    display: block;
    width: min(100%, 430px);
    height: auto;
    margin: 14px 0 12px;
    object-fit: contain;
}

@media (max-width: 620px) {
    .bj-logo-image {
        width: 138px;
        height: 50px;
    }

    .bj-logo-image img {
        max-height: 46px;
    }

    .login-logo-mark {
        width: min(100%, 340px);
    }
}

/* End Moda Revel applied logo layer */

/* Header logo and navigation balance correction */
.bj-nav {
    width: min(100%, 1880px) !important;
    min-height: 68px !important;
    padding: .42rem clamp(1rem, 1.8vw, 2rem) !important;
    grid-template-columns: minmax(210px, 270px) minmax(430px, 1fr) minmax(170px, 230px) auto auto !important;
    gap: clamp(.65rem, 1.1vw, 1.25rem) !important;
}

.bj-logo-image {
    width: clamp(235px, 16vw, 300px) !important;
    height: 62px !important;
    overflow: visible !important;
    justify-self: start !important;
}

.bj-logo-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin-left: 0 !important;
    object-fit: contain !important;
}

.bj-menu {
    justify-self: start !important;
    margin-left: clamp(1.15rem, 1.75vw, 2.25rem) !important;
    gap: clamp(1rem, 1.45vw, 1.65rem) !important;
    min-width: 0 !important;
}

.bj-menu a {
    font-size: clamp(.78rem, .78vw, .9rem) !important;
    letter-spacing: .055em !important;
}

.bj-search {
    width: clamp(168px, 13vw, 230px) !important;
    min-width: 0 !important;
    justify-self: end !important;
}

.bj-search input {
    height: 38px !important;
    padding-left: .9rem !important;
}

.bj-advice {
    padding-inline: .95rem !important;
}

.bj-actions {
    gap: .72rem !important;
}

.bj-mobile-toggle {
    display: none;
}

@media (max-width: 1280px) {
    .bj-nav {
        grid-template-columns: minmax(180px, 220px) minmax(280px, 1fr) minmax(140px, 190px) auto auto !important;
    }

    .bj-menu {
        margin-left: clamp(.7rem, 1.2vw, 1.2rem) !important;
    }

    .bj-logo-image {
        width: clamp(205px, 17vw, 250px) !important;
    }

    .bj-actions {
        display: inline-flex !important;
        gap: .5rem !important;
    }

    .bj-action {
        width: auto !important;
        height: auto !important;
        min-width: 48px !important;
        display: grid !important;
        align-items: center !important;
        justify-content: center !important;
        justify-items: center !important;
        gap: .08rem !important;
        border-radius: 0 !important;
    }

    .bj-action span:last-child {
        display: block !important;
        font-size: .62rem !important;
        line-height: 1 !important;
    }
}

@media (max-width: 1050px) {
    .bj-nav {
        grid-template-columns: 1fr auto !important;
        padding: .58rem 1rem .7rem !important;
    }

    .bj-logo-image {
        width: 218px !important;
        height: 58px !important;
    }

    .bj-menu {
        grid-column: 1 / -1 !important;
        order: 3 !important;
        justify-content: flex-start !important;
        width: 100% !important;
        margin-left: 0 !important;
    }

    .bj-search {
        grid-column: 1 / -1 !important;
        order: 4 !important;
        width: 100% !important;
        max-width: none !important;
    }
}

@media (max-width: 620px) {
    .bj-logo-image {
        width: 190px !important;
        height: 52px !important;
    }

    .bj-logo-image img {
        max-height: none !important;
    }
}

@media (max-width: 720px) {
    .bj-nav {
        grid-template-columns: minmax(132px, 1fr) auto auto !important;
        align-items: center !important;
        gap: .58rem !important;
        min-height: auto !important;
        padding: .62rem .85rem .75rem !important;
    }

    .bj-logo-image {
        width: 188px !important;
        height: 50px !important;
    }

    .bj-actions {
        order: 2 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: .42rem !important;
    }

    .bj-action {
        width: 38px !important;
        height: 38px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 999px !important;
        background: #fff !important;
        border: 1px solid rgba(7, 17, 38, .1) !important;
        box-shadow: 0 12px 26px rgba(7, 17, 38, .08) !important;
    }

    .bj-action span:last-child,
    #cartToggle {
        display: none !important;
    }

    .bj-mobile-toggle {
        order: 3 !important;
        width: 40px;
        height: 40px;
        display: inline-grid;
        place-items: center;
        align-content: center;
        gap: 3px;
        border: 0;
        border-radius: 14px;
        background: #071126;
        box-shadow: 0 14px 30px rgba(7, 17, 38, .18);
        cursor: pointer;
    }

    .bj-mobile-toggle span {
        width: 17px;
        height: 1.4px;
        display: block;
        border-radius: 999px;
        background: #fff;
        transition: transform .22s ease, opacity .22s ease, width .22s ease;
    }

    .bj-mobile-toggle span:nth-child(2) {
        width: 13px;
        margin-right: 4px;
    }

    .bj-mobile-toggle.open span:nth-child(1) {
        transform: translateY(4.4px) rotate(45deg);
    }

    .bj-mobile-toggle.open span:nth-child(2) {
        width: 0;
        opacity: 0;
    }

    .bj-mobile-toggle.open span:nth-child(3) {
        transform: translateY(-4.4px) rotate(-45deg);
    }

    .bj-menu {
        grid-column: 1 / -1 !important;
        order: 4 !important;
        display: none !important;
        width: 100% !important;
        margin-top: .12rem !important;
        padding: .48rem !important;
        border: 1px solid rgba(7, 17, 38, .08) !important;
        border-radius: 18px !important;
        background: rgba(255, 255, 255, .97) !important;
        box-shadow: 0 18px 38px rgba(7, 17, 38, .1) !important;
    }

    .bj-menu.open {
        display: grid !important;
        gap: .4rem !important;
    }

    .bj-menu a {
        width: 100% !important;
        padding: .72rem .9rem !important;
        border-radius: 13px !important;
        background: #f8fafc !important;
        font-size: .82rem !important;
        letter-spacing: .08em !important;
        white-space: nowrap !important;
    }

    .bj-search {
        grid-column: 1 / -1 !important;
        order: 5 !important;
        width: 100% !important;
        max-width: none !important;
    }

    .bj-advice {
        grid-column: 1 / -1 !important;
        order: 6 !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

/* End header logo and navigation balance correction */

/* Public category page */
.revel-category-page {
    min-height: 100vh;
    background: #fff;
}

.revel-category-page main {
    overflow: hidden;
}

.revel-category-page .bj-menu a[aria-current="page"] {
    color: #A67C00;
}

.revel-category-hero {
    position: relative;
    width: min(1180px, calc(100% - 2rem));
    min-height: clamp(190px, 16vw, 250px);
    margin: clamp(1.4rem, 3vw, 2.4rem) auto clamp(2rem, 4vw, 3.2rem);
    padding: clamp(1.6rem, 3vw, 2.4rem) clamp(2.8rem, 6vw, 5.5rem);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(0, 0, 0, 0.075);
    border-radius: 8px;
    background:
        radial-gradient(circle at 72% 42%, rgba(212, 175, 55, 0.08), transparent 30%),
        linear-gradient(135deg, #fff 0%, #fff 58%, #f7f3ef 100%);
}

.revel-category-hero::after {
    content: "";
    position: absolute;
    left: clamp(1.3rem, 4vw, 4.2rem);
    right: clamp(1.3rem, 4vw, 4.2rem);
    bottom: clamp(1.1rem, 2.4vw, 2.4rem);
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.42), rgba(212, 175, 55, 0));
    pointer-events: none;
}

.revel-category-hero-copy {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
}

.revel-category-word {
    position: absolute;
    right: -0.05em;
    top: 48%;
    z-index: 1;
    width: 100%;
    color: rgba(0, 0, 0, 0.04);
    font: 900 clamp(6rem, 18vw, 14rem)/0.8 Georgia, "Times New Roman", serif;
    letter-spacing: -0.08em;
    transform: translateY(-50%);
    pointer-events: none;
    text-align: right;
}

.revel-category-orbit {
    position: absolute;
    left: 72%;
    top: 50%;
    z-index: 2;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(0, 0, 0, 0.085);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.revel-category-orbit-one {
    width: clamp(360px, 37vw, 580px);
}

.revel-category-orbit-two {
    width: clamp(220px, 23vw, 360px);
    border-color: rgba(212, 175, 55, 0.18);
}

.revel-category-meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.6rem;
    white-space: nowrap;
}

.revel-category-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(0, 0, 0, 0.52);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.82rem;
    white-space: nowrap;
}

.revel-category-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.revel-category-breadcrumb a:hover {
    color: #A67C00;
}

.revel-category-kicker,
.revel-category-empty > span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #A67C00;
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.revel-category-meta .revel-category-kicker {
    white-space: nowrap;
}

.revel-category-back {
    min-height: 42px;
    padding: 0 1.05rem;
    justify-content: center;
    border: 1px solid #050509;
    border-radius: 3px;
    background: #050509;
    color: #fff;
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.revel-category-back:hover {
    color: #fff;
    transform: translateY(-1px);
}

.revel-category-hero h1 {
    position: relative;
    max-width: 100%;
    margin: clamp(1.25rem, 3vw, 2.25rem) 0 0.85rem;
    display: inline-block;
    color: transparent !important;
    font-family: "DIN Alternate", "DIN Condensed", "Roboto Condensed", "Arial Narrow", sans-serif !important;
    font-size: clamp(2.8rem, 6.4vw, 6.2rem);
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    background: linear-gradient(100deg, #050505 0%, #050505 36%, #D4AF37 48%, #050505 62%, #050505 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    transform-origin: left center;
    animation: revelTitleEnter 0.95s cubic-bezier(.2, .85, .22, 1) 0.22s both, revelTitleShine 6.8s ease-in-out 1.35s infinite;
}

.revel-category-hero h1::after {
    content: "";
    position: absolute;
    left: 0.02em;
    bottom: -0.12em;
    width: clamp(86px, 16vw, 180px);
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0));
    transform-origin: left center;
    animation: revelTitleStroke 1.15s cubic-bezier(.2, .85, .22, 1) 0.7s both;
}

.revel-category-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(0, 0, 0, 0.62);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.56;
}

.revel-category-actions {
    margin-top: 1.45rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.revel-category-count {
    min-height: 42px;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(0, 0, 0, 0.68);
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.revel-category-toolbar {
    width: min(1180px, calc(100% - 2rem));
    min-height: 62px;
    margin: 0 auto 1.1rem;
    padding: 0.72rem 0.9rem 0.72rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
}

.revel-category-toolbar p {
    margin: 0;
    color: rgba(0, 0, 0, 0.68);
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.revel-category-toolbar label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(0, 0, 0, 0.58);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.82rem;
}

.revel-category-toolbar select {
    min-width: 190px;
    height: 40px;
    padding: 0 2.25rem 0 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    background: #fff;
    color: #050509;
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.revel-category-grid {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 clamp(3.4rem, 7vw, 6rem);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: clamp(1.2rem, 2vw, 1.8rem);
}

.revel-category-pagination {
    width: min(1180px, calc(100% - 2rem));
    margin: clamp(-3.8rem, -4vw, -2rem) auto clamp(3.4rem, 7vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.revel-category-page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
}

.revel-category-page-link,
.revel-category-page-number {
    min-width: 42px;
    min-height: 42px;
    padding: 0 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #050509;
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.revel-category-page-number {
    padding: 0;
}

.revel-category-page-link:hover,
.revel-category-page-number:hover {
    border-color: rgba(212, 175, 55, 0.42);
    color: #A67C00;
    transform: translateY(-1px);
}

.revel-category-page-number.is-active {
    border-color: #D4AF37;
    background: #D4AF37;
    color: #fff;
}

.revel-category-page-link.is-disabled {
    cursor: default;
    opacity: 0.38;
    pointer-events: none;
}

.revel-category-related {
    width: 100%;
    margin: 0 auto clamp(3.8rem, 7vw, 6.2rem);
    padding-top: clamp(1.2rem, 3vw, 2.4rem);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.revel-category-related-head {
    max-width: 100%;
    margin: 0 auto clamp(1.6rem, 3.2vw, 2.4rem);
    text-align: center;
}

.revel-category-related-head span {
    display: inline-flex;
    color: #A67C00;
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.revel-category-related-head h2 {
    margin: 0.45rem 0 0.55rem;
    color: #050509;
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.revel-category-related-head p {
    margin: 0;
    color: rgba(0, 0, 0, 0.58);
    font-size: clamp(0.95rem, 1.3vw, 1.06rem);
    line-height: 1.52;
}

.revel-category-related-carousel {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
    position: relative;
    padding-inline: 0.1rem;
}

.revel-category-related-grid {
    width: 100%;
}

.category-related-commercial-card {
    display: block;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.category-related-commercial-card .landing-campaign-product-panel h3,
.category-related-commercial-card .landing-campaign-product-price,
.category-related-commercial-card .landing-campaign-product-offer {
    min-width: 0;
}

.category-related-commercial-card .landing-campaign-product-offer small,
.category-related-commercial-card .landing-campaign-product-badge {
    min-width: 0;
}

.revel-category-siblings {
    width: min(1180px, calc(100% - 2rem));
    margin: clamp(1.2rem, 3vw, 2.6rem) auto clamp(3.8rem, 7vw, 6.2rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.revel-category-related + .revel-category-siblings {
    margin-top: clamp(-4.2rem, -4vw, -2.2rem);
}

.revel-category-sibling {
    min-height: 132px;
    padding: clamp(1.15rem, 2.4vw, 1.7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background: #fff;
    color: #050509;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.revel-category-sibling:hover {
    border-color: rgba(212, 175, 55, 0.36);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.revel-category-sibling span {
    color: rgba(0, 0, 0, 0.52);
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.revel-category-sibling strong {
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.75rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.revel-category-sibling-next {
    align-items: flex-end;
    text-align: right;
}

.category-product-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.revel-category-card {
    display: block;
    color: #050509;
    text-decoration: none;
}

.revel-category-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    background: #f7f4f1;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.revel-category-media img,
.revel-category-media > span {
    width: 100%;
    aspect-ratio: 1 / 1.42;
    display: grid;
    place-items: center;
    object-fit: cover;
    color: rgba(0, 0, 0, 0.28);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    transition: transform 0.7s cubic-bezier(.2, .8, .2, 1), filter 0.7s ease;
}

.revel-category-card:hover .revel-category-media img {
    transform: scale(1.035);
    filter: contrast(1.03) saturate(1.03);
}

.revel-category-sizes {
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
}

.revel-category-sizes span {
    min-width: 32px;
    min-height: 28px;
    padding: 0 0.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 17, 38, 0.1);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.86);
    color: #071126;
    font-size: 0.72rem;
    font-weight: 800;
}

.revel-category-info {
    padding: 0.7rem 0 0;
    display: grid;
    gap: 0.35rem;
}

.revel-category-info h2 {
    margin: 0;
    color: #050509;
    font-family: "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    font-weight: 850;
    line-height: 1.08;
}

.revel-category-info strong {
    color: #A67C00;
    font-family: "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
    font-weight: 850;
}

.revel-category-empty {
    width: min(760px, calc(100% - 2rem));
    margin: 0 auto clamp(3.4rem, 7vw, 6rem);
    padding: clamp(2rem, 5vw, 3.6rem);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    background: #f7f3ef;
    text-align: center;
}

.revel-category-empty h2 {
    margin: 0.85rem 0 0.65rem;
    color: #050509;
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.revel-category-empty p {
    max-width: 520px;
    margin: 0 auto 1.35rem;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.55;
}

.revel-category-empty div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.revel-category-empty a {
    min-height: 42px;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #050509;
    border-radius: 3px;
    background: #050509;
    color: #fff;
    font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.revel-category-empty a + a {
    background: transparent;
    color: #050509;
}

.revel-category-page .revel-footer {
    margin-top: 0;
}

.revel-category-page .revel-footer .footer-shell {
    grid-template-columns: minmax(190px, 1.45fr) repeat(4, minmax(120px, 0.72fr));
}

@media (max-width: 900px) {
    .revel-category-hero {
        min-height: 210px;
        padding: clamp(1.45rem, 4vw, 2.15rem) clamp(2.2rem, 6vw, 3.6rem);
    }

    .revel-category-orbit {
        left: 78%;
    }

    .revel-category-word {
        right: -0.16em;
        font-size: clamp(5rem, 22vw, 10rem);
    }

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

    .revel-category-page .revel-footer .footer-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .revel-category-page .revel-footer .footer-brand-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .revel-category-hero {
        width: min(94vw, 1180px);
        min-height: 190px;
        margin-top: 1rem;
        padding: 1.35rem 1.15rem 1.55rem;
        align-items: flex-start;
    }

    .revel-category-hero h1 {
        max-width: 96vw !important;
        font-size: clamp(2rem, 10.8vw, 3.2rem) !important;
        line-height: 0.88 !important;
        letter-spacing: -0.075em !important;
    }

    .revel-category-hero p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .revel-category-meta {
        font-size: 0.76rem;
    }

    .revel-category-breadcrumb,
    .revel-category-meta .revel-category-kicker {
        font-size: 0.76rem;
    }

    .revel-category-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .revel-category-back,
    .revel-category-count {
        width: 100%;
    }

    .revel-category-orbit {
        left: 50%;
        top: 52%;
    }

    .revel-category-orbit-one {
        width: 112vw;
    }

    .revel-category-orbit-two {
        width: 68vw;
    }

    .revel-category-word {
        right: auto;
        left: 50%;
        top: 52%;
        font-size: clamp(4.8rem, 27vw, 7rem);
        text-align: center;
        transform: translate(-50%, -50%);
    }

    .revel-category-grid {
        width: min(94vw, 1180px);
        gap: 1rem 0.8rem;
    }

    .revel-category-pagination {
        width: min(94vw, 1180px);
        margin-top: -2.2rem;
        flex-wrap: wrap;
        gap: 0.55rem;
    }

    .revel-category-page-numbers {
        order: -1;
        width: 100%;
    }

    .revel-category-page-link,
    .revel-category-page-number {
        min-width: 38px;
        min-height: 38px;
        font-size: 0.72rem;
    }

    .revel-category-related {
        margin-bottom: clamp(3.2rem, 12vw, 4.4rem);
        padding-top: 1.65rem;
    }

    .revel-category-related-head {
        margin-bottom: 1.35rem;
    }

    .revel-category-related-head h2 {
        max-width: 92vw;
        margin-inline: auto;
        font-size: min(40px, 8.8vw);
        line-height: 1.05;
        white-space: normal;
    }

    .revel-category-related-grid {
        width: 100%;
    }

    .revel-category-siblings {
        width: min(94vw, 1180px);
        margin-bottom: clamp(3.2rem, 12vw, 4.4rem);
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .revel-category-related + .revel-category-siblings {
        margin-top: -2.4rem;
    }

    .revel-category-sibling {
        min-height: 112px;
        padding: 1.05rem;
    }

    .revel-category-sibling strong {
        font-size: clamp(1.45rem, 8vw, 2.2rem);
    }

    .revel-category-toolbar {
        width: min(94vw, 1180px);
        align-items: stretch;
        flex-direction: column;
        padding: 0.9rem;
    }

    .revel-category-toolbar p {
        text-align: center;
    }

    .revel-category-toolbar label {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 0.45rem;
    }

    .revel-category-toolbar select {
        width: 100%;
        min-width: 0;
    }

    .revel-category-sizes {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
    }

    .revel-category-sizes span {
        min-width: 27px;
        min-height: 24px;
        font-size: 0.66rem;
    }

    .revel-category-info h2 {
        font-size: 0.94rem;
    }

    .revel-category-page .revel-footer .footer-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .revel-category-related-grid {
        width: 100%;
    }

    .revel-category-related-carousel {
        width: min(100% - 24px, 520px);
    }
}

@media (max-width: 390px) {
    .revel-category-hero h1 {
        font-size: clamp(1.78rem, 9.8vw, 2.55rem) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .revel-category-hero h1,
    .revel-category-hero h1::after {
        animation: none !important;
    }
}
/* End public category page */

/* Reference-inspired product detail sheet */
.product-modal.open {
    align-items: center !important;
    padding: clamp(0.75rem, 2vw, 1.5rem) !important;
}

.product-modal .modal-product-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr) !important;
    gap: clamp(1.6rem, 4vw, 3.4rem) !important;
    width: min(1180px, calc(100vw - 2rem)) !important;
    max-height: calc(100vh - 2rem) !important;
    padding: clamp(1rem, 2.2vw, 1.9rem) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22) !important;
    overflow: auto !important;
}

.modal-gallery-shell {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: clamp(0.9rem, 1.8vw, 1.25rem);
    min-width: 0;
}

.modal-thumbs {
    display: grid;
    align-content: start;
    gap: 0.8rem;
}

.modal-thumb {
    display: block;
    width: 76px;
    height: 92px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 4px;
    background: #f4f4f4;
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.modal-thumb.active,
.modal-thumb:hover {
    border-color: #D4AF37;
    opacity: 1;
    transform: translateY(-1px);
}

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.modal-product-layout .modal-product-media {
    position: relative;
    min-height: min(68vh, 650px) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, #f4f3f2 0%, #ffffff 100%) !important;
}

.modal-product-layout .modal-product-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.12)) !important;
}

.modal-offer-mark {
    position: absolute;
    right: -1.15rem;
    bottom: clamp(1rem, 3vw, 2rem);
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    background: #10213a;
    color: #fff;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 18px 30px rgba(16, 33, 58, 0.22);
}

.modal-product-layout .modal-close {
    top: 1rem !important;
    right: 1rem !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 0 !important;
    background: #eef2f5 !important;
    color: #000 !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
}

.modal-product-layout .modal-product-copy {
    align-self: center;
    padding: clamp(1rem, 2vw, 1.4rem) 0 !important;
}

.modal-product-layout .modal-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.38rem !important;
    margin-bottom: 0.85rem !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    color: #050509 !important;
    font-size: 0.76rem !important;
    letter-spacing: 0.18em !important;
}

.modal-product-layout .modal-badge > span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.38rem !important;
}

.modal-product-layout #modalProductName {
    max-width: 460px;
    margin: 0 0 0.45rem !important;
    color: #404448 !important;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif !important;
    font-size: clamp(2rem, 3.7vw, 3.5rem) !important;
    font-weight: 760 !important;
    line-height: 0.96 !important;
    letter-spacing: -0.025em !important;
    text-transform: uppercase !important;
}

.modal-reference {
    margin: 0 0 0.65rem !important;
    color: rgba(0, 0, 0, 0.48) !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.03em !important;
}

.modal-product-layout #modalProductPrice {
    display: inline-flex;
    margin: 0 0 0.2rem !important;
    color: #050509 !important;
    font-size: clamp(1.35rem, 2.1vw, 1.8rem) !important;
}

.modal-tax {
    display: block;
    margin: 0 0 0.65rem;
    color: rgba(0, 0, 0, 0.46);
    font-size: 0.82rem;
}

.modal-product-layout #modalProductDesc {
    max-width: 470px;
    margin: 0 0 0.9rem !important;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.58) !important;
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
}

.modal-product-layout label {
    display: block !important;
    margin: 0 0 1rem !important;
    color: rgba(0, 0, 0, 0.62) !important;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif !important;
    font-size: 0.84rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

.modal-product-layout .size-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.modal-size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.7rem;
}

.modal-size-button {
    min-width: 48px;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    background: #fff;
    color: #555;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}

.modal-size-button.active,
.modal-size-button:hover {
    border-color: #D4AF37;
    background: #df151e;
    color: #fff;
}

.modal-product-layout #modalAddToCart,
.modal-product-layout .modal-whatsapp {
    max-width: 432px;
    min-height: 46px !important;
    border-radius: 3px !important;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 820 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
}

.modal-product-layout #modalAddToCart {
    width: 100%;
    border: 1px solid #D4AF37 !important;
    background: #D4AF37 !important;
    color: #050509 !important;
}

.modal-product-layout .modal-service-panel {
    max-width: 432px;
    margin-top: 0.8rem !important;
    padding-top: 0 !important;
    border-top: 0 !important;
}

.modal-product-layout .modal-whatsapp {
    margin-top: 0.7rem;
    border: 1px solid #D4AF37;
    background: #050509 !important;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.12) !important;
}

.modal-product-layout .modal-whatsapp::before {
    display: none !important;
}

.modal-product-layout .modal-service-grid {
    grid-template-columns: 1fr !important;
    gap: 0.35rem !important;
    margin: 0.85rem 0 0 !important;
}

.modal-product-layout .modal-service-grid span {
    justify-content: flex-start;
    min-height: auto;
    padding: 0.2rem 0;
    border: 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.56);
    font-size: 0.75rem;
    font-weight: 720;
    letter-spacing: 0.06em;
    text-align: left;
}

.modal-product-layout .modal-service-grid span::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 0.45rem;
    border-radius: 999px;
    background: #D4AF37;
}

.modal-product-layout .modal-note {
    max-width: 432px;
    margin-top: 0.8rem !important;
    color: rgba(0, 0, 0, 0.48) !important;
}

@media (max-width: 860px) {
    .product-modal .modal-product-layout {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        width: calc(100vw - 1rem) !important;
        padding: 0.8rem !important;
    }

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

    .modal-thumbs {
        order: 2;
        display: flex;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }

    .modal-product-layout .modal-product-media {
        min-height: min(64vh, 540px) !important;
    }

    .modal-product-layout .modal-product-copy {
        padding: 0.4rem 0.25rem 0.7rem !important;
    }

    .modal-product-layout #modalProductName {
        font-size: clamp(1.65rem, 8vw, 2.45rem) !important;
    }
}
/* End reference-inspired product detail sheet */

/* Mobile-first product detail polish */
@media (max-width: 760px) {
    .product-modal.open {
        align-items: stretch !important;
        justify-content: flex-start !important;
        padding: 0 !important;
        background: rgba(0, 0, 0, 0.62) !important;
    }

    .product-modal .modal-product-layout {
        width: 100vw !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
    }

    .modal-product-layout .modal-close {
        position: fixed !important;
        top: 0.7rem !important;
        right: 0.7rem !important;
        z-index: 20 !important;
        width: 42px !important;
        height: 42px !important;
        background: rgba(255, 255, 255, 0.92) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12) !important;
        backdrop-filter: blur(12px) !important;
        font-size: 1.65rem !important;
    }

    .modal-gallery-shell {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        background: #f7f6f4 !important;
    }

    .modal-product-layout .modal-product-media {
        min-height: 58vh !important;
        height: 58vh !important;
        background: linear-gradient(145deg, #f5f2ef 0%, #fff 100%) !important;
    }

    .modal-product-layout .modal-product-media img {
        padding: 1.2rem 0.6rem 0.6rem !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    .modal-offer-mark {
        right: 0.75rem !important;
        bottom: 0.75rem !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 0.62rem !important;
    }

    .modal-thumbs {
        order: 2 !important;
        display: flex !important;
        gap: 0.55rem !important;
        padding: 0.65rem 0.8rem 0.8rem !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    .modal-thumbs::-webkit-scrollbar {
        display: none !important;
    }

    .modal-thumb {
        flex: 0 0 58px !important;
        width: 58px !important;
        height: 72px !important;
        border-radius: 3px !important;
        background: #fff !important;
    }

    .modal-product-layout .modal-product-copy {
        padding: 1.15rem 1rem 1.4rem !important;
        background: #fff !important;
    }

    .modal-product-layout .modal-badge {
        margin-bottom: 0.55rem !important;
        font-size: 0.68rem !important;
        letter-spacing: 0.16em !important;
    }

    .modal-product-layout #modalProductName {
        max-width: calc(100% - 0.5rem) !important;
        font-size: clamp(1.65rem, 8.6vw, 2.45rem) !important;
        line-height: 0.98 !important;
    }

    .modal-reference {
        margin-bottom: 0.45rem !important;
        font-size: 0.78rem !important;
    }

    .modal-product-layout #modalProductPrice {
        font-size: 1.45rem !important;
    }

    .modal-tax {
        font-size: 0.76rem !important;
    }

    .modal-product-layout #modalProductDesc {
        max-width: 100% !important;
        margin-bottom: 0.85rem !important;
        padding-bottom: 0.85rem !important;
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }

    .modal-size-buttons {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 0.45rem !important;
    }

    .modal-size-button {
        width: 100% !important;
        min-width: 0 !important;
        height: 42px !important;
        font-size: 0.92rem !important;
    }

    .modal-product-layout #modalAddToCart,
    .modal-product-layout .modal-whatsapp {
        max-width: none !important;
        width: 100% !important;
        min-height: 50px !important;
        font-size: 0.9rem !important;
    }

    .modal-product-layout .modal-service-panel,
    .modal-product-layout .modal-note {
        max-width: none !important;
    }

    .modal-product-layout .modal-service-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.4rem 0.7rem !important;
    }

    .modal-product-layout .modal-service-grid span {
        font-size: 0.66rem !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 390px) {
    .modal-product-layout .modal-product-media {
        min-height: 54vh !important;
        height: 54vh !important;
    }

    .modal-size-buttons {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .modal-product-layout .modal-service-grid {
        grid-template-columns: 1fr !important;
    }
}
/* End mobile-first product detail polish */

/* Revel admin boutique dashboard */
.admin-page {
    background: #f5f5f3 !important;
    color: #050509 !important;
}

.admin-shell-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem clamp(1rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.admin-brand {
    display: grid;
    gap: 0.1rem;
    color: #000;
    text-decoration: none;
}

.admin-brand span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
}

.admin-brand small,
.admin-kicker,
.admin-section-title span,
.stat-card span,
.admin-header-actions {
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-weight: 760;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-brand small {
    color: #d70d25;
    font-size: 0.62rem;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(0, 0, 0, 0.54);
    font-size: 0.68rem;
}

.admin-header-actions a {
    padding: 0.65rem 0.85rem;
    background: #000;
    color: #fff;
    text-decoration: none;
}

.admin-layout {
    width: min(1220px, calc(100% - 2rem)) !important;
    margin: 0 auto;
    padding: clamp(1.2rem, 3vw, 2.2rem) 0 3rem !important;
}

.admin-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.9rem 1rem;
    background: #050509;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.admin-hero-panel::after {
    content: "REVEL";
    position: absolute;
    right: -0.12em;
    bottom: -0.28em;
    color: rgba(255, 255, 255, 0.055);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 8vw, 5.8rem);
    font-weight: 900;
    letter-spacing: -0.08em;
}

.admin-kicker {
    color: #ef2029;
    font-size: 0.62rem;
}

.admin-hero-panel h1 {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0.25rem 0 0.25rem;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.85rem);
    font-weight: 820;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.admin-hero-panel p {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    line-height: 1.35;
}

.admin-hero-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.25rem;
    min-width: 142px;
    padding: 0.62rem 0.75rem;
    border-left: 2px solid #ef2029;
    background: rgba(255, 255, 255, 0.08);
}

.admin-hero-card strong {
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 1.05rem;
}

.admin-hero-card span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-card {
    padding: 1rem !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.045);
}

.stat-card span {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(0, 0, 0, 0.52);
    font-size: 0.66rem;
}

.stat-card strong {
    color: #000;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1;
}

.admin-columns {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
    align-items: start;
}

.admin-form-card,
.admin-table-card,
.admin-orders-panel {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.05);
}

.admin-form-card,
.admin-table-card {
    padding: clamp(1rem, 2vw, 1.4rem);
}

.admin-orders-panel {
    margin-top: 1rem;
    padding: clamp(1rem, 2vw, 1.4rem);
}

.admin-section-title {
    margin-bottom: 1rem;
}

.admin-section-title span {
    color: #d70d25;
    font-size: 0.66rem;
}

.admin-section-title h2 {
    margin: 0.25rem 0 0;
    color: #000;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
    font-weight: 840;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.admin-form {
    display: grid;
    gap: 0.9rem;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.admin-form label {
    display: grid;
    gap: 0.35rem;
    color: rgba(0, 0, 0, 0.66);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-image-group {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafaf8;
}

.admin-image-group > span {
    color: #d70d25;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-orders-panel select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    background: #fff;
    color: #000;
    font: inherit;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.admin-orders-panel select:focus {
    outline: 1px solid #d70d25;
    border-color: #d70d25;
}

.admin-form .form-actions {
    margin-top: 0.2rem;
}

.admin-form .btn,
.order-filters button,
.pill-btn {
    border-radius: 0 !important;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif !important;
    font-weight: 780 !important;
    letter-spacing: 0.04em !important;
}

.admin-form .btn-primary {
    background: #000 !important;
}

.admin-form .btn-ghost {
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    color: #000 !important;
}

.table-wrap {
    overflow: auto;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 0 !important;
    background: #fff !important;
}

.table-wrap table {
    min-width: 760px;
}

.table-wrap th {
    background: #f7f7f5;
    color: rgba(0, 0, 0, 0.58);
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.table-wrap td {
    color: rgba(0, 0, 0, 0.78);
}

.table-wrap small {
    color: rgba(0, 0, 0, 0.46);
    line-height: 1.4;
}

.pill-btn {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #000;
}

.del-btn {
    border-color: rgba(215, 13, 37, 0.28);
    color: #d70d25;
}

.admin-topbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.order-filters button {
    min-height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #000;
}

.order-filters button.active,
.order-filters button:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}

@media (max-width: 880px) {
    .admin-shell-header,
    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .admin-header-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
    }
}
/* End Revel admin boutique dashboard */

/* Premium admin side navigation */
.admin-app-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
    background:
        linear-gradient(90deg, #050509 0 260px, transparent 260px),
        #f5f5f3;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    height: 100vh;
    flex-direction: column;
    padding: 1.2rem 1rem;
    background: #050509;
    color: #fff;
}

.admin-sidebar-brand {
    display: grid;
    gap: 0.15rem;
    margin-bottom: 1.4rem;
    color: #fff;
    text-decoration: none;
}

.admin-sidebar-brand img {
    width: min(100%, 176px);
    height: auto;
    display: block;
    object-fit: contain;
}

.admin-sidebar-brand span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
}

.admin-sidebar-brand small {
    color: #D4AF37;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-sidebar-nav {
    display: grid;
    gap: 0.28rem;
}

.admin-sidebar-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0.85rem 0 1rem;
    color: rgba(255, 255, 255, 0.68);
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.admin-sidebar-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: #ef2029;
    transform: translateY(-50%);
    transition: height 0.2s ease;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.075);
    color: #fff;
    transform: translateX(2px);
}

.admin-sidebar-nav a:hover::before,
.admin-sidebar-nav a.active::before {
    height: 22px;
}

.admin-store-link {
    margin-top: auto;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-workspace {
    min-width: 0;
    overflow-x: hidden;
}

.admin-current-view {
    display: grid;
    gap: 0.1rem;
}

.admin-current-view span {
    color: #d70d25;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 0.62rem;
    font-weight: 820;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.admin-current-view strong {
    color: #000;
    font-family: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 820;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.admin-anchor-section {
    scroll-margin-top: 86px;
}

.admin-blank-page {
    margin-top: 1rem;
    min-height: 220px;
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.05);
}

.admin-blank-page p {
    max-width: 620px;
    margin: 0;
    color: rgba(0, 0, 0, 0.58);
    line-height: 1.6;
}

.admin-section-screen {
    display: none !important;
}

.admin-section-screen.active-admin-section {
    display: block !important;
}

.admin-products-module.active-admin-section,
.admin-categories-module.active-admin-section {
    display: grid !important;
}

@media (max-width: 960px) {
    .admin-app-shell {
        display: block;
        background: #f5f5f3;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .admin-sidebar-nav {
        display: flex;
        gap: 0.35rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .admin-sidebar-nav a {
        flex: 0 0 auto;
        min-height: 38px;
        white-space: nowrap;
    }

    .admin-store-link {
        margin-top: 0.9rem;
    }
}
/* End premium admin side navigation */

/* Soft premium admin visual language */
.admin-page {
    --admin-bg: #edf1f6;
    --admin-surface: #ffffff;
    --admin-sidebar: #171c26;
    --admin-sidebar-soft: #202634;
    --admin-ink: #071432;
    --admin-muted: #7c869d;
    --admin-line: #d9e1ed;
    --admin-blue: #1769ff;
    --admin-blue-soft: #eaf2ff;
    background: var(--admin-bg) !important;
    color: var(--admin-ink) !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", "Aptos", sans-serif !important;
}

.admin-page *,
.admin-page input,
.admin-page textarea,
.admin-page select,
.admin-page button {
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", "Aptos", sans-serif !important;
}

.admin-app-shell {
    background:
        linear-gradient(90deg, var(--admin-sidebar) 0 260px, transparent 260px),
        var(--admin-bg) !important;
}

.admin-sidebar {
    background: var(--admin-sidebar) !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

.admin-sidebar-brand span {
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    color: #f6f8fb;
    font-size: 1.65rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em;
}

.admin-sidebar-brand small {
    color: #D4AF37 !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    letter-spacing: 0.08em !important;
}

.admin-sidebar-nav a {
    min-height: 40px !important;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.72) !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 750 !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
}

.admin-sidebar-nav a::before {
    left: 0.45rem !important;
    width: 5px !important;
    border-radius: 999px;
    background: var(--admin-blue) !important;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active {
    background: var(--admin-sidebar-soft) !important;
    color: #fff !important;
    transform: none !important;
}

.admin-store-link {
    border-color: rgba(255, 255, 255, 0.16) !important;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.86rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.admin-shell-header {
    border-bottom: 1px solid var(--admin-line) !important;
    background: rgba(237, 241, 246, 0.92) !important;
}

.admin-current-view span,
.admin-kicker,
.admin-section-title span,
.stat-card span {
    color: var(--admin-muted) !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
}

.admin-current-view strong,
.admin-section-title h2,
.admin-hero-panel h1,
.stat-card strong {
    color: var(--admin-ink) !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    font-weight: 850 !important;
    letter-spacing: -0.035em !important;
    text-transform: none !important;
}

.admin-header-actions {
    color: var(--admin-muted) !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.admin-header-actions a,
.admin-form .btn-primary,
.order-filters button.active,
.order-filters button:hover {
    border-radius: 999px !important;
    background: var(--admin-blue) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(23, 105, 255, 0.18);
}

.admin-layout {
    width: auto !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3.4vw, 3rem) 3rem !important;
}

.admin-hero-panel {
    border: 1px solid var(--admin-line);
    border-radius: 14px;
    background: var(--admin-surface) !important;
    color: var(--admin-ink) !important;
    box-shadow: 0 16px 36px rgba(30, 42, 72, 0.055);
}

.admin-hero-panel::after {
    color: rgba(23, 105, 255, 0.045) !important;
}

.admin-hero-panel p,
.admin-hero-card span,
.admin-blank-page p,
.table-wrap small {
    color: var(--admin-muted) !important;
}

.admin-hero-card {
    border-left: 0 !important;
    border-radius: 12px;
    background: var(--admin-blue-soft) !important;
}

.admin-hero-card strong {
    color: var(--admin-blue) !important;
}

.stat-card,
.admin-form-card,
.admin-table-card,
.admin-orders-panel,
.admin-blank-page {
    border: 1px solid var(--admin-line) !important;
    border-radius: 12px !important;
    background: var(--admin-surface) !important;
    box-shadow: 0 18px 38px rgba(30, 42, 72, 0.055) !important;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-orders-panel select,
.order-filters button {
    border: 1px solid #cfe0f8 !important;
    border-radius: 10px !important;
    color: var(--admin-ink) !important;
    background: #fff !important;
}

.admin-form input::placeholder,
.admin-form textarea::placeholder {
    color: #a4aec1;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.admin-orders-panel select:focus {
    outline: 0 !important;
    border-color: var(--admin-blue) !important;
    box-shadow: 0 0 0 3px rgba(23, 105, 255, 0.12);
}

.admin-form label {
    color: #4f5b73 !important;
    font-size: 0.86rem !important;
    font-weight: 750 !important;
}

.admin-image-group {
    border-color: var(--admin-line) !important;
    border-radius: 12px;
    background: #f8faff !important;
}

.admin-image-group > span {
    color: var(--admin-blue) !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.table-wrap {
    border-color: var(--admin-line) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.table-wrap th {
    background: #f7f9fc !important;
    color: #536079 !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.table-wrap td {
    border-bottom-color: var(--admin-line) !important;
    color: var(--admin-ink) !important;
    font-size: 0.92rem !important;
}

.pill-btn {
    border-color: #cfe0f8 !important;
    border-radius: 999px !important;
    color: var(--admin-blue) !important;
    background: #fff !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.del-btn {
    border-color: #ffd2da !important;
    color: #d83a52 !important;
}

.order-filters button {
    color: var(--admin-blue) !important;
    font-family: "Nunito Sans", "Segoe UI Variable", "Segoe UI", sans-serif !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

@media (max-width: 960px) {
    .admin-app-shell {
        background: var(--admin-bg) !important;
    }
}
/* End soft premium admin visual language */

/* Premium products module */
.admin-products-module {
    display: grid;
    gap: 1rem;
}

.admin-module-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.admin-module-heading h2 {
    margin: 0;
    color: var(--admin-ink);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 850;
    letter-spacing: -0.045em;
}

.admin-module-heading h2 span {
    color: var(--admin-muted);
}

.admin-module-heading p {
    margin: 0.2rem 0 0;
    color: var(--admin-muted);
}

.admin-primary-action {
    min-height: 44px;
    padding: 0 1.2rem;
    border: 0;
    border-radius: 999px;
    background: var(--admin-blue);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(23, 105, 255, 0.2);
    cursor: pointer;
}

.admin-products-card {
    overflow: hidden;
    border: 1px solid var(--admin-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(30, 42, 72, 0.055);
    min-width: 0;
}

.admin-products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--admin-line);
}

.admin-view-pill {
    min-height: 34px;
    padding: 0 0.9rem;
    border: 1px solid #cfe0f8;
    border-radius: 999px;
    background: #fff;
    color: var(--admin-ink);
    font-weight: 750;
}

.admin-product-search {
    position: relative;
    width: min(300px, 100%);
}

.admin-product-search span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.admin-product-search input {
    width: 100%;
    min-height: 36px;
    border: 1px solid #cfe0f8;
    border-radius: 999px;
    padding: 0 1rem;
    color: var(--admin-ink);
}

.admin-products-table {
    width: 100%;
    min-width: 0 !important;
    table-layout: fixed;
}

.admin-products-table th,
.admin-products-table td {
    white-space: normal;
}

.admin-products-table th:first-child,
.admin-products-table td:first-child {
    width: 32%;
    padding-left: 1.25rem;
}

.admin-products-table th:nth-child(2),
.admin-products-table td:nth-child(2) {
    width: 14%;
}

.admin-products-table th:nth-child(3),
.admin-products-table td:nth-child(3) {
    width: 14%;
}

.admin-products-table th:nth-child(4),
.admin-products-table td:nth-child(4) {
    width: 16%;
}

.admin-products-table th:nth-child(5),
.admin-products-table td:nth-child(5) {
    width: 14%;
}

.admin-products-table th:nth-child(6),
.admin-products-table td:nth-child(6) {
    width: 10%;
}

.admin-product-cell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.admin-product-cell strong {
    display: block;
    color: var(--admin-ink);
    font-weight: 820;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-product-thumb {
    width: 48px;
    height: 54px;
    flex: 0 0 48px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
    background: #eef2f8;
}

.admin-product-thumb-empty {
    display: grid;
    place-items: center;
    color: var(--admin-blue);
    font-weight: 900;
}

.admin-product-editor {
    display: none;
    position: static;
    width: 100%;
    max-width: 980px;
    height: auto;
    overflow: visible;
    transform: none;
    transition: none;
    border-radius: 16px !important;
    box-shadow: 0 18px 38px rgba(30, 42, 72, 0.055) !important;
}

.admin-product-editor.open {
    display: block;
}

.admin-products-module.editing-product .admin-products-card {
    display: none;
}

.admin-products-module.editing-product .admin-module-heading {
    max-width: 980px;
}

.admin-products-module.editing-product #newProductBtn {
    display: none;
}

.admin-editor-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.admin-editor-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--admin-line);
    border-radius: 999px;
    background: #fff;
    color: var(--admin-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 760px) {
    .admin-module-heading,
    .admin-products-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-primary-action,
    .admin-product-search {
        width: 100%;
    }
}

@media (max-width: 960px) {
    .admin-layout {
        padding-inline: 1rem !important;
    }

    .admin-product-editor {
        width: 100%;
    }
}

@media (max-width: 1180px) {
    .admin-products-table {
        min-width: 860px !important;
    }

    .admin-products-card .table-wrap {
        overflow-x: auto !important;
    }
}
/* End premium products module */
/* Ajuste visual admin: texto mas liviano y premium */
.admin-page {
    font-weight: 400;
}

.admin-page :where(
    p,
    span,
    small,
    label,
    input,
    textarea,
    select,
    button,
    a,
    td,
    th
) {
    font-weight: 400;
}

.admin-page :where(
    h1,
    h2,
    h3,
    h4,
    .admin-stat-number,
    .admin-product-title,
    .admin-module-heading h2,
    .admin-form-card h2,
    .admin-sidebar-brand strong,
    .admin-primary-button,
    .admin-action-button
) {
    font-weight: 650;
}

.admin-page :where(
    .admin-sidebar-nav a,
    .admin-products-table th,
    .admin-form-card label,
    .admin-muted-label
) {
    font-weight: 560;
}

.admin-page {
    --admin-ink: #17233d;
    --admin-heading-ink: #1f2f4f;
    --admin-soft-ink: #63708b;
}

.admin-page :where(
    h1,
    h2,
    h3,
    .admin-hero h1,
    .admin-module-heading h2,
    .admin-form-card h2
) {
    color: var(--admin-heading-ink);
    font-weight: 620;
}

.admin-page :where(
    .admin-stat-number,
    .admin-stat strong,
    .admin-kpi strong,
    .admin-card-value
) {
    color: #223453;
    font-weight: 620;
    letter-spacing: -0.035em;
}

.admin-page :where(
    .admin-stat span,
    .admin-kpi span,
    .admin-eyebrow,
    .admin-hero p,
    .admin-module-heading p
) {
    color: var(--admin-soft-ink);
}


/* Premium categories module */
.admin-categories-module {
    display: grid;
    gap: 1.15rem;
}

.admin-categories-card {
    overflow: hidden;
}

.admin-categories-table th:first-child,
.admin-categories-table td:first-child {
    width: 38%;
}

.admin-categories-table th:nth-child(2),
.admin-categories-table td:nth-child(2) {
    width: 18%;
}

.admin-categories-table th:nth-child(3),
.admin-categories-table td:nth-child(3) {
    width: 18%;
}

.admin-categories-table th:nth-child(4),
.admin-categories-table td:nth-child(4) {
    width: 10%;
}

.admin-categories-table th:nth-child(5),
.admin-categories-table td:nth-child(5) {
    width: 16%;
}

.admin-category-editor {
    display: none;
    width: 100%;
    margin-top: 0;
}

.admin-category-editor.open {
    display: block;
}

.admin-categories-module.editing-category .admin-products-card,
.admin-categories-module.editing-category > .admin-module-heading {
    display: none;
}

.admin-categories-module.editing-category {
    gap: 0;
}

.admin-categories-module.editing-category .admin-category-editor {
    min-height: 520px;
    padding: clamp(1.35rem, 2.4vw, 2rem);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(23, 35, 61, 0.08);
}

.admin-categories-module.editing-category .admin-category-editor .admin-form {
    max-width: 980px;
}

.admin-editor-close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 104px !important;
    max-width: none !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 1.15rem !important;
    border: 1px solid var(--admin-blue) !important;
    border-radius: 13px !important;
    background: var(--admin-blue) !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 680 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    aspect-ratio: auto !important;
    box-shadow: 0 14px 30px rgba(23, 105, 255, 0.18);
}

.admin-editor-close::before {
    content: "←";
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    transform: translateY(-1px);
}

.admin-editor-close:hover {
    background: #0f5ae6 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.admin-form input[type="file"] {
    padding: 0.85rem !important;
    background: #f8fbff !important;
    color: var(--admin-soft-ink) !important;
    cursor: pointer;
}

.admin-form input[type="file"]::file-selector-button {
    margin-right: 0.85rem;
    padding: 0.65rem 0.9rem;
    border: 0;
    border-radius: 999px;
    background: var(--admin-blue);
    color: #fff;
    font: inherit;
    font-weight: 650;
    cursor: pointer;
}

.admin-native-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.admin-select-wrap {
    position: relative;
    width: 100%;
}

.admin-select-trigger {
    width: 100%;
    min-height: 48px;
    padding: 0 3rem 0 1rem;
    border: 1px solid #c8d7ee;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    color: var(--admin-ink);
    font: inherit;
    font-size: 0.94rem;
    font-weight: 620;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(23, 35, 61, 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.admin-select-trigger::after {
    content: "";
    position: absolute;
    right: 1.05rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--admin-soft-ink);
    border-bottom: 2px solid var(--admin-soft-ink);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.admin-select-wrap.open .admin-select-trigger {
    border-color: rgba(23, 105, 255, 0.62);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.08), 0 18px 42px rgba(23, 35, 61, 0.1);
}

.admin-select-wrap.open .admin-select-trigger::after {
    border-color: var(--admin-blue);
    transform: translateY(-35%) rotate(225deg);
}

.admin-select-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.2rem;
    max-height: 240px;
    padding: 0.38rem;
    border: 1px solid #d7e2f3;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 56px rgba(23, 35, 61, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top;
    overflow: auto;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.admin-select-wrap.open .admin-select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.admin-select-option {
    width: 100%;
    min-height: 38px;
    padding: 0.65rem 0.75rem;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--admin-ink);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 520;
    text-align: left;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease;
}

.admin-select-option:hover {
    background: #eef5ff;
    color: var(--admin-blue);
}

.admin-select-option[aria-selected="true"] {
    background: var(--admin-blue);
    color: #fff;
    font-weight: 680;
}

.admin-page :where(
    input,
    textarea,
    select,
    .admin-select-trigger,
    .admin-select-option
) {
    font-weight: 430 !important;
}

.admin-page :where(input::placeholder, textarea::placeholder) {
    font-weight: 390 !important;
    color: #9aa7bc !important;
}

.admin-page .admin-select-option[aria-selected="true"] {
    font-weight: 560 !important;
}

/* Premium product creation page */
.admin-product-form-layout {
    display: grid;
    gap: 1rem;
}

.admin-product-editor.open {
    padding: clamp(1.35rem, 2.4vw, 2rem);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(23, 35, 61, 0.08);
}

.admin-form-section-card {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 1.8vw, 1.35rem);
    border: 1px solid #dce5f2;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.admin-form-section-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #edf2f8;
}

.admin-form-section-head > span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 11px;
    background: #edf5ff;
    color: var(--admin-blue);
    font-size: 0.78rem;
    font-weight: 680;
}

.admin-form-section-head h3 {
    margin: 0;
    color: var(--admin-heading-ink);
    font-size: 1.05rem;
    font-weight: 640;
    letter-spacing: -0.02em;
    text-transform: none !important;
}

.admin-form-section-head p {
    margin: 0.18rem 0 0;
    color: var(--admin-soft-ink);
    font-size: 0.9rem;
    line-height: 1.45;
}

.admin-form-sticky-actions {
    position: static !important;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1.4rem;
    padding: 1.1rem 0 0;
    border-top: 1px solid #e3ebf6;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

@media (max-width: 820px) {
    .admin-form-sticky-actions {
        width: 100%;
        align-items: stretch;
    }
}
/* End premium product creation page */

/* Wix style media uploader */
.admin-form-section-head h3 small {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    margin-left: 0.4rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: #edf5ff;
    color: var(--admin-blue);
    font-size: 0.72rem;
    font-weight: 640;
    vertical-align: middle;
}

.admin-media-uploader {
    display: grid;
    gap: 1rem;
}

.admin-media-tip {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0 -1.35rem;
    padding: 0.9rem 1.35rem;
    border-block: 1px solid #c8dcff;
    background: #dcebff;
}

.admin-media-tip span {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 999px;
    background: #fff;
    color: var(--admin-blue);
    font-weight: 760;
}

.admin-media-tip p {
    margin: 0;
    color: #18345f;
    font-size: 0.94rem;
    line-height: 1.45;
}

.admin-media-dropzone {
    display: grid !important;
    place-items: center;
    gap: 0.32rem !important;
    min-height: 142px;
    padding: 1.3rem !important;
    border: 1px dashed #b9cef0 !important;
    border-radius: 16px;
    background: #f3f7ff;
    color: var(--admin-blue) !important;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.admin-media-dropzone:hover {
    border-color: var(--admin-blue) !important;
    background: #eef5ff;
    transform: translateY(-1px);
}

.admin-media-dropzone input {
    display: none;
}

.admin-media-icon {
    color: var(--admin-blue) !important;
    font-size: 1.3rem;
    font-weight: 600 !important;
}

.admin-media-dropzone strong {
    color: var(--admin-blue);
    font-size: 0.96rem;
    font-weight: 620;
}

.admin-media-dropzone small {
    color: var(--admin-soft-ink);
    font-size: 0.85rem;
    font-weight: 390;
}

.admin-media-preview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.admin-media-uploader.has-media .admin-media-dropzone {
    display: none !important;
}

.admin-media-thumb {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    border: 1px solid #dce5f2;
    border-radius: 15px;
    background: #fff;
    cursor: grab;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.admin-media-thumb:active {
    cursor: grabbing;
}

.admin-media-thumb.is-primary::before {
    content: "PRINCIPAL";
    position: absolute;
    z-index: 2;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.32rem 0.7rem;
    border-radius: 4px;
    background: #d8fff3;
    color: #18345f;
    font-size: 0.72rem;
    font-weight: 640;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.admin-media-thumb.is-dragging {
    opacity: 0.55;
    transform: scale(0.98);
}

.admin-media-thumb.is-drag-over {
    border-color: var(--admin-blue);
    box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.1);
}

.admin-media-thumb img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.admin-media-thumb button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.16s ease, transform 0.16s ease;
}

.admin-media-thumb button:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.admin-media-actions {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    background: rgba(13, 22, 42, 0.66);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.admin-media-thumb:hover .admin-media-actions,
.admin-media-thumb.is-dragging .admin-media-actions {
    opacity: 1;
}

.admin-media-actions button {
    position: absolute;
    top: 0.65rem;
}

.admin-media-actions [data-edit-media] {
    left: calc(50% - 50px);
}

.admin-media-actions [data-main-media] {
    left: calc(50% - 14px);
}

.admin-media-actions [data-remove-media] {
    left: calc(50% + 22px);
}

.admin-media-drag-icon {
    display: grid !important;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: #fff !important;
    font-size: 2.1rem !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    transform: rotate(45deg);
    pointer-events: none;
}

.admin-media-thumb span {
    display: block;
    padding: 0.55rem 0.65rem;
    color: var(--admin-ink);
    font-size: 0.82rem;
    font-weight: 520 !important;
}

.admin-media-preview.has-media {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.18rem 0.1rem 0.9rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #b7c7df #eef4ff;
}

.admin-media-preview.has-media .admin-media-thumb:first-child {
    flex: 0 0 252px;
    width: 252px;
    min-height: 252px;
    scroll-snap-align: start;
}

.admin-media-preview.has-media .admin-media-thumb:first-child img {
    height: 252px;
}

.admin-media-preview.has-media .admin-media-thumb:not(:first-child) {
    flex: 0 0 122px;
    width: 122px;
    min-height: 122px;
    border-radius: 10px;
    scroll-snap-align: start;
}

.admin-media-preview.has-media .admin-media-thumb:not(:first-child) img {
    height: 122px;
}

.admin-media-preview.has-media .admin-media-thumb > span {
    display: none;
}

.admin-media-add-tile {
    display: grid;
    place-items: center;
    min-height: 122px;
    border: 1px dashed var(--admin-blue);
    border-radius: 14px;
    background: #f3f7ff;
    color: var(--admin-blue);
    cursor: pointer;
}

.admin-media-preview.has-media .admin-media-add-tile {
    flex: 0 0 122px;
    width: 122px;
    min-height: 122px;
    border-radius: 10px;
    scroll-snap-align: start;
}

.admin-media-add-tile span {
    font-size: 2rem;
    font-weight: 300 !important;
    line-height: 1;
}

@media (max-width: 980px) {
    .admin-media-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .admin-media-preview {
        grid-template-columns: 1fr;
    }
}
/* End Wix style media uploader */

.admin-switch {
    width: 42px;
    height: 24px;
    padding: 2px;
    border: 1px solid #cbd8ea;
    border-radius: 999px;
    background: #e9eef6;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.admin-switch span {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(23, 35, 61, 0.16);
    transition: transform 0.2s ease;
}

.admin-switch.is-on {
    border-color: rgba(23, 105, 255, 0.35);
    background: var(--admin-blue);
}

.admin-switch.is-on span {
    transform: translateX(18px);
}

@media (max-width: 920px) {
    .admin-categories-table {
        min-width: 760px !important;
    }
}
/* End premium categories module */
/* Regla general panel: titulos internos tipo oracion */
.admin-page .admin-form-section-head h3 {
    text-transform: none !important;
    font-weight: 700 !important;
}

/* Admin action buttons: icon-only with tooltips */
.admin-row-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.admin-icon-action {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #eaf2ff;
    color: var(--admin-blue);
    cursor: pointer;
    transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.admin-icon-action svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.admin-icon-action:hover {
    transform: translateY(-1px);
    background: #dfeaff;
    box-shadow: 0 12px 24px rgba(23, 105, 255, 0.14);
}

.admin-icon-action.is-danger {
    background: #ffd8dc;
    color: #df1d34;
}

.admin-icon-action.is-danger:hover {
    background: #ffc9cf;
    box-shadow: 0 12px 24px rgba(223, 29, 52, 0.14);
}

.admin-icon-action.is-more {
    background: #eef3fb;
    color: #52627a;
}

.admin-icon-action[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: calc(100% + 9px);
    min-width: max-content;
    max-width: 180px;
    padding: 0.42rem 0.62rem;
    border-radius: 8px;
    background: #171c28;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
    white-space: nowrap;
}

.admin-icon-action[data-tooltip]::after {
    content: "";
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: calc(100% + 3px);
    width: 10px;
    height: 10px;
    background: #171c28;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) rotate(45deg);
    transition: opacity 0.16s ease;
}

.admin-icon-action[data-tooltip]:hover::before,
.admin-icon-action[data-tooltip]:hover::after,
.admin-icon-action[data-tooltip]:focus-visible::before,
.admin-icon-action[data-tooltip]:focus-visible::after {
    opacity: 1;
}

.admin-icon-action[data-tooltip]:hover::before,
.admin-icon-action[data-tooltip]:focus-visible::before {
    transform: translateX(-50%) translateY(0);
}

.admin-actions-more-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 18;
    display: none;
    min-width: 168px;
    padding: 0.45rem;
    border: 1px solid #d9e4f4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(28, 43, 70, 0.14);
}

.admin-row-actions.has-more:hover .admin-actions-more-menu,
.admin-row-actions.has-more:focus-within .admin-actions-more-menu {
    display: grid;
    gap: 0.25rem;
}

.admin-actions-more-menu button {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #34435c;
    text-align: left;
    cursor: pointer;
}

.admin-actions-more-menu button:hover {
    background: #f3f7ff;
    color: var(--admin-blue);
}

/* Product color variants */
.admin-color-builder {
    display: grid;
    gap: 1rem;
}

.admin-color-grid {
    align-items: end;
}

.admin-color-grid input[type="color"] {
    min-height: 46px;
    padding: 0.28rem !important;
    cursor: pointer;
}

.admin-color-picker {
    position: relative;
}

.admin-color-value {
    display: none !important;
}

.admin-color-picker-trigger {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 0.72rem;
    padding: 0.55rem 0.78rem;
    border: 1px solid #cfe0f8;
    border-radius: 10px;
    background: #fff;
    color: #243755;
    cursor: pointer;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.admin-color-picker-trigger:hover,
.admin-color-picker.open .admin-color-picker-trigger {
    border-color: rgba(23, 105, 255, 0.72);
    box-shadow: 0 0 0 3px rgba(23, 105, 255, 0.08);
}

.admin-color-picker-dot {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: 3px solid #fff;
    border-radius: 999px;
    background: var(--swatch);
    box-shadow: 0 0 0 1px #c5d3e8, 0 8px 16px rgba(21, 31, 52, 0.12);
}

.admin-color-picker-trigger strong {
    color: #243755;
    font-size: 0.88rem;
    font-weight: 560;
}

.admin-color-picker-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 28;
    width: min(320px, 84vw);
    display: none;
    gap: 0.85rem;
    padding: 0.9rem;
    border: 1px solid #d8e3f3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 58px rgba(25, 39, 67, 0.18);
}

.admin-color-picker.open .admin-color-picker-menu {
    display: grid;
}

.admin-color-picker-presets {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.42rem;
}

.admin-color-picker-presets button {
    width: 26px;
    height: 26px;
    border: 3px solid #fff;
    border-radius: 999px;
    background: var(--swatch);
    box-shadow: 0 0 0 1px #c7d4e8;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.admin-color-picker-presets button:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 0 0 2px rgba(23, 105, 255, 0.35), 0 10px 18px rgba(23, 105, 255, 0.12);
}

.admin-color-custom {
    display: grid;
    gap: 0.38rem;
    margin: 0 !important;
    color: #53637c !important;
    font-size: 0.78rem !important;
    font-weight: 560 !important;
}

.admin-color-custom input {
    min-height: 40px !important;
    text-transform: uppercase;
}

.admin-secondary-action {
    width: fit-content;
    min-height: 40px;
    padding: 0 1rem;
    border: 1px solid #cfe0f8;
    border-radius: 12px;
    background: #f5f8ff;
    color: var(--admin-blue);
    font-weight: 650;
    cursor: pointer;
    transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.admin-secondary-action:hover {
    background: #eaf2ff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(23, 105, 255, 0.1);
}

.admin-color-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.72rem;
}

.admin-color-chip-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 62px;
    padding: 0.72rem;
    border: 1px solid #dbe6f5;
    border-radius: 16px;
    background: #fff;
}

.admin-color-swatch {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 3px solid #fff;
    border-radius: 999px;
    background: var(--swatch);
    box-shadow: 0 0 0 1px #cbd8ea, 0 8px 18px rgba(21, 31, 52, 0.12);
}

.admin-color-chip-card div {
    min-width: 0;
    flex: 1;
}

.admin-color-chip-card strong {
    display: block;
    color: #17233b;
    font-size: 0.9rem;
    font-weight: 680;
}

.admin-color-chip-card small,
.admin-color-empty {
    color: var(--admin-soft-ink);
    font-size: 0.82rem;
    font-weight: 390;
}

.admin-color-empty {
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px dashed #cfe0f8;
    border-radius: 14px;
    background: #f8fbff;
}

.product-color-swatches {
    display: inline-flex;
    justify-content: center;
    gap: 0.38rem;
    margin-top: 0.38rem;
}

.product-color-swatches span {
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--swatch);
    box-shadow: 0 0 0 1px rgba(12, 21, 36, 0.18);
}

.modal-color-panel {
    display: grid;
    gap: 0.6rem;
    margin: 0.9rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid #e6eaf0;
}

.modal-color-panel > span {
    color: #5e6470;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.modal-color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.modal-color-option {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.35rem 0.72rem 0.35rem 0.42rem;
    border: 1px solid #dde4ee;
    border-radius: 999px;
    background: #fff;
    color: #2f3744;
    cursor: pointer;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.modal-color-option i {
    width: 22px;
    height: 22px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--swatch);
    box-shadow: 0 0 0 1px rgba(12, 21, 36, 0.18);
}

.modal-color-option strong {
    font-size: 0.82rem;
    font-weight: 650;
}

.modal-color-option:hover,
.modal-color-option.active {
    border-color: #0b43a3;
    box-shadow: 0 10px 22px rgba(11, 67, 163, 0.12);
    transform: translateY(-1px);
}

/* Product price and inventory CRM panel */
.admin-price-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.05rem 1.35rem;
}

.admin-price-panel label:nth-child(1),
.admin-price-panel label:nth-child(2),
.admin-price-panel label:nth-child(3) {
    grid-column: span 2;
}

.admin-price-panel .admin-price-result {
    grid-column: span 1;
}

.admin-price-panel label,
.admin-price-result {
    display: grid;
    align-content: start;
    gap: 0.45rem;
    margin: 0 !important;
}

.admin-price-panel label > span,
.admin-price-result > span {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    color: #233556;
    font-size: 0.9rem;
    font-weight: 480 !important;
}

.admin-price-panel sup {
    color: var(--admin-blue);
    font-size: 0.85rem;
    line-height: 1;
}

.admin-price-panel i,
.admin-price-result i {
    display: inline-grid;
    place-items: center;
    width: 15px;
    height: 15px;
    border: 1px solid var(--admin-blue);
    border-radius: 999px;
    color: var(--admin-blue);
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 650;
    line-height: 1;
}

.admin-money-field {
    display: flex;
    align-items: center;
    min-height: 46px;
    border: 1px solid #cfe0f8;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.admin-money-field:focus-within {
    border-color: rgba(23, 105, 255, 0.72);
    box-shadow: 0 0 0 3px rgba(23, 105, 255, 0.08);
}

.admin-money-field em {
    padding-left: 0.82rem;
    color: #8a98af;
    font-style: normal;
    font-size: 1rem;
    font-weight: 420;
}

.admin-money-field input {
    min-height: 44px !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-left: 0.45rem !important;
}

.admin-price-result strong {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    color: #1f2f4e;
    font-size: 1rem;
    font-weight: 560 !important;
}

.admin-inventory-grid {
    margin-top: 1.1rem;
}

@media (max-width: 780px) {
    .admin-price-panel {
        grid-template-columns: 1fr;
    }

    .admin-price-panel label:nth-child(1),
    .admin-price-panel label:nth-child(2),
    .admin-price-panel label:nth-child(3),
    .admin-price-panel .admin-price-result {
        grid-column: 1;
    }
}

/* Admin scroll rule: one clean page scrollbar, no nested vertical bars */
body.admin-page {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.admin-page .admin-workspace,
.admin-page .admin-section-screen,
.admin-page .admin-product-editor,
.admin-page .admin-form-card,
.admin-page .admin-product-form-layout {
    max-height: none !important;
    overflow-y: visible !important;
}

/* Product editor as an independent admin page, not a nested card */
html:has(body.admin-page),
body.admin-page {
    height: auto !important;
    min-height: 100% !important;
}

.admin-page .admin-shell,
.admin-page .admin-workspace {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
}

.admin-page .admin-section-screen {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.admin-products-module.editing-product {
    min-height: calc(100vh - 86px) !important;
    padding: clamp(28px, 4vw, 58px) clamp(22px, 4vw, 64px) !important;
}

.admin-products-module.editing-product .admin-module-heading,
.admin-products-module.editing-product .admin-products-card {
    display: none !important;
}

.admin-products-module.editing-product .admin-product-editor.open {
    position: relative !important;
    inset: auto !important;
    width: min(1120px, 100%) !important;
    max-width: 1120px !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 auto !important;
    overflow: visible !important;
    transform: none !important;
}

/* Independent product creation page */
.admin-product-create-screen {
    padding: clamp(28px, 4vw, 58px) clamp(22px, 4vw, 64px) !important;
}

.admin-product-create-screen .admin-product-editor {
    display: none;
}

.admin-product-create-screen.active-admin-section .admin-product-editor.open {
    display: block !important;
    position: relative !important;
    inset: auto !important;
    width: min(1120px, 100%) !important;
    max-width: 1120px !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 auto !important;
    overflow: visible !important;
    transform: none !important;
}

.admin-logout-form {
    margin: 0;
}

.admin-logout-form button {
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 999px;
    background: #fff;
    color: #233451;
    padding: 10px 16px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.admin-logout-form button:hover {
    border-color: rgba(239, 35, 60, .28);
    color: #ef233c;
}
.product-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    color: #071126;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    letter-spacing: .01em;
    border-bottom: 1px solid #ef233c;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.product-detail-link:hover {
    color: #ef233c;
    border-color: #071126;
    transform: translateY(-1px);
}


/* Premium brands module */
.admin-brands-module.editing-brand .admin-products-card,
.admin-brands-module.editing-brand > .admin-module-heading {
    display: none !important;
}

.admin-brand-editor {
    display: none;
}

.admin-brand-editor.open {
    display: block;
    width: min(860px, 100%);
    margin: 1.2rem auto 0;
}

.admin-brand-avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef5ff, #fff1f5);
    color: var(--admin-blue);
    border: 1px solid #d7e4f6;
    font-size: 0.78rem;
    font-weight: 720;
    letter-spacing: 0.04em;
}

.admin-brands-table {
    min-width: 820px !important;
}

.admin-brands-card .admin-status-pill.is-inactive {
    background: #f4f7fb;
    color: #6f7d92;
}
/* End premium brands module */

/* Landing product commercial card */
.product-card .product-info-outside {
    padding: 0.48rem 0 0 !important;
    text-align: left !important;
    gap: 0.34rem !important;
}

.product-card .detail-strip {
    background: rgba(7, 17, 38, 0.92) !important;
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
}

.product-card .quick-view {
    display: none !important;
}

.product-card .size-strip {
    bottom: 38px !important;
}

.product-card .size-strip span {
    min-width: 30px !important;
    width: 30px !important;
    height: 28px !important;
    border: 1px solid rgba(212, 175, 55, 0.42) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #050509 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.product-card .product-card-signal {
    width: 100% !important;
    margin: 0 0 0.34rem !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr)) !important;
    gap: 0 !important;
    border: 1px solid rgba(212, 175, 55, 0.22) !important;
    border-radius: 3px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: none !important;
}

.product-card .product-card-signal::before {
    display: none !important;
}

.product-card .product-card-signal > span {
    min-height: 24px !important;
    padding: 0.24rem 0.38rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.28rem !important;
    background: rgba(212, 175, 55, 0.1) !important;
    color: #050509 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.035em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.product-card .product-card-signal .commercial-signal-icon {
    width: 13px !important;
    height: 13px !important;
}

.product-card .product-card-signal .commercial-signal-icon svg {
    width: 13px !important;
    height: 13px !important;
}

.product-card-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
}

.product-card-title-row h3 {
    margin: 0 !important;
    min-width: 0;
    flex: 1;
    text-align: left !important;
    font-size: 18px !important;
    font-weight: 850 !important;
    line-height: 1.08 !important;
}

.product-card-social {
    flex: 0 0 auto;
    display: grid;
    gap: 0.16rem;
    justify-items: end;
}

.product-card-social span {
    color: #071126;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.product-card .price {
    display: flex;
    align-items: baseline;
    gap: 0.52rem;
    margin: 0 !important;
    color: #050509 !important;
    line-height: 1.1 !important;
}

.product-card .price del {
    color: #696969 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.product-card .price strong {
    color: #050509 !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

.product-card-rating {
    min-height: 18px;
    color: #D4AF37;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
}

.product-card-rating em {
    color: #6d727a;
    font-style: normal;
}

.product-card-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.26rem;
    align-items: center;
    margin-top: 0.16rem;
}

.product-card-bottom.has-discount {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.product-discount-pill {
    min-height: 24px;
    padding: 0.22rem 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D4AF37;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.product-card-bottom small {
    color: #050509;
    font-size: 12px;
    line-height: 1.1;
}

.product-whatsapp-mini {
    min-height: 28px;
    padding: 0.34rem 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    border-radius: 3px;
    border: 1px solid #D4AF37;
    background: #050509;
    color: #fff !important;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

.product-cart-btn {
    border-color: #D4AF37 !important;
    background: #D4AF37 !important;
    color: #050509 !important;
    letter-spacing: .02em !important;
    line-height: 1.08 !important;
    text-align: center !important;
    text-transform: none !important;
    white-space: normal !important;
}

.product-cart-btn:hover {
    border-color: #C99A16 !important;
    background: #C99A16 !important;
    color: #050509 !important;
}

.product-whatsapp-btn {
    border-color: #D4AF37 !important;
    background: #050509 !important;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.12);
}

.product-whatsapp-btn:hover {
    border-color: #D4AF37 !important;
    background: #101014 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(212, 175, 55, 0.18);
}

@media (max-width: 760px) {
    .product-cart-btn,
    .product-whatsapp-btn {
        font-size: 16px !important;
    }
}

.product-whatsapp-mini svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: currentColor;
}

@media (max-width: 720px) {
    .product-card-title-row {
        align-items: flex-start;
        gap: 0.38rem;
    }

    .product-card-title-row h3 {
        font-size: 15px !important;
    }

    .product-card .price strong {
        font-size: 17px !important;
    }

    .product-card-bottom.has-discount {
        grid-template-columns: auto 1fr;
    }

    .product-card-bottom.has-discount .product-whatsapp-mini {
        grid-column: 1 / -1;
        width: 100%;
    }

    .product-card-bottom:not(.has-discount) {
        grid-template-columns: 1fr;
    }

    .product-card-bottom:not(.has-discount) small,
    .product-card-bottom:not(.has-discount) .product-whatsapp-mini {
        grid-column: 1 / -1;
    }

    .product-card-bottom:not(.has-discount) .product-whatsapp-mini {
        width: 100%;
    }
}

.landing-campaign-card .landing-campaign-product-panel h3 {
    color: #050509 !important;
    font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", "Roboto Condensed", sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
}

.landing-campaign-card .landing-campaign-product-price,
.landing-campaign-card .landing-campaign-product-price del,
.landing-campaign-card .landing-campaign-product-price strong {
    font-family: "Roboto Condensed", "DIN Alternate", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    letter-spacing: 0 !important;
}

.landing-campaign-card .landing-campaign-product-price del {
    color: #5d5d5d !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}

.landing-campaign-card .landing-campaign-product-price strong {
    color: #050509 !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

.product-card.landing-campaign-card {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    background: #fff !important;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 10px rgba(0, 0, 0, 0.09) !important;
}

.product-card.landing-campaign-card:hover {
    transform: translateY(0) !important;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 10px rgba(0, 0, 0, 0.09) !important;
}

@media (max-width: 760px) {
    .product-card .size-strip {
        display: none !important;
    }

    .landing-campaign-card .landing-campaign-product-panel h3 {
        font-size: 17px !important;
    }

    .landing-campaign-card .landing-campaign-product-price del {
        font-size: 14px !important;
    }

    .landing-campaign-card .landing-campaign-product-price strong {
        font-size: 19px !important;
    }
}

/* End landing product commercial card */
