/* DFS Catalog — Header System v0.3.2
 * Visual source of truth: approved header proposal supplied 2026-09-01.
 */

.dfs-site-header {
  position: relative;
  z-index: var(--dfs-z-sticky);
  flex: 0 0 auto;
  background: var(--dfs-color-surface);
  box-shadow: 0 8px 28px rgb(11 15 23 / 7%);
  transition: box-shadow var(--dfs-transition-base), background-color var(--dfs-transition-base);
}

.dfs-site-header[data-sticky="true"] {
  position: sticky;
  top: 0;
}

.admin-bar .dfs-site-header[data-sticky="true"] {
  top: 32px;
}

.dfs-header__inner {
  position: relative;
  display: grid;
  min-height: 86px;
  grid-template-columns: minmax(154px, 205px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  background: var(--dfs-color-surface);
  transition: min-height var(--dfs-transition-base);
}

.dfs-site-header.is-scrolled {
  box-shadow: 0 10px 34px rgb(11 15 23 / 11%);
}

.dfs-site-header.is-scrolled .dfs-header__inner {
  min-height: 76px;
}

.dfs-site-header.is-scrolled .dfs-header__inner::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--dfs-color-brand);
  content: "";
}

.dfs-header__brand,
.dfs-mobile-drawer__brand {
  min-width: 0;
}

.dfs-header__brand .custom-logo-link,
.dfs-mobile-drawer__brand .custom-logo-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
}

.dfs-header__brand .custom-logo {
  display: block;
  width: auto;
  max-width: min(100%, 178px);
  max-height: 52px;
}

.dfs-header__brand .dfs-branding__fallback {
  display: inline-block;
  max-width: 180px;
  color: var(--dfs-color-ink);
  font-size: 0.92rem;
  font-weight: var(--dfs-weight-extrabold);
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-transform: uppercase;
}

.dfs-header__desktop-nav {
  display: flex;
  min-width: 0;
  height: 100%;
  justify-content: center;
}

.dfs-desktop-menu,
.dfs-desktop-submenu,
.dfs-mobile-menu,
.dfs-mobile-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dfs-desktop-menu {
  display: flex;
  min-width: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.35vw, 24px);
}

.dfs-desktop-menu__item {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.dfs-desktop-menu__link {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 5px;
  color: #111318;
  font-size: clamp(0.79rem, 0.3vw + 0.58rem, 0.92rem);
  font-weight: var(--dfs-weight-semibold);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dfs-transition-fast);
}

.dfs-desktop-menu__link:visited {
  color: #111318;
}

.dfs-desktop-menu__link::after {
  position: absolute;
  right: 0;
  bottom: -17px;
  left: 0;
  height: 3px;
  border-radius: var(--dfs-radius-pill) var(--dfs-radius-pill) 0 0;
  background: var(--dfs-color-brand);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity var(--dfs-transition-fast), transform var(--dfs-transition-fast);
}

.dfs-site-header.is-scrolled .dfs-desktop-menu__link::after {
  bottom: -12px;
}

.dfs-desktop-menu__item:hover > .dfs-desktop-menu__link,
.dfs-desktop-menu__item:focus-within > .dfs-desktop-menu__link,
.dfs-desktop-menu__item.is-current > .dfs-desktop-menu__link,
.dfs-desktop-menu__link[aria-current="page"] {
  color: var(--dfs-color-brand-active);
}

.dfs-desktop-menu__item:hover > .dfs-desktop-menu__link::after,
.dfs-desktop-menu__item:focus-within > .dfs-desktop-menu__link::after,
.dfs-desktop-menu__item.is-current > .dfs-desktop-menu__link::after,
.dfs-desktop-menu__link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.dfs-desktop-menu__chevron,
.dfs-desktop-submenu__arrow {
  display: inline-flex;
  flex: 0 0 auto;
  transition: transform var(--dfs-transition-fast);
}

.dfs-desktop-menu__chevron svg {
  width: 14px;
  height: 14px;
}

.dfs-desktop-submenu__arrow {
  margin-left: auto;
  opacity: 0.55;
}

