:root {
  --sdnhp-glass: rgba(242, 245, 246, 0.82);
  --sdnhp-warm-glass: rgba(247, 246, 242, 0.92);
  --sdnhp-ink: #171815;
  --sdnhp-muted: #707070;
  --sdnhp-line: rgba(23, 24, 21, 0.13);
  --sdnhp-red: #d71920;
  --sdnhp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sdnhp-shadow: 0 24px 58px rgba(20, 24, 23, 0.16);
  --sdnhp-admin-offset: 0px;
  --sdnhp-desktop-top: 30px;
}

body.admin-bar {
  --sdnhp-admin-offset: 32px;
  --sdnhp-desktop-top: 62px;
}

.sdnhp,
.sdnhp * {
  box-sizing: border-box;
}

.sdnhp {
  position: relative;
  z-index: 9998;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.sdnhp button,
.sdnhp input {
  font: inherit;
}

.sdnhp a,
.sdnhp button {
  -webkit-tap-highlight-color: transparent;
}

.sdnhp-header {
  position: relative;
  z-index: 9998;
  height: 30px;
  color: var(--sdnhp-ink);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

.sdnhp-topline {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 30px;
  background: #000;
  color: #dbdbdb;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.sdnhp-topline p {
  margin: 0;
}

.sdnhp-topline a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbdbdb;
  text-decoration: none;
}

.sdnhp-topline a svg {
  width: 15px;
  height: 15px;
}

.sdnhp-shell {
  position: fixed;
  z-index: 9999;
  top: var(--sdnhp-desktop-top);
  left: 0;
  width: 100%;
  height: 94px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(120px, 1fr) minmax(0, 2fr);
  align-items: center;
  padding: 0 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: top 0.42s var(--sdnhp-ease), left 0.42s var(--sdnhp-ease), width 0.42s var(--sdnhp-ease), background-color 0.35s ease, border-radius 0.42s var(--sdnhp-ease), box-shadow 0.35s ease;
}

.sdnhp-shell.is-scrolled {
  top: calc(var(--sdnhp-admin-offset) + 20px);
  left: 30px;
  width: calc(100% - 60px);
  padding-right: 24px;
  padding-left: 24px;
  background: var(--sdnhp-glass);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  backdrop-filter: blur(24px) saturate(120%);
  border-radius: 999px;
  box-shadow: var(--sdnhp-shadow);
}

.sdnhp-shell.is-panel-open {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.sdnhp-shell.is-scrolled.is-panel-open {
  border-radius: 30px 30px 0 0;
}

.sdnhp-shell-left,
.sdnhp-actions {
  min-width: 0;
  display: flex;
  align-items: center;
}

.sdnhp-shell-left {
  justify-content: flex-start;
}

.sdnhp-actions {
  justify-content: flex-end;
  gap: 18px;
  padding-right: 10px;
}

.sdnhp-desktop-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.sdnhp-desktop-menu button,
.sdnhp-desktop-menu > a {
  min-height: 37px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 8px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sdnhp-red);
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.sdnhp-desktop-menu button:hover,
.sdnhp-desktop-menu > a:hover,
.sdnhp-desktop-menu > a:focus-visible,
.sdnhp-desktop-menu button:focus-visible,
.sdnhp-desktop-menu button[aria-expanded="true"] {
  opacity: 0.62;
}

.sdnhp-logo {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  contain: paint;
  transition: none !important;
  animation: none !important;
}

.sdnhp-logo img {
  width: 100px;
  height: auto;
  max-height: 62px;
  display: block;
  object-fit: contain;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: auto;
  will-change: transform;
  transition: none !important;
  animation: none !important;
}

.sdnhp-action {
  position: relative;
  flex: 0 0 44px;
  line-height: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #171b18;
  text-decoration: none;
  cursor: pointer;
}

.sdnhp-action svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.sdnhp-search-trigger svg {
  width: 20px;
  height: 20px;
}

.sdnhp-cart-count {
  position: absolute;
  z-index: 1;
  top: -9px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--sdnhp-ink);
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 9px;
  line-height: 16px;
}

.sdnhp-mobile-trigger {
  display: none;
}

.sdnhp-scrim {
  position: fixed;
  z-index: 9898;
  inset: 0;
  background: rgba(18, 18, 16, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.sdnhp-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sdnhp-extensions {
  --sdnhp-left: 0px;
  --sdnhp-width: 100vw;
  --sdnhp-top: 94px;
  position: fixed;
  z-index: 9899;
  left: var(--sdnhp-left);
  top: calc(var(--sdnhp-top) - 84px);
  width: var(--sdnhp-width);
  padding-top: 84px;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  color: var(--sdnhp-ink);
  background: var(--sdnhp-glass);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  backdrop-filter: blur(24px) saturate(120%);
  font-family: "DM Sans", Roboto, Arial, sans-serif;
}

.sdnhp-extensions.is-open {
  visibility: visible;
  pointer-events: auto;
}

.sdnhp-extensions.is-scrolled {
  border-radius: 30px;
  box-shadow: var(--sdnhp-shadow);
}

.sdnhp-extension-surface {
  position: relative;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-18px);
  transition: max-height 0.42s var(--sdnhp-ease), opacity 0.12s ease, transform 0.42s var(--sdnhp-ease);
}

.sdnhp-extensions.is-open .sdnhp-extension-surface {
  max-height: 430px;
  opacity: 1;
  transform: none;
}

.sdnhp-desktop-view {
  display: none;
  height: 350px;
  min-height: 350px;
}

.sdnhp-desktop-view.is-active {
  display: grid;
}

.sdnhp-products {
  grid-template-columns: minmax(0, 1.65fr) minmax(310px, 0.66fr);
}

.sdnhp-menu-copy {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 42px 3.5vw 38px;
}

.sdnhp-services-copy {
  padding-right: 4vw;
}

.sdnhp-menu-group {
  min-width: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.32s ease, transform 0.45s var(--sdnhp-ease);
}

.sdnhp-extensions.is-open .is-active .sdnhp-menu-group {
  opacity: 1;
  transform: none;
}

.sdnhp-extensions.is-open .is-active .sdnhp-menu-group:nth-child(2) { transition-delay: 0.04s; }
.sdnhp-extensions.is-open .is-active .sdnhp-menu-group:nth-child(3) { transition-delay: 0.08s; }
.sdnhp-extensions.is-open .is-active .sdnhp-menu-group:nth-child(4) { transition-delay: 0.12s; }

.sdnhp-menu-kicker,
.sdnhp-search-kicker {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sdnhp-menu-kicker {
  margin-bottom: 18px;
}

.sdnhp-menu-group a {
  width: max-content;
  max-width: 100%;
  display: block;
  margin: 0 0 12px;
  color: var(--sdnhp-ink);
  text-decoration: none;
  font-size: clamp(15px, 1.12vw, 20px);
  line-height: 1.18;
  transition: opacity 0.2s ease, transform 0.25s var(--sdnhp-ease);
}

.sdnhp-menu-group a:hover {
  opacity: 0.58;
  transform: translateX(4px);
}

.sdnhp-menu-group a.sdnhp-feature-link {
  margin-bottom: 15px;
  font-size: clamp(21px, 1.65vw, 30px);
  letter-spacing: -0.04em;
}

.sdnhp-menu-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.35s ease 0.05s, transform 0.65s var(--sdnhp-ease);
}

.sdnhp-extensions.is-open .is-active .sdnhp-menu-image {
  opacity: 1;
  transform: scale(1);
}

.sdnhp-menu-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sdnhp-menu-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 246, 242, 0.18), transparent 34%);
}

