/* =========================================================
   og.header.css - Shared OG Jewelers header
   Refined 3-zone luxury layout
   ========================================================= */

:root{
  --bg: #070708;

  --ivory: rgba(244, 241, 234, 0.92);
  --gold: rgba(227, 200, 120, 0.96);
  --goldSoft: rgba(200, 162, 74, 0.22);

  --text: rgba(255,255,255,0.86);
  --muted: rgba(255,255,255,0.68);
  --rim: rgba(255,255,255,0.10);
  --rim2: rgba(227, 200, 120, 0.20);

  --panel: rgba(10,10,12,0.55);
  --panel2: rgba(10,10,12,0.62);

  --shadow: 0 22px 60px rgba(0,0,0,0.55);

  --ease: cubic-bezier(.2,.9,.2,1);
  --dur-fast: 160ms;
  --dur: 320ms;

  --header-h: 74px;
  --serif: "Cormorant Garamond", serif;
  --header-control-size: 40px;
  --header-control-gap: 8px;
  --header-side-max: 560px;
}

*{ box-sizing: border-box; }

.container{
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.item-container{
  width: min(1560px, 96vw);
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(18,19,22,.92);
  border: 1px solid rgba(200,162,74,.25);
  transform: translateY(-140%);
  transition: transform var(--dur-fast) var(--ease);
  z-index: 9999;
}
.skip-link:focus{
  transform: translateY(0);
  outline: none;
}

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

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 80;
  height: var(--header-h);
  margin-top: 0;
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7,7,8,.44);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-elevated{
  background: rgba(7,7,8,.78);
  border-bottom-color: rgba(200,162,74,.16);
}

.og-header-spacer{
  height: var(--header-h);
  width: 100%;
}

.header-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  width: 100%;
}

.header-zone{
  width: min(100%, var(--header-side-max));
  min-height: var(--header-control-size);
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--header-control-gap);
}

.header-zone-left{
  justify-content: flex-start;
  justify-self: start;
}

.header-zone-center{
  justify-self: center;
  justify-content: center;
}

.header-zone-right{
  justify-content: flex-end;
  justify-self: end;
}

.brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(244,241,234,.92);
  padding: 4px;
  border-radius: 16px;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.brand:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.03);
}

.brand-mark{
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #080808;
  border: 1px solid rgba(200,162,74,.24);
  box-shadow: 0 10px 24px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
  position: relative;
}

.brand-mark::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 30% 20%, rgba(227,200,120,.10), transparent 58%);
  opacity: .9;
}

.brand-logo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.brand:hover .brand-mark{
  border-color: rgba(227,200,120,.34);
  box-shadow:
    0 14px 30px rgba(0,0,0,.38),
    0 0 16px rgba(200,162,74,.14),
    inset 0 1px 0 rgba(255,255,255,.05);
}

@media (max-width: 640px){
  .brand-mark{
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 12px;
  }
}

.nav{
  display: none;
  align-items: center;
  gap: var(--header-control-gap);
}
@media (min-width: 901px){
  .nav{ display: inline-flex; }
}

.og-utility-nav{
  align-items: center;
  gap: var(--header-control-gap);
}

.utility-link{
  width: var(--header-control-size);
  height: var(--header-control-size);
}

.nav-link.story-link{
  height: var(--header-control-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .71rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(244,241,234,.76);
  text-decoration: none;
  padding: 0 12px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,17,20,.34);
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.nav-link.story-link:hover,
.nav-link.story-link:focus-visible{
  color: rgba(244,241,234,.94);
  border-color: rgba(200,162,74,.26);
  background: rgba(200,162,74,.10);
  transform: translateY(-1px);
}

.header-actions{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--header-control-gap);
}

.og-utility-nav > *,
.header-actions > *{
  flex: 0 0 auto;
}

