/* Lakefront Designs global site shell 2.2.1 — header and footer only. */

body.lfd-global-shell-active {
  --lfd-shell-navy: #07334a;
  --lfd-shell-deep-navy: #03263a;
  --lfd-shell-blue: #0f5875;
  --lfd-shell-pale-blue: #eef8fb;
  --lfd-shell-text: #173542;
  --lfd-shell-muted: #667b84;
  --lfd-shell-border: #dce6e9;
  --lfd-shell-white: #ffffff;
}

.lfd-global-shell-active .lfd-global-header,
.lfd-global-shell-active .lfd-global-header *,
.lfd-global-shell-active .lfd-global-header *::before,
.lfd-global-shell-active .lfd-global-header *::after,
.lfd-global-shell-active .lfd-global-footer,
.lfd-global-shell-active .lfd-global-footer *,
.lfd-global-shell-active .lfd-global-footer *::before,
.lfd-global-shell-active .lfd-global-footer *::after {
  box-sizing: border-box;
}

.lfd-global-shell-active .lfd-global-container {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 24px;
}

.lfd-global-shell-active .lfd-global-sr-only,
.lfd-global-shell-active .lfd-global-skip-link:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.lfd-global-shell-active .lfd-global-skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100000;
  border-radius: 4px;
  padding: 11px 15px;
  background: var(--lfd-shell-white);
  color: var(--lfd-shell-deep-navy);
  box-shadow: 0 6px 22px rgba(3, 38, 58, 0.24);
  font: 700 14px/1.2 Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.admin-bar.lfd-global-shell-active .lfd-global-skip-link:focus {
  top: 42px;
}

.lfd-global-shell-active :is(.lfd-global-header, .lfd-global-footer) :is(a, button, input):focus-visible {
  outline: 3px solid #e1b55d;
  outline-offset: 3px;
}

/* Header */
.lfd-global-shell-active .lfd-global-header {
  position: relative;
  z-index: 100;
  min-height: 82px;
  border-bottom: 1px solid rgba(7, 51, 74, 0.08);
  background: var(--lfd-shell-white);
  color: var(--lfd-shell-navy);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.lfd-global-shell-active .lfd-global-header__inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.lfd-global-shell-active .lfd-global-brand {
  display: inline-flex;
  width: 176px;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.lfd-global-shell-active .lfd-global-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}

.lfd-global-shell-active .lfd-global-primary-nav {
  min-width: 0;
}

.lfd-global-shell-active .lfd-global-menu,
.lfd-global-shell-active .lfd-global-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lfd-global-shell-active .lfd-global-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.lfd-global-shell-active .lfd-global-menu > li {
  position: relative;
  margin: 0;
}

.lfd-global-shell-active .lfd-global-menu a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--lfd-shell-navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.lfd-global-shell-active .lfd-global-menu > li > a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lfd-shell-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.lfd-global-shell-active .lfd-global-menu > li:hover > a::after,
.lfd-global-shell-active .lfd-global-menu > li:focus-within > a::after,
.lfd-global-shell-active .lfd-global-menu > .current-menu-item > a::after,
.lfd-global-shell-active .lfd-global-menu > .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.lfd-global-shell-active .lfd-global-menu .sub-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: -18px;
  z-index: 120;
  display: none;
  min-width: 220px;
  border: 1px solid var(--lfd-shell-border);
  border-radius: 7px;
  padding: 8px;
  background: var(--lfd-shell-white);
  box-shadow: 0 16px 34px rgba(3, 38, 58, 0.14);
}

.lfd-global-shell-active .lfd-global-menu li:hover > .sub-menu,
.lfd-global-shell-active .lfd-global-menu li:focus-within > .sub-menu {
  display: block;
}

.lfd-global-shell-active .lfd-global-menu .sub-menu .sub-menu {
  top: -9px;
  left: calc(100% + 8px);
}

.lfd-global-shell-active .lfd-global-menu .sub-menu a {
  display: flex;
  min-height: 42px;
  border-radius: 4px;
  padding: 9px 12px;
  white-space: normal;
}

.lfd-global-shell-active .lfd-global-menu .sub-menu a:hover,
.lfd-global-shell-active .lfd-global-menu .sub-menu a:focus-visible {
  background: var(--lfd-shell-pale-blue);
}

.lfd-global-shell-active .lfd-global-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.lfd-global-shell-active .lfd-global-search {
  display: flex;
  width: clamp(210px, 19vw, 300px);
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--lfd-shell-border);
  border-radius: 999px;
  background: var(--lfd-shell-white);
}

.lfd-global-shell-active .lfd-global-search input[type="search"] {
  min-width: 0;
  min-height: 40px;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 9px 6px 9px 16px;
  background: transparent;
  color: var(--lfd-shell-text);
  opacity: 1;
  font: 400 12px/1.2 Inter, Arial, Helvetica, sans-serif;
}