.sdnhp-menu-image span {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 22px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sdnhp-inspirations {
  grid-template-columns: 1fr;
  padding: 32px 3.5vw 34px;
}

.sdnhp-inspiration-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.sdnhp-article-card {
  color: var(--sdnhp-ink);
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.45s var(--sdnhp-ease);
}

.sdnhp-extensions.is-open .is-active .sdnhp-article-card {
  opacity: 1;
  transform: none;
}

.sdnhp-article-card img {
  width: 100%;
  height: 225px;
  display: block;
  border-radius: 2px;
  object-fit: cover;
}

.sdnhp-article-card span {
  display: block;
  margin-top: 11px;
  font-size: 14px;
  line-height: 1.25;
}

.sdnhp-mobile-drawer,
.sdnhp-cart-drawer {
  position: fixed;
  z-index: 10002;
  top: 0;
  bottom: 0;
  width: min(92vw, 410px);
  height: 100dvh;
  overflow: hidden;
  visibility: hidden;
  color: var(--sdnhp-ink);
  background: var(--sdnhp-warm-glass);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
  box-shadow: 18px 0 54px rgba(18, 18, 16, 0.18);
  font-family: "DM Sans", Roboto, Arial, sans-serif;
  transition: transform 0.46s var(--sdnhp-ease), visibility 0s 0.46s;
}

.sdnhp-mobile-drawer {
  left: 0;
  border-radius: 0 0 26px 0;
  transform: translateX(-103%);
}

.sdnhp-cart-drawer {
  right: 0;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 0 26px;
  transform: translateX(103%);
  box-shadow: -18px 0 54px rgba(18, 18, 16, 0.18);
}

.sdnhp-mobile-drawer.is-open,
.sdnhp-cart-drawer.is-open {
  transform: none;
  visibility: visible;
  transition: transform 0.46s var(--sdnhp-ease), visibility 0s;
}

.sdnhp-mobile-head,
.sdnhp-cart-head {
  height: 74px;
  flex: 0 0 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--sdnhp-line);
}

