:root {
  --black: #050505;
  --charcoal: #141414;
  --panel: #101010;
  --gold: #d4af37;
  --gold-dark: #b8921e;
  --gray: #a6a6a6;
  --line: rgba(212, 175, 55, 0.22);
  --white: #f7f7f2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--black); color: var(--white); font-family: Inter, system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.brand { display: flex; align-items: center; gap: 14px; letter-spacing: 0.22em; }
.logo-mark {
  width: 42px; height: 42px; border: 1px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; font-weight: 800;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.brand-name { font-size: 14px; font-weight: 800; }
.brand-sub { color: var(--gold); font-size: 11px; font-weight: 700; }
.nav nav { display: flex; gap: 24px; color: var(--gray); font-size: 14px; }
.nav nav a:hover, .text-link:hover { color: var(--gold); }
.mobile-toggle { display: none; }

.hero { min-height: 760px; position: relative; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 65% 20%, rgba(212, 175, 55, 0.18), transparent 30%),
              radial-gradient(circle at 30% 80%, rgba(212, 175, 55, 0.09), transparent 35%),
              linear-gradient(180deg, #080808, #000);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle, black 20%, transparent 72%);
}
.hero-content { position: relative; width: min(980px, calc(100% - 40px)); text-align: center; padding: 80px 0; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 700; }
h1 { font-size: clamp(48px, 8vw, 96px); line-height: 0.94; margin: 18px 0; letter-spacing: -0.07em; }
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1; margin: 12px 0; letter-spacing: -0.05em; }
h3 { margin: 0 0 10px; }
.hero-text, .section-copy, .section p, li { color: var(--gray); line-height: 1.7; }
.hero-text { max-width: 720px; margin: 0 auto 34px; font-size: 18px; }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn, .form button, .lookup button, .chat-input button {
  padding: 15px 22px; border-radius: 999px; font-weight: 700; border: 1px solid var(--gold);
}
.primary, .form button, .lookup button, .chat-input button { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #070707; }
.secondary { color: var(--gold); background: rgba(255,255,255,0.03); }

.trust-row { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 32px; color: var(--gray); font-size: 13px; }
.trust-row span, .notice {
  border: 1px solid rgba(255,255,255,0.1); padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.03);
}
.notice { border-radius: 18px; color: var(--gray); margin: 20px 0 28px; line-height: 1.6; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 105px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 30px; }
.text-link, .small-link { color: var(--gold); font-weight: 700; }

.category-grid, .steps, .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card, .step, .doc-card, .form, .product-shell, .result-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 28px;
}
.card-icon { color: var(--gold); font-size: 34px; margin-bottom: 28px; }

.small-btn {
  margin-top: 12px; background: transparent; color: var(--gold); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 14px; cursor: pointer; font-weight: 800;
}

.dark-panel {
  width: min(1220px, calc(100% - 24px));
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 80px;
  background: radial-gradient(circle at 15% 10%, rgba(212,175,55,.12), transparent 35%), #0b0b0b;
}
.step span { color: var(--gold); font-weight: 800; font-size: 13px; }

.docs, .contact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.doc-line, .spec-table div {
  display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); gap: 20px;
}
.doc-line span, .spec-table span { color: var(--gray); }
.doc-line strong, .spec-table strong { color: var(--gold); text-align: right; }

.category-detail { padding-top: 40px; }
.hidden { display: none !important; }
.spec-table { margin-bottom: 26px; }

.product-visual {
  height: 120px; border: 1px solid var(--line); border-radius: 18px; display: grid; place-items: center;
  color: var(--gold); font-weight: 900; font-size: 30px; margin-bottom: 18px;
  background: radial-gradient(circle, rgba(212,175,55,.16), transparent 58%);
}