.dfs-desktop-submenu__arrow svg {
  width: 15px;
  height: 15px;
}

.dfs-desktop-menu__item:hover > .dfs-desktop-menu__link .dfs-desktop-menu__chevron,
.dfs-desktop-menu__item:focus-within > .dfs-desktop-menu__link .dfs-desktop-menu__chevron {
  transform: rotate(180deg);
}

.dfs-desktop-submenu {
  position: absolute;
  z-index: var(--dfs-z-dropdown);
  top: calc(100% - 4px);
  left: 50%;
  width: max-content;
  min-width: 255px;
  max-width: min(350px, 88vw);
  padding: 9px;
  border: 1px solid rgb(17 24 39 / 9%);
  border-radius: 9px;
  background: var(--dfs-color-surface);
  box-shadow: 0 12px 30px rgb(10 20 43 / 16%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 9px);
  transition: opacity var(--dfs-transition-fast), transform var(--dfs-transition-fast);
}

.dfs-desktop-menu__item:hover > .dfs-desktop-submenu,
.dfs-desktop-menu__item:focus-within > .dfs-desktop-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dfs-desktop-submenu li {
  position: relative;
}

.dfs-desktop-submenu li + li {
  margin-top: 1px;
}

.dfs-desktop-submenu a {
  display: grid;
  min-height: 43px;
  grid-template-columns: 24px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #252b35;
  font-size: 0.8rem;
  font-weight: var(--dfs-weight-medium);
  line-height: 1.3;
  text-decoration: none;
  transition: background-color var(--dfs-transition-fast), color var(--dfs-transition-fast);
}

.dfs-desktop-submenu__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #4b5565;
}

.dfs-desktop-submenu__icon svg {
  width: 18px;
  height: 18px;
}

.dfs-desktop-submenu a:hover,
.dfs-desktop-submenu a:focus-visible,
.dfs-desktop-submenu .current-menu-item > a {
  background: #f5f7fb;
  color: var(--dfs-color-brand-active);
}

.dfs-desktop-submenu a:hover .dfs-desktop-submenu__icon,
.dfs-desktop-submenu a:focus-visible .dfs-desktop-submenu__icon,
.dfs-desktop-submenu .current-menu-item > a .dfs-desktop-submenu__icon {
  color: var(--dfs-color-brand);
}

.dfs-desktop-submenu__all {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid var(--dfs-color-border);
}

.dfs-desktop-submenu .dfs-desktop-submenu {
  top: -9px;
  left: calc(100% + 9px);
  transform: translateY(8px);
}

.dfs-desktop-submenu li:hover > .dfs-desktop-submenu,
.dfs-desktop-submenu li:focus-within > .dfs-desktop-submenu {
  transform: translateY(0);
}

.dfs-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.dfs-header-action {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--dfs-radius-pill);
  background: transparent;
  color: #111318;
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
  transition: background-color var(--dfs-transition-fast), color var(--dfs-transition-fast), transform var(--dfs-transition-fast);
}

.dfs-header-action:visited {
  color: #111318;
}

.dfs-header-action:hover,
.dfs-header-action[aria-expanded="true"] {
  background: #f3f6fb;
  color: var(--dfs-color-brand-active);
}

.dfs-header-action:active {
  transform: scale(0.96);
}

.dfs-header-action svg {
  width: 21px;
  height: 21px;
}

.dfs-header__action-divider {
  display: block;
  width: 1px;
  height: 25px;
  margin: 0 3px;
  background: #d8dde6;
}

