/* ==========================================================
   WEST COAST PEPTIDE SCIENCES
   FAQ PAGE
========================================================== */

:root {
  --navy-950: #07162d;
  --navy-900: #0b2343;
  --navy-800: #12355e;

  --blue-700: #1d4f86;
  --blue-600: #2d69a5;
  --blue-500: #4d83b8;
  --blue-200: #bfd7ea;
  --blue-100: #dfeefa;
  --blue-050: #f2f8fd;

  --slate-700: #445468;
  --slate-600: #5f6e7e;
  --slate-500: #758291;

  --white: #ffffff;
  --off-white: #f7f9fc;
  --border: #d7e3ee;
  --border-dark: rgba(255, 255, 255, 0.14);

  --display:
    "Bebas Neue",
    Arial,
    Helvetica,
    sans-serif;

  --sans:
    Arial,
    Helvetica,
    sans-serif;

  --container-width: 1240px;

  --radius-medium: 18px;
  --radius-small: 12px;
  --radius-pill: 999px;

  --shadow-soft:
    0 22px 60px rgba(7, 22, 45, 0.08);
}


/* ==========================================================
   RESET
========================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;

  color: var(--navy-900);
  background: var(--white);

  font-family: var(--sans);
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #78a8d3;
  outline-offset: 4px;
}

.container {
  width: min(
    calc(100% - 48px),
    var(--container-width)
  );

  margin-inline: auto;
}


/* ==========================================================
   ANNOUNCEMENT BAR
========================================================== */

.research-notice {
  color: var(--white);
  background: var(--navy-950);
}

.research-notice-inner {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 22px;
}

