/* ============================================================
   Belgian Protein — global brand styles
   Neo-brutalist look from the designed landing page:
   Archivo / Archivo Black, ink borders, hard offset shadows,
   pill buttons, Belgian flag accents.
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700;800;900&display=swap");

:root {
  --bp-ink: #15120f;
  --bp-red: #e2231a;
  --bp-yellow: #ffcb05;
  --bp-blue: #0b4ea2;
  --bp-green: #1a9c4a;
  --bp-orange: #f08a1d;
  --bp-teal: #0f9b9b;
  --bp-cream: #fff8ec;
  --bp-paper: #fffdf8;
  --bp-black: #1a1410;

  /* brand fonts override theme font pickers */
  --sort-title-font: "Archivo Black", "Archivo", sans-serif;
  --sort-title-font-weight: 400;
  --sort-title-letter-spacing: -0.5px;
  --sort-body-font: "Archivo", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* keep anchored sections clear of the sticky header */
#products,
#why,
#story,
#reviews,
#waitlist {
  scroll-margin-top: 84px;
}

body {
  font-family: "Archivo", sans-serif;
  background: var(--bp-paper);
  color: var(--bp-ink);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Belgian flag bar ---------- */
.bp-flagbar {
  height: 6px;
  display: flex;
}
.bp-flagbar i {
  flex: 1;
}
.bp-flagbar .a {
  background: #1a1410;
}
.bp-flagbar .b {
  background: var(--bp-yellow);
}
.bp-flagbar .c {
  background: var(--bp-red);
}

/* small flag chip used in logo / footer */
.bp-flag {
  width: 30px;
  height: 21px;
  border-radius: 3px;
  overflow: hidden;
  display: inline-flex;
  border: 2px solid var(--bp-ink);
  flex: none;
}
.bp-flag i {
  flex: 1;
}
.bp-flag .a {
  background: #1a1410;
}
.bp-flag .b {
  background: var(--bp-yellow);
}
.bp-flag .c {
  background: var(--bp-red);
}

/* ---------- global buttons ---------- */
/* kill the stock theme's ::after border ring on every button/link button */
.button {
  --button-border-thickness: 0px;
  --button-border-radius: 50px;
}
.button::after,
.button:hover::after,
.button:active::after,
.button--secondary::after,
.button--secondary:active::after,
.shopline-element-buy-now::after,
.shopline-element-buy-now:hover::after {
  box-shadow: none !important;
}

.button:not(.button--icon):not(.button--text-link) {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 50px;
  border: 3px solid var(--bp-ink);
  box-shadow: 4px 4px 0 var(--bp-ink);
  transition: transform 0.12s, box-shadow 0.15s;
}
.button:not(.button--icon):not(.button--text-link):hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--bp-ink);
}
.button:not(.button--icon):not(.button--text-link):active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--bp-ink);
}

/* ---------- global inputs ---------- */
input.field__input,
.field__input {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
}

/* ---------- shared section helpers (bp-*) ---------- */
.bp-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 26px;
}
.bp-title {
  font-family: "Archivo Black", "Archivo", sans-serif;
  letter-spacing: -0.5px;
  font-weight: 400;
}
.bp-kick {
  display: inline-block;
  background: var(--bp-ink);
  color: var(--bp-yellow);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.bp-kick--yellow {
  background: var(--bp-yellow);
  color: var(--bp-ink);
}
.bp-btn {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 50px;
  border: 3px solid var(--bp-ink);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.12s, box-shadow 0.15s;
  box-shadow: 4px 4px 0 var(--bp-ink);
  line-height: normal;
}
.bp-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--bp-ink);
}
.bp-btn--red {
  background: var(--bp-red);
  color: #fff;
}
.bp-btn--yellow {
  background: var(--bp-yellow);
  color: var(--bp-ink);
}
.bp-btn--red:hover,
.bp-btn--yellow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--bp-ink);
  color: inherit;
}
.bp-btn--red:hover {
  color: #fff;
}
.bp-btn--yellow:hover {
  color: var(--bp-ink);
}