.dfs-header-whatsapp {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: 6px;
  padding: 0 17px;
  border-radius: 8px;
  background: linear-gradient(135deg, #074fdc, #073dbe);
  box-shadow: 0 6px 15px rgb(6 77 227 / 20%);
  color: var(--dfs-color-surface);
  font-size: 0.8rem;
  font-weight: var(--dfs-weight-bold);
  line-height: 1;
  text-decoration: none;
  transition: box-shadow var(--dfs-transition-fast), transform var(--dfs-transition-fast), filter var(--dfs-transition-fast);
}

.dfs-header-whatsapp:visited,
.dfs-header-whatsapp:hover {
  color: var(--dfs-color-surface);
}

.dfs-header-whatsapp:hover {
  box-shadow: 0 8px 20px rgb(6 77 227 / 28%);
  filter: brightness(1.045);
  transform: translateY(-1px);
}

.dfs-header-whatsapp:active {
  transform: translateY(0);
}

.dfs-header-whatsapp svg {
  width: 18px;
  height: 18px;
}

.dfs-header__menu-toggle,
.dfs-header-action--mobile-search {
  display: none;
}

/* Desktop search tray. */
.dfs-header-search {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid var(--dfs-color-border);
  border-bottom: 1px solid var(--dfs-color-border);
  background: rgb(255 255 255 / 98%);
  box-shadow: 0 18px 34px rgb(16 24 40 / 10%);
  backdrop-filter: blur(12px);
}

.dfs-header-search__inner {
  display: grid;
  min-height: 104px;
  grid-template-columns: minmax(175px, 0.65fr) minmax(320px, 1.4fr) 44px;
  align-items: center;
  gap: 26px;
}

.dfs-header-search__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dfs-header-search__copy strong {
  color: var(--dfs-color-ink);
  font-size: var(--dfs-text-base);
}

.dfs-header-search__copy span {
  color: var(--dfs-color-muted);
  font-size: var(--dfs-text-sm);
}

.dfs-header-search__form-wrap {
  min-width: 0;
}

.dfs-header-search__close,
.dfs-mobile-drawer__close {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--dfs-radius-pill);
  cursor: pointer;
  touch-action: manipulation;
}

.dfs-header-search__close {
  background: var(--dfs-color-canvas);
  color: var(--dfs-color-ink);
}

.dfs-header-search__close:hover {
  background: var(--dfs-color-brand-tint);
  color: var(--dfs-color-brand-active);
}

.dfs-header-search__close svg,
.dfs-mobile-drawer__close svg {
  width: 21px;
  height: 21px;
}

/* Full-screen mobile navigation — approved dark performance direction. */
.dfs-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--dfs-z-modal);
  width: 100vw;
  min-height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 78% 14%, rgb(10 71 171 / 26%), transparent 34%),
    linear-gradient(155deg, #0a285b 0%, #071f49 44%, #061736 100%);
  color: #fff;
  animation: dfs-mobile-menu-in 220ms ease both;
}

@keyframes dfs-mobile-menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dfs-mobile-drawer__inner {
  display: flex;
  width: min(100%, 760px);
  min-height: 100dvh;
  margin-inline: auto;
  flex-direction: column;
  padding: max(7px, env(safe-area-inset-top)) clamp(20px, 5vw, 32px) max(22px, env(safe-area-inset-bottom));
}

