:root {
  --chrome-cream: #fcf5ef;
  --chrome-paper: #fffdfb;
  --chrome-wine-950: #4f1622;
  --chrome-wine-900: #5f1d2a;
  --chrome-wine-800: #762936;
  --chrome-wine-700: #8d3546;
  --chrome-gold: #cd9c43;
  --chrome-gold-soft: #ead09a;
  --chrome-ease: cubic-bezier(.17, .85, .4, 1.06);
}

.namik-site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.namik-site-header .wrap {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(18px, 4vw, 54px);
}

.namik-site-header .navbar {
  display: flex;
  min-height: 78px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 10px;
  border: 0;
  border-bottom: 1px solid rgba(234, 208, 154, .28);
  border-radius: 0 0 30px 30px / 0 0 22px 22px;
  background:
    radial-gradient(42% 150% at 12% 0%, rgba(234, 208, 154, .18), transparent 54%),
    linear-gradient(135deg, rgba(141, 53, 70, .98), rgba(95, 29, 42, .99) 56%, rgba(79, 22, 34, .98));
  box-shadow: 0 18px 42px -26px rgba(79, 22, 34, .76), inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: none;
  transition: min-height .3s ease, padding .3s ease, border-radius .3s ease, box-shadow .3s ease;
}

.namik-site-header:is(.solid, .is-scrolled) .navbar {
  min-height: 70px;
  padding-block: 8px;
  border-radius: 0 0 26px 26px / 0 0 18px 18px;
  box-shadow: 0 14px 36px -26px rgba(42, 2, 9, .82), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.namik-site-header .brand {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.namik-site-header .brand-badge {
  position: relative;
  width: 86px;
  height: 54px;
  flex: 0 0 auto;
}

.namik-site-header .brand-badge img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .18));
}
.namik-site-header .brand-badge picture { display: contents; }

.namik-site-header .mini-spark {
  position: absolute;
  top: -2px;
  left: -4px;
  width: 16px;
  color: var(--chrome-gold-soft);
}

.namik-site-header .brand .name {
  display: block;
  color: var(--chrome-cream);
  font-size: 1.12rem;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .18);
}

.namik-site-header .brand .tagline {
  display: block;
  margin-top: -2px;
  color: rgba(252, 245, 239, .64);
  font-size: .7rem;
  font-weight: 700;
}

.namik-site-header nav.links {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 2px;
}

body .namik-site-header nav.links > a {
  position: relative;
  padding: 10px 11px;
  border-radius: 14px;
  color: rgba(252, 245, 239, .86);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color .22s ease, background-color .22s ease, transform .22s var(--chrome-ease);
}

body .namik-site-header nav.links > a:hover,
body .namik-site-header nav.links > a:focus-visible {
  color: var(--chrome-gold-soft);
  background: rgba(252, 245, 239, .1);
  transform: rotate(-1deg);
}