.product-preview { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.product-card { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.vial {
  height: 420px; max-width: 230px; margin: 0 auto; border-radius: 34px 34px 20px 20px;
  background: linear-gradient(90deg, #181818, #2a2a2a, #0d0d0d);
  border: 1px solid rgba(255,255,255,0.16); position: relative; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.vial-cap {
  position: absolute; top: -38px; width: 150px; height: 48px; border-radius: 12px 12px 4px 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.label {
  width: 170px; height: 150px; border: 1px solid var(--gold); background: #070707;
  display: grid; place-items: center; text-align: center; padding: 14px;
}
.small-mark {
  color: var(--gold); border: 1px solid var(--gold); width: 32px; height: 32px; display: grid; place-items: center;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.label span { color: var(--gray); font-size: 12px; }

.form, .lookup { display: grid; gap: 14px; }
.lookup { grid-template-columns: 1fr auto; }
input, textarea {
  width: 100%; background: #070707; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 16px; color: var(--white); font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.form button, .lookup button, .chat-input button { cursor: pointer; font: inherit; }
.form-message { color: var(--gold) !important; margin: 0; }

footer {
  width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 42px 0 60px;
  display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,0.08);
}
footer p { color: var(--gray); max-width: 520px; margin: 0; }

.assistant-btn {
  position: fixed; right: 22px; bottom: 22px; border: 1px solid var(--gold); background: #090909; color: var(--gold);
  padding: 14px 18px; border-radius: 999px; font-weight: 800; box-shadow: 0 20px 50px rgba(0,0,0,.55); z-index: 30;
}

.chat {
  position: fixed; right: 22px; bottom: 82px; width: min(420px, calc(100% - 44px)); height: 560px;
  background: #080808; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; z-index: 40;
  box-shadow: 0 30px 100px rgba(0,0,0,.7); display: flex; flex-direction: column;
}
.chat-head { display: flex; justify-content: space-between; align-items: center; padding: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.chat-head span { display: block; color: var(--gray); font-size: 12px; margin-top: 3px; }
.chat-head button { background: transparent; color: var(--white); border: 0; font-size: 24px; cursor: pointer; }
.chat-body { padding: 18px; overflow-y: auto; flex: 1; display: grid; gap: 12px; align-content: start; }
.msg { padding: 12px 14px; border-radius: 16px; line-height: 1.55; font-size: 14px; }
.bot { background: rgba(255,255,255,.06); color: var(--white); }
.user { background: rgba(212,175,55,.14); color: var(--white); justify-self: end; max-width: 88%; }
.quick-prompts { padding: 0 18px 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.quick-prompts button { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: var(--gray); border-radius: 999px; padding: 8px 10px; cursor: pointer; }
.chat-input { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.chat-input button { padding: 12px 16px; }

@media (max-width: 800px) {
  .mobile-toggle { display: block; background: transparent; color: var(--gold); border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; }
  .nav nav { display: none; position: absolute; top: 92px; left: 0; right: 0; background: #050505; padding: 20px; flex-direction: column; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav nav.open { display: flex; }
  .split, .docs, .contact, .product-card, .category-grid, .steps, .product-grid, .lookup { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .dark-panel { padding: 40px 20px; }
  footer { flex-direction: column; }
}


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

.payment-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 28px;
}

.payment-card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
}

.product-shell .price {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  margin: 10px 0;
}

.product-meta {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  color: var(--gray);
  font-size: 13px;
}

.product-meta div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 8px;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.request-btn {
  border: 1px solid var(--gold);
  color: #070707;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.docs-btn {
  border: 1px solid var(--line);
  color: var(--gold);
  background: transparent;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

@media (max-width: 800px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}


.nav-auth {
  background: transparent;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--gray);
  border-radius: 999px;
  padding: 9px 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.nav-auth.gold {
  color: #070707;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dash-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 28px;
}

.dash-card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  display: grid;
  place-items: center;
  z-index: 80;
  padding: 20px;
}

.modal-card {
  width: min(480px, 100%);
  background: #080808;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  position: relative;
  box-shadow: 0 30px 100px rgba(0,0,0,.8);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  color: var(--white);
  border: 0;
  font-size: 26px;
  cursor: pointer;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
  padding-right: 35px;
}

.auth-tabs button {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--gray);
  border-radius: 999px;
  padding: 12px;
  font-weight: 900;
  cursor: pointer;
}

.auth-tabs button.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #070707;
  border-color: var(--gold);
}

.auth-form {
  display: grid;
  gap: 13px;
}

.auth-form h3 {
  margin-top: 8px;
}

.auth-form button {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 14px 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #070707;
}

.ghost-auth {
  background: transparent !important;
  color: var(--gold) !important;
}

.auth-message {
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 12px;
  min-height: 20px;
}

.auth-small {
  font-size: 13px;
  margin: 0;
}

.form-message.success {
  color: var(--gold) !important;
  border: 1px solid var(--line);
  background: rgba(212,175,55,.08);
  padding: 14px;
  border-radius: 16px;
}

.form-message.error {
  color: #ffb4b4 !important;
  border: 1px solid rgba(255,180,180,.25);
  background: rgba(255,0,0,.06);
  padding: 14px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}


/* v6 polish */
.modal {
  animation: modalFade .18s ease-out;
}

.modal-card {
  animation: modalPop .22s cubic-bezier(.2,.8,.2,1);
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalPop {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-form button,
.nav-auth,
.btn,
.small-btn,
.request-btn,
.docs-btn,
.chat-input button,
.form button,
.lookup button {
  transition: transform .18s ease, opacity .18s ease, border-color .18s ease, background .18s ease;
}

.auth-form button:hover,
.nav-auth:hover,
.btn:hover,
.small-btn:hover,
.request-btn:hover,
.docs-btn:hover,
.chat-input button:hover,
.form button:hover,
.lookup button:hover {
  transform: translateY(-1px);
}

.confirm-card h2 {
  font-size: 42px;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.confirm-actions button {
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  border: 1px solid var(--line);
}

.danger-auth {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #070707;
  border-color: var(--gold) !important;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: min(960px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  background: rgba(8,8,8,.96);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 30px 100px rgba(0,0,0,.75);
  backdrop-filter: blur(18px);
  animation: cookieSlide .24s ease-out;
}

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

.cookie-banner h3 {
  margin: 6px 0 6px;
}

.cookie-banner p {
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

.cookie-banner summary {
  color: var(--gold);
  margin-top: 12px;
  cursor: pointer;
  font-weight: 800;
}

.cookie-details {
  color: var(--gray);
  line-height: 1.55;
  margin-top: 12px;
  font-size: 13px;
}

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

.cookie-actions button {
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  border: 1px solid var(--line);
}

#acceptCookies {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #070707;
  border-color: var(--gold);
}

#rejectCookies {
  background: transparent;
  color: var(--gold);
}

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 20%, rgba(212,175,55,.16), transparent 30%),
    radial-gradient(circle at 30% 80%, rgba(212,175,55,.09), transparent 35%),
    #050505;
}

.auth-confirm-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.auth-confirm-card {
  width: min(760px, 100%);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  box-shadow: 0 30px 120px rgba(0,0,0,.75);
  animation: modalPop .3s cubic-bezier(.2,.8,.2,1);
}

.auth-confirm-card h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.auth-confirm-card p {
  color: var(--gray);
  line-height: 1.7;
}

.auth-logo {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
}

.policy-box {
  text-align: left;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 22px;
  margin: 28px 0;
  background: rgba(255,255,255,.035);
}

@media (max-width: 800px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions button {
    width: 100%;
  }

  .confirm-actions {
    flex-direction: column;
  }
}


/* v7 smooth global interaction polish */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  animation: pageLoad .32s ease-out;
}

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

.page-section,
.category-card,
.product-shell,
dash-card,
.payment-card,
doc-card,
.card,
.step {
  transition: transform .22s cubic-bezier(.2,.8,.2,1), border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.category-card:hover,
.product-shell:hover,
.dash-card:hover,
.payment-card:hover,
.doc-card:hover,
.card:hover,
.step:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,.34);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}

.chat {
  animation: chatIn .22s cubic-bezier(.2,.8,.2,1);
}

@keyframes chatIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.msg {
  animation: msgIn .18s ease-out;
}

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

.catalog-controls {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
  margin: 24px 0 28px;
}

.catalog-controls select {
  background: #070707;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
  color: var(--white);
  font: inherit;
}

.full-catalog {
  display: grid;
  gap: 28px;
}

.catalog-category {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
  overflow: hidden;
}

.catalog-category-head {
  padding: 26px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.catalog-category-head p {
  max-width: 820px;
  margin: 8px 0 0;
}

.catalog-count {
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.catalog-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.catalog-item {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  min-height: 100%;
}

.catalog-item:nth-child(3n) {
  border-right: 0;
}

.catalog-badge {
  display: inline-flex;
  color: #070707;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 14px;
}

.catalog-item h3 {
  margin-bottom: 8px;
}

.catalog-meta {
  display: grid;
  gap: 9px;
  margin: 16px 0;
  font-size: 13px;
}

.catalog-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.catalog-meta span {
  color: var(--gray);
}

.catalog-meta strong {
  color: var(--white);
  text-align: right;
}

.catalog-warning {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.22);
}

.catalog-action {
  margin-top: 14px;
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
}

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

  .catalog-item,
  .catalog-item:nth-child(3n) {
    border-right: 0;
  }

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

  .catalog-category-head {
    flex-direction: column;
  }
}


/* v8 navigation and catalog organization */
.nav {
  gap: 18px;
}

.hamburger {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  display: grid;
  place-items: center;
  gap: 0;
  cursor: pointer;
  padding: 12px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.hamburger:hover {
  transform: translateY(-1px);
  border-color: rgba(212,175,55,.55);
  background: rgba(212,175,55,.06);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transition: transform .2s ease;
}

.nav .brand {
  min-width: 188px;
}

.top-nav {
  flex: 1;
  justify-content: center;
}

.nav-account {
  display: flex;
  gap: 10px;
  align-items: center;
}

.molecule-logo {
  clip-path: none !important;
  border: 0 !important;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.molecule-logo svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.molecule-logo polygon,
.molecule-logo path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.molecule-logo circle {
  fill: #050505;
  stroke: var(--gold);
  stroke-width: 3;
}

.side-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(12px);
  animation: modalFade .18s ease-out;
}

.side-menu-panel {
  width: min(430px, calc(100% - 28px));
  height: calc(100vh - 28px);
  margin: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 10%, rgba(212,175,55,.14), transparent 35%),
    #080808;
  box-shadow: 0 30px 120px rgba(0,0,0,.85);
  padding: 24px;
  display: flex;
  flex-direction: column;
  animation: sideIn .26s cubic-bezier(.2,.8,.2,1);
}

@keyframes sideIn {
  from { opacity: 0; transform: translateX(-24px) scale(.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.side-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.side-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.side-links {
  display: grid;
  gap: 8px;
  padding: 24px 0;
}

.side-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px;
  color: var(--white);
  background: rgba(255,255,255,.025);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), border-color .2s ease, background .2s ease;
}

.side-links a:hover {
  transform: translateX(5px);
  border-color: rgba(212,175,55,.5);
  background: rgba(212,175,55,.06);
}

.side-links span {
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
}

.side-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
}

.side-footer p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.catalog-products {
  grid-template-columns: repeat(2, 1fr);
  padding: 14px;
  gap: 14px;
}

.catalog-item {
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 22px;
  background: rgba(0,0,0,.18);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), border-color .2s ease, background .2s ease;
}

.catalog-item:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,.42) !important;
  background: rgba(212,175,55,.035);
}

.product-open-btn {
  margin-top: 14px;
  display: inline-flex;
  color: #070707;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  font-weight: 900;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 10px 13px;
  cursor: pointer;
  font: inherit;
}

.catalog-layout-note {
  color: var(--gray);
  margin: 0 0 18px;
}

.product-modal-card {
  width: min(780px, 100%);
}

.product-modal-card h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.modal-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.modal-spec-grid div {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 8px;
  background: rgba(255,255,255,.025);
}

.modal-spec-grid span {
  color: var(--gray);
  font-size: 13px;
}

.modal-spec-grid strong {
  color: var(--gold);
}

@media (max-width: 1120px) {
  .top-nav {
    display: none !important;
  }

  .nav {
    width: min(1180px, calc(100% - 24px));
  }
}

@media (max-width: 800px) {
  .nav {
    height: auto;
    min-height: 86px;
    padding: 12px 0;
  }

  .nav-account {
    display: none;
  }

  .nav .brand {
    min-width: auto;
  }

  .catalog-products,
  .modal-spec-grid {
    grid-template-columns: 1fr;
  }
}


/* v9 emergency fix */
.hamburger {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 120;
  position: relative;
}

.hamburger span + span {
  margin-top: 5px;
}

.side-menu:not(.hidden) {
  display: block !important;
}

.full-catalog {
  min-height: 240px;
}

.catalog-category {
  animation: catalogIn .22s ease-out;
}

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


/* v10 polish */
:root { --ease-premium: cubic-bezier(.2,.8,.2,1); }

.refined-logo {
  clip-path: none !important;
  border: 0 !important;
  width: 58px !important;
  height: 58px !important;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 22px rgba(212,175,55,.14));
}
.refined-logo svg { width: 100%; height: 100%; display: block; overflow: visible; }
.refined-logo polygon {
  fill: rgba(212,175,55,.035);
  stroke: var(--gold);
  stroke-width: 4;
}
.refined-logo circle {
  fill: #050505;
  stroke: var(--gold);
  stroke-width: 3;
}
.refined-logo path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a, button, input, textarea, select, .catalog-item, .catalog-category, .product-shell, .dash-card, .payment-card, .modal-card, .chat {
  transition: transform .22s var(--ease-premium), opacity .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease;
}
button:active, .btn:active { transform: scale(.985); }

.modal:not(.hidden) { display: grid !important; }
.chat.hidden {
  opacity: 0;
  transform: translateY(12px) scale(.98);
  pointer-events: none;
  display: flex !important;
}
.chat:not(.hidden) { opacity: 1; transform: translateY(0) scale(1); }

.assistant-btn { display: flex; align-items: center; gap: 10px; }
.assistant-btn::before {
  content: "E";
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  clip-path: polygon(25% 5%,75% 5%,100% 50%,75% 95%,25% 95%,0% 50%);
  font-size: 12px;
  font-weight: 900;
}

.chat-head-left { display: flex; align-items: center; gap: 12px; }
.chat-brand-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  clip-path: polygon(25% 5%,75% 5%,100% 50%,75% 95%,25% 95%,0% 50%);
  font-weight: 900;
  flex: 0 0 auto;
}

.typing {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 12px 14px;
}
.typing span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 999px;
  animation: typingDot .9s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: .12s; }