.lfd-global-shell-active .lfd-global-search input[type="search"]::placeholder {
  color: #8a9aa1;
  opacity: 1;
}

.lfd-global-shell-active .lfd-global-search button,
.lfd-global-shell-active .lfd-global-cart-link,
.lfd-global-shell-active .lfd-global-menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 4px;
  padding: 0;
  background: transparent;
  color: var(--lfd-shell-navy);
  cursor: pointer;
  text-decoration: none;
}

.lfd-global-shell-active .lfd-global-search button {
  width: 42px;
}

.lfd-global-shell-active :is(.lfd-global-search button, .lfd-global-cart-link, .lfd-global-menu-toggle) svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lfd-global-shell-active .lfd-global-cart-link {
  position: relative;
}

.lfd-global-shell-active .lfd-global-cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid var(--lfd-shell-white);
  border-radius: 999px;
  padding-inline: 3px;
  background: var(--lfd-shell-blue);
  color: var(--lfd-shell-white);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.lfd-global-shell-active .lfd-global-menu-toggle {
  display: none;
}

.lfd-global-shell-active .lfd-global-menu-toggle__close {
  display: none;
}

/* Footer */
.lfd-global-shell-active .lfd-global-footer {
  clear: both;
  background: var(--lfd-shell-deep-navy);
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.lfd-global-shell-active .lfd-global-footer a {
  color: inherit;
  text-decoration: none;
}

.lfd-global-shell-active .lfd-global-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.9fr 1.5fr;
  gap: 42px;
  padding-top: 42px;
  padding-bottom: 30px;
}

.lfd-global-shell-active .lfd-global-footer-logo {
  display: block;
  width: 180px;
  min-height: 44px;
  filter: brightness(0) invert(1);
}

.lfd-global-shell-active .lfd-global-footer-logo .lfd-global-logo-image {
  width: 100%;
  max-height: 64px;
}

.lfd-global-shell-active .lfd-global-footer-brand > p {
  margin: 16px 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.55;
}

.lfd-global-shell-active .lfd-global-socials {
  display: flex;
  gap: 8px;
}

.lfd-global-shell-active .lfd-global-socials a,
.lfd-global-shell-active .lfd-global-socials span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.lfd-global-shell-active .lfd-global-socials .is-placeholder {
  opacity: 0.45;
}

.lfd-global-shell-active .lfd-global-socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.lfd-global-shell-active .lfd-global-footer-column,
.lfd-global-shell-active .lfd-global-footer-newsletter {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.lfd-global-shell-active .lfd-global-footer :is(.lfd-global-footer-column, .lfd-global-footer-newsletter) > h2 {
  margin: 0 0 15px;
  color: var(--lfd-shell-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lfd-global-shell-active .lfd-global-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lfd-global-shell-active .lfd-global-footer-menu li {
  margin: 0;
}

.lfd-global-shell-active .lfd-global-footer-menu a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.35;
}

.lfd-global-shell-active .lfd-global-footer-menu a:hover,
.lfd-global-shell-active .lfd-global-footer-menu a:focus-visible {
  color: var(--lfd-shell-white);
}

.lfd-global-shell-active .lfd-global-footer-menu .sub-menu {
  margin: 0 0 4px 12px;
  padding: 0;
  list-style: none;
}

.lfd-global-shell-active .lfd-global-footer-newsletter > p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.5;
}

.lfd-global-shell-active .lfd-global-newsletter-shortcode {
  width: 100%;
}

.lfd-global-shell-active .lfd-global-newsletter-placeholder {
  display: flex;
  width: 100%;
  min-height: 42px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--lfd-shell-white);
}

.lfd-global-shell-active .lfd-global-newsletter-placeholder input[type="email"] {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 10px 12px;
  background: var(--lfd-shell-white);
  color: #7f9098;
  opacity: 1;
  font: 400 10px/1.3 Inter, Arial, Helvetica, sans-serif;
}

.lfd-global-shell-active .lfd-global-newsletter-placeholder button {
  width: 44px;
  border: 0;
  background: #eef3f5;
  color: var(--lfd-shell-blue);
}

.lfd-global-shell-active .lfd-global-footer-bottom {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 9px;
}

.lfd-global-shell-active .lfd-global-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.lfd-global-shell-active .lfd-global-footer-bottom nav {
  display: flex;
  gap: 20px;
}

.lfd-global-shell-active .lfd-global-footer-bottom a:hover,
.lfd-global-shell-active .lfd-global-footer-bottom a:focus-visible {
  color: var(--lfd-shell-white);
}

@media (max-width: 1180px) {
  .lfd-global-shell-active .lfd-global-header__inner {
    grid-template-columns: 176px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .lfd-global-shell-active .lfd-global-menu {
    gap: 18px;
  }

  .lfd-global-shell-active .lfd-global-search {
    width: 220px;
  }

  .lfd-global-shell-active .lfd-global-footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.8fr) 1.35fr;
    gap: 28px;
  }
}