.og-loginbtn{
  height: var(--header-control-size);
  min-width: 84px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(16,17,20,.36);
  border-color: rgba(255,255,255,.12);
  color: rgba(244,241,234,.88);
}
.og-loginbtn:hover{
  border-color: rgba(200,162,74,.26);
  background: rgba(200,162,74,.10);
}

@media (max-width: 900px){
  .header-inner{
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
  }

  .header-zone-left::after{
    content: "";
    width: var(--header-control-size);
    height: var(--header-control-size);
    flex: 0 0 var(--header-control-size);
    pointer-events: none;
    opacity: 0;
  }

  .og-utility-nav{
    display: none;
  }

  .og-loginbtn{
    display: none;
  }

  .header-actions{
    gap: var(--header-control-gap);
  }
}


.spot-ticker,
.spot-ticker[hidden]{
  display: none !important;
}

.spot-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(227, 200, 120, 0.96);
  box-shadow: 0 0 0 0 rgba(227, 200, 120, 0.55);
  animation: spotPulse 1.6s ease-in-out infinite;
}

@keyframes spotPulse{
  0%{ box-shadow: 0 0 0 0 rgba(227, 200, 120, 0.55); }
  70%{ box-shadow: 0 0 0 8px rgba(227, 200, 120, 0); }
  100%{ box-shadow: 0 0 0 0 rgba(227, 200, 120, 0); }
}

.spot-ticker .spot-text b{
  color: rgba(227, 200, 120, 0.96);
  font-weight: 600;
}

.spot-ticker .spot-text .muted{
  color: rgba(244, 241, 234, 0.65);
}

@media (prefers-reduced-motion: reduce){
  .site-header,
  .brand,
  .brand-mark,
  .icon-btn,
  .nav-link,
  .acct-chip,
  .btn{
    transition: none !important;
  }
}
/* =========================================================
   Buttons (needed because index may not include catalogue.css)
   Match VIP CTA system
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  color: rgba(244,241,234,.95);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), opacity .2s var(--ease);
}
.btn:active{ transform: translateY(0) scale(.99); }

.btn.ghost{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border-color: rgba(255,255,255,.22);
  color: rgba(244,241,234,.95);
}
.btn.ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(234,195,90,.38);
  color: rgba(234,195,90,.95);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 10px 28px rgba(0,0,0,.26);
}
.btn.icon-only{
  width: 42px;
  padding: 0;
}

/* =========================================================
   ? Item-page icon buttons style (search + cart)
   This is what was making item page look different.
   ========================================================= */
.icon-btn{
  width: var(--header-control-size);
  height: var(--header-control-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,17,20,0.40);
  color: rgba(227, 200, 120, 0.96);
  box-shadow: 0 8px 24px rgba(0,0,0,0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.icon-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(227, 200, 120, 0.28);
  background: rgba(200, 162, 74, 0.12);
  box-shadow: 0 12px 36px rgba(0,0,0,0.42);
}
.icon-btn:active{ transform: translateY(0px) scale(0.98); }
.icon-btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(200, 162, 74, 0.22),
    0 18px 58px rgba(0,0,0,0.55);
}
.icon-btn .ico{
  width: 18px;
  height: 18px;
  stroke: rgba(227, 200, 120, 0.96);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.98;
  fill: none;
}

/* Cart badge (works with your cart.shared.js) */
.og-cartbtn{
  position: relative;
}
.cart-badge{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(10,10,12,0.92);
  background: rgba(227, 200, 120, 0.96);
  box-shadow: 0 10px 26px rgba(0,0,0,0.40);
}

/* =========================================================
   Mobile hamburger (item uses <span class="og-hamburger"><i>…</i></span>)
   ========================================================= */
.og-navtoggle{ display: inline-flex; }
@media (min-width: 901px){
  .og-header .og-navtoggle{ display:none !important; }
}

.og-hamburger{
  width: 18px;
  height: 14px;
  display: inline-grid;
  gap: 3px;
}
.og-hamburger i{
  display:block;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.86);
  opacity: 0.95;
}