.typing span:nth-child(3) { animation-delay: .24s; }
@keyframes typingDot {
  0%, 80%, 100% { opacity: .35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-4px); }
}

.coa-request-btn {
  margin-top: 14px;
  display: inline-flex;
  color: var(--gold);
  background: transparent;
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  cursor: pointer;
  font: inherit;
}
.coa-request-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.5);
}

.auth-form textarea { min-height: 120px; }


.three-payments {
  grid-template-columns: repeat(3, 1fr);
}

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


/* v12 Product container visuals */
.product-packshot {
  height: 230px;
  display: grid;
  place-items: end center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 20%, rgba(212,175,55,.12), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.container-bottle,
.container-vial,
.container-jar,
.container-support {
  position: relative;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.55));
}

.container-bottle {
  width: 98px;
  height: 172px;
  border-radius: 26px 26px 18px 18px;
  background: linear-gradient(90deg, #050505, #262626 28%, #0b0b0b 62%, #000);
  border: 1px solid rgba(255,255,255,.22);
  margin-bottom: 18px;
}

.container-bottle::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 20px;
  width: 58px;
  height: 34px;
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(90deg, #101010, #3a3a3a, #080808);
  border: 1px solid rgba(255,255,255,.2);
}

.container-vial {
  width: 82px;
  height: 164px;
  border-radius: 28px 28px 16px 16px;
  background: linear-gradient(90deg, rgba(245,245,245,.78), rgba(255,255,255,.96) 45%, rgba(150,150,150,.62));
  border: 1px solid rgba(255,255,255,.65);
  margin-bottom: 16px;
}

.container-vial::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 7px;
  width: 68px;
  height: 36px;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(90deg, #161616, #555, #121212);
  border: 1px solid rgba(255,255,255,.3);
}

.container-jar {
  width: 132px;
  height: 128px;
  border-radius: 20px 20px 28px 28px;
  background: linear-gradient(90deg, #030303, #222 35%, #070707 72%, #000);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 18px;
}

.container-jar::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -5px;
  width: 142px;
  height: 38px;
  border-radius: 14px 14px 6px 6px;
  background: repeating-linear-gradient(90deg, #060606 0 4px, #1c1c1c 4px 7px);
  border: 1px solid rgba(255,255,255,.18);
}

.container-support {
  width: 108px;
  height: 168px;
  border-radius: 18px 18px 14px 14px;
  background: linear-gradient(90deg, rgba(12,12,12,.9), rgba(62,62,62,.9), rgba(8,8,8,.95));
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 18px;
}

.container-support::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 23px;
  width: 62px;
  height: 30px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(90deg, #d4af37, #9d7920);
}

.pack-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  width: 82%;
  min-height: 70px;
  display: grid;
  place-items: center;
  gap: 4px;
  text-align: center;
  padding: 10px 7px;
  background: rgba(5,5,5,.92);
  border: 1px solid rgba(212,175,55,.68);
  border-radius: 8px;
}

.container-vial .pack-label {
  background: rgba(255,255,255,.9);
  color: #080808;
  border-color: rgba(0,0,0,.28);
}

.pack-brand {
  font-size: 8px;
  letter-spacing: .18em;
  font-weight: 900;
  color: var(--gold);
}

.container-vial .pack-brand {
  color: #050505;
}

.pack-name {
  font-size: 11px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  word-break: break-word;
}

.container-vial .pack-name {
  color: #050505;
}

.pack-use {
  font-size: 6px;
  letter-spacing: .12em;
  color: var(--gray);
  text-transform: uppercase;
}

.container-vial .pack-use {
  color: #333;
}

.product-open-btn,
.coa-request-btn {
  margin-right: 8px;
}

.catalog-item {
  display: flex;
  flex-direction: column;
}

.catalog-item .catalog-warning {
  margin-top: auto;
}


/* v14 fixed official catalog */
#categoryDetail {
  display: none !important;
}

