@font-face {
  font-family: Norwester;
  src: url(inc/fonts/norwester/norwester-webfont.woff2) format("woff2"),
       url(inc/fonts/norwester/norwester-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

/*
Theme Name: BlankSlate - Child
Theme URI: https://alplifesciences.com
Template: blankslate
Text Domain: blankslatechild
Description: Custom child theme for ALP Life Sciences — extends BlankSlate with brand typography, layout utilities, and component styles.
Version: 1.0.0
*/

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  --font-display: "Inter", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --fg-primary: #00375A;
  --fg-secondary: #125E8F;
  --fg-muted: #7F8994;

  --alp-gold: #CD982C;
  --alp-navy: #1A365D;
  --alp-cream: #FFFAEB;
  --alp-mist: #E7ECF2;
  --alp-green: #3F9833;
  --alp-white: #fff;

  --container-max: 1360px;
  --r-pill: 40px;
  --r-card: 20px;
  --dur-base: 0.25s;
  --ease-brand: ease;
}

/* ==========================================================================
   Base
   ========================================================================== */

body {
  font-family: var(--font-body);
  color: var(--fg-primary);
  line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
  margin:0;
}

body p {
  margin: 0 0 24px;
  letter-spacing: 0.5px;
}

main#content ul {
  list-style: disc;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h1.fl-heading span {
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -1.8px;
}

h1 {
  line-height: 1 !important;
}

h2,
h2.fl-heading span {
  font-size: clamp(2rem, 6vw, 3.3rem);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -1.5px;
}

h2 {
  line-height: 1.1em !important;
}

h3,
h3.fl-heading span {
  font-size: clamp(1.3rem, 6vw, 1.6rem) !important;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.75px;
}

h3 {
  line-height: 1.1em !important;
}

h4,
h4.fl-heading span {
  font-size: clamp(1rem, 6vw, 1rem) !important;
  font-family: var(--font-body);
  font-weight: 800;
}

h4 {
  line-height: 1em !important;
}

blockquote {
  background: var(--alp-cream);
  border-radius: var(--r-card);
  padding: 40px 50px;
  margin: 50px -20px;
  position: relative;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.030em;
  color: var(--alp-navy);
}

blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  color: var(--fg-secondary);
  margin-top: 20px;
}

/* ==========================================================================
   Transitions
   ========================================================================== */

a,
button,
input[type="submit"],
ul,
li,
header,
a[role="button"] {
  transition: all var(--dur-base) var(--ease-brand) !important;
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0);
}

header.this-is-stuck,
header.interior_header {
  background-color: rgba(255, 255, 255, 1);
}

.topnav .fl-row-content .fl-col-group {
  width: 100%;
  justify-content: center;
}

/* ─── Logo ──────────────────────────────────────────────── */

