/* Premium layer — Blank Peptides + Amino Club inspired */

body {
  background: var(--bpw-paper);
  color: var(--bpw-ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--bpw-font-heading);
  letter-spacing: -0.02em;
  font-weight: 600;
}

.bpw-container { width: min(1120px, 90vw); }

/* Gate — light premium card like Amino Club */
.bpw-gate {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196,165,116,0.12), transparent 45%),
    linear-gradient(180deg, #1a1d24 0%, #08111B 100%);
}
.bpw-gate__card {
  background: var(--bpw-white);
  color: var(--bpw-ink);
  border: 1px solid var(--bpw-line);
  border-radius: var(--bpw-radius-lg);
  box-shadow: none;
  backdrop-filter: none;
  max-width: 480px;
  padding: 2.25rem 2rem;
}
.bpw-gate__card h1 { color: var(--bpw-ink); font-size: 1.85rem; }
.bpw-gate__card p { color: var(--bpw-muted); }
.bpw-gate__card label {
  color: var(--bpw-ink);
  border: 1px solid var(--bpw-line);
  border-radius: var(--bpw-radius);
  padding: 0.85rem 1rem;
  background: var(--bpw-paper);
}
.bpw-gate__disclaimer { color: var(--bpw-muted) !important; }
.bpw-gate__disclaimer a { color: var(--bpw-accent-deep); }