.official-catalog-section {
  width: min(1480px, calc(100% - 36px));
}

.official-catalog {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: start;
}

.catalog-left,
.catalog-center,
.catalog-drawer {
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016));
  border-radius: 28px;
}

.catalog-left {
  padding: 18px;
  position: sticky;
  top: 112px;
}

.v14-category-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.v14-cat-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.075);
  background: rgba(255,255,255,.025);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.v14-cat-btn span {
  color: var(--gold);
  font-size: 12px;
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 999px;
  padding: 4px 8px;
}

.v14-cat-btn.active,
.v14-cat-btn:hover {
  border-color: rgba(212,175,55,.45);
  background: rgba(212,175,55,.085);
  transform: translateX(3px);
}

.catalog-side-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 18px;
  margin-top: 16px;
  background: rgba(0,0,0,.22);
}

.catalog-side-card h3 {
  color: var(--gold);
  font-size: 15px;
}

.catalog-side-card p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
}

.catalog-side-card button {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.catalog-center {
  padding: 18px;
  min-width: 0;
}

.v14-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 4px 4px 18px;
}

.v14-toolbar h3 {
  font-size: 30px;
  margin: 0 0 6px;
}

.v14-toolbar p {
  margin: 0;
  color: var(--gray);
}

.v14-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px;
  gap: 12px;
  width: min(500px, 100%);
}

.v14-controls select,
.v14-controls input {
  background: #070707;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
  color: var(--white);
  font: inherit;
}

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

.v14-product-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,.11), transparent 38%),
    rgba(255,255,255,.025);
  padding: 14px;
  cursor: pointer;
  min-width: 0;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), border-color .22s ease, box-shadow .22s ease;
}

.v14-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}

.v14-product-card.active {
  border-color: rgba(212,175,55,.75);
  box-shadow: 0 0 0 1px rgba(212,175,55,.2), 0 28px 80px rgba(0,0,0,.35);
}

.v14-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.v14-tag {
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(212,175,55,.14);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.23);
}

.v14-product-card h3 {
  font-size: 17px;
  margin: 0 0 6px;
}

.v14-product-card p {
  color: var(--gray);
  font-size: 13px;
  margin: 0 0 12px;
}

.v14-view {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.catalog-drawer {
  position: sticky;
  top: 112px;
  min-height: 720px;
  padding: 20px;
  overflow: hidden;
}

.catalog-drawer.closed-mobile {
  display: block;
}

.drawer-close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: transparent;
  color: var(--white);
  border: 0;
  font-size: 26px;
  cursor: pointer;
  z-index: 2;
}

.v14-drawer-content {
  animation: v14DrawerIn .22s cubic-bezier(.2,.8,.2,1);
}

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

.v14-drawer-title {
  font-size: 34px;
  line-height: 1.05;
  margin: 8px 0 10px;
  letter-spacing: -0.035em;
}

.v14-drawer-id {
  color: var(--gray);
  margin-bottom: 18px;
}

.v14-drawer-pack {
  height: 300px;
  margin: 18px 0 22px;
}

.v14-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.v14-specs div {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 14px;
  background: rgba(0,0,0,.18);
}

.v14-specs span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 7px;
}

.v14-specs strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.35;
}

.v14-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.v14-action {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.025);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.v14-action:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.45);
}

.v14-action strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
}

.v14-action span {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.5;
}

.v14-warning {
  margin-top: 20px;
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 18px;
  padding: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  background: rgba(212,175,55,.06);
}

@media (max-width: 1300px) {
  .official-catalog {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .catalog-drawer {
    position: fixed;
    right: 18px;
    top: 100px;
    bottom: 18px;
    width: min(460px, calc(100% - 36px));
    z-index: 70;
    overflow-y: auto;
    box-shadow: 0 40px 120px rgba(0,0,0,.75);
  }

  .catalog-drawer.closed-mobile {
    display: none;
  }

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

@media (max-width: 850px) {
  .official-catalog {
    grid-template-columns: 1fr;
  }

  .catalog-left {
    position: relative;
    top: 0;
  }

  .v14-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .v14-controls {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .v14-specs,
  .v14-drawer-actions {
    grid-template-columns: 1fr;
  }
}


/* v15 technical cleanup + physical product visuals */
#categoryDetail,
.category-detail {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

.catalog-drawer {
  max-height: calc(100vh - 130px);
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,.55) rgba(255,255,255,.06);
}

.catalog-drawer::-webkit-scrollbar {
  width: 8px;
}

.catalog-drawer::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
  border-radius: 999px;
}

.catalog-drawer::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,.55);
  border-radius: 999px;
}

.v14-drawer-pack {
  height: auto !important;
  min-height: 310px;
}

.v14-product-card .product-packshot {
  height: 275px !important;
}

.product-packshot {
  align-items: end;
  background:
    radial-gradient(circle at 50% 20%, rgba(212,175,55,.13), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.012)) !important;
}

.product-shadow {
  position: absolute;
  bottom: 16px;
  width: 150px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0,0,0,.8), transparent 68%);
  filter: blur(4px);
}

/* physical bottle */
.pack-physical {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.58));
}

.physical-bottle {
  width: 116px;
  height: 170px;
  border-radius: 28px 28px 18px 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10), transparent 12%, transparent 82%, rgba(255,255,255,.08)),
    linear-gradient(90deg, #020202, #202020 28%, #070707 63%, #000);
  border: 1px solid rgba(255,255,255,.22);
  margin-bottom: 25px;
}

.physical-bottle::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 23px;
  width: 70px;
  height: 38px;
  border-radius: 10px 10px 4px 4px;
  background:
    repeating-linear-gradient(90deg, #040404 0 4px, #1a1a1a 4px 7px);
  border: 1px solid rgba(255,255,255,.18);
}

/* physical vial */
.physical-vial {
  width: 94px;
  height: 172px;
  border-radius: 24px 24px 16px 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,.96) 42%, rgba(190,190,190,.58)),
    linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.68);
  margin-bottom: 24px;
}

