@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #f15a00;
  --orange-hover: #d94f00;
  --orange-pressed: #bf4600;
  --black: #111111;
  --text: #161616;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --page: #f7f8fa;
  --surface: #ffffff;
  --border: #e3e6ea;
  --divider: #eceff2;
  --peptide-bg: #fff0e7;
  --peptide-text: #f15a00;
  --success: #16a34a;
  --shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
  --radius: 10px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Belt and braces against sideways scroll on phones. `clip` is used rather
     than `hidden` because `hidden` breaks position:sticky on the header. */
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--page);
  overflow-x: clip;
}
/* Long unbroken strings — some product names run to 130+ characters — must
   wrap instead of forcing the page wider than the screen. */
body, p, h1, h2, h3, td, th, li, a, span, div { overflow-wrap: break-word; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 84px;
  background: var(--black);
  border-bottom: 2px solid var(--orange);
}
.header-inner {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { color: #fff; text-decoration: none; }
.logo-main { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; }
.logo-main span:first-child { color: var(--orange); }
.logo-sub { margin-top: 7px; font-size: 9px; letter-spacing: .35em; color: #d1d5db; }
.nav { display: flex; align-items: center; gap: 42px; }

/* Hamburger button - hidden on desktop, shown under 768px. */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  padding: 10px; flex-direction: column;
  justify-content: space-between; align-items: stretch;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }
.nav a { position: relative; color: #eee; text-decoration: none; font-size: 14px; font-weight: 600; }
.nav a:hover, .nav a.active { color: #fff; }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -16px;
  height: 3px;
  background: var(--orange);
}
.cart-button {
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 44px;
  min-height: 44px;
}
.cart-count {
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

main { max-width: 1440px; margin: 0 auto; padding: 28px 32px 56px; }
.hero { text-align: center; }
.hero h1 { margin: 0; font-size: 38px; line-height: 1.15; font-weight: 800; letter-spacing: -0.03em; }
.hero h1 span { color: var(--orange); }
.hero p { margin: 10px 0 0; color: var(--text-secondary); font-size: 15px; }
/* Delivery expectations, stated up front rather than buried in the policy page. */
.hero .hero-note { margin-top: 8px; font-size: 13px; color: var(--text-secondary); }
.hero .hero-note a { color: inherit; }

.search-panel {
  margin-top: 18px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.filter-grid {
  display: grid;
  grid-template-columns: minmax(330px, 1.7fr) repeat(3, minmax(140px, .55fr)) auto;
  gap: 12px;
  align-items: end;
}
.field label { display: block; margin: 0 0 6px; font-size: 11px; font-weight: 700; color: #3f3f46; }
.search-wrap { position: relative; }
.search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-secondary); }
.control {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  padding: 0 14px;
  outline: none;
}
.search-wrap .control { padding-left: 44px; }
.control:focus, button:focus-visible, a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 90, 0, .22);
}
.clear-button {
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.clear-button:hover { border-color: var(--orange); color: var(--orange); }
/* Collapsible filters - mobile only, hidden on desktop. */
.filter-toggle { display: none; }
.load-more-wrap { display: none; margin-top: 14px; }
.load-more {
  width: 100%; min-height: 46px; padding: 0 18px;
  border: 1px solid var(--border); border-radius: 8px;
  background: #fff; color: var(--text);
  font-size: 14px; font-weight: 700;
}
.load-more:hover { border-color: var(--orange); color: var(--orange); }
.load-more:active { background: var(--input-bg, #fff7f2); }

.active-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 12px; font-size: 12px; }
.filter-chip { border: 1px solid var(--border); border-radius: 999px; padding: 5px 9px; background: #f8fafc; color: var(--text-secondary); }

.table-panel {
  margin-top: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.table-scroll { overflow: auto; max-height: 453px; scrollbar-gutter: stable; }
table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 1280px; table-layout: fixed; }
thead { background: #fafafb; }
th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fafafb;
}
td {
  padding: 10px 16px;
  font-size: 13px;
  line-height: 1.35;
  border-bottom: 1px solid var(--divider);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #fff9f5; }
.product-name { font-weight: 700; }
.price { color: var(--orange); font-weight: 800; text-align: center; white-space: nowrap; }
.action-cell { text-align: center; }
.tag { display: inline-block; padding: 5px 10px; border-radius: 5px; font-size: 11px; font-weight: 600; white-space: normal; line-height: 1.3; background: var(--peptide-bg); color: var(--peptide-text); }
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 31px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.add-button:hover { background: var(--orange-hover); color: #fff; }
.add-button:active { background: var(--orange-pressed); }
.add-button:disabled,
.add-button.disabled { background: #d1d5db; color: #6b7280; cursor: not-allowed; }
.empty-state { display: none; padding: 48px 20px; text-align: center; }
.empty-state h3 { margin: 0; }
.empty-state p { margin: 8px 0 18px; color: var(--text-secondary); }

.mobile-products { display: none; margin-top: 14px; gap: 12px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.card-top { display: flex; justify-content: space-between; gap: 12px; }
.card-cat { font-size: 11px; color: var(--text-secondary); }
.card-name { margin-top: 4px; font-size: 17px; font-weight: 800; }
.card-specs { margin-top: 4px; color: var(--text-secondary); font-size: 13px; }
.card-content { margin: 14px 0; color: #454545; font-size: 13px; line-height: 1.5; }
.card-bottom { display: grid; grid-template-columns: 1fr 1.5fr; gap: 10px; align-items: center; }
.card-price { color: var(--orange); font-size: 18px; font-weight: 800; }
.card-bottom .add-button { width: 100%; min-height: 44px; }

.trust-strip {
  margin-top: 24px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-icon { width: 68px; height: 68px; border-radius: 50%; background: #fff2e9; display: grid; place-items: center; color: var(--orange); flex: 0 0 auto; }
.trust-icon img { width: 44px; height: 44px; display: block; }
.trust-title { font-size: 13px; font-weight: 700; }
.trust-copy { margin-top: 5px; color: var(--text-secondary); font-size: 12px; line-height: 1.45; }

.about-section {
  margin-top: 24px;
  padding: 44px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-inner { max-width: 760px; margin: 0 auto; }
.about-inner p { margin: 0 0 16px; color: var(--text); font-size: 14px; line-height: 1.75; }
.about-inner p:last-child { margin-bottom: 0; }

.faq-group { margin: 30px 0 14px; font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--orange); border-bottom: 2px solid var(--divider); padding-bottom: 8px; }
.faq-list > .faq-group:first-child { margin-top: 0; }
.faq { border-bottom: 1px solid var(--divider); }
.faq summary { list-style: none; cursor: pointer; padding: 15px 32px 15px 0; position: relative;
  font-size: 14.5px; font-weight: 700; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 20px; font-weight: 400; color: var(--orange); line-height: 1; }
.faq[open] summary::after { content: "\2013"; }
.faq summary:hover { color: var(--orange); }
.faq p { margin: 0 0 18px; padding-right: 32px; color: #454545; font-size: 14px; line-height: 1.7; }
.faq a { color: var(--orange); }

.contact-section {
  margin-top: 24px;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-section h2 { margin: 0 0 10px; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.contact-section p { margin: 0 0 20px; color: var(--text-secondary); font-size: 14px; }
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 240px;
  height: 46px;
  padding: 0 20px;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.contact-button:hover { background: var(--orange-hover); }

.contact-form { max-width: 560px; margin: 24px auto 0; text-align: left; }
/* Honeypot - invisible to people, still present in the DOM for bots.
   Uses the clip technique rather than left:-9999px, which can widen the
   document and cause sideways scrolling on phones. */
.hp {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; margin: 0 0 6px; font-size: 12px; font-weight: 700; color: #3f3f46; }
.form-field label .req { color: var(--orange); margin-left: 2px; }
.contact-form textarea.control { height: auto; min-height: 120px; padding: 12px 14px; resize: vertical; }
.contact-form button.contact-button { width: 100%; border: 0; margin-top: 6px; }
.contact-form button.contact-button:disabled { background: #d1d5db; cursor: not-allowed; }
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── LEGAL PAGES ── */
.legal { max-width: 820px; margin: 0 auto; }
.legal .eff { margin: 0 0 22px; font-size: 12.5px; color: var(--text-muted); letter-spacing: .02em; }
.legal h2 { margin: 30px 0 10px; font-size: 15px; font-weight: 800; letter-spacing: -0.01em; color: var(--text);
  padding-bottom: 7px; border-bottom: 2px solid var(--divider); }
.legal h2:first-of-type { margin-top: 4px; }
.legal p { margin: 0 0 13px; color: #454545; font-size: 14px; line-height: 1.75; }
.legal a { color: var(--orange); }
.legal .callout { margin: 0 0 22px; padding: 16px 18px; background: var(--peptide-bg);
  border-left: 4px solid var(--orange); border-radius: 0 8px 8px 0; }
.legal .callout p { margin: 0; color: #7c2d00; font-weight: 500; }

/* ── FOOTER ── */
.site-footer { margin-top: 40px; background: var(--black); color: #d1d5db; border-top: 3px solid var(--orange); }
.footer-inner { max-width: 1440px; margin: 0 auto; padding: 34px 32px 24px; }
.footer-top { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-logo { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer-logo span { color: var(--orange); }
.footer-tag { margin-top: 6px; font-size: 12px; color: #9ca3af; max-width: 300px; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 10px 0; }
.footer-links a { color: #d1d5db; text-decoration: none; font-size: 13px; font-weight: 600; padding: 0 14px;
  border-left: 1px solid #3a3a3a; line-height: 1.2; }
.footer-links a:first-child { border-left: 0; padding-left: 0; }
.footer-links a:hover { color: var(--orange); }
.footer-note { margin-top: 26px; padding-top: 18px; border-top: 1px solid #2a2a2a;
  font-size: 11.5px; line-height: 1.65; color: #9ca3af; }
.footer-note strong { color: #d1d5db; }
.footer-bottom { margin-top: 16px; display: flex; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; font-size: 11.5px; color: #6b7280; }
.footer-bottom a { color: #9ca3af; text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 700px) {
  .footer-links { flex-direction: column; }
  .footer-links a { border-left: 0; padding: 0; }
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  padding: 12px 16px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .filter-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .clear-button { width: 100%; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 22px; }
}

@media (max-width: 768px) {
  .site-header { height: 72px; }
  .header-inner, main { padding-left: 16px; padding-right: 16px; }
  .logo-main { font-size: 22px; }
  .logo-sub { font-size: 7px; }

  /* Nav collapses behind the hamburger. Previously the links were simply
     hidden with no replacement, which left mobile visitors unable to
     navigate at all. */
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-bottom: 2px solid var(--orange);
    box-shadow: 0 12px 24px rgba(0,0,0,.3);
    padding: 6px 0 10px;
    z-index: 1001;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid #262626;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a.active { color: var(--orange); }
  /* The desktop underline is positioned below the header - meaningless in a
     vertical menu, so it becomes a left bar instead. */
  .nav a.active::after {
    left: 0; right: auto; bottom: auto; top: 0;
    width: 3px; height: 100%;
  }

  main { padding-top: 22px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 14px; }
  /* Filters collapse behind a button so products appear on arrival rather
     than a full screen of form controls. */
  .filter-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; min-height: 46px; padding: 0 14px;
    border: 1px solid var(--border); border-radius: 8px;
    background: #fff; color: var(--text);
    font-size: 14px; font-weight: 700;
  }
  .filter-toggle .chev { transition: transform .18s ease; color: var(--orange); font-size: 15px; }
  .filter-toggle.open { border-color: var(--orange); color: var(--orange); }
  .filter-toggle.open .chev { transform: rotate(180deg); }
  .filter-grid { display: none; grid-template-columns: 1fr; margin-top: 12px; }
  .filter-grid.open { display: grid; }

  .table-panel { display: none; }
  .mobile-products { display: grid; }
  .load-more-wrap { display: block; }
  .trust-strip { grid-template-columns: 1fr 1fr; padding: 16px; gap: 18px 12px; }
  .trust-item { align-items: flex-start; }
  .trust-icon { width: 52px; height: 52px; }
  .trust-icon img { width: 34px; height: 34px; }
  .about-section { padding: 28px 20px; }
  .toast { left: 16px; right: 16px; bottom: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .trust-strip { grid-template-columns: 1fr; }
}