/* Announcement */
.bpw-announcement {
  background: var(--bpw-ink);
  border-bottom: 1px solid rgba(196,165,116,0.25);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* Header */
.bpw-header {
  background: rgba(244,241,235,0.92);
  border-bottom: 1px solid var(--bpw-line);
  backdrop-filter: blur(12px);
}
.bpw-nav__list a {
  color: var(--bpw-ink);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.bpw-nav__list a:hover { color: var(--bpw-accent-deep); text-decoration: none; }

/* Buttons — sharper, less pill-candy */
.bpw-btn {
  border-radius: var(--bpw-radius-pill);
  border-width: 1px;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.bpw-btn--primary {
  background: var(--bpw-ink);
  color: var(--bpw-accent-soft) !important;
  border-color: var(--bpw-ink);
}
.bpw-btn--primary:hover {
  background: var(--bpw-surface);
  color: var(--bpw-white) !important;
}
.bpw-btn--ghost {
  border-color: rgba(255,255,255,0.28);
  color: var(--bpw-white) !important;
  background: transparent;
}
.bpw-header .bpw-btn--ghost,
.bpw-section:not(.bpw-section--dark):not(.bpw-cta-section) .bpw-btn--ghost {
  border-color: var(--bpw-line);
  color: var(--bpw-ink) !important;
}
.bpw-btn--dark {
  background: var(--bpw-accent);
  color: var(--bpw-ink) !important;
  border-color: var(--bpw-accent);
}

/* Hero */
.bpw-hero {
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(196,165,116,0.14), transparent 42%),
    linear-gradient(165deg, #08111B 0%, #151922 55%, #08111B 100%);
}
.bpw-eyebrow {
  color: var(--bpw-accent);
  font-family: var(--bpw-font-body);
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}
.bpw-hero h1 {
  font-family: var(--bpw-font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  max-width: 14ch;
}
.bpw-hero__subhead {
  color: rgba(255,255,255,0.68);
  font-size: 1.02rem;
  line-height: 1.7;
}
.bpw-badge {
  background: rgba(196,165,116,0.1);
  border: 1px solid rgba(196,165,116,0.28);
  color: var(--bpw-accent-soft);
  border-radius: var(--bpw-radius-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.bpw-hero__visual {
  position: relative;
}
.bpw-hero__visual img {
  border-radius: var(--bpw-radius-lg);
  border: 1px solid rgba(196,165,116,0.18);
  box-shadow: none;
  background: #10131a;
}

/* Trust */
.bpw-trust {
  background: var(--bpw-surface);
  border-color: rgba(196,165,116,0.15);
}
.bpw-trust__item strong {
  color: var(--bpw-accent);
  font-family: var(--bpw-font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sections */
.bpw-section { padding: 5rem 0; }
.bpw-section--cream { background: var(--bpw-paper); }
.bpw-section__title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
}
.bpw-section__lead { color: var(--bpw-muted); font-size: 1.02rem; }

/* Cards — flatter, more premium */
.bpw-card,
.bpw-product-card,
.bpw-faq-item,
.bpw-steps li {
  box-shadow: none;
  border-color: var(--bpw-line);
  border-radius: var(--bpw-radius);
  background: var(--bpw-white);
}
.bpw-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196,165,116,0.45);
  box-shadow: none;
}
.bpw-product-card__img {
  background: linear-gradient(180deg, #151922 0%, #08111B 100%);
  aspect-ratio: 1;
  padding: 1.25rem;
}
.bpw-product-card__img img {
  object-fit: contain;
  mix-blend-mode: normal;
}
.bpw-product-card__body h3 {
  font-family: var(--bpw-font-heading);
  font-size: 1.35rem;
}
.bpw-product-card__price {
  color: var(--bpw-ink);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Blank-style auth / portal shell */
.bpw-auth-shell {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--bpw-paper);
}
.bpw-auth-shell__brand {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(196,165,116,0.16), transparent 40%),
    var(--bpw-ink);
  color: var(--bpw-white);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bpw-auth-shell__brand h1 {
  color: var(--bpw-white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  max-width: 12ch;
  margin-bottom: 0.75rem;
}
.bpw-auth-shell__brand > p {
  color: rgba(255,255,255,0.65);
  max-width: 38ch;
  margin-bottom: 2rem;
}
.bpw-auth-pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}
.bpw-auth-pillars li {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}
.bpw-auth-pillars strong {
  display: block;
  color: var(--bpw-accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.bpw-auth-pillars span {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}
.bpw-auth-shell__form {
  display: grid;
  place-items: center;
  padding: 3rem 2rem;
}
.bpw-auth-card {
  width: min(420px, 100%);
  background: var(--bpw-white);
  border: 1px solid var(--bpw-line);
  border-radius: var(--bpw-radius-lg);
  padding: 2rem;
}
.bpw-auth-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}
.bpw-auth-card > p {
  color: var(--bpw-muted);
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
}

/* Wholesale portal (Blank-style new order) */
.bpw-portal {
  background: var(--bpw-paper);
  min-height: 70vh;
  padding: 2.5rem 0 4rem;
}
.bpw-portal__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.bpw-portal__header h1 {
  margin: 0;
  font-size: 2.2rem;
}
.bpw-portal__header p {
  margin: 0.35rem 0 0;
  color: var(--bpw-muted);
}
.bpw-portal-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.bpw-portal-nav a {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--bpw-line);
  border-radius: var(--bpw-radius-pill);
  color: var(--bpw-ink);
  font-size: 0.84rem;
  font-weight: 600;
  background: var(--bpw-white);
  text-decoration: none !important;
}
.bpw-portal-nav a.is-active,
.bpw-portal-nav a:hover {
  background: var(--bpw-ink);
  color: var(--bpw-accent-soft);
  border-color: var(--bpw-ink);
}
.bpw-portal-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}
.bpw-portal-panel {
  background: var(--bpw-white);
  border: 1px solid var(--bpw-line);
  border-radius: var(--bpw-radius);
  padding: 1.25rem;
}
.bpw-portal-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}
.bpw-order-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--bpw-line);
}
.bpw-order-line:last-child { border-bottom: 0; }
.bpw-order-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #0D1520;
  border-radius: var(--bpw-radius-sm);
}
.bpw-order-line h3 {
  margin: 0;
  font-size: 1.05rem;
}
.bpw-order-line .meta {
  color: var(--bpw-muted);
  font-size: 0.8rem;
}
.bpw-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--bpw-line);
  border-radius: var(--bpw-radius-sm);
  padding: 0.2rem;
}
.bpw-qty button {
  width: 28px;
  height: 28px;
  border: 0;
  background: var(--bpw-paper);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}
.bpw-qty input {
  width: 42px;
  border: 0;
  text-align: center;
  font-weight: 600;
  background: transparent;
}
.bpw-summary-row {
  display: flex;
  justify-content: space-between;
  margin: 0.55rem 0;
  font-size: 0.92rem;
}
.bpw-summary-row.total {
  border-top: 1px solid var(--bpw-line);
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.bpw-cta-section {
  background: linear-gradient(160deg, #08111B, #132033);
}
.bpw-footer {
  background: var(--bpw-ink);
}
.bpw-footer h3 { color: var(--bpw-accent); }

@media (max-width: 900px) {
  .bpw-auth-shell,
  .bpw-portal-grid,
  .bpw-hero__grid { grid-template-columns: 1fr; }
  .bpw-auth-shell__brand { padding: 2.5rem 1.5rem; }
}

/* bond-theme:premium.css */