/* =========================================================
   Account chip + menu (same as shared version)
   ========================================================= */
.acct-chip{
  width: var(--header-control-size);
  height: var(--header-control-size);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.acct-chip:hover{
  transform: translateY(-2px);
  border-color: rgba(234,195,90,.38);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 10px 28px rgba(0,0,0,.26);
}
.acct-initials{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  color: rgba(244, 241, 234, 0.92);
  border: 1px solid rgba(227, 200, 120, 0.30);
  background: radial-gradient(circle at 30% 20%, rgba(227, 200, 120, 0.14), rgba(255,255,255,0.06));
}

.acct-menu{
  position: absolute;
  top: calc(var(--header-h) + 10px);
  right: max(4vw, 18px);
  width: 220px;
  background: rgba(10, 10, 12, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
  overflow: hidden;
  z-index: 3000;
}
.acct-menu-item{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  color: rgba(244, 241, 234, 0.92);
  font: inherit;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}
.acct-menu-item:hover{
  background: rgba(200, 162, 74, 0.12);
  color: rgba(227, 200, 120, 0.98);
}
.acct-menu-item.danger{
  color: rgba(255, 190, 190, 0.98);
}
.acct-menu-item.danger:hover{
  background: rgba(255, 95, 95, 0.12);
  color: rgba(255, 210, 210, 0.98);
}

/* =========================================================
   Mobile Nav Drawer (right slide) — same as item page
   ========================================================= */
.og-navbackdrop{
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 1;
  transition: opacity 240ms ease;
}
.og-navbackdrop[hidden]{
  display: block !important;
  opacity: 0;
  pointer-events: none;
}

.og-navdrawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 360px);
  z-index: 2300;
  background: rgba(14, 14, 16, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: -20px 0 70px rgba(0,0,0,0.55);
  transform: translateX(102%);
  transition: transform 320ms var(--ease);
}
.og-navdrawer[hidden]{
  display: block !important;
  pointer-events: none;
}
.og-navdrawer.is-open{
  transform: translateX(0%);
  pointer-events: auto;
}
.og-navdrawer-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.og-navdrawer-title{
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(244, 241, 234, 0.92);
}
.og-navdrawer-close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,10,12,0.25);
  color: rgba(244, 241, 234, 0.90);
  cursor: pointer;
}
.nav-drawer{
  display: grid;
  gap: 6px;
  padding: 14px 14px 20px;
}
.nav-drawer-link{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  color: rgba(244, 241, 234, 0.95);
  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-drawer-link:hover{
  transform: translateY(-2px);
  border-color: rgba(234, 195, 90, 0.38);
  color: rgba(234,195,90,.95);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 10px 28px rgba(0,0,0,.26);
}
.nav-drawer-utilities{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 8px;
}

.nav-drawer-icon{
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,10,12,0.22);
  color: rgba(227, 200, 120, 0.96);
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}