.physical-vial::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 8px;
  width: 78px;
  height: 38px;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(90deg, #c8b58c, #f0d68a, #8e7335);
  border: 1px solid rgba(255,255,255,.34);
}

.physical-vial.peptide-blue::before {
  background: linear-gradient(90deg, #16336f, #2e62ce, #0c1d47);
}

.physical-vial.peptide-purple::before {
  background: linear-gradient(90deg, #32165f, #6a38d2, #1f0f3f);
}

/* physical jar */
.physical-jar {
  width: 150px;
  height: 132px;
  border-radius: 20px 20px 30px 30px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 15%, transparent 78%, rgba(255,255,255,.06)),
    linear-gradient(90deg, #020202, #202020 30%, #080808 72%, #000);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 28px;
}

.physical-jar::before {
  content: "";
  position: absolute;
  top: -34px;
  left: -6px;
  width: 162px;
  height: 42px;
  border-radius: 15px 15px 6px 6px;
  background: repeating-linear-gradient(90deg, #030303 0 4px, #1b1b1b 4px 7px);
  border: 1px solid rgba(255,255,255,.17);
}

/* support bottle/jar hybrid */
.physical-support {
  width: 132px;
  height: 144px;
  border-radius: 18px 18px 24px 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.1), transparent 16%, transparent 78%, rgba(255,255,255,.07)),
    linear-gradient(90deg, #020202, #252525 32%, #050505 72%, #000);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 28px;
}

.physical-support::before {
  content: "";
  position: absolute;
  top: -32px;
  left: -4px;
  width: 140px;
  height: 40px;
  border-radius: 14px 14px 5px 5px;
  background: repeating-linear-gradient(90deg, #050505 0 4px, #1d1d1d 4px 7px);
  border: 1px solid rgba(255,255,255,.18);
}

.physical-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 23px;
  width: 84%;
  min-height: 88px;
  padding: 11px 8px 9px;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.12), transparent 30%),
    rgba(3,3,3,.94);
  border: 1px solid rgba(212,175,55,.62);
  border-radius: 8px;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 3px;
}

.physical-vial .physical-label {
  background: rgba(255,255,255,.90);
  color: #050505;
  border-color: rgba(0,0,0,.22);
  bottom: 22px;
}

.physical-label-logo {
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 900;
  color: var(--gold);
}

.physical-vial .physical-label-logo {
  color: #111;
}

.physical-label-name {
  font-size: 15px;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: .02em;
  color: #fff;
  text-transform: uppercase;
  max-width: 100%;
  word-break: break-word;
}

.physical-vial .physical-label-name {
  color: #080808;
}

.physical-label-sub {
  font-size: 8px;
  color: #cfcfcf;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.physical-vial .physical-label-sub {
  color: #333;
}

.physical-label-foot {
  font-size: 6px;
  color: #9a9a9a;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.physical-vial .physical-label-foot {
  color: #555;
}

.v14-product-grid {
  align-items: stretch;
}

.v14-product-card {
  overflow: hidden;
}

@media (max-width: 1300px) {
  .catalog-drawer {
    overflow-y: auto !important;
  }
}


/* v16 close button + more realistic physical product containers */
.catalog-drawer {
  transition: opacity .24s cubic-bezier(.2,.8,.2,1), transform .24s cubic-bezier(.2,.8,.2,1), visibility .24s ease;
}

.catalog-drawer.drawer-hidden {
  opacity: 0;
  transform: translateX(18px);
  visibility: hidden;
  pointer-events: none;
}

.drawer-close,
#v14CloseDrawer {
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(212,175,55,.35) !important;
  border-radius: 999px !important;
  background: rgba(0,0,0,.52) !important;
  color: var(--gold) !important;
  display: grid !important;
  place-items: center !important;
  line-height: 1 !important;
  font-size: 26px !important;
  cursor: pointer !important;
  z-index: 100 !important;
}

.drawer-close:hover,
#v14CloseDrawer:hover {
  transform: rotate(90deg) scale(1.04);
  border-color: rgba(212,175,55,.72) !important;
  background: rgba(212,175,55,.09) !important;
}

.product-packshot {
  perspective: 900px;
  isolation: isolate;
}

.pack-physical {
  transform: rotateX(0deg) rotateY(-5deg);
  transform-style: preserve-3d;
}

/* bottle now closer to real plastic bottle */
.physical-bottle {
  width: 124px !important;
  height: 178px !important;
  border-radius: 30px 30px 18px 18px !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.08) 8%, transparent 19%, rgba(255,255,255,.03) 45%, rgba(255,255,255,.11) 76%, transparent 92%),
    radial-gradient(ellipse at 50% 5%, rgba(255,255,255,.20), transparent 30%),
    linear-gradient(90deg, #020202 0%, #161616 20%, #323232 40%, #0a0a0a 68%, #000 100%) !important;
  border: 1px solid rgba(255,255,255,.30) !important;
  box-shadow:
    inset 10px 0 16px rgba(255,255,255,.05),
    inset -12px 0 18px rgba(0,0,0,.9),
    inset 0 -16px 26px rgba(0,0,0,.75),
    0 28px 35px rgba(0,0,0,.55);
}

.physical-bottle::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 15px;
  width: 94px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255,255,255,.14), rgba(0,0,0,.2));
  border: 1px solid rgba(255,255,255,.12);
}

.physical-bottle::before {
  height: 42px !important;
  width: 78px !important;
  left: 23px !important;
  top: -39px !important;
  border-radius: 10px 10px 5px 5px !important;
  background:
    repeating-linear-gradient(90deg, #050505 0 3px, #191919 3px 6px, #070707 6px 9px),
    linear-gradient(180deg, #222, #030303) !important;
  box-shadow:
    inset 8px 0 8px rgba(255,255,255,.08),
    inset -8px 0 10px rgba(0,0,0,.75);
}

/* vial now closer to glass peptide vial */
.physical-vial {
  width: 102px !important;
  height: 180px !important;
  border-radius: 27px 27px 16px 16px !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.72) 18%, rgba(255,255,255,.96) 45%, rgba(210,210,210,.62) 72%, rgba(255,255,255,.14)),
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.10)) !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  box-shadow:
    inset 10px 0 14px rgba(255,255,255,.35),
    inset -12px 0 18px rgba(0,0,0,.18),
    inset 0 -18px 22px rgba(0,0,0,.16),
    0 28px 35px rgba(0,0,0,.45);
}

.physical-vial::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 13px;
  width: 76px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(255,255,255,.45);
}

.physical-vial::before {
  height: 42px !important;
  width: 84px !important;
  left: 9px !important;
  top: -37px !important;
  border-radius: 13px 13px 5px 5px !important;
  box-shadow:
    inset 8px 0 8px rgba(255,255,255,.26),
    inset -8px 0 10px rgba(0,0,0,.32);
}

/* jar now closer to real plastic powder jar */
.physical-jar,
.physical-support {
  box-shadow:
    inset 12px 0 16px rgba(255,255,255,.06),
    inset -16px 0 20px rgba(0,0,0,.88),
    inset 0 -18px 24px rgba(0,0,0,.8),
    0 30px 38px rgba(0,0,0,.58);
}