.sdnhp-mobile-head > span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sdnhp-close {
  min-width: 42px;
  min-height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.sdnhp-mobile-stage {
  position: relative;
  height: calc(100dvh - 74px);
  overflow: hidden;
}

.sdnhp-mobile-page {
  position: absolute;
  inset: 0;
  padding: 26px 20px 36px;
  overflow: auto;
  opacity: 0;
  transform: translateX(105%);
  transition: transform 0.42s var(--sdnhp-ease), opacity 0.18s ease;
}

.sdnhp-mobile-page.is-active {
  opacity: 1;
  transform: none;
}

.sdnhp-mobile-page.is-behind {
  opacity: 0;
  transform: translateX(-28%);
}

.sdnhp-mobile-languages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 8px 0 28px;
  border-bottom: 1px solid var(--sdnhp-line);
}

.sdnhp-mobile-languages a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.sdnhp-flag {
  width: 34px;
  height: 23px;
  display: inline-block;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.sdnhp-flag-pl { background: linear-gradient(#fff 0 50%, #dc143c 50%); }
.sdnhp-flag-ua { background: linear-gradient(#0057b8 0 50%, #ffd700 50%); }
.sdnhp-flag-gb {
  background: #012169 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath fill='%23012169' d='M0 0h60v30H0z'/%3E%3Cpath stroke='%23fff' stroke-width='6' d='m0 0 60 30M60 0 0 30'/%3E%3Cpath stroke='%23c8102e' stroke-width='2' d='m0 0 60 30M60 0 0 30'/%3E%3Cpath stroke='%23fff' stroke-width='10' d='M30 0v30M0 15h60'/%3E%3Cpath stroke='%23c8102e' stroke-width='6' d='M30 0v30M0 15h60'/%3E%3C/svg%3E") center / cover no-repeat;
}

.sdnhp-mobile-primary-nav {
  padding-top: 24px;
}

.sdnhp-mobile-primary-nav button,
.sdnhp-mobile-primary-nav > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--sdnhp-line);
  background: transparent;
  color: var(--sdnhp-red);
  cursor: pointer;
  font-size: clamp(28px, 8vw, 38px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}

.sdnhp-mobile-primary-nav button::after {
  content: "→";
  color: var(--sdnhp-ink);
  font-size: 24px;
  font-weight: 400;
}

.sdnhp-mobile-divider {
  height: 1px;
  margin: 24px 0 20px;
  background: var(--sdnhp-line);
}

.sdnhp-mobile-support a,
.sdnhp-mobile-subnav a,
.sdnhp-mobile-catalog a,
.sdnhp-mobile-section a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.sdnhp-mobile-support > div:first-child a {
  padding: 10px 0;
  font-size: 18px;
}

.sdnhp-mobile-support-small {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--sdnhp-line);
}

.sdnhp-mobile-support-small a {
  padding: 8px 0;
  font-size: 14px;
}

.sdnhp-mobile-page-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.sdnhp-mobile-page-title button {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.sdnhp-mobile-page-title h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.sdnhp-mobile-catalog {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--sdnhp-line);
}

.sdnhp-mobile-catalog a:first-child {
  font-size: 21px;
}

.sdnhp-mobile-catalog a,
.sdnhp-mobile-subnav a {
  padding: 9px 0;
  font-size: 16px;
}

.sdnhp-mobile-section {
  border-bottom: 1px solid var(--sdnhp-line);
}

.sdnhp-mobile-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  list-style: none;
  cursor: pointer;
  font-size: 19px;
}

.sdnhp-mobile-section summary::-webkit-details-marker { display: none; }
.sdnhp-mobile-section summary::after { content: "+"; font-size: 23px; }
.sdnhp-mobile-section[open] summary::after { content: "−"; }

.sdnhp-mobile-section > div {
  padding: 0 0 15px;
}

.sdnhp-mobile-section a {
  padding: 8px 0;
  font-size: 15px;
}

.sdnhp-modal {
  position: fixed;
  z-index: 10003;
  inset: 0;
  overflow: auto;
  background: rgba(18, 18, 16, 0.54);
  color: var(--sdnhp-ink);
  font-family: "DM Sans", Roboto, Arial, sans-serif;
}

.sdnhp-modal[hidden] {
  display: none;
}

.sdnhp-search-surface {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding: 42px 4vw 48px;
  background: rgba(247, 246, 242, 0.98);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.2);
  animation: sdnhp-search-in 0.42s var(--sdnhp-ease) both;
}

.sdnhp-search-surface > .sdnhp-close {
  position: absolute;
  top: 24px;
  right: 3vw;
}

.sdnhp-search-surface h2 {
  margin: 0 0 28px;
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.sdnhp-search-form {
  max-width: 820px;
  margin-bottom: 36px;
}

.sdnhp-search-form .dgwt-wcas-search-wrapp {
  max-width: none;
  margin: 0;
}

.sdnhp-search-fallback {
  display: flex;
  gap: 10px;
}

.sdnhp-search-fallback input[type="search"] {
  min-width: 0;
  flex: 1 1 auto;
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--sdnhp-line);
  border-radius: 2px;
  background: #fff;
}

.sdnhp-search-fallback button {
  padding: 0 24px;
  border: 0;
  background: var(--sdnhp-ink);
  color: #fff;
}

.sdnhp-search-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 5vw;
}

