@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=Inter:wght@400;500;600&display=swap");

:root {
  --font-family-primary: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-family-stack: "Inter", ui-sans-serif, system-ui, sans-serif;
  --color-brand-chrome-gradient: linear-gradient(90deg, #0000ae 0%, #000085 30%, #00005b 55%, #000032 80%, #000008 100%);
  --color-brand-chrome: #0000ae;
  --color-text-heading: #13009a;
  --color-text-muted: rgba(27, 27, 27, 0.62);
  --color-text-on-chrome: #ffffff;
  --color-text-on-chrome-muted: rgba(255, 255, 255, 0.85);
  --color-button-primary-bg: #137f15;
  --color-button-primary-hover: #0f6a12;
  --color-button-primary-text: #ffffff;
  --color-surface-raised: #ffffff;
  --layout-max-desktop: 1280px;
  --layout-gutter: clamp(1.25rem, 3.2vw, 1.75rem);
  --header-height: 80px;
  --radius-md: 8px;
  --radius-xl: 16px;
  --touch-target-min: 44px;
}

.je-wrap,
.je-wrap * {
  box-sizing: border-box;
}

.je-container {
  width: 100%;
  max-width: var(--layout-max-desktop);
  margin: 0 auto;
  padding-left: var(--layout-gutter);
  padding-right: var(--layout-gutter);
}

.je-chrome {
  background: var(--color-brand-chrome-gradient);
  color: var(--color-text-on-chrome);
  font-family: var(--font-family-stack);
}

.je-chrome a {
  color: inherit;
}

header.header {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.je-topbar {
  background: rgba(0, 0, 8, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
}

.je-topbar .je-container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.je-topbar .btn,
.je-topbar a,
.je-topbar .input-group-text,
.je-topbar .btn-active-client {
  color: var(--color-text-on-chrome) !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.je-site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.je-site-header__bar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.je-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none !important;
  flex-shrink: 0;
}

.je-logo__mark {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #0a0f2c;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.je-logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.je-logo__text {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

.je-nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.je-nav__link,
.je-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: var(--touch-target-min);
  padding: 0 0.75rem;
  border: 0;
  background: transparent;
  color: var(--color-text-on-chrome-muted);
  font-size: 0.875rem;
  font-family: var(--font-family-stack);
  border-radius: var(--radius-md);
  text-decoration: none !important;
  cursor: pointer;
}

.je-nav__link:hover,
.je-nav__trigger:hover,
.je-nav__item.is-open .je-nav__trigger {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.je-nav__chevron {
  width: 1rem;
  height: 1rem;
  opacity: 0.75;
}

.je-nav__item {
  position: relative;
}

.je-mega {
  display: none;
  position: absolute;
  top: calc(100% - 0.1rem);
  left: 0;
  min-width: 20rem;
  max-width: min(36rem, calc(100vw - 2rem));
  padding: 1rem;
  background: #fff;
  color: #13009a;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  z-index: 80;
}

.je-nav__item.is-open .je-mega,
.je-nav__item:hover .je-mega {
  display: block;
}

.je-mega--wide {
  width: min(720px, calc(100vw - 2rem));
}

.je-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.je-mega--single .je-mega__grid {
  grid-template-columns: 1fr;
}

.je-mega__heading {
  margin: 0 0 0.4rem;
  font-family: var(--font-family-primary);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-button-primary-bg);
}

.je-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.je-mega__link {
  display: block;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none !important;
}

.je-mega__link:hover {
  background: rgba(19, 0, 154, 0.035);
  border-color: rgba(19, 0, 154, 0.16);
}

.je-mega__label {
  display: block;
  font-family: var(--font-family-primary);
  font-weight: 600;
  font-size: 0.8125rem;
  color: #13009a;
}

.je-mega__desc {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

.je-mega__footer {
  margin-top: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.je-mega__more {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-button-primary-bg) !important;
  text-decoration: none !important;
}

.je-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.je-actions__link {
  color: var(--color-text-on-chrome-muted);
  font-size: 0.875rem;
  text-decoration: none !important;
}

.je-actions__link:hover {
  color: #fff;
}

.je-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff !important;
  text-decoration: none !important;
}

.je-cart__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-button-primary-bg);
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.je-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 1.1rem;
  background: var(--color-button-primary-bg);
  color: #fff !important;
  border-radius: var(--radius-md);
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(19, 127, 21, 0.18);
}

.je-btn:hover {
  background: var(--color-button-primary-hover);
  color: #fff !important;
}

.je-mobile-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.je-menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.je-mobile {
  display: none;
  padding: 0.75rem var(--layout-gutter) 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.je-mobile.is-open {
  display: block;
}

.je-mobile__trigger,
.je-mobile__link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0.65rem 0.5rem;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  text-decoration: none !important;
  font-size: 0.9375rem;
}

.je-mobile__panel {
  display: none;
  padding: 0.15rem 0 0.5rem 0.75rem;
  margin: 0 0 0.35rem 0.5rem;
  border-left: 2px solid rgba(19, 127, 21, 0.45);
}

.je-mobile__group.is-open .je-mobile__panel {
  display: flex;
  flex-direction: column;
}

.je-mobile__sub {
  color: var(--color-text-on-chrome-muted) !important;
  font-size: 0.875rem;
  text-decoration: none !important;
  padding: 0.45rem 0.35rem;
}

.je-mobile__cta {
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .je-actions {
    display: flex;
  }

  .je-mobile-toggle .je-cart {
    display: none;
  }
}

@media (min-width: 1024px) {
  .je-nav {
    display: flex;
  }

  .je-mobile-toggle,
  .je-mobile {
    display: none !important;
  }
}

.je-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer#footer.footer.je-chrome,
footer#footer.je-footer {
  background: var(--color-brand-chrome-gradient) !important;
  color: var(--color-text-on-chrome) !important;
}