.physical-jar {
  width: 160px !important;
  height: 140px !important;
  border-radius: 21px 21px 34px 34px !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), transparent 14%, rgba(255,255,255,.04) 48%, rgba(255,255,255,.09) 78%, transparent),
    linear-gradient(90deg, #020202, #252525 35%, #070707 73%, #000) !important;
}

.physical-jar::after,
.physical-support::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  right: 10px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(0,0,0,.2));
  border: 1px solid rgba(255,255,255,.10);
}

.physical-label {
  min-height: 94px !important;
  background:
    linear-gradient(135deg, rgba(212,175,55,.13), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.08), transparent 25%),
    rgba(3,3,3,.96) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 10px 14px rgba(0,0,0,.24);
}

.physical-vial .physical-label {
  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,.05), transparent 30%),
    rgba(255,255,255,.92) !important;
}

.physical-label-logo {
  font-size: 10px !important;
  line-height: 1.1;
}

.physical-label-name {
  font-size: 14px !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}

.physical-vial .physical-label-name {
  text-shadow: none;
}

.v14-drawer-pack .product-packshot {
  height: 330px !important;
}

.v14-drawer-pack .physical-bottle {
  transform: scale(1.2);
}

.v14-drawer-pack .physical-vial {
  transform: scale(1.22);
}

.v14-drawer-pack .physical-jar,
.v14-drawer-pack .physical-support {
  transform: scale(1.18);
}


/* v18 verified page */
.verified-card {
  position: relative;
  overflow: hidden;
}

.verified-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 35%, rgba(212,175,55,.16), transparent 22%),
    radial-gradient(circle at 30% 70%, rgba(212,175,55,.08), transparent 25%);
  pointer-events: none;
}

.verified-card > * {
  position: relative;
}

.verified-check {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #050505;
  box-shadow: 0 0 0 10px rgba(212,175,55,.08), 0 28px 80px rgba(0,0,0,.5);
  animation: verifiedPop .34s cubic-bezier(.2,.8,.2,1);
}

.verified-check span {
  font-size: 44px;
  font-weight: 900;
}

@keyframes verifiedPop {
  from { opacity: 0; transform: scale(.82) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}


/* v19 responsive layout fixes */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
}

.hero,
.hero-content,
.section,
.official-catalog-section,
.dark-panel,
footer {
  max-width: 100%;
}

@media (max-width: 1250px) {
  .official-catalog {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .catalog-drawer {
    position: fixed;
    right: 18px;
    top: 100px;
    bottom: 18px;
    width: min(460px, calc(100% - 36px));
    z-index: 70;
    overflow-y: auto !important;
    box-shadow: 0 40px 120px rgba(0,0,0,.75);
  }

  .catalog-drawer.closed-mobile,
  .catalog-drawer.drawer-hidden {
    display: none !important;
  }

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

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

  .catalog-left {
    position: relative;
    top: 0;
  }

  .catalog-center {
    min-width: 0;
    overflow: hidden;
  }

  .v14-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .v14-controls {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

/* v19 payment process */
.payment-process-section {
  width: min(1280px, calc(100% - 40px));
}

.approval-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.approval-timeline article,
.support-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 24px;
}

.approval-timeline span {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.approval-timeline h3,
.support-card h3 {
  margin-top: 10px;
}

.support-strip {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(212,175,55,.06);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.support-strip a,
.support-card a,
footer a {
  color: var(--gold);
  font-weight: 900;
}

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

.primary-support {
  border-color: rgba(212,175,55,.35);
  background:
    radial-gradient(circle at 20% 10%, rgba(212,175,55,.13), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.primary-support a {
  display: inline-flex;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
}

.form select,
.auth-form select {
  width: 100%;
  background: #070707;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
  color: var(--white);
  font: inherit;
}

@media (max-width: 980px) {
  .approval-timeline,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-strip {
    display: grid;
  }
}


/* v20 logo refinement */
.premium-el-logo {
  clip-path: none !important;
  border: 0 !important;
  width: 60px !important;
  height: 60px !important;
}
.premium-el-logo svg { width: 100%; height: 100%; overflow: visible; }
.premium-el-logo .logo-orbit {
  fill: rgba(212,175,55,.035);
  stroke: url(#elGold);
  stroke-width: 3.5;
}
.premium-el-logo .logo-orbit.small {
  fill: none;
  stroke-width: 1.5;
  opacity: .45;
}
.premium-el-logo .logo-e,
.premium-el-logo .logo-l {
  fill: none;
  stroke: url(#elGold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.premium-el-logo .logo-l { opacity: .72; }
.premium-el-logo .logo-node {
  fill: #050505;
  stroke: url(#elGold);
  stroke-width: 3;
}

/* v20 global glitch prevention */
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}
* {
  min-width: 0;
}
img, svg {
  max-width: 100%;
}

/* v20 catalog without sidebar drawer */
.catalog-no-drawer {
  grid-template-columns: 260px minmax(0, 1fr) !important;
}
.catalog-no-drawer .catalog-center {
  min-width: 0;
}
.v20-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.v20-product-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,.11), transparent 38%),
    rgba(255,255,255,.025);
  padding: 14px;
  cursor: pointer;
  min-width: 0;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), border-color .22s ease, box-shadow .22s ease;
}
.v20-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}
.v20-product-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.v20-product-card p {
  color: var(--gray);
  font-size: 13px;
  margin: 0 0 14px;
  line-height: 1.5;
}
.side-support-link {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  margin-top: 10px;
}

/* v20 dedicated product page */
.product-detail-screen {
  animation: pageLoad .24s ease-out;
}
.back-to-catalog {
  border: 1px solid var(--line);
  color: var(--gold);
  background: transparent;
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  margin-bottom: 22px;
}
.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 70% 20%, rgba(212,175,55,.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
}
.product-detail-hero h2 {
  font-size: clamp(42px, 6vw, 78px);
}
.detail-packshot .product-packshot {
  height: 380px !important;
}
.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.detail-badges span {
  border: 1px solid var(--line);
  color: var(--gold);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.detail-grid article {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.025);
}
.detail-grid p {
  color: var(--gray);
  line-height: 1.65;
}
.product-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

/* v20 account avatar */
.account-chip {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: radial-gradient(circle at 30% 20%, rgba(212,175,55,.25), rgba(212,175,55,.08));
  color: var(--gold);
  font-weight: 950;
}
.account-overview {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at 10% 10%, rgba(212,175,55,.12), transparent 30%),
    rgba(255,255,255,.025);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.account-avatar-large {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 30px;
  font-weight: 950;
  background: rgba(212,175,55,.08);
}
.management-panel {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  padding: 24px;
  margin-top: 22px;
  background: rgba(255,255,255,.025);
}
.management-list {
  display: grid;
  gap: 12px;
}
.management-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0;
}
.management-list span {
  color: var(--gray);
  text-align: right;
}
.management-list a {
  color: var(--gold);
  font-weight: 900;
}

/* v20 cookies */
.cookie-banner {
  z-index: 150 !important;
}
.cookie-banner details {
  margin-top: 10px;
}

/* v20 responsive */
@media (max-width: 1250px) {
  .catalog-no-drawer {
    grid-template-columns: 230px minmax(0, 1fr) !important;
  }
  .v20-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .catalog-no-drawer,
  .official-catalog {
    grid-template-columns: 1fr !important;
  }
  .v20-product-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .detail-packshot .product-packshot {
    height: 320px !important;
  }
  .account-overview {
    align-items: flex-start;
  }
  .management-list div {
    display: grid;
  }
  .management-list span {
    text-align: left;
  }
}
@media (max-width: 650px) {
  .nav {
    width: min(100%, calc(100% - 18px));
    gap: 8px;
  }
  .brand-name { font-size: 12px; }
  .brand-sub { font-size: 10px; }
  .premium-el-logo {
    width: 48px !important;
    height: 48px !important;
  }
  .hero-content {
    width: min(100%, calc(100% - 26px));
  }
  .section,
  .official-catalog-section,
  .payment-process-section {
    width: min(100%, calc(100% - 24px)) !important;
  }
}


/* v21 password reset page */
.reset-card {
  position: relative;
  overflow: hidden;
}

.reset-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 35%, rgba(212,175,55,.16), transparent 22%),
    radial-gradient(circle at 30% 70%, rgba(212,175,55,.08), transparent 25%);
  pointer-events: none;
}

.reset-card > * {
  position: relative;
}

.reset-form {
  margin: 28px auto 0;
  max-width: 520px;
}

.reset-form .form-message {
  min-height: 22px;
}


/* v22 focused section layout */
.section-hidden {
  display: none !important;
}

.active-view {
  animation: viewFadeIn .24s ease-out;
}

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

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

.hub-grid button {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  padding: 26px;
  text-align: left;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(212,175,55,.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
  cursor: pointer;
  font: inherit;
  min-height: 178px;
}

.hub-grid button:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
}

.hub-grid span {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.hub-grid strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 22px;
}

.hub-grid small {
  color: var(--gray);
  line-height: 1.55;
  font-size: 14px;
}

.active-route {
  color: var(--gold) !important;
}

/* v22 simpler logo */
.plain-el-logo {
  clip-path: none !important;
  border: 0 !important;
  width: 54px !important;
  height: 54px !important;
  filter: drop-shadow(0 8px 18px rgba(212,175,55,.12));
}

.plain-el-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.plain-el-logo rect {
  fill: rgba(212,175,55,.035);
  stroke: var(--gold);
  stroke-width: 4;
}

.plain-el-logo path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

@media (max-width: 650px) {
  .hub-grid button {
    min-height: auto;
  }
}


/* v23 header cleanup + simple professional logo */
.nav {
  width: min(1280px, calc(100% - 32px));
  gap: 16px;
}

.top-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px) !important;
  white-space: nowrap;
}