.nav-drawer-icon .ico{
  width: 18px;
  height: 18px;
  stroke: rgba(227, 200, 120, 0.96);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.nav-drawer-icon:hover{
  transform: translateY(-1px);
  border-color: rgba(227, 200, 120, 0.26);
  background: rgba(200, 162, 74, 0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.nav-drawer-icon:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.20), 0 12px 34px rgba(0,0,0,0.42);
}
.nav-drawer-divider{
  height: 1px;
  margin: 8px 2px;
  background: rgba(255,255,255,0.10);
}
.nav-drawer-initials{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 800;
  font-size: 12px;
  color: rgba(244, 241, 234, 0.92);
  border: 1px solid rgba(227, 200, 120, 0.28);
  background: radial-gradient(circle at 30% 20%, rgba(227, 200, 120, 0.14), rgba(255,255,255,0.06));
}

/* Optional: lock scrolling when drawers are open */
html.lock, body.lock{
  overflow: hidden;
}

/* =========================================================
   Search Overlay — Hint Chips + Keyboard Pills
   (Fix: make hint chips legible + luxe)
   ========================================================= */

.search-hints{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
}

.search-hint{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(227, 200, 120, 0.18);
  background: rgba(10, 10, 12, 0.42);
  color: rgba(244, 241, 234, 0.92);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow:
    0 14px 44px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 140ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.search-hint:hover{
  transform: translateY(-1px);
  border-color: rgba(227, 200, 120, 0.30);
  background: rgba(200, 162, 74, 0.12);
  color: rgba(244, 241, 234, 0.98);
}

.search-hint:active{
  transform: translateY(0) scale(0.98);
}

.search-sub{
  padding-top: 10px;
  color: rgba(244, 241, 234, 0.70);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.kbd{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 8px;
  border-radius: 9px;
  border: 1px solid rgba(227, 200, 120, 0.18);
  background: rgba(10, 10, 12, 0.42);
  color: rgba(244, 241, 234, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

/* =========================================================
   Homepage Minimal Header
   ========================================================= */

.og-header-home{
  background: linear-gradient(180deg, rgba(5,5,5,.72), rgba(5,5,5,.18));
  border-bottom-color: rgba(244,241,234,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.og-home-header-inner{
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.og-home-header-center{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--header-h);
}

.og-home-header-side{
  display: flex;
  align-items: center;
  min-height: 40px;
}

.og-home-header-right{
  justify-content: flex-end;
}

.og-home-brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(92px, 11vw, 132px);
  min-width: 92px;
  line-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.og-home-brand-logo{
  width: 100%;
  max-width: 132px;
  height: auto;
  display: block;
  filter: brightness(1.04) contrast(1.02) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.og-home-brand::before,
.og-home-brand::after,
.og-home-header-center::before,
.og-home-header-center::after{
  content: none !important;
}

.og-home-menu-btn{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244,241,234,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.og-home-menu-btn:hover,
.og-home-menu-btn:focus-visible{
  transform: translateY(-1px);
  border-color: rgba(227,200,120,.26);
  background: rgba(227,200,120,.08);
}

.og-home-menu-lines{
  width: 16px;
  height: 12px;
  display: grid;
  align-content: space-between;
}

.og-home-menu-lines i{
  display: block;
  height: 1px;
  border-radius: 999px;
  background: rgba(244,241,234,.88);
}

.og-home-backdrop{
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.og-home-drawer{
  position: fixed;
  top: 0;
  left: 0;
  width: min(86vw, 360px);
  height: 100vh;
  z-index: 2300;
  padding: 18px 18px 24px;
  background: rgba(10,10,10,.9);
  border-right: 1px solid rgba(244,241,234,.08);
  box-shadow: 20px 0 60px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-102%);
  transition: transform 260ms var(--ease);
}

.og-home-drawer[hidden]{
  display: block !important;
  pointer-events: none;
}

.og-home-drawer.is-open{
  transform: translateX(0);
  pointer-events: auto;
}

.og-home-drawer-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.og-home-drawer-label{
  margin: 0;
  color: rgba(227,200,120,.92);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.og-home-drawer-close{
  width: 40px;
  height: 40px;
  border: 1px solid rgba(244,241,234,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: rgba(244,241,234,.92);
  cursor: pointer;
}

.og-home-drawer-nav{
  display: grid;
  gap: 10px;
}

.og-home-drawer-nav a{
  display: block;
  padding: 13px 14px;
  border: 1px solid rgba(244,241,234,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  color: rgba(244,241,234,.92);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.og-home-drawer-nav a:hover,
.og-home-drawer-nav a:focus-visible{
  transform: translateX(2px);
  border-color: rgba(227,200,120,.24);
  color: rgba(227,200,120,.96);
}

@media (min-width: 901px){
  .og-home-menu-btn{
    width: 38px;
    height: 38px;
    opacity: .88;
  }
}

@media (max-width: 640px){
  .og-home-brand-logo{
    width: 94px;
  }

  .og-home-header-inner{
    gap: 8px;
  }
}