.namik-site-header .cta-btn.desktop {
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  color: var(--chrome-wine-900);
  background: linear-gradient(135deg, var(--chrome-cream), var(--chrome-gold-soft));
  box-shadow: 0 16px 26px -18px rgba(0, 0, 0, .75);
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.namik-site-header .cta-btn.desktop:hover { color: var(--chrome-wine-900); }
.namik-site-header .cta-btn.desktop svg { width: 16px; }

.namik-site-header .header-account-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.header-cart {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(234, 208, 154, .28);
  border-radius: 14px;
  color: var(--chrome-cream);
  background: rgba(252, 245, 239, .08);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.header-cart:hover,
.header-cart:focus-visible {
  color: var(--chrome-gold-soft);
  background: rgba(252, 245, 239, .15);
  transform: translateY(-2px);
}

.header-cart > svg { width: 20px; height: 20px; }
.header-cart > span {
  position: absolute;
  top: -5px;
  left: -5px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding-inline: 4px;
  border: 2px solid var(--chrome-wine-800);
  border-radius: 999px;
  color: var(--chrome-wine-950);
  background: var(--chrome-gold-soft);
  font-size: .64rem;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.namik-site-header .shared-user-login,
.namik-site-header .shared-user-trigger {
  color: var(--chrome-cream);
}

.namik-site-header .shared-user-menu { flex: 0 0 auto; }
.namik-site-header .shared-user-dropdown { z-index: 300; }
body .namik-site-header .shared-user-dropdown a,
body .namik-site-header .shared-user-dropdown button,
body .namik-site-header .shared-user-dropdown svg { color: var(--chrome-cream); }
body .namik-site-header .shared-user-dropdown a:hover,
body .namik-site-header .shared-user-dropdown button:hover { color: var(--chrome-gold-soft); }

.public-flash-stack { position: fixed; z-index: 350; top: 94px; left: 50%; display: grid; width: min(92vw, 560px); gap: 9px; pointer-events: none; transform: translateX(-50%); }
.public-flash { display: flex; min-height: 48px; align-items: center; gap: 10px; padding: 11px 15px; border: 1px solid; border-radius: 16px 5px; background: rgba(255, 253, 251, .96); box-shadow: 0 18px 44px rgba(79, 22, 34, .16); color: var(--chrome-wine-900); font-size: .8rem; font-weight: 850; backdrop-filter: blur(12px); }
.public-flash svg { width: 19px; flex: 0 0 auto; }
.public-flash.is-success { border-color: rgba(47, 122, 81, .3); color: #285f43; }
.public-flash.is-error { border-color: rgba(141, 53, 70, .3); color: var(--chrome-wine-700); }

.namik-site-header .burger {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(234, 208, 154, .26);
  border-radius: 14px;
  background: rgba(252, 245, 239, .1);
}

.namik-site-header .burger-icon { position: relative; display: block; width: 20px; height: 14px; }
.namik-site-header .burger-icon i { position: absolute; right: 0; width: 100%; height: 2.5px; border-radius: 3px; background: var(--chrome-cream); }
.namik-site-header .burger-icon i:first-child { top: 0; }
.namik-site-header .burger-icon i.mid { top: 6px; }
.namik-site-header .burger-icon i.bot { top: 12px; }

.namik-public-menu {
  position: fixed;
  inset: 14px;
  z-index: 200;
  display: flex;
  min-height: calc(100dvh - 28px);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  overflow: auto;
  padding: 92px 26px 34px;
  border: 1px solid rgba(234, 208, 154, .26);
  border-radius: 32px;
  background: linear-gradient(165deg, rgba(101, 17, 36, .99), rgba(79, 22, 34, .99));
  box-shadow: 0 28px 70px -20px rgba(79, 22, 34, .7);
  transform: translateY(-120%);
  visibility: hidden;
  transition: transform .4s var(--chrome-ease), visibility .4s;
}

.namik-public-menu::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(55% 38% at 80% 5%, rgba(234, 208, 154, .16), transparent 60%), radial-gradient(45% 34% at 10% 95%, rgba(214, 92, 110, .18), transparent 62%);
}

.namik-public-menu:is(.open, .is-open) { transform: translateY(0); visibility: visible; }
body.is-menu-open { overflow: hidden; }

body .namik-public-menu > a {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(234, 208, 154, .16);
  color: var(--chrome-cream);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

body .namik-public-menu > a::after { content: "↙"; color: var(--chrome-gold-soft); font-size: .78rem; opacity: .72; }
.namik-public-menu .close-menu { position: absolute; top: 22px; left: 22px; z-index: 2; display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(234, 208, 154, .25); border-radius: 18px; color: var(--chrome-gold-soft); background: rgba(255, 255, 255, .06); }
.namik-public-menu .close-menu svg { width: 23px; }

.namik-site-footer {
  position: relative;
  padding: 80px 0 26px;
  color: rgba(252, 245, 239, .75);
  background: var(--chrome-wine-950);
}

.namik-site-footer .wrap { position: relative; width: min(1260px, calc(100% - 52px)); margin-inline: auto; }
.namik-site-footer .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; border-bottom: 2px dashed rgba(234, 208, 154, .18); }
.namik-site-footer .brand { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.namik-site-footer .footer-brand .brand-badge { width: 150px; height: 116px; flex: 0 0 auto; }
.namik-site-footer .footer-brand .brand-badge img { width: 100%; height: 100%; border: 0; border-radius: 0; object-fit: contain; background: transparent; box-shadow: none; filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .24)); }
.namik-site-footer .footer-brand .name { color: var(--chrome-cream); font-size: 1.12rem; font-weight: 900; }
.namik-site-footer .footer-brand p { max-width: 280px; margin: 16px 0 0; color: rgba(252, 245, 239, .6); font-size: .86rem; line-height: 1.9; }
.namik-site-footer .footer-social { display: flex; gap: 10px; margin-top: 22px; }
.namik-site-footer .footer-social a { display: grid; width: 38px; height: 38px; place-items: center; border: 1.5px dashed rgba(234, 208, 154, .35); border-radius: 50%; color: var(--chrome-gold-soft); transition: color .2s ease, background-color .2s ease; }
.namik-site-footer .footer-social a:hover { border-style: solid; border-color: var(--chrome-gold); color: var(--chrome-wine-950); background: var(--chrome-gold); }
.namik-site-footer .footer-social svg { width: 16px; }
.namik-site-footer h5 { margin: 0 0 20px; color: var(--chrome-cream); font-size: 1.12rem; font-weight: 700; }
.namik-site-footer ul { margin: 0; padding: 0; list-style: none; }
.namik-site-footer .flinks li { margin-bottom: 12px; }
.namik-site-footer .flinks a { color: inherit; font-size: .86rem; text-decoration: none; transition: color .2s ease, padding .2s ease; }
.namik-site-footer .flinks a:hover { padding-inline-start: 4px; color: var(--chrome-gold-soft); }
.namik-site-footer .footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; font-size: .84rem; }
.namik-site-footer .footer-contact svg { width: 18px; flex: 0 0 auto; color: var(--chrome-gold-soft); }
.namik-site-footer .copyright { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 26px; color: rgba(252, 245, 239, .45); font-size: .76rem; }
.namik-site-footer .copyright a { color: var(--chrome-gold-soft); text-decoration: none; }

@media (max-width: 1260px) {
  .namik-site-header .cta-btn.desktop { display: none; }
  body .namik-site-header nav.links > a { padding-inline: 9px; font-size: .78rem; }
}

@media (max-width: 991.98px) {
  .namik-site-header .navbar { min-height: 74px; justify-content: center; }
  .namik-site-header nav.links,
  .namik-site-header .cta-btn.desktop,
  .namik-site-header .shared-user-menu,
  .namik-site-header .shared-user-login { display: none; }
  .namik-site-header .navbar > .brand { position: absolute; right: 50%; transform: translateX(50%); }
  .namik-site-header .navbar > .brand > span:last-child { display: none; }
  .namik-site-header .burger { position: absolute; right: 18px; display: flex; }
  .namik-site-header .header-account-actions { position: absolute; left: 72px; }
  .namik-site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .public-flash-stack { top: 84px; }
  .namik-site-header .wrap { padding-inline: 18px; }
  .namik-site-header .brand-badge { width: 78px; height: 50px; }
  .namik-site-header .brand-badge img { object-fit: contain; filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .16)); }
  .namik-site-footer .footer-brand .brand-badge { width: 138px; height: 106px; }
  .namik-site-footer .wrap { width: min(100% - 28px, 1260px); }
  .namik-site-footer .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .namik-site-footer .footer-links-col,
  .namik-site-footer .footer-services-col { display: none; }
  .namik-site-footer .footer-brand,
  .namik-site-footer .footer-contact,
  .namik-site-footer .copyright { justify-items: center; text-align: center; }
  .namik-site-footer .footer-brand .brand,
  .namik-site-footer .footer-social { justify-content: center; }
  .namik-site-footer .footer-brand p { margin-inline: auto; }
  .namik-site-footer .footer-contact li,
  .namik-site-footer .copyright { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .namik-site-header *,
  .namik-site-footer *,
  .namik-public-menu { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