.top-nav a {
  font-size: clamp(13px, 1vw, 15px);
}

.nav .brand {
  min-width: 230px;
}

.simple-e-logo {
  clip-path: none !important;
  border: 0 !important;
  width: 56px !important;
  height: 56px !important;
  filter: drop-shadow(0 8px 18px rgba(212,175,55,.12));
}

.simple-e-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.simple-e-logo rect {
  fill: rgba(212,175,55,.035);
  stroke: var(--gold);
  stroke-width: 5;
}

.simple-e-logo path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand:hover .simple-e-logo {
  transform: translateY(-1px);
}

.brand {
  cursor: pointer;
}

.nav-account {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .top-nav {
    display: none !important;
  }

  .nav .brand {
    min-width: auto;
  }
}

@media (max-width: 720px) {
  .nav {
    width: min(100%, calc(100% - 18px));
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: .18em;
  }

  .brand-sub {
    font-size: 10px;
  }

  .simple-e-logo {
    width: 48px !important;
    height: 48px !important;
  }
}

/* v23 client-facing section cards */
.section-hub h2 {
  max-width: 820px;
}

.hub-grid button {
  min-height: 190px;
}

.hub-grid strong {
  letter-spacing: -0.02em;
}


/* v24 executive logo */
.executive-e-logo {
  clip-path: none !important;
  border: 0 !important;
  width: 56px !important;
  height: 56px !important;
  filter: drop-shadow(0 9px 18px rgba(212,175,55,.14));
}
.executive-e-logo svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.executive-e-logo rect {
  fill: rgba(212,175,55,.035);
  stroke: var(--gold);
  stroke-width: 4.5;
}
.executive-e-logo .logo-main-e,
.executive-e-logo .logo-accent {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.executive-e-logo .logo-main-e {
  stroke-width: 8.5;
}
.executive-e-logo .logo-accent {
  stroke-width: 3.5;
  opacity: .72;
}
.executive-e-logo circle {
  fill: var(--gold);
}

/* v24 smoother customer experience */
a, button, .btn, .nav-auth, .hub-grid button, .v20-product-card, .v14-cat-btn, .payment-card, .support-card, .dash-card, .modal-card, .cookie-banner, .chat {
  transition: transform .22s cubic-bezier(.2,.8,.2,1), opacity .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid rgba(212,175,55,.78);
  outline-offset: 3px;
}
.btn:hover, .nav-auth:hover, .hub-grid button:hover, .v20-product-card:hover, .payment-card:hover, .support-card:hover, .dash-card:hover {
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

/* v24 cookies */
.cookie-banner {
  border-color: rgba(212,175,55,.36) !important;
  box-shadow: 0 35px 120px rgba(0,0,0,.82) !important;
}
.cookie-banner:not(.hidden) {
  display: grid !important;
}

/* v24 auth trust note */
.auth-trust-note {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
  margin: -2px 0 14px;
}

/* v24 enhanced assistant */
.enhanced-prompts {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.enhanced-prompts button {
  white-space: normal;
  text-align: left;
  line-height: 1.35;
  padding: 10px 11px;
}
.chat-body::before {
  content: "Common questions";
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: -4px;
}
.user-signed-in .account-chip {
  box-shadow: 0 0 0 3px rgba(212,175,55,.08);
}
@media (max-width: 720px) {
  .executive-e-logo {
    width: 48px !important;
    height: 48px !important;
  }
  .enhanced-prompts {
    grid-template-columns: 1fr;
  }
}


/* v25 Logo option 7 style */
.logo-seven-brand {
  gap: 12px !important;
  min-width: 220px;
}

.logo-seven-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.08em;
  font-family: Georgia, "Times New Roman", serif;
}

.logo-seven-divider {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,.85), transparent);
}

.logo-seven-brand .brand-name {
  letter-spacing: .32em;
  font-size: 14px;
}

.logo-seven-brand .brand-sub {
  letter-spacing: .32em;
  font-size: 11px;
}

/* Hide older logo styles if still present */
.executive-e-logo,
.simple-e-logo,
.plain-el-logo {
  display: none !important;
}

/* v25 shipping */
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.shipping-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 24px;
}

.shipping-card h3 {
  color: var(--white);
}

.shipping-card p {
  color: var(--gray);
  line-height: 1.65;
}

.shipping-card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
}