.research-notice p {
  margin: 0;

  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-notice p span {
  margin-inline: 7px;
  color: #7da3c9;
}

.research-notice a {
  padding-bottom: 2px;

  color: #d6e7f6;
  border-bottom: 1px solid #7497b9;

  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(14px);
}

.header-container {
  min-height: 88px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo-image {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
}

.desktop-navigation {
  display: flex;
  align-items: center;

  gap: 28px;
}

.desktop-navigation > a {
  position: relative;

  color: var(--navy-900);

  font-family: var(--display);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.desktop-navigation > a:not(.cart-link)::after {
  content: "";

  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;

  height: 1px;

  background: var(--blue-700);

  transition: right 180ms ease;
}

.desktop-navigation > a:not(.cart-link):hover::after,
.desktop-navigation > a[aria-current="page"]::after {
  right: 0;
}

.cart-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding: 10px 14px;

  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.cart-link:hover {
  background: var(--blue-050);
  border-color: var(--blue-500);
}

.cart-count {
  min-width: 22px;
  height: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding-inline: 6px;

  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-pill);

  font-family: var(--display);
  font-size: 0.8rem;
  line-height: 1;
}


/* ==========================================================
   MOBILE NAVIGATION
========================================================== */

.mobile-menu-button {
  display: none;
  align-items: center;

  gap: 12px;

  padding: 10px 0;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.mobile-menu-label {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-lines {
  width: 24px;
  height: 18px;

  position: relative;

  display: block;
}

.menu-lines span {
  position: absolute;
  left: 0;

  width: 24px;
  height: 1.5px;

  background: var(--navy-900);

  transition:
    top 180ms ease,
    transform 180ms ease;
}

.menu-lines span:first-child {
  top: 5px;
}

.menu-lines span:last-child {
  top: 13px;
}

.mobile-menu-button.is-open .menu-lines span:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.mobile-menu-button.is-open .menu-lines span:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

.mobile-navigation {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.mobile-navigation-inner {
  display: grid;

  padding-block: 12px 24px;
}

.mobile-navigation a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-block: 17px;

  border-bottom: 1px solid var(--border);

  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}


/* ==========================================================
   HERO
========================================================== */

.faq-hero {
  position: relative;

  overflow: hidden;

  padding: 42px 0 92px;

  background:
    linear-gradient(
      135deg,
      var(--blue-050),
      var(--white) 68%
    );

  border-bottom: 1px solid var(--border);
}

.faq-hero::before {
  content: "";

  position: absolute;
  top: -230px;
  right: -130px;

  width: 600px;
  height: 600px;

  border: 1px solid rgba(45, 105, 165, 0.18);
  border-radius: 50%;
}

.faq-hero::after {
  content: "";

  position: absolute;
  right: 130px;
  bottom: -330px;

  width: 520px;
  height: 520px;

  border: 1px solid rgba(45, 105, 165, 0.13);
  border-radius: 50%;
}

.breadcrumb {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 64px;

  color: var(--slate-500);

  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.breadcrumb a:hover {
  color: var(--blue-700);
}

.faq-hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(280px, 0.55fr);

  gap: 80px;

  align-items: end;
}

.eyebrow {
  margin-bottom: 16px;

  color: var(--blue-600);

  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-hero h1 {
  max-width: 820px;

  margin: 0;

  color: var(--navy-950);

  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 7.8rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.01em;
}

.faq-hero h1 span {
  display: block;

  color: var(--blue-700);
}

.hero-description {
  max-width: 670px;

  margin: 30px 0 0;

  color: var(--slate-600);

  font-size: 1rem;
  line-height: 1.8;
}

.faq-hero-card {
  min-height: 290px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 28px;

  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-soft);
}

.faq-card-label {
  margin-bottom: 0;

  color: #a9c7e1;

  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-card-number {
  margin-block: 22px;

  font-family: var(--display);
  font-size: 5.4rem;
  line-height: 0.8;
}

.faq-hero-card > p:not(.faq-card-label) {
  margin-bottom: 24px;

  color: #c6d7e6;

  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-hero-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 17px;

  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);

  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.05em;
}


/* ==========================================================
   FAQ LAYOUT
========================================================== */

.faq-content-section {
  padding: 95px 0 130px;

  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);

  gap: 75px;

  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 126px;
}

.sidebar-label {
  margin-bottom: 18px;

  color: var(--blue-600);

  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-section-nav {
  display: grid;

  border-top: 1px solid var(--border);
}

.faq-section-nav a {
  display: grid;
  grid-template-columns: 31px 1fr;

  gap: 12px;

  padding: 16px 0;

  color: var(--slate-600);
  border-bottom: 1px solid var(--border);

  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.faq-section-nav a span {
  color: var(--blue-500);
}

.faq-section-nav a:hover {
  color: var(--navy-900);
}

.faq-main {
  min-width: 0;
}

.information-notice {
  margin-bottom: 74px;
  padding: 24px 26px;

  background: var(--blue-050);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-600);
  border-radius:
    0
    var(--radius-small)
    var(--radius-small)
    0;
}

.information-notice-label {
  margin-bottom: 7px;

  color: var(--blue-700);

  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.information-notice p:last-child {
  margin-bottom: 0;

  color: var(--slate-600);

  line-height: 1.75;
}

.final-notice {
  margin-top: 80px;
  margin-bottom: 0;
}


/* ==========================================================
   FAQ SECTIONS
========================================================== */

.faq-section {
  scroll-margin-top: 130px;

  margin-top: 88px;
}

.faq-section:first-of-type {
  margin-top: 0;
}

.faq-section-heading {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);

  gap: 20px;

  align-items: start;

  margin-bottom: 28px;
}

.section-index {
  margin-top: 5px;

  color: var(--blue-500);

  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.section-kicker {
  margin-bottom: 8px;

  color: var(--blue-600);

  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq-section h2 {
  margin: 0;

  color: var(--navy-950);

  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.section-intro {
  max-width: 740px;

  margin:
    -6px
    0
    28px
    75px;

  color: var(--slate-600);

  line-height: 1.75;
}


/* ==========================================================
   FAQ ACCORDIONS
========================================================== */

.faq-item {
  margin: 12px 0;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);

  overflow: hidden;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-item:hover {
  border-color: var(--blue-200);
}

.faq-item[open] {
  border-color: #adc9e0;
  box-shadow:
    0 14px 35px
    rgba(7, 22, 45, 0.06);
}

.faq-item summary {
  position: relative;

  cursor: pointer;
  list-style: none;

  padding:
    22px
    68px
    22px
    24px;

  color: var(--navy-900);

  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";

  position: absolute;
  top: 50%;
  right: 22px;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  color: var(--blue-700);
  background: var(--blue-050);
  border: 1px solid var(--border);
  border-radius: 50%;

  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1;

  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";

  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.faq-answer {
  padding:
    0
    24px
    24px;
}

.faq-answer p {
  margin: 0;

  color: var(--slate-600);

  line-height: 1.8;
}

.faq-answer a {
  color: var(--blue-700);
  border-bottom: 1px solid var(--blue-200);
}


/* ==========================================================
   SOURCE CARDS
========================================================== */

.source-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;

  margin-left: 75px;
}

.source-card {
  min-height: 280px;

  display: flex;
  flex-direction: column;

  padding: 28px;

  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.source-card:hover {
  transform: translateY(-4px);

  border-color: #b4cce1;
  box-shadow: var(--shadow-soft);
}

.source-number {
  margin-bottom: 26px;

  color: var(--blue-500);

  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.source-card h3 {
  margin-bottom: 11px;

  color: var(--navy-950);

  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
}

.source-card p {
  flex: 1;

  margin-bottom: 20px;

  color: var(--slate-600);

  font-size: 0.92rem;
  line-height: 1.7;
}

.source-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;

  padding: 10px 0;

  color: var(--blue-700);
  border-top: 1px solid var(--border);

  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.source-card a span {
  transition: transform 180ms ease;
}

.source-card a:hover span {
  transform:
    translate(3px, -3px);
}


/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
  background: var(--navy-950);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 0.8fr 1fr;
  gap: 64px;
  padding-block: 80px;
}

/* ==========================================================
   FOOTER TEXT LOGO
========================================================== */

.footer-brand-link {
  display: inline-block;
  text-decoration: none;
}

.footer-brand-title {
  margin: 0;

  color: var(--white);

  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: color 180ms ease;
}

.footer-brand-link:hover .footer-brand-title {
  color: #d8e4ef;
}

.footer-brand-column > p {
  max-width: 330px;
  margin: 18px 0 28px;

  color: #9cb1c5;

  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.footer-research-warning {
  display: flex;
  flex-direction: column;
  gap: 5px;

  color: #bad0e3;

  font-family: var(--display);
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.footer-research-warning strong {
  color: var(--white);

  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column h2 {
  margin-bottom: 24px;

  color: #8ca8c3;

  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 14px;
}

.footer-column a {
  color: #d8e4ef;

  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-technical-column {
  padding-left: 34px;
  border-left: 1px solid var(--border-dark);
}

.footer-technical-label {
  margin-bottom: 20px;

  color: #8ca8c3;

  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-technical-column > p:not(.footer-technical-label) {
  margin-bottom: 30px;

  color: #9cb1c5;

  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.footer-reference {
  display: flex;
  flex-direction: column;
  gap: 6px;

  color: #6e8ba8;

  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
}

.footer-bottom-inner {
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;

  color: #7f98b0;

  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1050px) {
  .desktop-navigation {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .faq-hero-grid {
    grid-template-columns: 1fr;
  }

  .faq-hero-card {
    max-width: 520px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-section-nav {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .faq-section-nav a {
    padding: 14px;
    border: 1px solid var(--border);
  }

  .footer-main {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-technical-column {
    grid-column: 1 / -1;
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid var(--border-dark);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(
      calc(100% - 30px),
      var(--container-width)
    );
  }

  .research-notice-inner {
    min-height: 42px;
  }

  .research-notice p {
    font-size: 0.8rem;
    text-align: center;
  }

  .research-notice a {
    display: none;
  }

  .header-container {
    min-height: 74px;
  }

  .site-logo-image {
    height: 46px;
  }

  .faq-hero {
    padding:
      34px
      0
      70px;
  }

  .breadcrumb {
    margin-bottom: 42px;
  }

  .faq-hero h1 {
    font-size: 4.2rem;
  }

  .faq-content-section {
    padding:
      68px
      0
      90px;
  }

  .faq-section-nav {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .faq-section {
    margin-top: 66px;
  }

  .faq-section-heading {
    grid-template-columns: 1fr;

    gap: 7px;
  }

  .section-intro,
  .source-grid {
    margin-left: 0;
  }

  .source-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding:
      19px
      60px
      19px
      18px;

    font-size: 1rem;
  }

  .faq-answer {
    padding:
      0
      18px
      20px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 38px;

    padding-block: 55px;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;

    padding-block: 22px;
  }
}

@media (max-width: 480px) {
    .faq-hero h1 {
    font-size: 3.5rem;
  }

  .faq-section-nav {
    grid-template-columns: 1fr;
  }

  .faq-hero-card {
    min-height: 260px;
  }

  .information-notice {
    padding: 19px;
  }

  .source-card {
    padding: 22px;
  }
}

/* ==========================================================
   FAQ MOBILE NAVIGATION FIX
========================================================== */

.mobile-navigation {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 950;

  background: #0b2343;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);

  border-top:
    1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 18px 38px rgba(7, 22, 45, 0.22);

  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 200ms ease;
}

.mobile-navigation[hidden] {
  display: none;
}

.mobile-navigation.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-navigation-inner {
  display: grid;
  padding-top: 10px;
  padding-bottom: 14px;
}

.mobile-navigation a {
  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 4px;

  color: #ffffff;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.1);

  font-family:
    "Bebas Neue",
    Arial,
    Helvetica,
    sans-serif;

  font-size: 1.2rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mobile-navigation a:last-child {
  border-bottom: 0;
}

.mobile-navigation a:hover,
.mobile-navigation a:focus-visible {
  color: #b9d6ef;
}

.mobile-navigation .cart-count {
  color: #0b2343;
  background: #ffffff;
}

@media (min-width: 1051px) {
  .mobile-navigation {
    display: none !important;
  }
}

/* ==========================================================
   MOBILE MENU FIX
========================================================== */

.site-header {
  position: relative;
  z-index: 1000;
}

.mobile-navigation {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;

  display: block;

  background: #0b2343;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-8px);

  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 200ms ease;
}

.mobile-navigation[hidden] {
  display: none !important;
}

.mobile-navigation.is-open {
  display: block !important;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}

.mobile-navigation-inner {
  display: grid;

  padding-top: 10px;
  padding-bottom: 14px;
}

.mobile-navigation a {
  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 4px;

  color: #ffffff !important;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.12);

  font-family:
    "Bebas Neue",
    Arial,
    Helvetica,
    sans-serif;

  font-size: 1.2rem;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-navigation a:last-child {
  border-bottom: 0;
}

.mobile-navigation .cart-count {
  color: #0b2343 !important;
  background: #ffffff !important;
}

@media (min-width: 861px) {
  .mobile-navigation {
    display: none !important;
  }
}
/* WCPS private admin footer access */
.footer-admin-link{color:#7f98b0;font-family:"Bebas Neue",Arial,Helvetica,sans-serif;font-size:.75rem;font-weight:400;letter-spacing:.12em;text-transform:uppercase;text-decoration:none;transition:color 160ms ease}.footer-admin-link:hover{color:#fff}.footer-bottom-inner{position:relative}@media(min-width:761px){.footer-bottom-inner>.footer-admin-link{position:absolute;left:50%;transform:translateX(-50%)}}@media(max-width:760px){.footer-bottom-inner>.footer-admin-link{position:static;transform:none}}
