:root {
  --ss-announcement-height: 2.75rem;
}

body {
  padding-top: var(--ss-announcement-height);
}

.ss-site-header {
  width: 100%;
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
}

.ss-site-announcement {
  color: #fff;
  background: rgba(118, 7, 24, .7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  min-height: var(--ss-announcement-height);
  padding: .55rem 5%;
  display: flex;
}

.ss-site-announcement p {
  letter-spacing: .01em;
  text-align: center;
  max-width: 72rem;
  margin: 0;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.3;
}

.ss-site-header .navbar_component {
  position: relative;
  inset: auto;
}

.ss-mobile-nav-trigger,
.ss-mobile-nav-overlay,
.ss-mobile-nav-sheet {
  display: none;
}

.ss-desktop-nav-cta {
  display: inline-flex;
}

body.ss-mobile-nav-locked {
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .navbar_component[data-mobile-nav-root] {
    z-index: 1200;
  }

  .navbar_component[data-mobile-nav-root] .navbar_container {
    grid-column-gap: .75rem;
    min-height: 4rem;
    padding-top: .4rem;
    padding-bottom: .4rem;
  }

  .navbar_component[data-mobile-nav-root] .ss-desktop-nav-cta,
  .navbar_component[data-mobile-nav-root] .navbar_cta-button {
    display: none !important;
  }

  .navbar_component[data-mobile-nav-root] .navbar_logo {
    width: 8.75rem !important;
  }

  .navbar_component[data-mobile-nav-root] .navbar_menu {
    display: none !important;
  }

  .ss-mobile-nav-trigger {
    color: var(--color-scheme-1--text);
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none !important;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    display: inline-flex !important;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    line-height: 0;
    transition: color .16s ease;
  }

  .ss-mobile-nav-trigger:hover,
  .ss-mobile-nav-trigger:focus-visible {
    color: var(--color-scheme-1--brand-color);
    outline: 0;
  }

  .ss-mobile-nav-trigger-icon,
  .ss-mobile-nav-close-icon {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
  }

  .ss-mobile-nav-trigger-icon path,
  .ss-mobile-nav-close-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .ss-mobile-nav-overlay {
    background: rgba(20, 15, 17, .56);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 1201;
    display: block;
    transition: opacity .2s ease;
  }

  .ss-mobile-nav-sheet {
    color: var(--color-scheme-1--text);
    background: var(--_primitives---colors--white);
    border-left: 1px solid #eadfdd;
    box-shadow: -18px 0 45px #2d111936;
    flex-direction: column;
    width: min(24rem, calc(100vw - 1rem));
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    max-height: 100dvh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1202;
    display: flex;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform .24s cubic-bezier(.22, 1, .36, 1);
  }

  .ss-mobile-nav-overlay[hidden],
  .ss-mobile-nav-sheet[hidden] {
    display: none !important;
  }

  .navbar_component[data-mobile-nav-open] .ss-mobile-nav-overlay {
    opacity: 1;
  }

  .navbar_component[data-mobile-nav-open] .ss-mobile-nav-sheet {
    transform: translateX(0);
  }

  .ss-mobile-nav-sheet-header {
    border-bottom: 1px solid #f0e8e7;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.5rem;
    flex: none;
    padding: .875rem 1rem .875rem 1.25rem;
    display: flex;
  }

  .ss-mobile-nav-logo-link {
    align-items: center;
    min-width: 0;
    display: inline-flex;
  }

  .ss-mobile-nav-logo {
    width: min(8.5rem, 48vw);
    max-width: 100%;
    height: auto;
    display: block;
  }

  .ss-mobile-nav-close {
    color: var(--color-scheme-1--text);
    background: transparent;
    border: 1px solid transparent;
    border-radius: .65rem;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    display: inline-flex;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    line-height: 0;
  }

  .ss-mobile-nav-close:hover,
  .ss-mobile-nav-close:focus-visible {
    background: #f8eeee;
    border-color: #eadfdd;
    outline: 0;
  }

  .ss-mobile-nav-sheet-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 1.35rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .ss-mobile-nav-scroll {
    flex: 1 1 auto;
    min-height: 0;
    padding-right: .15rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .ss-mobile-nav-eyebrow {
    color: var(--color-scheme-1--brand-color);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 .9rem;
    font-size: .72rem;
    font-weight: 800;
  }

  .ss-mobile-nav-list {
    grid-row-gap: .35rem;
    display: grid;
  }

  .ss-mobile-nav-link {
    color: var(--color-scheme-1--text) !important;
    border-radius: .75rem;
    justify-content: flex-start;
    align-items: center;
    min-height: 3.15rem;
    padding: .8rem .95rem;
    font-size: 1rem !important;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    display: flex;
    transition: background-color .16s ease, color .16s ease;
  }

  .ss-mobile-nav-link::after {
    display: none;
    content: none;
  }

  .ss-mobile-nav-link:hover,
  .ss-mobile-nav-link:focus-visible,
  .ss-mobile-nav-link.is-current {
    color: var(--color-scheme-1--brand-color) !important;
    background: #fff4f3;
    outline: 0;
  }

  .ss-mobile-nav-actions {
    border-top: 1px solid #f0e8e7;
    flex: none;
    grid-row-gap: .75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    display: grid;
  }

  .ss-mobile-nav-primary,
  .ss-mobile-nav-secondary {
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: .8rem 1rem;
    font-size: .9rem !important;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    display: inline-flex;
  }

  .ss-mobile-nav-primary {
    color: #fff !important;
    background: var(--color-scheme-1--brand-color);
  }

  .ss-mobile-nav-primary:hover,
  .ss-mobile-nav-primary:focus-visible {
    background: #6f1624;
    outline: 0;
  }

  .ss-mobile-nav-secondary {
    color: var(--color-scheme-1--brand-color) !important;
    background: #fff;
    border: 1px solid #eadfdd;
  }

  .ss-mobile-nav-secondary:hover,
  .ss-mobile-nav-secondary:focus-visible {
    background: #fff4f3;
    outline: 0;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --ss-announcement-height: 3.5rem;
  }

  .ss-site-announcement {
    padding: .5rem 1rem;
  }

  .ss-site-announcement p {
    font-size: .75rem;
  }

  .navbar_component[data-mobile-nav-root] .navbar_logo {
    width: 7.5rem !important;
  }

  .ss-mobile-nav-sheet {
    width: min(23rem, calc(100vw - .75rem));
  }
}

@media screen and (max-width: 360px) {
  .navbar_component[data-mobile-nav-root] .navbar_logo {
    width: 7.15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .ss-desktop-nav-cta {
    display: inline-flex !important;
  }

  .ss-mobile-nav-trigger,
  .ss-mobile-nav-overlay,
  .ss-mobile-nav-sheet {
    display: none !important;
  }
}