.primary-shipping {
  border-color: rgba(212,175,55,.36);
  background:
    radial-gradient(circle at 15% 10%, rgba(212,175,55,.13), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

/* v25 AI prompts */
.quick-prompts.quick-prompts-hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .shipping-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .shipping-grid {
    grid-template-columns: 1fr;
  }

  .logo-seven-brand {
    min-width: auto;
  }

  .logo-seven-mark {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .logo-seven-divider {
    height: 38px;
  }
}


/* v26 plain E logo refinement */
.logo-seven-mark {
  font-family: Inter, system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  font-size: 32px !important;
}

/* v26 refund policy */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.policy-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 26px;
}

.policy-card p {
  color: var(--gray);
  line-height: 1.7;
}

.primary-policy {
  border-color: rgba(212,175,55,.38);
  background:
    radial-gradient(circle at 15% 10%, rgba(212,175,55,.13), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

/* v26 stronger mobile readiness */
@media (max-width: 780px) {
  html, body {
    overflow-x: hidden !important;
  }

  .nav {
    min-height: 76px;
    padding: 10px 0;
  }

  .nav-account {
    display: flex !important;
    gap: 8px;
  }

  .nav-auth {
    padding: 9px 11px;
    font-size: 12px;
  }

  .nav-auth.gold {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 34px 0;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hub-grid,
  .shipping-grid,
  .policy-grid,
  .approval-timeline,
  .support-grid,
  .dashboard-grid {
    grid-template-columns: 1fr !important;
  }

  .modal-card,
  .auth-confirm-card {
    padding: 24px;
    border-radius: 24px;
  }

  .chat {
    right: 12px;
    left: 12px;
    width: auto;
    height: min(620px, calc(100vh - 110px));
  }

  .assistant-btn {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
    padding: 18px;
  }
}


/* v27 Supabase inquiry portal */
.live-inquiry-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.inquiry-status-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(212,175,55,.08), transparent 32%),
    rgba(255,255,255,.025);
}

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

.inquiry-card-head h3 {
  margin: 6px 0 0;
}

.status-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  background: rgba(212,175,55,.07);
}

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

.inquiry-card-grid div {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 14px;
  background: rgba(0,0,0,.16);
}

.inquiry-card-grid span {
  display: block;
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 7px;
}

.inquiry-card-grid strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.35;
}

.inquiry-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.inquiry-progress span {
  border: 1px solid rgba(255,255,255,.08);
  color: var(--gray);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}

.inquiry-progress span.active {
  color: #070707;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}

.empty-state {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255,255,255,.025);
}

.empty-state p {
  color: var(--gray);
}

@media (max-width: 900px) {
  .inquiry-card-head {
    display: grid;
  }

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


/* v28 dashboard/admin review fixes */
#dashboard {
  min-height: 70vh;
}

.compact-head {
  margin-bottom: 16px;
  align-items: center;
}

.admin-review-panel {
  border-color: rgba(212,175,55,.32);
  background:
    radial-gradient(circle at 10% 0%, rgba(212,175,55,.10), transparent 32%),
    rgba(255,255,255,.025);
}

.admin-inquiry-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 22px;
  background: rgba(0,0,0,.18);
}

.admin-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 18px 0;
}

.admin-controls select {
  width: 100%;
  background: #070707;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
  color: var(--white);
  font: inherit;
}

.admin-save-status {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #070707;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-save-status:disabled {
  opacity: .65;
  cursor: wait;
}

.status-pill.documentation-approved {
  background: rgba(100, 255, 170, .10);
  border-color: rgba(100, 255, 170, .25);
}

.status-pill.rejected {
  background: rgba(255, 120, 120, .10);
  border-color: rgba(255, 120, 120, .25);
  color: #ffb4b4;
}

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


/* v29 inquiry notes dashboard */
.client-update-box {
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 18px;
  padding: 16px;
  margin: 16px 0;
  background: rgba(212,175,55,.045);
}

.client-update-box span,
.v29-admin-controls label span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.client-update-box p {
  color: var(--white);
  line-height: 1.65;
  margin: 0;
}

.v29-admin-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.v29-admin-controls label {
  display: grid;
  gap: 7px;
}

.v29-admin-controls textarea,
.v29-admin-controls select,
.v29-admin-controls input {
  width: 100%;
  background: #070707;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
  color: var(--white);
  font: inherit;
  resize: vertical;
}

.v29-admin-controls textarea:focus,
.v29-admin-controls select:focus,
.v29-admin-controls input:focus {
  border-color: rgba(212,175,55,.5);
  outline: none;
}

.status-pill.approved {
  background: rgba(100, 255, 170, .10);
  border-color: rgba(100, 255, 170, .25);
  color: #b8ffd2;
}

.status-pill.pending {
  background: rgba(212,175,55,.08);
}

.status-pill.under-review,
.status-pill.documentation-review {
  background: rgba(120, 170, 255, .09);
  border-color: rgba(120, 170, 255, .22);
}

.status-pill.closed {
  background: rgba(255,255,255,.06);
}

.status-pill.rejected {
  background: rgba(255, 120, 120, .10);
  border-color: rgba(255, 120, 120, .25);
  color: #ffb4b4;
}


/* v30 final UI polish */
.nav-account {
  position: relative;
}

#logoutBtn.auth-logged-in {
  display: none !important;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,175,55,.12), transparent 38%),
    rgba(8,8,8,.98);
  box-shadow: 0 30px 90px rgba(0,0,0,.75);
  backdrop-filter: blur(18px);
  padding: 10px;
  z-index: 160;
  animation: accountMenuIn .18s cubic-bezier(.2,.8,.2,1);
}

@keyframes accountMenuIn {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.account-dropdown a,
.account-dropdown button {
  width: 100%;
  display: block;
  text-align: left;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  color: var(--white);
  border-radius: 14px;
  padding: 12px 13px;
  margin: 6px 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
  transform: translateX(3px);
  border-color: rgba(212,175,55,.42);
  color: var(--gold);
  background: rgba(212,175,55,.055);
}

#accountMenuStatus {
  color: var(--gray);
  cursor: default;
}

#accountMenuStatus:hover {
  transform: none;
  color: var(--gray);
  border-color: rgba(255,255,255,.08);
}

#accountMenuLogout {
  color: var(--gold);
}

body.side-menu-open {
  overflow: hidden !important;
}

.side-menu {
  overflow: hidden !important;
}

.side-menu-panel {
  max-height: calc(100vh - 28px) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,.55) rgba(255,255,255,.06);
}

.side-menu-panel::-webkit-scrollbar {
  width: 8px;
}

.side-menu-panel::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
  border-radius: 999px;
}

.side-menu-panel::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,.55);
  border-radius: 999px;
}

.side-links {
  padding-bottom: 24px;
}

.side-footer {
  flex: 0 0 auto;
}

@media (max-width: 780px) {
  .account-dropdown {
    right: -8px;
    width: min(260px, calc(100vw - 24px));
  }
}


/* Final publish cleanup */
body.side-menu-open {
  overflow: hidden !important;
}

.side-menu {
  overflow: hidden !important;
}

.side-menu-panel,
.sidebar-panel,
.drawer-panel {
  max-height: calc(100vh - 28px) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
}

/* SEO/accessibility launch additions */
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: #d4af37;
  color: #050505;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 16px;
}