.dfs-mobile-drawer__topbar {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dfs-mobile-drawer__brand .custom-logo {
  display: block;
  width: auto;
  max-width: 165px;
  max-height: 46px;
  filter: brightness(0) invert(1);
}

.dfs-mobile-drawer__brand .dfs-branding__fallback {
  color: #fff;
  font-size: 0.88rem;
  font-weight: var(--dfs-weight-extrabold);
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

.dfs-mobile-drawer__close {
  background: transparent;
  color: #fff;
}

.dfs-mobile-drawer__close:hover,
.dfs-mobile-drawer__close:focus-visible {
  background: rgb(255 255 255 / 9%);
}

.dfs-mobile-drawer__close svg {
  width: 26px;
  height: 26px;
}

.dfs-mobile-drawer__search {
  padding: 10px 0 10px;
}

.dfs-mobile-drawer__search .dfs-search-field {
  min-height: 46px;
  border-color: rgb(255 255 255 / 28%);
  border-radius: 9px;
  background: rgb(255 255 255 / 4%);
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 5%);
  color: #fff;
  font-size: 16px;
}

.dfs-mobile-drawer__search .dfs-search-field::placeholder {
  color: rgb(255 255 255 / 67%);
}

.dfs-mobile-drawer__search .dfs-search-field:focus {
  border-color: rgb(255 255 255 / 65%);
  box-shadow: 0 0 0 3px rgb(255 255 255 / 10%);
}

.dfs-mobile-drawer__search .dfs-search-control__action {
  color: #fff;
}

.dfs-mobile-drawer__nav {
  min-width: 0;
  padding-top: 4px;
}

.dfs-mobile-menu__item {
  border: 0;
}

.dfs-mobile-menu__row {
  display: grid;
  min-height: 49px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.dfs-mobile-menu__link {
  display: flex;
  min-width: 0;
  min-height: 49px;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  border-radius: 7px;
  color: #fff;
  font-size: clamp(1rem, 4vw, 1.14rem);
  font-weight: var(--dfs-weight-bold);
  line-height: 1.15;
  text-decoration: none;
  transition: color var(--dfs-transition-fast), transform var(--dfs-transition-fast);
}

.dfs-mobile-menu__link:visited {
  color: #fff;
}

.dfs-mobile-menu__link:hover,
.dfs-mobile-menu__link:focus-visible,
.dfs-mobile-menu__item.is-current > .dfs-mobile-menu__row > .dfs-mobile-menu__link,
.dfs-mobile-menu__link[aria-current="page"] {
  background: rgb(255 255 255 / 6%);
  color: #fff;
}

.dfs-mobile-menu__link:active {
  transform: translateX(2px);
}

.dfs-mobile-menu__link-arrow {
  display: inline-flex;
  margin-left: auto;
  opacity: 0.82;
}

.dfs-mobile-menu__link-arrow svg {
  width: 18px;
  height: 18px;
}

span.dfs-mobile-menu__link {
  cursor: default;
}

.dfs-mobile-menu__submenu-toggle {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--dfs-radius-pill);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color var(--dfs-transition-fast), transform var(--dfs-transition-fast);
}

.dfs-mobile-menu__submenu-toggle:hover,
.dfs-mobile-menu__submenu-toggle:focus-visible,
.dfs-mobile-menu__submenu-toggle[aria-expanded="true"] {
  background: rgb(255 255 255 / 9%);
}

.dfs-mobile-menu__submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.dfs-mobile-menu__submenu-toggle svg {
  width: 19px;
  height: 19px;
  transition: transform var(--dfs-transition-fast);
}

.dfs-mobile-submenu {
  padding: 2px 0 8px 14px;
}

.dfs-mobile-submenu li + li {
  margin-top: 2px;
}

.dfs-mobile-submenu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 7px 11px;
  border-left: 1px solid rgb(255 255 255 / 22%);
  color: rgb(255 255 255 / 80%);
  font-size: 0.91rem;
  font-weight: var(--dfs-weight-medium);
  line-height: 1.3;
  text-decoration: none;
}

.dfs-mobile-submenu a:hover,
.dfs-mobile-submenu a:focus-visible,
.dfs-mobile-submenu .current-menu-item > a {
  border-left-color: #5e8dff;
  color: #fff;
}

.dfs-mobile-drawer__categories {
  margin-top: 13px;
  padding: 17px 0 18px;
  border-top: 1px solid rgb(255 255 255 / 23%);
  border-bottom: 1px solid rgb(255 255 255 / 23%);
}

