@import url(https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap);

.fade-enter[data-v-0a4321fe],
.fade-leave-to[data-v-0a4321fe],
.fade-leave-active[data-v-0a4321fe] {
  opacity: 0;
}
.fade-enter-active[data-v-0a4321fe],
.fade-leave-active[data-v-0a4321fe] {
  transition: opacity 0.3s ease;
}


.modal.show {
  display: block;
}


/* Uses the shared --wf-* design tokens defined in portal.css */
.search[data-v-ab9db930] { display: flex; align-items: center;
}

/* ---------- Desktop: compact inline search ---------- */
.search .input-wrapper[data-v-ab9db930] {
  position: relative;
  display: flex;
  align-items: center;
}
.search input[data-v-ab9db930] {
  height: 36px;
  border: 0.5px solid var(--wf-hairline, #e2e0d8);
  border-radius: 8px;
  color: var(--wf-ink, #1b1b19);
  background: var(--wf-mist, #f6f8f1);
  padding: 0 38px 0 14px;
  width: 200px;
  font-size: 13px;
  font-family: var(--wf-font, inherit);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.search input[data-v-ab9db930]::-moz-placeholder { color: var(--wf-muted, #6b6b66);
}
.search input[data-v-ab9db930]::placeholder { color: var(--wf-muted, #6b6b66);
}
.search input[data-v-ab9db930]:hover { border-color: var(--wf-hairline-hover, #c9c7bd);
}
.search input[data-v-ab9db930]:focus {
  outline: none;
  border-color: var(--wf-deep, #4d7c0f);
  background: #fff;
}
@media (max-width: 1280px) {
.search input[data-v-ab9db930] { width: 180px;
}
}
@media (max-width: 1024px) {
.search input[data-v-ab9db930] { width: 170px;
}
}

/* submit (magnifier) button, sitting inside the input on the right */
.search__btn[data-v-ab9db930] {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2px;
  margin: auto 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.search .search-icon[data-v-ab9db930] { width: 16px; height: 16px;
}
.search .search-icon path[data-v-ab9db930] { fill: var(--wf-nav, #3a3a37); transition: all 0.2s ease-in-out;
}

/* mobile-only controls hidden on desktop; input always visible on desktop */
.btn--search[data-v-ab9db930],
.btn--search-close[data-v-ab9db930] { display: none;
}
.input-wrapper.is-hidden[data-v-ab9db930] { display: none;
}
@media (min-width: 668px) {
.search .input-wrapper[data-v-ab9db930] { display: flex !important;
}
}

/* ---------- Mobile: tap magnifier → full-width bar under the fixed header ---------- */
@media (max-width: 667px) {
  /* magnifier toggle shown in the header */
.btn--search[data-v-ab9db930] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}
.btn--search svg[data-v-ab9db930] { width: 20px; height: 20px;
}
.btn--search path[data-v-ab9db930] { stroke: var(--wf-nav, #3a3a37);
}

  /* input row (revealed by JS as display:flex) */
.search .input-wrapper[data-v-ab9db930] {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border-bottom: 0.5px solid var(--wf-hairline, #e2e0d8);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    z-index: 49;
}
.search input[data-v-ab9db930] {
    order: 0;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    position: static;
    height: 40px;
    border-radius: 8px;
    padding: 0 14px;
}
.search__btn[data-v-ab9db930] {
    order: 1;
    position: static;
    margin: 0;
    top: auto;
    right: auto;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex: 0 0 auto;
}
.search .search-icon[data-v-ab9db930] { width: 18px; height: 18px;
}
.search .search__btn path[data-v-ab9db930] { fill: var(--wf-nav, #3a3a37);
}
.btn--search-close[data-v-ab9db930] {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex: 0 0 auto;
}
.btn--search-close svg[data-v-ab9db930] { width: 16px; height: 16px; fill: var(--wf-muted, #6b6b66);
}
}


/* Uses the shared --wf-* design tokens defined in portal.css */

/* Fixed header (stays at the top through the whole page) + a same-height spacer
   that reserves its space in flow, so content never hides underneath it.
   Fixed is used instead of sticky because the component's single root wrapper
   would otherwise constrain a sticky child to ~header height. */
.wf-header[data-v-26b52ce1] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 0.5px 0 var(--wf-hairline);
  font-family: var(--wf-font);
}
.wf-header-spacer[data-v-26b52ce1] { height: 58px;
}
.wf-header__inner[data-v-26b52ce1] {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 58px;
  padding: 0 24px;
  max-width: var(--wf-maxw);
  margin: 0 auto;
}
.wf-logo[data-v-26b52ce1] { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto;
}
.wf-logo__mark[data-v-26b52ce1] {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--wf-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wf-logo__word[data-v-26b52ce1] { font-size: 17px; font-weight: 500; letter-spacing: -0.02em; color: var(--wf-ink);
}
.wf-nav[data-v-26b52ce1] { display: flex; align-items: center; gap: 26px;
}
.wf-nav__link[data-v-26b52ce1] { color: var(--wf-nav); font-weight: 400; font-size: 14px; text-decoration: none;
}
.wf-nav__link[data-v-26b52ce1]:hover { color: var(--wf-ink);
}
.wf-actions[data-v-26b52ce1] { display: flex; align-items: center; gap: 14px;
}
.wf-signin[data-v-26b52ce1] {
  background: transparent;
  border: none;
  color: var(--wf-nav);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
  height: auto;
}
.wf-signin[data-v-26b52ce1]:hover { color: var(--wf-ink);
}
.wf-start[data-v-26b52ce1] {
  background: var(--wf-accent);
  color: var(--wf-on-accent);
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease;
}
.wf-start[data-v-26b52ce1]:hover { filter: brightness(0.95);
}
.wf-logout[data-v-26b52ce1] {
  background: transparent;
  border: none;
  color: var(--wf-nav);
  cursor: pointer;
  display: inline-flex;
  padding: 4px;
  height: auto;
  box-shadow: none;
}
.wf-logout[data-v-26b52ce1]:hover { color: var(--wf-ink);
}
.wf-burger[data-v-26b52ce1] {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.wf-burger span[data-v-26b52ce1] { display: block; width: 20px; height: 2px; background: var(--wf-ink); border-radius: 2px; margin: 0 auto;
}
.lang-switcher[data-v-26b52ce1] { display: flex; align-items: center;
}
.lang-switcher__select[data-v-26b52ce1] { min-width: 74px;
}
.lang-switcher[data-v-26b52ce1] .vs__dropdown-toggle { height: 36px; border-radius: 8px;
}
.lang-switcher[data-v-26b52ce1] .vs__selected { margin: 0;
}
.lang-switcher[data-v-26b52ce1] .vs__open-indicator,
.lang-switcher__chevron[data-v-26b52ce1] { color: var(--wf-nav);
}
@media (max-width: 900px) {
.wf-nav[data-v-26b52ce1] { display: none;
}
.wf-burger[data-v-26b52ce1] { display: flex;
}
.wf-logo[data-v-26b52ce1] { margin-right: auto;
}
}
@media (max-width: 560px) {
.wf-header__inner[data-v-26b52ce1] { gap: 12px; padding: 0 16px;
}
.wf-signin[data-v-26b52ce1] { display: none;
}
}


/* Uses the shared --wf-* design tokens defined in portal.css */
.wf-footer[data-v-15993fcd] {
  background: var(--wf-footer);
  color: var(--wf-dark-fine);
  font-family: var(--wf-font);
}
.wf-footer__inner[data-v-15993fcd] {
  max-width: var(--wf-maxw);
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.wf-footer__left[data-v-15993fcd] { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 22px;
}
.wf-footer__word[data-v-15993fcd] { color: #F6F8F1; font-weight: 500; font-size: 15px;
}
.wf-footer__links[data-v-15993fcd] { display: flex; flex-wrap: wrap; gap: 12px 22px;
}
.wf-footer__links a[data-v-15993fcd] {
  color: var(--wf-dark-fine);
  text-decoration: none;
  font-size: 13px;
}
.wf-footer__links a[data-v-15993fcd]:hover { color: #F6F8F1;
}
.wf-footer__copy[data-v-15993fcd] { margin: 0; font-size: 12.5px;
}
@media (max-width: 560px) {
.wf-footer__inner[data-v-15993fcd] { flex-direction: column; align-items: flex-start;
}
}


.fade-enter,
.fade-leave-to,
.fade-leave-active {
  opacity: 0;
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}
.Cookie--portal {
  background: #000;
  padding: 8px 25px;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
}
.Cookie--portal {
  color: #fff;
  font-size: 14px;
}
.Cookie--portal a {
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
}
.Cookie--portal a:hover {
  color: #ffdd3d;
}
.Cookie--portal .Cookie__button {
  background: #222;
  color: #ffdd3d;
  border-radius: 5px;
  padding: 10px 35px;
}
.Cookie--portal .Cookie__button:hover {
  background: #ffdd3d;
  color: #222;
}
@media (max-width: 667px) {
.Cookie--portal .Cookie__button {
    margin-bottom: 0;
}
.Cookie--portal .Cookie__content {
    margin: 0;
}
.Cookie--portal .Cookie__button {
    font-size: 12px;
}
.Cookie--portal .Cookie__buttons {
    margin-top: 5px;
}
}


/* Uses the shared --wf-* design tokens defined in portal.css */
.wf-home[data-v-511b3aca] {
  font-family: var(--wf-font);
  color: var(--wf-ink);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  background: var(--wf-bg);
}
.wf-home *[data-v-511b3aca] { box-sizing: border-box;
}
.wf-container[data-v-511b3aca] {
  max-width: var(--wf-maxw);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.wf-h2[data-v-511b3aca] {
  font-size: clamp(19px, 2.4vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.wf-sub[data-v-511b3aca] { color: var(--wf-muted); margin: 6px 0 0; font-size: 14px;
}
.wf-link[data-v-511b3aca] {
  color: var(--wf-deep);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.wf-link[data-v-511b3aca]:hover { text-decoration: underline;
}
.wf-fineprint[data-v-511b3aca] {
  color: var(--wf-dark-fine);
  font-size: 11px;
  line-height: 1.6;
  max-width: 420px;
  margin: 14px 0 0;
}

/* ---- buttons ---- */
.wf-btn[data-v-511b3aca] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease;
  border: none;
}
.wf-btn--primary[data-v-511b3aca] {
  background: var(--wf-accent);
  color: var(--wf-on-accent);
  padding: 13px 22px;
}
.wf-btn--primary[data-v-511b3aca]:hover { filter: brightness(0.95);
}
.wf-btn--ghost[data-v-511b3aca] {
  background: transparent;
  color: #F6F8F1;
  padding: 13px 22px;
  border: 0.5px solid rgba(246, 248, 241, 0.35);
}
.wf-btn--ghost[data-v-511b3aca]:hover { background: rgba(246, 248, 241, 0.06);
}

/* ---- eyebrow pill ---- */
.wf-eyebrow[data-v-511b3aca] {
  display: inline-block;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  border: 0.5px solid rgba(163, 230, 53, 0.4);
  background: rgba(163, 230, 53, 0.08);
  color: var(--wf-accent);
  font-size: 12.5px;
  font-weight: 500;
}

/* ============================ HERO ============================ */
.wf-hero[data-v-511b3aca] { background: var(--wf-ink); color: #F6F8F1;
}
.wf-hero__grid[data-v-511b3aca] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
  padding: 72px 24px 84px;
}
.wf-hero__title[data-v-511b3aca] {
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 18px 0 0;
  text-wrap: balance;
}
.wf-hero__sub[data-v-511b3aca] { max-width: 440px; color: var(--wf-dark-body); font-size: 15px; margin: 16px 0 0;
}
.wf-hero__buttons[data-v-511b3aca] { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}
.wf-hero__trust[data-v-511b3aca] { color: #D7D7D1; font-size: 13.5px; margin: 22px 0 0;
}
.wf-stars[data-v-511b3aca] { color: var(--wf-accent); letter-spacing: 1px;
}
.wf-hero__visual[data-v-511b3aca] { display: flex; justify-content: center;
}
.wf-videocard[data-v-511b3aca] {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  border: 0.5px solid rgba(246, 248, 241, 0.14);
  overflow: visible;
}
.wf-videocard__media[data-v-511b3aca] {
  position: relative;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  background: var(--wf-hero-grad);
  overflow: hidden;
  cursor: pointer;
}
.wf-videocard__video[data-v-511b3aca] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.wf-videocard__media[data-v-511b3aca]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 45%);
  pointer-events: none;
}
.wf-videocard__label[data-v-511b3aca] {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.wf-chip[data-v-511b3aca] {
  position: absolute;
  background: #fff;
  color: var(--wf-ink);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
.wf-chip--tr[data-v-511b3aca] { top: -14px; right: -10px;
}
.wf-chip--bl[data-v-511b3aca] { bottom: -14px; left: -10px;
}

/* ========================= BENEFITS ========================= */
.wf-benefits[data-v-511b3aca] { background: var(--wf-bg);
}
.wf-benefits__grid[data-v-511b3aca] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 44px 24px;
}
.wf-benefit[data-v-511b3aca] { display: flex; align-items: flex-start; gap: 14px;
}
.wf-benefit__icon[data-v-511b3aca] {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--wf-mist);
  border: 0.5px solid var(--wf-hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-deep);
}
.wf-benefit__title[data-v-511b3aca] { font-weight: 500;
}
.wf-benefit__desc[data-v-511b3aca] { color: var(--wf-muted); font-size: 13px; margin-top: 2px;
}

/* ========================= HOW IT WORKS ========================= */
.wf-how[data-v-511b3aca] { background: var(--wf-bg); border-top: 0.5px solid var(--wf-hairline); padding: 56px 0 60px;
}
.wf-sectionhead--center[data-v-511b3aca] { max-width: 520px; margin: 0 auto 32px; text-align: center;
}
.wf-sectionhead--row[data-v-511b3aca] {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}
.wf-steps[data-v-511b3aca] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.wf-step__badge[data-v-511b3aca] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wf-accent);
  color: var(--wf-on-accent);
  font-weight: 500;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.wf-step__title[data-v-511b3aca] { font-weight: 500;
}
.wf-step__body[data-v-511b3aca] { color: var(--wf-muted); font-size: 13px; margin-top: 4px;
}

/* ========================= NEW THIS WEEK ========================= */
.wf-new[data-v-511b3aca] {
  background: var(--wf-mist);
  border-top: 0.5px solid var(--wf-hairline);
  border-bottom: 0.5px solid var(--wf-hairline);
  padding: 56px 0 64px;
}
.wf-cards3[data-v-511b3aca] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.wf-ccard[data-v-511b3aca] {
  background: #fff;
  border: 0.5px solid var(--wf-hairline);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
  display: block;
}
.wf-ccard[data-v-511b3aca]:hover { transform: translateY(-2px); border-color: var(--wf-hairline-hover);
}
.wf-ccard__thumb[data-v-511b3aca] { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--wf-hero-grad);
}
.wf-ccard__thumb img[data-v-511b3aca] { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; display: block;
}
.wf-tag[data-v-511b3aca] {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  color: var(--wf-ink);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 500;
}
.wf-ccard__body[data-v-511b3aca] { padding: 14px 16px 16px;
}
.wf-ccard__title[data-v-511b3aca] { font-weight: 500;
}
.wf-ccard__meta[data-v-511b3aca] { color: var(--wf-muted); font-size: 12.5px; margin-top: 4px;
}

/* ===================== EXPLORE THE FULL LIBRARY ===================== */
.wf-library[data-v-511b3aca] { background: var(--wf-bg); padding: 60px 0 64px;
}
.wf-catgrid[data-v-511b3aca] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.wf-catcard[data-v-511b3aca] {
  border: 0.5px solid var(--wf-hairline);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
  display: block;
}
.wf-catcard[data-v-511b3aca]:hover { transform: translateY(-2px); border-color: var(--wf-hairline-hover);
}
.wf-catcard__strip[data-v-511b3aca] {
  position: relative;
  height: 88px;
  background: var(--wf-hero-grad);
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
  overflow: hidden;
}
.wf-catcard__img[data-v-511b3aca] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.wf-catcard:hover .wf-catcard__img[data-v-511b3aca] { transform: scale(1.04);
}
.wf-catcard__strip[data-v-511b3aca]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.05));
  pointer-events: none;
}
.wf-catcard__name[data-v-511b3aca] {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.wf-catcard__count[data-v-511b3aca] {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  background: #fff;
  color: var(--wf-ink);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 500;
}
.wf-catcard__items[data-v-511b3aca] { color: var(--wf-muted); font-size: 12.5px; line-height: 1.7; padding: 14px 16px;
}

/* ========================= SOCIAL PROOF ========================= */
.wf-social[data-v-511b3aca] { background: var(--wf-bg);
}
.wf-social__grid[data-v-511b3aca] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px;
  align-items: center;
  padding: 60px 24px;
}
.wf-stats[data-v-511b3aca] { display: flex; flex-wrap: wrap; gap: 36px;
}
.wf-stat__num[data-v-511b3aca] {
  font-size: clamp(26px, 3.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--wf-deep);
}
.wf-stat__label[data-v-511b3aca] { color: var(--wf-muted); font-size: 13px;
}
.wf-testimonial[data-v-511b3aca] {
  background: var(--wf-mist);
  border: 0.5px solid var(--wf-hairline);
  border-radius: 12px;
  padding: 24px 26px;
}
.wf-testimonial__quote[data-v-511b3aca] { font-size: 15.5px; line-height: 1.55; margin: 0 0 16px;
}
.wf-testimonial__person[data-v-511b3aca] { display: flex; align-items: center; gap: 12px;
}
.wf-avatar[data-v-511b3aca] {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wf-accent);
  color: var(--wf-on-accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.wf-testimonial__author[data-v-511b3aca] { color: var(--wf-muted); font-size: 13px;
}

/* ============================= FAQ ============================= */
.wf-faq[data-v-511b3aca] { background: var(--wf-mist); border-top: 0.5px solid var(--wf-hairline); padding: 56px 0 64px;
}
.wf-faq__inner[data-v-511b3aca] { max-width: 820px;
}
.wf-faq__title[data-v-511b3aca] { text-align: center; margin-bottom: 26px;
}
.wf-faqlist[data-v-511b3aca] { display: flex; flex-direction: column; gap: 12px;
}
.wf-faqitem[data-v-511b3aca] { background: #fff; border: 0.5px solid var(--wf-hairline); border-radius: 12px;
}
.wf-faqitem__q[data-v-511b3aca] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--wf-ink);
  text-align: left;
}
.wf-faqitem__icon[data-v-511b3aca] { color: var(--wf-deep); font-size: 18px; line-height: 1;
}
.wf-faqitem__a[data-v-511b3aca] { padding: 0 22px 18px; color: var(--wf-muted); font-size: 13.5px; line-height: 1.6;
}

/* ====================== FINAL CTA (dark) ====================== */
.wf-final[data-v-511b3aca] { background: var(--wf-ink); color: #F6F8F1;
}
.wf-final__inner[data-v-511b3aca] { max-width: 760px; margin: 0 auto; text-align: center; padding: 72px 24px 78px;
}
.wf-final__title[data-v-511b3aca] { font-size: clamp(24px, 3.4vw, 30px); font-weight: 500; color: #fff; margin: 0;
}
.wf-final__sub[data-v-511b3aca] { color: var(--wf-dark-body); font-size: 15px; margin: 14px 0 22px;
}
.wf-checks[data-v-511b3aca] {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: #D7D7D1;
  font-size: 13.5px;
}
.wf-checks li[data-v-511b3aca] { white-space: nowrap;
}
.wf-final__terms[data-v-511b3aca] { margin: 22px auto 0; max-width: 560px; text-align: center;
}
.wf-final__unsub[data-v-511b3aca] { display: inline-block; margin-top: 10px; font-size: 12px; color: var(--wf-dark-body); text-decoration: underline;
}
.wf-final__unsub[data-v-511b3aca]:hover { color: #fff;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 480px) {
.wf-hero__grid[data-v-511b3aca] { padding: 48px 24px 56px; gap: 36px;
}
.wf-hero__buttons .wf-btn[data-v-511b3aca] { width: 100%; justify-content: center;
}
.wf-benefits__grid[data-v-511b3aca] { grid-template-columns: repeat(2, 1fr);
}
.wf-chip--tr[data-v-511b3aca] { right: 0;
}
.wf-chip--bl[data-v-511b3aca] { left: 0;
}
.wf-final .wf-btn--primary[data-v-511b3aca] { width: 100%; justify-content: center;
}
}


.faq-item__bar.is-dropped + .faq-item__dropdown {
  display: block;
}


.c-stars[data-v-e7a1ae42] {
}
.c-stars__message[data-v-e7a1ae42] {
  margin-left: 15px;
}


.c-favourite[data-v-54c957ee] {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.c-favourite__btn[data-v-54c957ee] {
  display: flex;
  align-items: center;
  border: none;
  background: none;
}
.c-favourite__btn svg[data-v-54c957ee] {
  display: block;
  width: 30px;
  height: 30px;
}
.fav-message[data-v-54c957ee] {
  font-weight: 600;
  margin-bottom: 0;
  margin-left: 10px;
}


.video-thumb[data-v-f6993e70] {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 20px;
  border: 10px solid #ddd;
  height: 30vw;
  border-radius:20px;
}
.c-stars[data-v-f6993e70] {
    position: relative;
    margin-top: -5px;
}
.product-entry--video-type[data-v-f6993e70] {
  padding-top: 0;
  padding-bottom: 0;
}
.product-entry--video-type .product-entry__content[data-v-f6993e70] {
  max-width: 1000px;
  width: 100%;
}
.product-entry--video-type .video-type__item[data-v-f6993e70] {
    flex: 1;
}
.product-entry--video-type .video-type__item .item-data[data-v-f6993e70] {
  display: flex;
  align-content: center;
  justify-content: space-between;
  background: transparent;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}
.product-entry--video-type h2[data-v-f6993e70] {
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  width: 100%;
}
.product-entry--video-type .product-entry__content .img-wrapper[data-v-f6993e70] {
  padding: 0;
}
.c-favourite[data-v-f6993e70] {
    position: relative;
    top: -8px;
}
@media (max-width: 576px) {
.video-thumb[data-v-f6993e70] {
        height: 300px;
}
}


.product-entry.product-entry--ebook .product-entry__head img {
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: none;
  height: 240px;
  border-radius: 0;
}
.product-entry__body .c-stars {
  margin-bottom: 15px;
}
.product-entry__body .c-stars .vue-star-rating {
  justify-content: center;
}
@media (min-width: 1200px) {
.product-entry__body .c-stars .vue-star-rating {
    justify-content: flex-start;
}
}
.button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}
.button-wrapper .product-entry__action-btn {
  margin-top: 0;
}
.button-wrapper .c-favourite {
  margin-left: 15px;
  margin-top: 0;
}
.button-wrapper .c-favourite__btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.button-wrapper .c-favourite__btn svg path {
  fill: #111;
}
@media (max-width: 667px) {
.button-wrapper {
    justify-content: space-between;
}
.button-wrapper .c-favourite {
    margin-left: 0;
}
}


.card--v4[data-v-4073a328] {
    background: none;
    box-shadow: none;
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    display: block;
}
.card--v4 .item-data h3[data-v-4073a328] {
    font-size: 16px;
}
.card--v4 .item-img[data-v-4073a328] {
    width: 100%;
    height: 13vw;
    border-radius: 6px;
    overflow: hidden;
}
@media (max-width: 576px) {
.card--v4 .item-img[data-v-4073a328] {
        height: 30vw;
}
}
.card--v4 .item-img:hover img[data-v-4073a328] {
    transform: scale(1.1);
}
.card--v4 .data-category[data-v-4073a328] {
    display: none;
}
.card--v4.card--ebook .item-img img[data-v-4073a328] {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  transition: all .35s ease-in-out;
}
.card--v4 .item-data[data-v-4073a328] {
    padding-left: 0;
    text-align: center;
    display: block;
    min-height: auto;
    padding-top: 5px;
}
.category-products .card--v4 a[data-v-4073a328] {
    display: block;
}

/* .card--v4.card--ebook .item-img {
  width: 50px;
  height: 90px;
}

@media (min-width: 1200px) {
  .card--v4.card--ebook .item-img {
    width: 90px;
    height: 120px;
  }
}

@media (min-width: 1600px) {
  .card--v4.card--ebook .item-img {
    width: 80px;
    height: 135px;
  }
} */


.card--v4[data-v-c1347984] {
    background: none;
    box-shadow: none;
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
}
.card--v4 .item-data h3[data-v-c1347984] {
    font-size: 16px;
}
.card--v4 .item-img[data-v-c1347984] {
    width: 100%;
    height: 15vw;
    border-radius: 6px;
    overflow: hidden;
}
.card--v4 .item-img:hover img[data-v-c1347984] {
    transform: scale(1.1);
}
.card--v4 .data-category[data-v-c1347984] {
    display: none;
}
.category-products .card--v4 a[data-v-c1347984] {
    display: block;
    width: 100%;
}
.card--v4.card--ebook .item-img img[data-v-c1347984] {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  transition: all .35s ease-in-out;
}
.card--v4 .item-data[data-v-c1347984] {
    padding-left: 0;
    text-align: center;
    display: block;
    min-height: auto;
    padding-top: 5px;
}
.card--v4.card--ebook .item-img img[data-v-c1347984] {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
.card--v4.card--ebook .item-img[data-v-c1347984] {
  width: 50px;
  height: 90px;
}
@media (min-width: 1200px) {
.card--v4.card--ebook .item-img[data-v-c1347984] {
    width: 90px;
    height: 120px;
}
}
@media (min-width: 1600px) {
.card--v4.card--ebook .item-img[data-v-c1347984] {
    width: 80px;
    height: 135px;
}
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}


details,
main {
  display: block;
}

h1 {
  font-size: 2em;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  color: #222;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"],
legend {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

.signin-btn span,
template {
  display: none;
}

*,
:after,
:before {
  box-sizing: border-box;
}

::-moz-selection {
  color: #fff;
  background: #000;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #000;
  text-shadow: none;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

body,
html {
  background: #f9f9f9;
  font-family: "Rubik", sans-serif;
  overflow-x: clip; /* clip (not hidden) prevents horizontal scroll without breaking position: sticky */
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 600px) {
  body,
  html {
    font-size: 14px;
  }
}

@media (min-width: 767px) {
  body,
  html {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  body,
  html {
    font-size: 16px;
  }
}

@media (min-width: 1600px) {
  body,
  html {
    font-size: 17px;
  }
}

h1,
h2 {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111;
  font-family: inherit;
  margin: 0;
}

h1 {
  font-size: 1.625rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.125rem;
}

h4,
p {
  font-size: 1rem;
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h5,
h6 {
  font-size: 14px;
}

p {
  color: #111;
  font-family: inherit;
}

a {
  cursor: pointer;
}

a:focus,
a:hover {
  text-decoration: none;
  color: #222;
}

button {
  cursor: pointer;
  background: 0 0;
  border: 0;
}

button:focus {
  outline: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-wrapper {
  background: #d7c0d0;
  min-height: 100vh;
}

.page-footer__list li a:hover,
.page-footer__list--utility li a:hover,
strong {
  color: #30daad;
}

.slide-menu {
  background: #1e1e1e;
  min-width: 304px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-x: hidden;
  z-index: 9999;
  padding: 25px 15px;
  transition: all 0.3s ease-in-out;
  transform: translate(-101%, 0);
}

.slide-menu.is-showed {
  transform: none;
}

.slide-menu__title {
  /* color: #ffdd3d; */
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.slide-menu__list {
  padding-left: 0;
}

.slide-menu__list li,
article.article h2,
article.article h3 {
  margin-bottom: 20px;
}

.slide-menu__list li a {
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.34px;
  font-weight: 500;
}

.slide-menu__list--utility {
  border-top: 1px solid #707070;
  padding-top: 18px;
}

.slide-menu__list--utility li a {
  color: #a8a8a8;
}

.slide-menu__close {
  position: absolute;
  right: 16px;
  top: 20px;
}

@media (min-width: 1200px) {
  .slide-menu {
    display: none !important;
  }
}

.btn,
.btn--primary {
  border: 0;
}

.btn,
.btn--outline,
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.27s ease-in-out;
  outline: 0;
  white-space: nowrap;
}

.btn--outline:active,
.btn--outline:focus,
.btn--primary:active,
.btn--primary:focus,
.btn:active,
.btn:focus {
  border: 0;
  outline: 0;
}

.btn--primary {
  /* background: #ffdd3d;*/
  border-radius: 35px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.34px;
}

.btn--primary:hover {
  /*background: #000; */
  /* color: #ffdd3d */
}

.btn--primary:hover svg path {
  transition: fill 0.3s ease-in-out;
  /* fill: #ffdd3d */
}

.btn--outline {
  border: 1px solid #111;
  border-radius: 35px;
  color: #222;
}

.btn--outline:active,
.btn--outline:focus,
.btn--outline:hover {
  background: #111;
  color: #fff;
}

.btn--lg {
  height: 35px;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .btn--lg {
    height: 55px;
    font-size: 1.1rem;
  }
}

.btn--sm {
  height: 35px;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .btn--sm {
    height: 47px;
    font-size: 1rem;
  }
}

.modal-backdrop {
  background: #fff;
  z-index: 9999;
  opacity: 0.8;
}

body.modal-open {
  padding-right: 0 !important;
}

.modal {
  z-index: 999999;
}

.modal .modal-header {
  border-top: 4px solid #000;
  border-bottom: 0;
  margin-bottom: 0;
  padding-top: 30px;
}

.modal .modal-dialog {
  margin-top: 30px;
}

.modal .modal-content {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.modal .modal-body {
  padding: 15px 20px 0;
}

@media (min-width: 1200px) {
  .modal .modal-body {
    padding: 15px 45px 0;
  }
}

.modal .modal-title {
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 0;
  color: #222;
  text-align: center;
  width: 100%;
}

.modal .modal-close {
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 20px;
  z-index: 2000;
}

.modal .modal-footer {
  background: #f8f8f8;
  justify-content: center;
}

#singInModal,
.modal--signin {
  text-align: center;
}

#singInModal form,
.modal--signin form {
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  #singInModal form,
  .modal--signin form {
    max-width: 100%;
  }
}

#singInModal form label,
.modal--signin form label {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  #singInModal form label,
  .modal--signin form label {
    font-size: 1rem;
  }
}

#singInModal form input,
.modal--signin form input {
  font-family: "Monsterrat", sans-serif;
  border: 3px solid #e8e8e8;
  height: 52px;
  font-size: 1.2rem;
  font-weight: 700;
  width: 100%;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 1200px) {
  #singInModal form input,
  .modal--signin form input {
    height: 60px;
    font-size: 1rem;
  }
}

#singInModal .form-button,
.modal--signin .form-button {
  padding: 20px 0;
}

#singInModal .btn--submit,
.modal--signin .btn--submit {
  height: 54px;
  padding: 0 2rem;
  font-size: 1rem;
}

#singInModal .btn--submit span,
.modal--signin .btn--submit span {
  display: inline-block;
  margin-left: 10px;
}

#singInModal .registration-text,
.modal--signin .registration-text {
  letter-spacing: 0.34px;
}

#singInModal .registration-text h4,
.modal--signin .registration-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

#singInModal .registration-text a,
.modal--signin .registration-text a {
  font-weight: 600;
  /* color: #e7bf00 */
}

#singInModal .registration-text a:hover,
.modal--signin .registration-text a:hover {
  color: #222;
}

#unsubform,
.modal--unsubscribe {
  text-align: center;
}

#unsubform form,
.modal--unsubscribe form {
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  #unsubform form,
  .modal--unsubscribe form {
    max-width: 100%;
  }
}

#unsubform form label,
.modal--unsubscribe form label {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  #unsubform form label,
  .modal--unsubscribe form label {
    font-size: 1rem;
  }
}

#unsubform form input,
.modal--unsubscribe form input {
  font-family: "Monsterrat", sans-serif;
  border: 3px solid #e8e8e8;
  height: 52px;
  font-size: 1.2rem;
  font-weight: 700;
  width: 300px;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 1200px) {
  #unsubform form input,
  .modal--unsubscribe form input {
    height: 60px;
    font-size: 1rem;
  }
}

#unsubform .form-button,
.modal--unsubscribe .form-button {
  padding: 20px 0;
}

#unsubform .btn--submit,
.modal--unsubscribe .btn--submit {
  height: 54px;
  padding: 0 2rem;
  font-size: 1rem;
}

#unsubform .btn--submit span,
.modal--unsubscribe .btn--submit span {
  display: inline-block;
  margin-left: 10px;
}

.carousel-wrapper {
  padding: 20px;
  display: flex;
  flex-wrap: nowrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.carousel-wrapper--nopad {
  padding: 0;
}

.carousel-wrapper--smpad {
  padding: 0 15px;
  position: relative;
  left: -15px;
  width: calc(100% + 15px) !important;
}

@media (min-width: 1200px) {
  .carousel-wrapper--smpad {
    padding: 0;
    left: 0;
    width: 100%;
  }
}

.swiper {
  padding-bottom: 0;
}

.faqs .faq-item__bar.is-dropped:before,
.swiper-container {
  width: 100%;
}

.carousel {
  padding-right: 20px;
}

.div-recaptcha div {
  display: contents;
  align-content: center;
}

.unsub {
  text-align: center;
  position: relative;
}

.unsub .graphics-title {
  position: absolute;
  left: 10%;
  top: -30px;
  line-height: 1;
  font-weight: 700;
  color: #212121;
  font-size: 10rem;
  opacity: 0.05;
}

@media (min-width: 1200px) {
  .unsub .graphics-title {
    font-size: 15rem;
    left: 30%;
    top: -50px;
  }
}

.unsub__text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .unsub__text {
    margin-bottom: 40px;
  }
}

.page-header,
.unsub form {
  position: relative;
  z-index: 10;
}

.page-header {
  z-index: 8000;
  padding: 0 0 0 15px;
  background: #8e518d;
  border-bottom: 4px solid #222;
  position: relative;
  width: 100%;
  height: 90px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 576px) {
  .page-header {
    padding-left: 10px;
  }
}

@media (min-width: 768px) {
  .page-header {
    height: 90px;
  }
}

@media (min-width: 1200px) {
  .page-header {
    height: 90px;
    padding: 0 0 0 30px;
  }
}

.page-header__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: inherit;
  flex: 0 0 auto;
}

.page-header__logo {
  line-height: 1;
  margin-left: 8px;
}

.page-header__logo img {
  display: block;
  width: 120px;
  height: auto;
}

.page-header__menu ul li svg {
  display: none;
}

.page-header__menu ul li a {
  height: 100%;
}

@media (min-width: 767px) {
  .page-header__logo img {
    display: block;
    width: 150px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .page-header__logo img {
    display: block;
    width: 180px;
    height: auto;
  }
}

@media (min-width: 1600px) {
  .page-header__logo img {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .page-header__menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .page-header__menu {
    height: 100%;
    flex: 1;
  }

  .page-header__menu ul li svg {
    width: auto;
    height: 30px;
  }

  .page-header__menu ul li span {
    display: none;
    margin: 0 auto 10px auto;
  }

  .page-header__menu ul {
    display: flex;
    height: inherit;
    align-items: flex-end;
    width: 100%;
  }
  .page-header__menu ul li {
    text-align: center;
    min-width: 120px;
    flex: 0 0 auto;
    height: 100%;
  }
  .page-header__menu ul li a {
    color: #222;
    display: flex;
    align-items: center;
    font-weight: 600;
    height: inherit;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 10px 20px 10px 20px;
    white-space: nowrap;
    margin-right: 0;
    transition: none;
    text-align: center;
    justify-content: center;
    position: relative;
  }
  .page-header__menu ul li a:hover {
    color: #222;
  }
  .page-header__menu ul li.is-active a {
    color: #222;
  }
  .page-header__menu ul li.is-active a:before {
    width: 0;
    transition: all 0.35s ease-in-out;
  }
  .page-header__menu ul li.is-active a:before {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    background: #222;
    left: 0;
    height: 4px;
  }
}

@media (min-width: 1600px) {
  .page-header__menu ul li a {
    font-size: 16px;
  }
}

.menu-btn {
  background: url(/img/menu.6ea5bae3.svg) no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  padding: 0;
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}


@media (max-width: 576px) {
  .logout-btn,
  .signin-btn {
    padding: 0;
  }
}

.logout-btn,
.signin-btn {
  display: inline-flex;
  align-items: center;
  height: 40px;
  border-radius: 33px;
  font-size: 0.95rem;
  padding: 0 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  outline: 0;
}

.logout-btn svg {
  max-width: 40px;
}

.logout-btn:hover {
  background: #ddd;
}

.signin-btn:active,
.signin-btn:focus {
  outline: 0;
  border: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.signin-btn path {
  transition: all 0.35s ease-in-out;
}

.signin-btn:hover {
  /* background: #101010;
    color: #ffdd3d */
}

.signin-btn:hover path {
  /*fill: #ffdd3d*/
}

@media (min-width: 1200px) {
  .signin-btn {
    height: 50px;
  }
  .signin-btn span {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 10px;
  }
}

@media (max-width: 576px) {
  .modal .signin-btn span {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 10px;
  }
}

.unsubscribe-btn {
  display: inline-flex;
  align-items: center;
  height: 40px;
  background: #ffdd3d;
  border-radius: 33px;
  color: #000;
  font-size: 0.95rem;
  padding: 0 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
}

.unsubscribe-btn path {
  transition: all 0.35s ease-in-out;
}

.unsubscribe-btn:hover {
  background: #111;
  color: #fff;
}

.unsubscribe-btn:hover path {
  fill: #fff;
}

.unsubscribe-btn span {
  display: none;
}

@media (min-width: 1200px) {
  .unsubscribe-btn {
    height: 50px;
  }
  .unsubscribe-btn span {
    display: block;
    margin-left: 10px;
  }
}

/* hero section **/

.hero {
  width: 100%;
  height: 90vh;
  margin-bottom: 20px;
  min-height: 500px;
}

@media (max-width: 767px) {
  .hero {
    min-height: 95vh;
    height: auto;
    position: relative;
  }
  .hero:after {
    content: "";
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.89) 69%,
      rgba(0, 0, 0, 1) 45%,
      rgba(0, 0, 0, 1) 100%
    );
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 0;
  }
}

.hero > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

@media (max-width: 767px) {
  .hero > img {
    position: absolute;
    height: 70%;
    -o-object-position: 65%;
       object-position: 65%;
  }
}

.hero__content {
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 200;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .hero__content {
    position: relative;
    padding-top: 100vh;
    padding-bottom: 30px;
  }
}

.hero__content--bottom {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 767px) {
  .hero__content--bottom {
    padding: 0 20px;
  }
}

.hero__content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hero__content ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 230px;
}

@media (max-width: 800px) {
  .hero__content ul li {
    width: 25%;
  }
}

@media (max-width: 667px) {
  .hero__content ul li {
    width: 40%;
  }
}

.hero__content ul li .list-image {
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .hero__content ul li .list-image {
    width: 70px;
    height: 70px;
  }
}

.hero__content ul li .list-image img {
  display: block;
  width: 50px;
  height: 50px;
  max-width: 50px;
}

@media (max-width: 800px) {
  .hero__content ul li .list-image img {
    width: 40px;
    height: 40px;
    max-width: 40px;
  }
}

.hero__content ul li .list-data {
  text-align: center;
}

.hero__content ul li .list-data h2,
.hero__content ul li .list-data p {
  color: #fff;
  line-height: 1;
}

.hero__content ul li .list-data h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero__content ul li .list-data p {
  font-size: 0.85rem;
  line-height: 1.2;
}

.page-footer {
  background: #262626;
  padding: 25px 20px 10px;
}

@media (min-width: 767px) {
  .page-footer {
    padding: 35px 60px 15px;
  }
}

@media (min-width: 1200px) {
  .page-footer {
    padding: 35px 60px 15px;
  }
}

@media (min-width: 767px) {
  .page-footer__inner {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
  }
}

.page-footer__title {
  color: #ffdd3d;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

@media (min-width: 767px) {
  .page-footer__title {
    width: 100%;
  }
}

.page-footer__list {
  border-bottom: 1px solid #707070;
}

@media (min-width: 767px) {
  .page-footer__list {
    border: 0;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .page-footer__list {
    display: flex;
    width: auto;
    margin-bottom: 0;
  }
  .page-footer__list li:not(:last-child) {
    margin-right: 25px;
  }
}

@media (max-width: 576px) {
  .page-footer__list {
    text-align: center;
  }
}

.page-footer__list li a {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 0.34px;
  font-weight: 500;
  margin-bottom: 17px;
}

@media (min-width: 1200px) {
  .page-footer__list li a {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.page-footer__list--utility {
  border-bottom: 0;
  padding-top: 15px;
  margin-bottom: 50px;
}

@media (min-width: 767px) {
  .page-footer__list--utility {
    margin-bottom: 0;
    padding-top: 0;
  }
}

.page-footer__list--utility li a {
  color: #a8a8a8;
}

.page-footer .copyright {
  font-size: 0.9rem;
  color: #878787;
  text-align: center;
}

@media (min-width: 767px) {
  .page-footer .copyright {
    margin-top: 30px;
    width: 100%;
    font-size: 14px;
    text-align: left;
    margin-bottom: 0;
  }
}

.section__inner,
article.article {
  padding: 0 20px;
}

@media (min-width: 1025px) {
  .section__inner {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .section__inner {
    padding: 0 20px;
    max-width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
    .section__inner,
    article.article {
        padding: 0;
    }
}

@media (max-width: 576px) {
  .section__inner,
  article.article {
    padding: 0 10px;
  }
  .section__inner--noLeftpad {
    padding-left: 0;
  }
}

.section__head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 10px;
}

@media (max-width: 576px) {
  .section__head {
    margin-bottom: 5px;
  }
}

.section__head .btn--outline {
  margin-top: 0;
}

.section__box {
  padding: 30px 30px 30px 22px;
  background: #EFF7F6;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1200px) {
  .section__box {
    padding: 35px 22px 45px;
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  .section__box {
    padding: 20px 15px;
  }
}

.section__box--smToppad {
  padding-top: 10px;
}

@media (min-width: 767px) {
  .section__box--smToppad {
    padding-top: 30px;
  }
}

.section__box .box-title {
  margin-bottom: 0;
  position: relative;
  padding-left: 0;
  font-weight: 500;
  margin-right: 20px;
  color: #222;
}

.section__box .box-title svg {
  width: 30px;
  height: 40px;
  margin-right: 10px;
}

.section__box .box-title svg path {
  fill: #222;
}

@media (max-width: 576px) {
    .section__box .box-title svg {
        width: 24px;
        height: 34px;
    }
}

/* .section--our-categories .our-categories__head h3:before,
.section__box .box-title:before {
    content: '';
    width: 23px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
} */

.section__box .box-title--category {
  margin-top: 0;
}

@media (min-width: 1200px) {
  .section__box .box-title {
    font-size: 1.3rem;
  }
}

@media (min-width: 1600px) {
  .section__box .box-title {
    font-size: 1.55rem;
  }
}

.section--products {
  padding: 0;
  position: relative;
}

.section--products .section__inner {
  position: relative;
  z-index: 10;
}

.section--products .graphics-title {
  display: block;
  position: absolute;
  font-weight: 700;
  left: 20%;
  top: 5%;
  font-size: 5rem;
  color: #d8d8d8;
  opacity: 0.25;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .section--products .graphics-title {
    font-size: 10rem;
    top: 0;
  }
}

.section--categories.section--products .section__inner {
    padding: 0 20px;
}

@media (min-width: 1200px) {
  .section--categories.section--products .section__inner {
    max-width: 1400px;
  }

  .section--products .section__inner {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .section--products .carousel {
    flex-wrap: wrap;
    padding: 0;
  }
  .section--products .carousel a:not(.btn--primary) {
    display: block;
    width: 100%;
  }
  .section--products .carousel .carousel-item {
    height: auto;
  }
  .section--products .carousel--games,
  .section--products .carousel--new-items {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .section--products .carousel--games .carousel-item:last-child,
  .section--products .carousel--new-items .carousel-item:last-child {
    margin-right: 0;
  }
  .section--products .carousel--applications .carousel-item:nth-child(3n + 3),
  .section--products .carousel--ebook .carousel-item:nth-child(4n + 4) {
    margin-right: 0;
  }
}

@media (min-width: 1600px) {
  .section--products .btn--outline {
    height: 48px;
    padding: 0 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
    .section--categories.section--products .section__inner {
        padding: 0 10px;
    }
}

.section--categories {
  min-height: 70vh;
}

.card--v1 {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  transition: all 35s ease-in-out;
}

.card--v1:hover {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .card--v1.swiper-slide {
    flex-shrink: 0;
  }
}

/* @media (min-width:1200px) {
    .card--v1 {
        width: 20%;
        max-width: 100%
    }
} */

.card--v1 .item-img img,
.card--v1 a {
  display: block;
  width: 100%;
}

.card--v1 .item-img {
  margin-bottom: 0;
  height: 180px;
  padding: 0;
}

.card--v1 .item-data {
  padding: 10px 15px;
  text-align: center;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card--v1 .item-data .data-title {
  color: #111;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.card--v1 .item-img:hover img,
.card--v2 .item-img:hover img,
.card--v3 .item-img:hover img,
.card--v4 .item-img:hover img {
  opacity: 0.5;
}

.card--v1 .item-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.45s ease-in-out;
}

@media (min-width: 1200px) {
  .card--v1 .item-img {
    height: 12vw;
  }
  .card--v1 .item-img img {
    width: 100%;
    height: 100%;
  }
}

.card--v1 .item-data .data-title {
  font-size: 1rem;
  font-weight: 600;
}

.card--v1 .item-data .data-category {
  color: #b7b7b7;
  font-size: 0.8rem;
  font-weight: 600;
}

.card--v2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex-shrink: 0;
  padding: 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .card--v2.swiper-slide {
    flex-shrink: 0;
  }
}

.card--v2 .item-img {
  margin-bottom: 0;
  overflow: hidden;
  width: 100%;
}

.card--v2 .item-img img {
  display: block;
  width: 100%;
  border-radius: 6px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.45s ease-in-out;
}

@media (min-width: 1200px) {
  .card--v2 .item-img {
    width: 100%;
  }
  .card--v2 .item-img img {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1600px) {
  .card--v2 .item-img {
    width: 100%;
  }
  .card--v2 .item-img img {
    width: 100%;
    height: 100%;
  }
}

.card--v2 .item-data .data-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.card--v2 .item-data .data-category {
  color: #111;
  font-size: 0.8rem;
  font-weight: 600;
}

.card--v2 .item-btn {
  text-align: center;
  margin-top: 15px;
  display: block;
}

@media (min-width: 1200px) {
  .card--v2 .item-btn {
    margin-top: 15px;
  }
}

.card--v2 .item-btn .btn--next {
  padding: 0 1.8rem;
  font-weight: 700;
  font-size: 1rem;
}

.card--v2 .item-btn .btn--next:hover {
  /* background: #000;
    color: #ffdd3d */
}

.card--v3 {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 1;
  padding: 10px 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
}

.card--v3 .item-img {
  margin-bottom: 0;
}

.card--v3 .item-img img,
.card--v4 .item-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
}

/* @media (min-width:1200px) {
    .card--v3 .item-img {
        width: 100px;
        height: 100px;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100px;
    }
}

@media (min-width:1600px) {
    .card--v3 .item-img {
        width: 120px;
        height: 100px;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 120px;
    }
} */

.card--v3 .item-data,
.card--v4 {
  display: flex;
  align-items: center;
}

.card--v3 .item-data {
  padding-left: 10px;
  justify-content: space-between;
  width: 100%;
}

.card--v3 .item-data .data-title {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  color: #111;
  text-overflow: ellipsis;
}

.card--v3 .item-data .data-category {
  color: #111;
  font-size: 0.8rem;
  font-weight: 600;
}

.card--v3 .item-btn {
  text-align: center;
}

.card--v3 .item-btn .btn--next,
.card--v3 .item-btn .btn--sm {
  padding: 0 1.5rem;
  font-weight: 700;
  font-size: 0.85rem;
}

@media (min-width: 1200px) {
  .card--v3 .item-btn .btn--next,
  .card--v3 .item-btn .btn--sm {
    margin-right: 10px;
  }
}

.card--v4 {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  flex-wrap: nowrap;
  padding: 13px 10px;
  margin-top: 10px;
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .card--v4.swiper-slide {
    flex-shrink: 0;
  }
}

/* .card--v4 .item-img {
    width: 70px;
    height: 70px;
    min-width: 70px
} */

/* 
@media (min-width:1200px) {
    .card--v4 .item-img {
        width: 110px;
        height: 110px
    }
}

@media (min-width:1600px) {
    .card--v4 .item-img {
        width: 125px;
        height: 125px
    }
} */

.card--v4 .item-data,
.section--our-categories .our-categories__list a {
  display: flex;
  justify-content: space-between;
}

.card--v4 .item-data {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 10px;
  min-height: 70px;
}

.card--v4 .item-data h3 {
  margin-bottom: 10px;
  line-height: 1.2;
  color: #111;
}

@media (min-width: 1200px) {
  .card--v4 .item-data h3 {
    font-size: 1.2rem;
    word-break: normal;
  }
}

.card--v4 .item-data .data-category,
.card--v4 .item-data p {
  color: #111;
  margin-top: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

@media (min-width: 1200px) {
  .card--v4 .item-data .data-category,
  .card--v4 .item-data p {
    font-size: 0.65rem;
  }
}

.card--v4 .item-data .btn--sm {
  font-weight: 700;
  font-size: 0.85rem;
}

.section--our-categories {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px 20px 20px;
}

.section--our-categories > div {
  height: 100%;
}

.section--our-categories .our-categories {
  display: flex;
  align-items: center;
}

.section--our-categories .our-categories__label {
  width: 150px;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
}

@media (max-width: 1280px) {
  .section--our-categories .our-categories__label {
    width: 150px;
    flex: 0 0 150px;
    font-size: 14px;
    justify-content: flex-start;
    padding: 0;
  }
}

@media (max-width: 667px) {
  .section--our-categories {
    padding-right: 0;
    padding-top: 10px;
  }
  .section--our-categories .our-categories {
    overflow-x: auto;
    padding: 5px 2px;
  }

  .section--our-categories .our-categories__label {
    display: none;
  }
}

/* .section--our-categories .our-categories {
    -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, .15);
    box-shadow: 0 5px 25px rgba(0, 0, 0, .15)
} */

.section--our-categories .our-categories__head {
  /* background: #171717; */
  color: #fff;
  font-weight: 700;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  padding: 20px 0;
}

.section--our-categories .our-categories__head h3 {
  position: relative;
  /* color: #fff; */
  margin-bottom: 0;
  /* padding-left: 15px */
}

.section--our-categories .our-categories__head h3:before {
  width: 22px;
}

.section--our-categories .our-categories__body {
  background: #fff;
}

.section--our-categories .our-categories__list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .section--our-categories .our-categories__list {
    flex-wrap: nowrap;
  }
}

.section--our-categories .our-categories__list li {
  font-weight: 700;
}

.section--our-categories .our-categories__list li:hover svg {
  transform: none;
  opacity: 1;
}

.section--our-categories .our-categories__list svg {
  opacity: 0;
  transform: translate(102%, 0);
  transition: all 0.35s ease-in-out;

  display: none;
}

.section--our-categories .our-categories__list svg path {
  fill: #fff;
}

@media (max-width: 1280px) {
  .section--our-categories .our-categories__list svg {
    display: none;
  }
}

.section--our-categories .our-categories__list div {
  align-items: center;
  padding: 8px 25px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  width: 100%;
  background: #8e518d;
  color: #fff;
  font-weight: 400;
  border-radius: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.section--our-categories .our-categories__list div:hover {
  color: #222;
  outline: 2px solid #222;
}

.section--our-categories .our-categories__btn {
  padding: 13px 15px;
  text-align: center;
}

@media (min-width: 767px) {
  .section--our-categories .our-categories__btn {
    padding: 20px 15px;
  }
}

@media (min-width: 1200px) {
  .section--our-categories .our-categories__btn {
    padding: 30px 15px;
  }
  .section--our-categories .our-categories__btn .btn--sm {
    font-size: 1rem;
    height: 45px;
  }
}

@media (max-width: 1024px) {
    .section--our-categories .our-categories__list div {
        padding: 6px 15px;
    }

    .section--our-categories .our-categories__list span {
        white-space: nowrap;
    }
}

.category-products {
  padding-bottom: 0;
}

.category-products .card--v4 {
  border: 4px solid #111;
}

.category-products .card--v4 a {
  display: flex;
}

.category-products .card--v4 .data-title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.category-products .card--v4 .item-data {
  padding: 10px 15px;
}

.category-products .card--v4 {
  flex: 0 0 11.33333%;
  padding: 0;
}

@media (min-width: 667px) {
  .category-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .category-products {
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (min-width: 1200px) {
  .category-products {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .category-products .card--v4 {
    width: auto;
    margin-right: 0;
  }
}

@media (min-width: 1600px) {
  .category-products {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .category-products .card--v4 .data-title {
    margin-bottom: 0;
  }
}

.page-banner {
  height: 100px;
  padding: 80px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner h1 {
  color: #000;
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: 0.6px;
}

@media (min-width: 1200px) {
  .page-banner {
    height: 100px;
    padding: 40px 25px;
  }

  .page-banner h1 {
    font-size: 2.5rem;
  }
}

.page-content {
  background: #eee;
  min-height: 95vh;
  padding-bottom: 60px;
  padding-top: 30px;
}

.page-content__inner {
  padding: 40px 15px;
}

@media (min-width: 760px) {
  .page-content__inner {
    padding: 20px 90px;
  }
}

@media (min-width: 1200px) {
  .page-content__inner {
    padding: 20px 30px;
    max-width: 1060px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
    .page-content {
        padding-bottom: 20px;
    }
}
  

article.article h4,
article.article h5,
article.article h6 {
  margin-bottom: 25px;
}

article.article p {
  font-size: 1rem;
  line-height: 1.5;
}

.contacts__intro {
  text-align: center;
  color: black;
  margin: 0 auto 35px;
  max-width: 600px;
}

.contacts__list .list-item {
  text-align: center;
  margin-bottom: 36px;
}

.contacts__list .list-item span {
  color: black;
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.contacts__list .list-item p {
  color: black;
  font-size: 1.35rem;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .faqs {
    max-width: 900px;
    margin: 0 auto;
  }
}

.faqs .faq-item {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.faqs .faq-item {
  border-radius: 5px;
  margin-bottom: 22px;
  position: relative;
}

@media (min-width: 1200px) {
  .faqs .faq-item {
    margin-bottom: 34px;
  }
}

.faqs .faq-item__bar {
  background: #fff;
  padding: 18px 70px 18px 13px;
  position: relative;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .faqs .faq-item__bar {
    padding: 33px 70px 33px 30px;
  }
}

.faqs .faq-item__bar:before {
  content: "";
  width: 0;
  /* background: #ffdd3d; */
  height: 4px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  transition: width 0.35s ease-in-out;
}

.faqs .faq-item__bar .down-icon {
  transition: all 0.35s ease-in-out;
}

.faqs .faq-item__bar.is-dropped .down-icon {
  transform: rotate(-180deg);
}

.faqs .faq-item__bar .bar-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (min-width: 1200px) {
  .faqs .faq-item__bar .bar-text {
    font-size: 1.1rem;
  }
}

.faqs .faq-item .down-icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
}

.faqs .faq-item__dropdown {
  background: #fff;
  display: none;
  font-size: 1.1rem;
  line-height: 1.5;
  padding: 0 25px 30px;
  width: 100%;
}

@media (min-width: 1200px) {
  .faqs .faq-item__dropdown {
    padding: 0 65px 30px 75px;
  }
}

.faqs .faq-item__dropdown p {
  margin-top: 0;
  line-height: 1.85;
}

.product-entry {
  padding: 20px 0 0;
}

.product-entry .left-col {
  flex: 0 0 400px;
  padding: 20px 10px;
}

@media (max-width: 992px) {
    .product-entry {
        padding: 0;   
    }
}


@media (max-width: 576px) {
    .product-entry .left-col {
        padding: 0 10px;   
    }
}

.product-entry .right-col {
  padding: 40px 10px;
  border-left: 1px solid #eee;
  flex: 1;
}

@media (min-width: 1200px) {
  .product-entry {
    text-align: left;
  }
  .product-entry__content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;

    -moz-column-gap: 20px;

         column-gap: 20px;
    background: #fff;
    padding: 20px;
    flex-wrap: nowrap;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.15);
  }
  .product-entry {
    min-height: 600px;
    padding-bottom: 40px;
  }
}

@media (max-width: 576px) {
    .product-entry .right-col {
        padding: 50px 0;
    }
}

/* video type of page */

.product-entry--video-type .product-entry__content {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.product-entry--video-type .product-entry__content .img-wrapper {
  position: relative;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.product-entry--video-type .play-btn {
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.45);
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  transition: all 0.35s ease-in-out;
}

.product-entry--video-type .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.product-entry--video-type .play-btn svg {
  width: 45px;
  height: 45px;
  display: block;
}

.product-entry--video-type .video-type__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
}

.product-entry--video-type .video-type__item .item-data {
  padding-top: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.05);
  z-index: 100;
  padding: 20px;
  border-radius: 10px;
}

.product-entry--video-type .video-type__item .item-data .headline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  text-align: left;
}

.product-entry--video-type .video-type__item .item-data h2 {
  max-width: 100%;
  margin-right: 15px;
  margin-bottom: 20px;
}

.product-entry--video-type .product-entry__action-btn {
  margin: 20px auto 0 auto;
}

@media (max-width: 766px) {
  .product-entry--video-type .play-btn {
    transform: translate(-50%, -70%);
  }
  .product-entry--video-type .play-btn:hover {
    transform: translate(-50%, -70%) scale(1.1);
  }
}

@media (min-width: 767px) {
  .product-entry--video-type .video-type__item .item-data {
    width: 100%;
  }
  .product-entry--video-type .play-btn {
    transform: translate(-250%, -50%);
  }
  .product-entry--video-type .play-btn:hover {
    transform: translate(-250%, -50%) scale(1.1);
  }
}

@media (min-width: 992px) {
  .product-entry--video-type {
    min-height: 400px;
  }
  .product-entry--video-type .video-type__item {
    width: 100%;
    flex-wrap: nowrap;
  }
  .product-entry--video-type .video-type__item .item-data h2 {
    max-width: 300px;
  }
  .product-entry--video-type .product-entry__content {
    padding-top: 30px;
  }
  .product-entry--video-type .product-entry__content .img-wrapper {
    max-width: 100%;
  }

  .product-entry--video-type .product-entry__action-btn {
    margin: 30px 0 0 0;
  }
  .product-entry--video-type .play-btn {
    transform: translate(-20%, -100%);
  }
  .product-entry--video-type .play-btn:hover {
    transform: translate(-20%, -100%) scale(1.1);
  }
}

/* end video type of page */

.product-entry__head {
  position: relative;
  z-index: 10;
  padding: 0;
  margin-bottom: 20px;
}

.product-entry__head .head-image {
  margin-bottom: 5px;
}

.product-entry__head img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .product-entry__head img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 1024px) {
    .product-entry__head img {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .product-entry__head img {
        height: 300px;
    }
}

.product-entry__body {
  position: relative;
  z-index: 10;
  padding: 0;
  width: 100%;
}

@media (min-width: 1200px) {
  .product-entry__body {
    padding-left: 0;
  }
}

.product-entry__body .body-head-row {
  padding: 0 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 576px) {
    .product-entry__body .body-head-row {
        padding: 0;
    }
}

.product-entry__body .body-head-row .head-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.34px;
  margin-bottom: 5px;
}

@media (min-width: 1200px) {
  .product-entry__body .body-head-row .head-title {
    font-size: 1.45rem;
  }
}

.product-entry__body .body-head-row .head-category {
  margin-top: 0;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.34px;
  font-size: 1.15rem;
  margin-bottom: 5px;
  line-height: 1;
}

@media (min-width: 1200px) {
  .product-entry__body .body-head-row .head-category {
    font-size: 1.1rem;
  }
}

.product-entry__body .body-row {
  margin-bottom: 15px;
  text-align: left;
  padding: 0 10px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .product-entry__body .body-row {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
    .product-entry__body .body-row {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .product-entry__body .body-row {
        padding: 0;
    }
}

.product-entry__body .body-row__title {
  color: #999;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.34px;
  margin-bottom: 5px;
}

@media (min-width: 1200px) {
  .product-entry__body .body-row__title {
    font-size: 0.8rem;
    margin-bottom: 2px;
  }
}

.product-entry__body .body-row__text {
  color: #111;
  font-weight: 500;
  line-height: 1.2;
}

.product-entry__body .body-row__platforms {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-entry__body .body-row__platforms img {
  position: relative;
  margin-right: 20px;
}

.product-entry__body .body-row__platforms .ios {
  top: -2px;
}

.product-entry__article {
  max-width: 1000px;
  position: relative;
  z-index: 10;
  margin: 0 auto 0;
  border-radius: 10px;
  color: #111;
}

@media (min-width: 1200px) {
  .product-entry__article {
    margin-bottom: 50px;
    margin: 0 auto 0;
  }
}

.product-entry__article .article-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 20px;
}

/* .product-entry__article .article-title:before,
.section--related-products .section-head__title:before {
    content: '';
    width: 32px;
    position: absolute;
    left: 0;
    top: 50%;
    height: 4px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
} */

.product-entry__article h2,
.product-entry__article h3,
.product-entry__article h4 {
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: 35px;
}

.product-entry__article img {
  width: 100%;
  margin-bottom: 30px;
}

.product-entry__action-btn {
  margin: 0 15px 0 0;
  height: 63px;
  border-radius: 35px;
  max-width: 300px;
  width: 100%;
  /* background: #ffdd3d; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
  background: #111;
  /* color: #8e7604; */
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 576px) {
    .product-entry__action-btn {
        max-width: 200px;
    }
}

.section--related-products {
  padding: 50px 0;
  position: relative;
}

.section--related-products .graphics-title {
  display: block;
  position: absolute;
  font-weight: 700;
  left: 20%;
  top: 10%;
  font-size: 5rem;
  color: #e8e8e8;
  opacity: 0.25;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .section--related-products .graphics-title {
    font-size: 10rem;
    top: 0;
  }
}

.section--related-products .section__inner {
  padding-left: 15px;
  position: relative;
  z-index: 10;
}

@media (min-width: 1200px) {
  .section--related-products .section__inner {
    padding: 0 20px;
    max-width: 90%;
    margin: 0 auto;
  }
}

.section--related-products .section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
  margin-bottom: 10px;
}

.section--related-products .section-head__title {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  padding-left: 42px;
}

@media (min-width: 1200px) {
  .section--related-products .section-head__title {
    padding-left: 52px;
    font-size: 1.45rem;
  }
}

@media (min-width: 1600px) {
  .section--related-products .section-head__title {
    font-size: 1.65rem;
  }
}

.hidden,
[hidden] {
  display: none !important;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

/* new design format */
.products-wrapper {
  min-height: 100vh;
  padding-right: 20px;
  padding-bottom: 0;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .products-wrapper {
    padding: 0;
  }
}

.carousel-wrapper--align121 {
  display: grid;
  grid-template-columns: repeat(5, 19.444444%);
  grid-gap: 10px;
}

.carousel-wrapper--align121 .card--v1 .item-img {
  height: auto;
  flex: 1;
}

.carousel-wrapper--align121 .card--v1 a,
.carousel-wrapper--align121 .card--v1 a > div {
  height: 100%;
}

.carousel-wrapper--align121 .card--v1 a > div {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1280px) {
    .carousel-wrapper--align121 {
        grid-template-columns: repeat(5, 19.33333%);
    }
}

@media (max-width: 576px) {
  .carousel-wrapper--align121 {
    grid-template-columns: 48% 48%;
  }
}

/* category products */
.category-products,
.carousel-wrapper--align41 {
  display: grid;
  grid-template-columns: repeat(5, 19.555555%);
  grid-gap: 10px;
}

.content-wrapper {
  padding-left: 20px;
}

@media (max-width: 576px) {
  .category-products,
  .carousel-wrapper--align41 {
    grid-template-columns: 48% 48%;
  }
  .content-wrapper {
    padding: 0;
  }
}

.search-bar {
  width: 100%;
  padding: 20px 20px;
  background: linear-gradient(
    to right,
    rgba(33, 176, 145, 1) 0%,
    rgba(2, 205, 137, 1) 100%
  );
}

@media (max-width: 576px) {
    .search-bar {
        padding: 10px;
    }
}

.load-more {
  padding-top: 25px;
  text-align: center;
}

.page-header .action-buttons {
  display: flex;
  align-items: center;
}

.action-buttons {
  height: 100%;
}

.btn--search {
  height: 100%;
  padding: 0 10px;
}

.btn--search svg {
  width: 30px;
  height: 30px;
}

.logout-btn svg {
  height: 30px;
}

@media (max-width: 1024px) {
  .btn--search svg {
    width: 24px;
    height: 24px;
  }


  .product-entry__content {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
    .logout-btn svg {
        height: 25px;
    }
}


/* =========================================================================
   WORKINFIT HOMEPAGE REDESIGN — design tokens (charcoal + lime)
   Shared by Home.vue / Header.vue / Footer.vue scoped styles.
   ========================================================================= */

:root {
  --wf-ink:            #1B1B19; /* dark sections & text */
  --wf-footer:         #111110; /* darkest */
  --wf-accent:         #A3E635; /* lime accent (CTAs, highlights) */
  --wf-on-accent:      #1A2E05; /* text on accent */
  --wf-deep:           #4D7C0F; /* deep green (icons, links on light) */
  --wf-bg:             #FFFFFF; /* page background */
  --wf-mist:           #F6F8F1; /* mist section background */
  --wf-hairline:       #E2E0D8; /* hairline border */
  --wf-hairline-hover: #C9C7BD;
  --wf-muted:          #6B6B66; /* muted / secondary text on light */
  --wf-dark-body:      #B7B7B0; /* dark-section body text */
  --wf-dark-fine:      #8A8A84; /* dark-section fine print */
  --wf-nav:            #3a3a37; /* nav / link on light */
  --wf-hero-grad:      linear-gradient(135deg, #2F6B1F, #4D7C0F);
  --wf-font:           'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --wf-maxw:           1140px;
}

/* SIGNIN AND UNSUBSCRIBE BUTTON */

.signin-btn,
.unsubscribe-btn {
    background:  transparent;
    color: #222;
}


.signin-btn:active,
.signin-btn:focus,
.unsubscribe-btn:active,
.unsubscribe-btn:focus {
    background-color: #ddd;
    color: #101010;
}

.signin-btn:hover,
.unsubscribe-btn:hover {
    background-color: #ddd;
}

.signin-btn path,
.unsubscribe-btn path {
    fill: #101010;
}

.modal 
.signin-btn {
    background: linear-gradient(45deg, rgba(48,218,173,1) 0%, rgba(0,194,238,1) 100%);
}

/* MENU LINK DIV */

.menu-link:before {
    background-color:#111;
}

/* PRIMARY BUTTON DIV */

.btn--primary{
    background: rgba(48,218,173,1);
    color: #222;
    border: none;
}

.btn--primary:active,
.btn--primary:focus {
    background: rgba(48,218,173,1);
    color: #101010;
    border: none;
  }

/* SEARCH BUTTON */

.search__btn {
    background: #111;
    color: #222;
}

.search__btn:active,
.search__btn:focus {
    background: rgba(48,218,173,1);
    color: #fff;
  }

.search__btn path {
    fill: #fff;
}


/* MENU TITLE */

.slide-menu__title {
    color: #eee;
}

/* PRODUCT BUTTON A */

.product-entry__action-btn {
    background-color: #111;
    color: #fff;
}

.product-entry__action-btn:active,
.product-entry__action-btn:focus {
    background-color: #fff;
    color: #101010;
}

.product-entry__action-btn:hover {
    background-color: #fff;
    color: #222;
}

/* REGISTRATION LINK A */
.registration_link {
    color: #061D19;
}

/* SECTION TITLE H2 */

.box-title:before {
    background-color: #061D19;
}

/* CATEGORIES LINK ITEM */

.categories_link_item:hover {
    background-color: #444;
}

/* CATEGORIES HEAD DIV */

.our-categories__head {
    background-color: transparent;
    border-bottom: 1px solid #eee;
}

.our-categories__head h3 {
  color: #222;
}

/* FAQ ITEM BAR DIV */

.faq-item__bar:before {
    background: #30daad;
}

/* FOOTER */

.page-footer {
    background: #111;
}

 .page-footer li a {
     color: #fff;
 }

 .page-footer li a:hover {
    color: #999;
 }

/* =========================================================================
   WORKINFIT NEW DESIGN — global theme applied to all pages
   Loaded last, so these override the legacy look in style.css.
   Uses the --wf-* tokens defined at the top of this file.
   ========================================================================= */

/* ---- Typography ---- */
body,
html {
  font-family: var(--wf-font);
  color: var(--wf-ink);
}
h1, h2, h3, h4, h5, h6,
.box-title,
.page-banner h1,
article.article h1, article.article h2, article.article h3,
article.article h4, article.article h5, article.article h6 {
  font-family: var(--wf-font);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--wf-ink);
}
/* kill legacy ALL-CAPS + heavy letter-spacing */
.btn, .btn--primary, .btn--outline, .btn--submit,
.page-banner h1, .box-title, .data-category,
#singInModal form input, #unsubform form input,
.modal--signin form input, .modal--unsubscribe form input {
  text-transform: none !important;
  letter-spacing: normal;
}

/* ---- Page surfaces ---- */
.page-wrapper { background: var(--wf-bg); }
.page-content { background: var(--wf-bg); }
.page-banner {
  height: auto;
  padding: 44px 24px;
  background: var(--wf-mist);
  border-bottom: 0.5px solid var(--wf-hairline);
}
.page-banner h1 {
  color: var(--wf-ink);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 30px);
}
.page-content__inner { max-width: var(--wf-maxw); }

/* ---- Content boxes / sections ---- */
.section__box {
  background: #fff;
  border: 0.5px solid var(--wf-hairline);
  border-radius: 12px;
  box-shadow: none;
}
.section__box .box-title { color: var(--wf-ink); font-weight: 500; }
.section__box .box-title svg path { fill: var(--wf-deep); }

/* ---- Product cards (carousels + category grid) ---- */
.card--v1, .card--v2, .card--v3, .card--v4 {
  background: #fff;
  border: 0.5px solid var(--wf-hairline);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.card--v1:hover, .card--v2:hover, .card--v3:hover, .card--v4:hover {
  box-shadow: none;
  border-color: var(--wf-hairline-hover);
  transform: translateY(-2px);
}
.card--v1 .item-img:hover img,
.card--v2 .item-img:hover img,
.card--v3 .item-img:hover img,
.card--v4 .item-img:hover img { opacity: 1; }
.card--v1 .item-data .data-title,
.card--v2 .item-data .data-title,
.card--v3 .item-data .data-title,
.card--v4 .item-data .data-title { color: var(--wf-ink); font-weight: 500; }
.card--v1 .item-data .data-category,
.card--v2 .item-data .data-category,
.card--v3 .item-data .data-category,
.card--v4 .item-data .data-category { color: var(--wf-muted); font-weight: 400; }

/* ---- Buttons ---- */
.btn--primary,
#singInModal .signin-btn,
.unsubscribe-btn.btn,
.btn--submit {
  background: var(--wf-accent);
  color: var(--wf-on-accent);
  border-radius: 8px;
  font-weight: 500;
  box-shadow: none;
}
.btn--primary:hover,
#singInModal .signin-btn:hover,
.btn--submit:hover { filter: brightness(0.95); color: var(--wf-on-accent); }
.btn--primary svg path,
#singInModal .signin-btn svg path,
.btn--submit svg path { fill: var(--wf-on-accent); }
.btn--outline {
  border: 0.5px solid var(--wf-hairline);
  border-radius: 8px;
  color: var(--wf-ink);
  box-shadow: none;
}
.btn--outline:hover, .btn--outline:focus, .btn--outline:active {
  background: var(--wf-ink);
  color: #fff;
}

/* ---- Access-code / phone inputs (sign-in + unsubscribe) ---- */
#singInModal form input, .modal--signin form input,
#unsubform form input, .modal--unsubscribe form input {
  font-family: var(--wf-font);
  border: 0.5px solid var(--wf-hairline);
  border-radius: 8px;
  background: var(--wf-mist);
  color: var(--wf-ink);
  font-weight: 500;
}
#singInModal form input:focus, .modal--signin form input:focus,
#unsubform form input:focus, .modal--unsubscribe form input:focus {
  outline: none;
  border-color: var(--wf-deep);
  background: #fff;
}
.registration-text a,
.registration_link { color: var(--wf-deep) !important; }
.registration-text a:hover { color: var(--wf-ink) !important; }

/* ---- Links / text accents on light content ---- */
.page-content a,
article.article a { color: var(--wf-deep); }
.page-content a:hover,
article.article a:hover { color: var(--wf-ink); }
strong { color: inherit; }

/* ---- Legacy accent recolor (yellow/teal -> lime/deep) ---- */
.page-footer__list li a:hover,
.page-footer__list--utility li a:hover { color: var(--wf-deep); }

/* ---- Cookie bar ---- */
.Cookie--portal { background: var(--wf-ink); }
.Cookie--portal .Cookie__button {
  background: var(--wf-accent);
  color: var(--wf-on-accent);
  border-radius: 8px;
}
.Cookie--portal .Cookie__button:hover { filter: brightness(0.95); background: var(--wf-accent); color: var(--wf-on-accent); }
.Cookie--portal a:hover { color: var(--wf-accent); }

/* ---- Mobile side menu: keep dark, switch accents to lime ---- */
.slide-menu a:hover,
.slide-menu .is-active a { color: var(--wf-accent); }