.sdnhp-search-layout > nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sdnhp-search-layout > nav span,
.sdnhp-search-kicker {
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sdnhp-search-layout > nav a {
  padding: 5px 0;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
}

.sdnhp-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sdnhp-popular-product {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 15px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.sdnhp-popular-product img {
  width: 92px;
  height: 116px;
  grid-row: 1 / 3;
  object-fit: contain;
  background: #fff;
}

.sdnhp-popular-product strong {
  align-self: end;
  font-size: 14px;
  font-weight: 500;
}

.sdnhp-popular-price {
  align-self: start;
  font-size: 13px;
}

.sdnhp-popular-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  padding: 3px 6px;
  background: #fff;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sdnhp-cart-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.sdnhp-cart-content {
  min-height: 0;
  flex: 1 1 auto;
  overflow: auto;
  padding: 22px 20px;
}

.sdnhp-cart-content .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sdnhp-cart-content .woocommerce-mini-cart-item {
  position: relative;
  min-height: 84px;
  padding: 0 24px 16px 74px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--sdnhp-line);
}

.sdnhp-cart-content .woocommerce-mini-cart-item img {
  position: absolute;
  left: 0;
  width: 58px;
  height: 76px;
  object-fit: contain;
}

.sdnhp-cart-content a {
  color: inherit;
  text-decoration: none;
}