.website_logo > a {
  background-image: url(/wp-content/uploads/2026/05/alp-logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  max-width: 470px;
  width: 100%;
  height: 45px;
  margin: 0 auto;
  position: relative;
  transition: all 0.5s ease;
}

@media (max-width: 576px) {
  .website_logo a {
    width: 181px;
    background-image: url(/wp-content/uploads/2026/05/alp-logo-mobile.svg);
  }
}

.site-logo a img.fl-photo-img {
  width: auto !important;
  transition: all 0.5s ease !important;
}

/* ─── Nav CTA ───────────────────────────────────────────── */

.menu_call a {
  background: var(--alp-white);
  color: var(--alp-navy) !important;
  border: 1px solid var(--alp-navy);
  margin-left: 15px;
  border-radius: 25px;
}

.menu_call a:hover {
  background: var(--alp-navy);
  color: var(--alp-white) !important;
}

#full-screen-box .menu_call a {
  margin-left: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

button.primary,
button.woocommerce-button {
  background: var(--alp-gold);
  color: var(--alp-white) !important;
  border-radius: var(--r-pill);
  border: 1px solid var(--alp-gold);
  padding: 10px 20px;
  margin: 20px 0 !important;
}

button.primary:hover,
button.woocommerce-button:hover {
  background: var(--alp-white);
  color: var(--alp-gold) !important;
}

/* ==========================================================================
   Eyebrows & Chips
   ========================================================================== */

.eyebrow-holder {
  display: flex;
  gap: 7px;
  align-content: center;
  flex-wrap: wrap;
}

.eyebrow-holder-center {
  display: flex;
  gap: 7px;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.eyebrow {
  color: var(--fg-secondary);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
}

.outlined {
  color: var(--fg-secondary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  border-radius: var(--r-pill);
  border: 1px solid var(--fg-secondary);
  background-color: transparent;
  padding: 4px 10px;
  margin: 0;
  display: inline-block;
}

.green-eye {
  border-radius: var(--r-pill);
  background: rgba(101, 181, 90, 0.25);
  color: var(--alp-green);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  padding: 4px 10px;
  margin: 0;
  display: inline-block;
}

.brown-eye {
  border-radius: var(--r-pill);
  background: rgba(205, 152, 44, 0.15);
  color: #C18100;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  padding: 4px 10px;
  margin: 0;
  display: inline-block;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

@media (min-width: 1360px) {
  .padding_leftside  { padding-left:  calc((100% - var(--container-max)) / 2); }
  .padding_rightside { padding-right: calc((100% - var(--container-max)) / 2); }
}

.nomar p {
  margin: 0 !important;
}

.grey-bg img {
  background-color: var(--alp-mist);
}

.desktop-only {
  display: none;
}

@media (min-width: 992px) {
  .desktop-only { display: inline; }
}

/* ─── Z-index helpers ───────────────────────────────────── */

.z-high {
  z-index: 20 !important;
  position: relative;
}

.z-low {
  z-index: 0 !important;
  position: relative;
}

.z-low .fl-row-content-wrap {
  overflow: hidden;
}

.z100 {
  position: relative;
  z-index: 100;
}

.z50 {
  position: relative;
  z-index: 50;
}

.absolute {
  position: absolute !important;
}

.relative {
  position: relative !important;
}

/* ==========================================================================
   Beaver Builder Helpers
   ========================================================================== */

.centerme .fl-html {
  display: flex;
}

/* ==========================================================================
   Forms (Formidable)
   ========================================================================== */

/*
form div .frm_submit {
  display: flex;
  justify-content: center;
}

form div .frm_submit button {
  text-transform: uppercase;
}
*/

/* ==========================================================================
   Regimen Grid
   ========================================================================== */

.regimen-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px !important;
}

.rg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin: 5px 0 !important;
}

.rg-name {
  font-weight: 600 !important;
  font-size: 15px !important;
  text-align: left;
}

.rg-details {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: right;
}

.rg-level {
  font-size: 14px !important;
  opacity: 0.8;
  font-weight: 400 !important;
}

.rg-capsules {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rg-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.rg-dot--alp {
  background-color: #F2C643;
}

.rg-dot--krill {
  background-color: #9F0117;
}

.rg-total {
  font-weight: 700;
  font-size: 15px;
  min-width: 24px;
  text-align: right;
}

@media (max-width: 767px) {
  .rg-row {
    flex-wrap: wrap;
  }

  .rg-name {
    width: 100%;
    margin-bottom: 8px;
  }

  .rg-details {
    width: 100%;
    justify-content: space-between;
    margin: 10px 0 0 0 !important;
  }
}

/* ==========================================================================
   Product Carousel Shortcode [alp_products]
   ========================================================================== */

.alp-products-carousel {
  max-width: var(--container-max, 1360px);
  margin: 0 auto;
}

.alp-products-swiper {
  overflow: hidden;
  position: relative;
  padding: 0 44px;
}

.alp-products-swiper .alp-product-card {
  height: 100%;
}

.alp-products-prev,
.alp-products-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alp-products-prev::after,
.alp-products-next::after {
  font-size: 20px;
  line-height: 1;
  color: var(--fg-primary, #00375A);
}

.alp-products-prev::after { content: '\2039'; }
.alp-products-next::after { content: '\203A'; }
.alp-products-prev { left: 0; }
.alp-products-next { right: 0; }

@media (max-width: 767px) {
  .alp-products-swiper { padding: 0 30px; }
}









.uabb-image-carousel ul.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px; /* ✔ 12px space between bars */
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.uabb-image-carousel ul.slick-dots li {
    width: auto !important;
    height: auto !important;
    margin: 0;
    padding: 0;
}

.uabb-image-carousel ul.slick-dots li button:before {
    display: none !important;
}

.uabb-image-carousel ul.slick-dots li button {
    width: 55px;
    height: 4px;
    background: #fff;
    opacity: 0.25;
    border: none;
    padding: 0;
    font-size: 0;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.uabb-image-carousel ul.slick-dots li.slick-active button {
    opacity: 1;
}