.dfs-mobile-drawer__categories h2 {
  margin: 0 0 14px;
  color: rgb(255 255 255 / 78%);
  font-size: 0.69rem;
  font-weight: var(--dfs-weight-bold);
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dfs-mobile-category-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.dfs-mobile-category-link {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.dfs-mobile-category-link:visited {
  color: #fff;
}

.dfs-mobile-category-link__icon {
  display: inline-flex;
  width: 47px;
  height: 47px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 50%;
  background: rgb(255 255 255 / 3%);
  color: #fff;
  transition: border-color var(--dfs-transition-fast), background-color var(--dfs-transition-fast), transform var(--dfs-transition-fast);
}

.dfs-mobile-category-link__icon svg {
  width: 21px;
  height: 21px;
}

.dfs-mobile-category-link__label {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(0.55rem, 2.3vw, 0.66rem);
  font-weight: var(--dfs-weight-medium);
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dfs-mobile-category-link:hover .dfs-mobile-category-link__icon,
.dfs-mobile-category-link:focus-visible .dfs-mobile-category-link__icon {
  border-color: #fff;
  background: rgb(255 255 255 / 9%);
  transform: translateY(-1px);
}

.dfs-mobile-drawer__footer {
  margin-top: auto;
  padding-top: 13px;
}

.dfs-mobile-drawer__utilities {
  display: grid;
  gap: 1px;
  padding-bottom: 12px;
}

.dfs-mobile-drawer__utility {
  display: flex;
  min-height: 47px;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: var(--dfs-weight-semibold);
  line-height: 1.3;
  text-decoration: none;
}

.dfs-mobile-drawer__utility:visited {
  color: #fff;
}

.dfs-mobile-drawer__utility:hover,
.dfs-mobile-drawer__utility:focus-visible {
  color: #dbe7ff;
}

.dfs-mobile-drawer__utility svg {
  width: 21px;
  height: 21px;
}

.dfs-header-whatsapp--mobile {
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1265f5 0%, #0751eb 100%);
  box-shadow: 0 11px 28px rgb(0 0 0 / 20%);
}

.dfs-header-whatsapp--mobile__icon {
  display: inline-flex;
  flex: 0 0 auto;
}

.dfs-header-whatsapp--mobile__icon svg {
  width: 25px;
  height: 25px;
}

.dfs-header-whatsapp--mobile__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.dfs-header-whatsapp--mobile__copy strong {
  color: #fff;
  font-size: 0.98rem;
  font-weight: var(--dfs-weight-bold);
}

.dfs-header-whatsapp--mobile__copy small {
  color: rgb(255 255 255 / 80%);
  font-size: 0.69rem;
  font-weight: var(--dfs-weight-regular);
}


/* v0.3.2 — Header link contrast hardening.
 * The global `.dfs-site a` rule is intentionally weaker than these component
 * contracts so visited/unvisited state can never change header legibility. */
.dfs-site .dfs-desktop-menu__link,
.dfs-site .dfs-desktop-menu__link:visited,
.dfs-site .dfs-header-action,
.dfs-site .dfs-header-action:visited {
  color: #111318;
}

.dfs-site .dfs-desktop-menu__item:hover > .dfs-desktop-menu__link,
.dfs-site .dfs-desktop-menu__item:focus-within > .dfs-desktop-menu__link,
.dfs-site .dfs-desktop-menu__item.is-current > .dfs-desktop-menu__link,
.dfs-site .dfs-desktop-menu__link[aria-current="page"],
.dfs-site .dfs-header-action:hover,
.dfs-site .dfs-header-action:focus-visible,
.dfs-site .dfs-header-action[aria-expanded="true"] {
  color: var(--dfs-color-brand-active);
}

.dfs-site .dfs-desktop-submenu a,
.dfs-site .dfs-desktop-submenu a:visited {
  color: #252b35;
}

.dfs-site .dfs-desktop-submenu a:hover,
.dfs-site .dfs-desktop-submenu a:focus-visible,
.dfs-site .dfs-desktop-submenu .current-menu-item > a {
  color: var(--dfs-color-brand-active);
}

.dfs-site .dfs-header-whatsapp,
.dfs-site .dfs-header-whatsapp:visited,
.dfs-site .dfs-header-whatsapp:hover,
.dfs-site .dfs-header-whatsapp:focus-visible {
  color: #fff;
}

.dfs-site .dfs-mobile-drawer a,
.dfs-site .dfs-mobile-drawer a:visited,
.dfs-site .dfs-mobile-drawer a:hover,
.dfs-site .dfs-mobile-drawer a:focus-visible,
.dfs-site .dfs-mobile-menu__item.is-current > .dfs-mobile-menu__row > .dfs-mobile-menu__link,
.dfs-site .dfs-mobile-menu__link[aria-current="page"] {
  color: #fff;
}

.dfs-site .dfs-mobile-submenu a {
  color: rgb(255 255 255 / 82%);
}

.dfs-site .dfs-mobile-submenu a:hover,
.dfs-site .dfs-mobile-submenu a:focus-visible,
.dfs-site .dfs-mobile-submenu .current-menu-item > a {
  color: #fff;
}

.dfs-site .dfs-mobile-category-link__label,
.dfs-site .dfs-mobile-drawer__utility span,
.dfs-site .dfs-header-whatsapp--mobile__copy strong {
  color: #fff;
}

.dfs-site .dfs-header-whatsapp--mobile__copy small {
  color: rgb(255 255 255 / 82%);
}

/* Mobile / tablet header. */
@media (max-width: 1179px) {
  .dfs-site-header {
    box-shadow: 0 5px 18px rgb(11 15 23 / 7%);
  }

  .dfs-header__inner,
  .dfs-site-header.is-scrolled .dfs-header__inner {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .dfs-site-header.is-scrolled .dfs-header__inner::before {
    display: none;
  }

  .dfs-header__desktop-nav,
  .dfs-header-whatsapp:not(.dfs-header-whatsapp--mobile),
  .dfs-header__action-divider,
  .dfs-header-action--desktop-search {
    display: none;
  }

  .dfs-header__brand .custom-logo {
    max-width: 168px;
    max-height: 44px;
  }

  .dfs-header__brand .dfs-branding__fallback {
    max-width: 155px;
    font-size: 0.82rem;
  }

  .dfs-header__menu-toggle,
  .dfs-header-action--mobile-search {
    display: inline-flex;
  }

  .dfs-header__actions {
    gap: 0;
  }

  .dfs-header-search__inner {
    min-height: 92px;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 14px;
  }

  .dfs-header-search__copy {
    display: none;
  }
}


.admin-bar .dfs-mobile-drawer {
  top: 32px;
  min-height: calc(100dvh - 32px);
}

.admin-bar .dfs-mobile-drawer__inner {
  min-height: calc(100dvh - 32px);
}

@media (max-width: 782px) {
  .admin-bar .dfs-site-header[data-sticky="true"] {
    top: 46px;
  }

  .admin-bar .dfs-mobile-drawer {
    top: 46px;
    min-height: calc(100dvh - 46px);
  }

  .admin-bar .dfs-mobile-drawer__inner {
    min-height: calc(100dvh - 46px);
  }
}

@media (max-width: 520px) {
  .dfs-header__brand .custom-logo {
    max-width: 145px;
    max-height: 40px;
  }

  .dfs-header-action {
    width: 42px;
    min-width: 42px;
    height: 44px;
  }

  .dfs-header-action svg {
    width: 20px;
    height: 20px;
  }

  .dfs-header-search__inner {
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .dfs-mobile-drawer__inner {
    padding-inline: 20px;
  }

  .dfs-mobile-drawer__brand .custom-logo {
    max-width: 148px;
  }

  .dfs-mobile-category-link__icon {
    width: 43px;
    height: 43px;
  }

  .dfs-mobile-category-link__icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 360px) {
  .dfs-header__brand .custom-logo {
    max-width: 124px;
  }

  .dfs-header-action {
    width: 40px;
    min-width: 40px;
  }

  .dfs-mobile-drawer__inner {
    padding-inline: 16px;
  }

  .dfs-mobile-category-links {
    gap: 4px;
  }

  .dfs-mobile-category-link__icon {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dfs-site-header,
  .dfs-header__inner,
  .dfs-desktop-menu__link,
  .dfs-desktop-menu__link::after,
  .dfs-desktop-submenu,
  .dfs-desktop-menu__chevron,
  .dfs-desktop-submenu__arrow,
  .dfs-header-action,
  .dfs-header-whatsapp,
  .dfs-mobile-drawer,
  .dfs-mobile-menu__link,
  .dfs-mobile-menu__submenu-toggle,
  .dfs-mobile-menu__submenu-toggle svg,
  .dfs-mobile-category-link__icon {
    animation: none;
    transition: none;
  }
}