footer#footer.je-footer a,
footer#footer.je-footer p,
footer#footer.je-footer h3,
footer#footer.je-footer button,
footer#footer.je-footer .btn {
  color: inherit !important;
}

footer#footer.je-footer .je-footer__list a {
  color: rgba(255, 255, 255, 0.85) !important;
}

footer#footer.je-footer .je-footer__copyright,
footer#footer.je-footer .je-footer__legal a {
  color: rgba(255, 255, 255, 0.4) !important;
}

.je-footer__inner {
  padding: 3rem 0;
}

.je-footer__top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.je-footer__brand {
  max-width: 18rem;
}

.je-footer__copy {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.je-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  flex: 1;
}

.je-footer__col {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.je-footer__col-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--font-family-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.je-footer__heading {
  display: none;
  margin: 0 0 1rem;
  font-family: var(--font-family-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.je-footer__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 0.75rem;
}

.je-footer__col.is-open .je-footer__list {
  display: block;
}

.je-footer__list a {
  display: block;
  padding: 0.375rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  text-decoration: none !important;
}

.je-footer__list a:hover {
  color: #fff;
  padding-left: 4px;
}

.je-footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.je-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.je-footer__legal a,
.je-footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none !important;
}

.je-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.je-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.je-footer__meta .btn {
  color: rgba(255, 255, 255, 0.75) !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

@media (min-width: 640px) {
  .je-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .je-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
  }

  .je-footer__col {
    border-bottom: 0;
  }

  .je-footer__col-trigger {
    display: none;
  }

  .je-footer__heading,
  .je-footer__list,
  .je-footer__col.is-open .je-footer__list {
    display: block;
    padding: 0;
  }
}

@media (min-width: 1100px) {
  .je-footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }

  .je-footer__columns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .je-footer__inner {
    padding: 4rem 0;
  }
}

footer.footer {
  padding: 0;
}

#main-body {
  min-height: 50vh;
}

footer#footer {
  background: linear-gradient(90deg, #0000ae 0%, #000085 30%, #00005b 55%, #000032 80%, #000008 100%) !important;
  color: #ffffff !important;
}