.sdnhp-cart-content .remove_from_cart_button {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
}

.sdnhp-cart-content .woocommerce-mini-cart__buttons {
  display: none;
}

.sdnhp-cart-links {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--sdnhp-line);
}

.sdnhp-cart-links a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sdnhp-ink);
  color: var(--sdnhp-ink);
  text-decoration: none;
  font-size: 14px;
}

.sdnhp-cart-links a:last-child {
  background: var(--sdnhp-ink);
  color: #fff;
}

.sdnhp :focus-visible {
  outline: 2px solid #d89a16;
  outline-offset: 3px;
}

html.sdnhp-scroll-locked,
html.sdnhp-scroll-locked body {
  overflow: hidden !important;
}

@keyframes sdnhp-search-in {
  from { opacity: 0; transform: translateY(-22px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  body.admin-bar {
    --sdnhp-admin-offset: 46px;
  }

  .sdnhp-header {
    height: 0;
  }

  .sdnhp-topline,
  .sdnhp-desktop-menu,
  .sdnhp-account,
  .sdnhp-extensions {
    display: none !important;
  }

  .sdnhp-shell,
  .sdnhp-shell.is-panel-open {
    top: var(--sdnhp-admin-offset);
    left: 10px;
    width: calc(100% - 20px);
    height: 78px;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 14px;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .sdnhp-shell.is-scrolled,
  .sdnhp-shell.is-scrolled.is-panel-open {
    top: var(--sdnhp-admin-offset);
    left: 16px;
    width: calc(100% - 32px);
    height: 78px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(248, 248, 245, 0.74);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    backdrop-filter: blur(24px) saturate(140%);
    box-shadow: 0 16px 42px rgba(24, 27, 25, 0.12);
  }

  .sdnhp-mobile-trigger {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .sdnhp-mobile-trigger span {
    width: 22px;
    height: 1.5px;
    display: block;
    border-radius: 99px;
    background: var(--sdnhp-ink);
  }

  .sdnhp-logo {
    height: 58px;
  }

  .sdnhp-logo img {
    width: 92px;
    max-height: 57px;
  }

  .sdnhp-actions {
    gap: 6px;
    padding-right: 0;
  }

  .sdnhp-action,
  .sdnhp-search-trigger,
  .sdnhp-cart-trigger {
    width: 36px;
    height: 40px;
  }

  .sdnhp-search-trigger svg,
  .sdnhp-cart-trigger svg {
    width: 20px;
    height: 20px;
  }

  .sdnhp-search-layout {
    grid-template-columns: 1fr;
  }

  .sdnhp-popular-grid {
    grid-template-columns: 1fr;
  }

  .sdnhp-search-surface {
    min-height: 100dvh;
    padding: 82px 20px 36px;
  }

  .sdnhp-search-surface > .sdnhp-close {
    top: 22px;
    right: 18px;
  }

  .sdnhp-mobile-drawer {
    top: 8px;
    right: auto;
    bottom: 8px;
    left: 8px;
    width: min(86vw, 380px);
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 22px;
    background: rgba(248, 247, 244, 0.94);
    -webkit-backdrop-filter: blur(26px) saturate(135%);
    backdrop-filter: blur(26px) saturate(135%);
    box-shadow: 0 26px 72px rgba(24, 28, 25, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .sdnhp-mobile-head {
    height: 68px;
    padding: 0 18px 0 20px;
    border-bottom-color: rgba(28, 32, 29, 0.13);
  }

  .sdnhp-mobile-head > span {
    color: #303531;
    font-weight: 600;
    letter-spacing: 0.16em;
  }

  .sdnhp-mobile-head .sdnhp-close {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(31, 35, 32, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    font-size: 25px;
  }

  .sdnhp-mobile-stage {
    height: calc(100% - 68px);
  }

  .sdnhp-mobile-page {
    padding: 0 20px 26px;
    scrollbar-width: none;
  }

  .sdnhp-mobile-page::-webkit-scrollbar {
    display: none;
  }

  .sdnhp-mobile-page[data-sdnhp-mobile-page]:not([data-sdnhp-mobile-page="main"]) {
    padding-top: 20px;
  }

  .sdnhp-mobile-languages {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 21px 0 19px;
    border-bottom-color: rgba(28, 32, 29, 0.13);
  }

  .sdnhp-mobile-languages a {
    gap: 8px;
    color: #303531;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
  }

  .sdnhp-flag {
    width: 24px;
    height: 16px;
  }

  .sdnhp-mobile-primary-nav {
    padding: 18px 0 14px;
  }

  .sdnhp-mobile-primary-nav button {
    min-height: 54px;
    padding: 9px 0;
    border-bottom-color: rgba(28, 32, 29, 0.08);
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .sdnhp-mobile-primary-nav button:last-child {
    border-bottom: 0;
  }

  .sdnhp-mobile-primary-nav button::after {
    font-size: 20px;
  }

  .sdnhp-mobile-divider {
    margin: 0 0 16px;
    background: rgba(28, 32, 29, 0.13);
  }

  .sdnhp-mobile-support > div:first-child {
    padding-bottom: 12px;
  }

  .sdnhp-mobile-support > div:first-child a {
    padding: 9px 0;
    color: #303531;
    font-size: 16px;
    font-weight: 500;
  }

  .sdnhp-mobile-support-small {
    margin-top: 0;
    padding-top: 14px;
    border-top-color: rgba(28, 32, 29, 0.13);
  }

  .sdnhp-mobile-support-small a {
    padding: 7px 0;
    color: rgba(48, 53, 49, 0.76);
    font-size: 14px;
    line-height: 1.35;
  }

  .sdnhp-mobile-support-small a:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 14px 0 8px;
    border-top: 1px solid rgba(28, 32, 29, 0.13);
    color: #303531;
    font-weight: 600;
  }

  .sdnhp-mobile-support-small a:last-child::after {
    content: "→";
    font-size: 17px;
    font-weight: 400;
  }

  .sdnhp-mobile-page-title {
    min-height: 52px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(28, 32, 29, 0.13);
  }

  .sdnhp-mobile-page-title button {
    min-width: 74px;
    font-size: 14px;
  }

  .sdnhp-mobile-page-title h3 {
    font-size: 24px;
  }

  .sdnhp-mobile-catalog a:first-child {
    padding: 8px 0 19px;
    font-size: 19px;
    font-weight: 600;
  }

  .sdnhp-mobile-section summary {
    padding: 16px 0;
    font-size: 18px;
  }

  .sdnhp-mobile-section a,
  .sdnhp-mobile-subnav a {
    padding: 9px 0;
    font-size: 15px;
  }

  .sdnhp-scrim.is-open {
    background: rgba(24, 27, 25, 0.25);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .sdnhp-cart-drawer {
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(410px, calc(100vw - 24px));
    height: calc(100dvh - 24px);
    border-radius: 26px;
  }
}

@media (max-width: 782px) {
  body.admin-bar {
    --sdnhp-admin-offset: 46px;
  }
}

@media (max-width: 360px) {
  .sdnhp-mobile-languages {
    gap: 15px;
  }

  .sdnhp-mobile-languages a {
    gap: 6px;
    font-size: 12px;
  }

  .sdnhp-flag {
    width: 21px;
    height: 14px;
  }
}

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

body.admin-bar .sdnhp-mobile-drawer,
body.admin-bar .sdnhp-search-modal,
body.admin-bar .sdnhp-cart-drawer {
  top: 32px;
  height: calc(100dvh - 32px);
}

@media (max-width: 782px) {
  body.admin-bar .sdnhp-mobile-drawer,
  body.admin-bar .sdnhp-search-modal,
  body.admin-bar .sdnhp-cart-drawer {
    top: 46px;
    height: calc(100dvh - 46px);
  }
}

/* Hide the retired Elementor header embedded in page content while the native header is active. */
.sd-native-header-pilot-active .mega-header.elementor-element-751b97c {
  display: none !important;
}