/* section heads */
.bp-shead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.bp-shead h2 {
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 0.98;
  color: var(--bp-ink);
  letter-spacing: -0.5px;
}
.bp-shead h2 .red {
  color: var(--bp-red);
}
.bp-shead p {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 600;
  color: #52453a;
  line-height: 1.5;
}
.bp-shead .bp-note {
  font-size: 13px;
  font-weight: 700;
  color: #7a6f5f;
  margin-top: 10px;
}

/* ensure pill button text is never swallowed by theme link styles */
a.bp-btn,
a.bp-btn:visited,
a.bp-pcard__btn,
a.bp-pcard__btn:visited {
  text-decoration: none;
}
a.bp-btn--red,
a.bp-btn--red:visited {
  color: #fff;
}
a.bp-btn--yellow,
a.bp-btn--yellow:visited {
  color: var(--bp-ink);
}
a.bp-pcard__btn--reserve,
a.bp-pcard__btn--reserve:visited {
  color: #fff;
}
a.bp-pcard__btn--yellow,
a.bp-pcard__btn--yellow:visited {
  color: var(--bp-ink);
}

/* dotted texture overlay */
.bp-dots {
  position: relative;
  overflow: hidden;
}
.bp-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--bp-ink) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.06;
  pointer-events: none;
}
.bp-dots--light::before {
  background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
  opacity: 0.09;
}

/* reveal on scroll */
.bp-rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.bp-rv.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .bp-rv {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Header — sticky cream nav with ink border (matches design)
   ============================================================ */
.header-section {
  background: var(--bp-cream) !important;
  border-bottom: 3px solid var(--bp-ink);
}
.header-section .header__logo a,
.header-section .header__logo span {
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-size: 21px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--bp-ink);
}
.header-section .header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-section .header-nav__menu-item a,
.header-section .header-nav__underline {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--bp-ink);
}
.header-section .header-nav__menu-item a:hover .header-nav__ellipsis,
.header-section .header-nav__underline:hover {
  color: var(--bp-red);
}
.header-section .header__cta {
  margin-inline-start: 12px;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .header-section .header__cta {
    display: none;
  }
}

/* single-page mode: logo left, menu + CTA right (matches the design nav) */
.header--single-page .header__container-top-wrap {
  display: flex !important;
  align-items: center;
}
.header--single-page .header-action-bar.left {
  display: none !important;
}
.header--single-page .header-action-bar__menu {
  display: none !important;
}
.header--single-page .header__logo {
  order: 1;
  margin-inline-end: auto;
}
.header--single-page .header__logo-link {
  justify-content: flex-start;
}
.header--single-page .bp-anchor-nav {
  order: 2;
  display: flex;
}
.header--single-page .bp-anchor-nav .header-nav__menu {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header--single-page .header-action-bar.right {
  order: 3;
}
.header--single-page .header__cta {
  order: 4;
}
@media (max-width: 959px) {
  .header--single-page .header__cta {
    display: inline-block;
    padding: 10px 18px;
    font-size: 12px;
    box-shadow: 3px 3px 0 var(--bp-ink);
  }
  .header--single-page .bp-anchor-nav {
    display: none;
  }
  .header-section .header__logo a,
  .header-section .header__logo span {
    font-size: 17px;
  }
  .header-section .header__logo .bp-flag {
    width: 26px;
    height: 18px;
  }
}

/* ============================================================
   Footer — ink panel, yellow column titles (matches design)
   ============================================================ */
.footer {
  background: var(--bp-ink) !important;
  color: var(--bp-cream);
}
.footer .footer__inner {
  color: var(--bp-cream);
}
.footer__navigation-title,
.footer__custom-text-title,
.footer__email-subscribe-title,
.footer__social-media-title {
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bp-yellow);
}
.footer__navigation-item a {
  color: var(--bp-cream);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.78;
  transition: opacity 0.15s;
}
.footer__navigation-item a:hover {
  opacity: 1;
  color: var(--bp-yellow);
}
.footer .copyright {
  font-size: 12.5px;
  font-weight: 600;
  opacity: 0.6;
}