@media (max-width: 1024px) {
  .lfd-global-shell-active .lfd-global-header,
  .lfd-global-shell-active .lfd-global-header__inner {
    min-height: 76px;
  }

  .lfd-global-shell-active .lfd-global-header__inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .lfd-global-shell-active .lfd-global-brand {
    width: 164px;
  }

  .lfd-global-shell-active .lfd-global-search {
    display: none;
  }

  .lfd-global-shell-active .lfd-global-menu-toggle {
    display: inline-grid;
  }

  .lfd-global-shell-active .lfd-global-primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 130;
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    border-top: 1px solid var(--lfd-shell-border);
    padding: 10px 24px 18px;
    background: var(--lfd-shell-white);
    box-shadow: 0 18px 30px rgba(3, 38, 58, 0.14);
  }

  .lfd-global-shell-active .lfd-global-header.is-menu-open .lfd-global-primary-nav {
    display: block;
  }

  .lfd-global-shell-active .lfd-global-header.is-menu-open .lfd-global-menu-toggle__open {
    display: none;
  }

  .lfd-global-shell-active .lfd-global-header.is-menu-open .lfd-global-menu-toggle__close {
    display: inline;
  }

  .lfd-global-shell-active .lfd-global-menu {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .lfd-global-shell-active .lfd-global-menu > li > a {
    width: 100%;
    min-height: 48px;
    border-bottom: 1px solid var(--lfd-shell-border);
  }

  .lfd-global-shell-active .lfd-global-menu > li:last-child > a {
    border-bottom: 0;
  }

  .lfd-global-shell-active .lfd-global-menu > li > a::after {
    display: none;
  }

  .lfd-global-shell-active .lfd-global-menu .sub-menu,
  .lfd-global-shell-active .lfd-global-menu .sub-menu .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    border: 0;
    padding: 0 0 4px 16px;
    background: transparent;
    box-shadow: none;
  }

  .lfd-global-shell-active .lfd-global-menu .sub-menu a {
    min-height: 44px;
    border-radius: 0;
    padding: 8px 10px;
    color: var(--lfd-shell-muted);
  }

  .lfd-global-shell-active.lfd-global-menu-open {
    overflow: hidden;
  }

  .lfd-global-shell-active .lfd-global-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lfd-global-shell-active .lfd-global-footer-brand,
  .lfd-global-shell-active .lfd-global-footer-newsletter {
    grid-column: span 3;
  }

  .lfd-global-shell-active .lfd-global-footer-brand {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    gap: 20px 30px;
  }

  .lfd-global-shell-active .lfd-global-footer-brand > p {
    margin: 0;
  }

  .lfd-global-shell-active .lfd-global-socials {
    grid-column: 1 / -1;
  }

  .lfd-global-shell-active .lfd-global-footer-newsletter {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .lfd-global-shell-active .lfd-global-container {
    padding-inline: 20px;
  }

  .lfd-global-shell-active .lfd-global-header-actions {
    gap: 4px;
  }

  .lfd-global-shell-active .lfd-global-brand {
    width: 148px;
  }

  .lfd-global-shell-active .lfd-global-primary-nav {
    padding-inline: 20px;
  }

  .lfd-global-shell-active .lfd-global-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .lfd-global-shell-active .lfd-global-footer-brand,
  .lfd-global-shell-active .lfd-global-footer-newsletter {
    grid-column: span 2;
  }

  .lfd-global-shell-active .lfd-global-footer-brand {
    display: block;
  }

  .lfd-global-shell-active .lfd-global-footer-brand > p {
    margin: 16px 0 14px;
  }

  .lfd-global-shell-active .lfd-global-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 16px;
  }
}

@media (max-width: 420px) {
  .lfd-global-shell-active .lfd-global-brand {
    width: 138px;
  }

  .lfd-global-shell-active .lfd-global-footer-grid {
    grid-template-columns: 1fr;
  }

  .lfd-global-shell-active .lfd-global-footer-brand,
  .lfd-global-shell-active .lfd-global-footer-newsletter {
    grid-column: auto;
  }

  .lfd-global-shell-active .lfd-global-footer-bottom nav {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lfd-global-shell-active .lfd-global-header *,
  .lfd-global-shell-active .lfd-global-header *::before,
  .lfd-global-shell-active .lfd-global-header *::after,
  .lfd-global-shell-active .lfd-global-footer *,
  .lfd-global-shell-active .lfd-global-footer *::before,
  .lfd-global-shell-active .lfd-global-footer *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .lfd-global-shell-active .lfd-global-header,
  .lfd-global-shell-active .lfd-global-footer,
  .lfd-global-shell-active .lfd-global-skip-link {
    display: none !important;
  }
}
