.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(16px);
  background:
    radial-gradient(circle at 10% 18%, rgba(167, 141, 130, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(250, 244, 238, 0.96));
  border-bottom: 1px solid rgba(79, 64, 58, 0.12);
  box-shadow: 0 16px 32px rgba(73, 49, 39, 0.08);
  transition: transform 220ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

:root {
  --site-floating-viewport-bottom: 0px;
}

.site-header--scrolled {
  box-shadow: 0 18px 34px rgba(71, 48, 38, 0.11);
}

.site-header--hidden {
  transform: translateY(-100%);
}

.site-header__topbar {
  border-bottom: 1px solid rgba(79, 64, 58, 0.12);
  background:
    linear-gradient(180deg, rgba(252, 247, 241, 0.92), rgba(247, 239, 230, 0.92));
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: clamp(0.8rem, 2vw, 2.2rem);
  color: #4b403c;
  font-size: clamp(0.76rem, 0.8vw, 0.9rem);
  font-weight: 700;
}

.top-bar-left,
.top-bar-actions,
.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
}

.top-bar-left__heading {
  margin: 0;
  font: inherit;
  color: inherit;
}

.top-bar-actions {
  gap: clamp(0.75rem, 1.5vw, 1.2rem);
  margin-left: auto;
}

.top-bar-link {
  color: #5d514d;
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.top-bar-link__label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.top-bar-left__mobile,
.top-bar-phone__mobile,
.top-bar-link__mobile-label {
  display: none;
}

.top-bar-link:hover {
  color: #8d2f4c;
  transform: translateY(-1px);
}

.top-bar-link--accent {
  color: #4f8b68;
  font-weight: 700;
}

.top-bar-divider {
  width: 1px;
  height: 20px;
  background: rgba(79, 64, 58, 0.16);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(285px, 1fr) minmax(320px, 428px) minmax(285px, 1fr);
  align-items: center;
  min-height: clamp(76px, 6vw, 94px);
  gap: clamp(0.75rem, 1.85vw, 2.35rem);
  padding-block: clamp(0.38rem, 0.68vw, 0.72rem);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.55rem, 0.85vw, 0.9rem);
  letter-spacing: 0;
  justify-self: start;
  min-width: 0;
}

.site-logo__mark {
  flex: 0 0 auto;
  width: clamp(58px, 4.9vw, 74px);
  height: clamp(58px, 4.9vw, 74px);
  object-fit: contain;
  margin-block: 0;
}

.site-logo__label {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-inline-size: 0;
}

.site-logo__title {
  display: flex;
  flex-direction: row;
  gap: 0.36rem;
  font-family: "Ebru Logo", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
  color: #2e2623;
  letter-spacing: 0;
  align-items: center;
  text-align: left;
  min-block-size: 1.5rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.site-logo__title-main {
  font-size: clamp(1.82rem, 2.54vw, 2.93rem);
  color: #2e2623;
}

.site-logo__title-sub {
  font-size: clamp(1.82rem, 2.54vw, 2.93rem);
  color: #6d5149;
  font-weight: 400;
}

.site-header__search {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.85vw, 0.78rem);
  width: 100%;
  max-width: 428px;
  min-height: clamp(44px, 3.5vw, 52px);
  padding: 0 0.34rem 0 clamp(0.82rem, 1.1vw, 1.12rem);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(245, 239, 233, 0.88));
  border: 1px solid rgba(92, 75, 68, 0.24);
  box-shadow:
    0 14px 30px rgba(71, 48, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  justify-self: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.site-header__search:focus-within {
  border-color: rgba(75, 64, 60, 0.42);
  box-shadow:
    0 16px 32px rgba(71, 48, 38, 0.11),
    0 0 0 3px rgba(167, 141, 130, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-header__search-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #4b403c;
}

.site-header__search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #3b312e;
  font-size: clamp(0.9rem, 0.95vw, 1.04rem);
  font-weight: 600;
}

.site-header__search input::placeholder {
  color: #9b928e;
  opacity: 1;
}

.site-header__search button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(46px, 3.6vw, 54px);
  height: clamp(34px, 2.75vw, 40px);
  min-width: clamp(46px, 3.6vw, 54px);
  min-height: clamp(34px, 2.75vw, 40px);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #5b504b 0%, #342c28 100%);
  color: #fffaf5;
  box-shadow: 0 12px 22px rgba(46, 38, 35, 0.18);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.site-header__search button:hover {
  background:
    linear-gradient(180deg, #4b403c 0%, #2e2623 100%);
  box-shadow: 0 14px 24px rgba(46, 38, 35, 0.22);
  transform: translateY(-1px);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: end;
  justify-self: end;
  gap: clamp(0.65rem, 1.15vw, 1.35rem);
}

.site-header__action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: clamp(44px, 3.3vw, 54px);
  min-height: 54px;
  gap: 0.28rem;
  border-radius: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #4b403c;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  transition: color 160ms ease, transform 160ms ease;
}

.site-header__action:hover {
  color: #8d2f4c;
  transform: translateY(-1px);
}

.site-header__action-label {
  display: block;
  line-height: 1.1;
  white-space: nowrap;
}

.site-header__action--authenticated {
  color: #4b403c;
}

.site-header__action--authenticated::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2d7c5f;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.94);
}

.site-header__action--authenticated.site-header__action--has-account-badge::after {
  display: none;
}

.site-header__cart-badge,
.site-header__favorites-badge,
.site-header__account-badge {
  position: absolute;
  top: -6px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  height: 21px;
  padding: 0 0.38rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid rgba(255, 255, 255, 0.96);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 1px rgba(46, 38, 35, 0.2);
  box-shadow:
    0 12px 22px rgba(46, 38, 35, 0.22),
    0 3px 8px rgba(46, 38, 35, 0.16);
  transform: translate3d(0, 0, 0) scale(1);
}

.site-header__cart-badge::before,
.site-header__favorites-badge::before,
.site-header__account-badge::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  opacity: 0.9;
}

.site-header__cart-badge[hidden] {
  display: none;
}

.site-header__cart-badge {
  background: linear-gradient(180deg, #5b504b 0%, #342c28 100%);
}

.site-header__favorites-badge[hidden] {
  display: none;
}

.site-header__favorites-badge,
.site-header__account-badge {
  background: linear-gradient(180deg, #5b504b 0%, #342c28 100%);
}

.site-header__account-badge {
  background: linear-gradient(180deg, #5b504b 0%, #342c28 100%);
}

.site-header__account-badge[hidden] {
  display: none;
}

.site-header__action--has-badge {
  color: #4b403c;
}

.site-header__action svg,
.site-header__search-icon svg,
.site-header__search svg,
.top-bar-left svg,
.top-bar-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header__action svg {
  width: clamp(24px, 2vw, 30px);
  height: clamp(24px, 2vw, 30px);
  stroke-width: 1.75;
}

.site-header__search-icon svg {
  width: clamp(18px, 1.45vw, 22px);
  height: clamp(18px, 1.45vw, 22px);
  stroke-width: 2;
}

.site-header__search button svg {
  width: clamp(18px, 1.4vw, 21px);
  height: clamp(18px, 1.4vw, 21px);
  stroke-width: 2.25;
}

.top-bar-left svg {
  width: 24px;
  height: 24px;
  color: #bd536e;
  stroke-width: 1.9;
}

.top-bar-link svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.top-bar-link--accent svg {
  color: #4f9a70;
}

.site-header__category-nav {
  position: relative;
  z-index: 6;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-header__category-nav[hidden] {
  display: none;
}

.site-header__category-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(100% - 2rem), var(--container));
  min-height: clamp(50px, 3vw, 56px);
  margin-inline: auto;
  overflow: visible;
}

.site-header__category-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.14rem, 0.32vw, 0.32rem);
  width: 100%;
  max-width: 100%;
  overflow: visible;
  padding: 0.24rem;
  border: 1px solid rgba(75, 64, 60, 0.075);
  border-radius: 14px;
  background: rgba(239, 231, 225, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.site-header__category-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  min-height: clamp(34px, 2.35vw, 39px);
  padding: 0 clamp(0.62rem, 0.86vw, 0.96rem);
  border: 1px solid transparent;
  border-radius: 10px;
  color: #665c57;
  font-size: clamp(0.76rem, 0.76vw, 0.88rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-header__category-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: min(28px, calc(100% - 22px));
  height: 2px;
  border-radius: 999px;
  background: #a78d82;
  opacity: 0;
  transform: translateX(-50%) scaleX(0.62);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header__category-link:hover {
  color: #4b403c;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(167, 141, 130, 0.16);
  box-shadow: 0 5px 14px rgba(71, 48, 38, 0.045);
}

.site-header__category-link:hover::after,
.site-header__category-link--active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.site-header__category-link--active {
  color: #4b403c;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(167, 141, 130, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 7px 18px rgba(71, 48, 38, 0.065);
}

.site-header__category-link:focus-visible {
  outline: 2px solid rgba(141, 47, 76, 0.26);
  outline-offset: 2px;
}

.site-header__category-list > .site-header__category-link:nth-of-type(n+4) {
  display: none;
}

.site-header__category-list:not(:has(.site-header__category-link:nth-of-type(4))) .site-header__category-more {
  display: none;
}

.site-header__category-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: clamp(34px, 2.35vw, 39px);
  margin-left: 0.12rem;
  padding: 0 clamp(0.72rem, 0.92vw, 1rem);
  border: 1px solid rgba(167, 141, 130, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #4b403c;
  font: inherit;
  font-size: clamp(0.76rem, 0.76vw, 0.88rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  gap: 0.38rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 6px 16px rgba(71, 48, 38, 0.055);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-header__category-more-label--full {
  display: none;
}

.site-header__category-more-label--compact {
  display: inline;
}

.site-header__category-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.site-header__category-more:hover,
.site-header__category-more[aria-expanded="true"] {
  background: #e8dfd8;
  border-color: rgba(167, 141, 130, 0.4);
  color: #2e2623;
  box-shadow: 0 8px 18px rgba(71, 48, 38, 0.075);
}

.site-header__category-more[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.site-header__category-more:focus-visible {
  outline: 2px solid rgba(141, 47, 76, 0.26);
  outline-offset: 2px;
}

.site-header__category-menu {
  position: absolute;
  z-index: 8;
  top: calc(100% + 0.42rem);
  right: 0;
  width: min(760px, 100%);
}

.site-header__category-menu[hidden] {
  display: none;
}

.site-header__category-menu-card {
  max-height: min(70vh, 520px);
  overflow-y: auto;
  border: 1px solid rgba(79, 64, 58, 0.12);
  border-radius: 16px;
  background: rgba(255, 253, 250, 0.985);
  box-shadow: 0 20px 44px rgba(71, 48, 38, 0.145);
  padding: clamp(0.84rem, 1.3vw, 1.1rem);
  scrollbar-color: rgba(167, 141, 130, 0.6) transparent;
  scrollbar-width: thin;
}

.site-header__category-menu-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.2rem 0.76rem;
  color: #4b403c;
}

.site-header__category-menu-head strong {
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  font-weight: 800;
}

.site-header__category-menu-head span {
  color: #8a8581;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-header__category-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.46rem;
}

.site-header__category-menu-link {
  display: flex;
  align-items: center;
  min-height: 42px;
  min-width: 0;
  padding: 0 0.72rem;
  border: 1px solid rgba(79, 64, 58, 0.08);
  border-radius: 10px;
  background: rgba(247, 243, 239, 0.66);
  color: #5d514d;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-header__category-menu-link:hover,
.site-header__category-menu-link--active {
  background: rgba(167, 141, 130, 0.15);
  border-color: rgba(167, 141, 130, 0.28);
  color: #2e2623;
  transform: translateY(-1px);
}

@media (min-width: 480px) {
  .site-header__category-list > .site-header__category-link:nth-of-type(n+4) {
    display: inline-flex;
  }

  .site-header__category-list > .site-header__category-link:nth-of-type(n+5) {
    display: none;
  }

  .site-header__category-list:not(:has(.site-header__category-link:nth-of-type(5))) .site-header__category-more {
    display: none;
  }
}

@media (min-width: 640px) {
  .site-header__category-list > .site-header__category-link:nth-of-type(n+5) {
    display: inline-flex;
  }

  .site-header__category-list > .site-header__category-link:nth-of-type(n+6) {
    display: none;
  }

  .site-header__category-list:not(:has(.site-header__category-link:nth-of-type(6))) .site-header__category-more {
    display: none;
  }
}

@media (min-width: 768px) {
  .site-header__category-list > .site-header__category-link:nth-of-type(n+3) {
    display: inline-flex;
  }

  .site-header__category-list > .site-header__category-link:nth-of-type(n+6) {
    display: none;
  }

  .site-header__category-list:not(:has(.site-header__category-link:nth-of-type(6))) .site-header__category-more {
    display: none;
  }

  .site-header__category-link {
    flex: 1 1 auto;
  }

  .site-header__category-more-label--full {
    display: inline;
  }

  .site-header__category-more-label--compact {
    display: none;
  }
}

@media (min-width: 900px) {
  .site-header__category-list > .site-header__category-link:nth-of-type(n+6) {
    display: inline-flex;
  }

  .site-header__category-list > .site-header__category-link:nth-of-type(n+7) {
    display: none;
  }

  .site-header__category-list:not(:has(.site-header__category-link:nth-of-type(7))) .site-header__category-more {
    display: none;
  }
}

@media (min-width: 1024px) {
  .site-header__category-list > .site-header__category-link:nth-of-type(n+7) {
    display: inline-flex;
  }

  .site-header__category-list > .site-header__category-link:nth-of-type(n+8) {
    display: none;
  }

  .site-header__category-list:not(:has(.site-header__category-link:nth-of-type(8))) .site-header__category-more {
    display: none;
  }
}

@media (min-width: 1180px) {
  .site-header__category-list {
    gap: 0.5rem;
  }

  .site-header__category-list > .site-header__category-link:nth-of-type(n+6) {
    display: inline-flex;
  }

  .site-header__category-list > .site-header__category-link:nth-of-type(n+9) {
    display: none;
  }

  .site-header__category-list:not(:has(.site-header__category-link:nth-of-type(9))) .site-header__category-more {
    display: none;
  }

  .site-header__category-link {
    flex: 1 1 auto;
  }
}

.site-floating-scrolltop,
.site-floating-order-tracking {
  display: none;
}

.favorites-drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}

.favorites-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 25, 21, 0.18);
  opacity: 0;
  transition: opacity 180ms ease;
}

.favorites-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(420px, 100vw);
  height: 100vh;
  padding: 1.2rem 0;
  background: rgba(255, 252, 247, 0.98);
  border-left: 1px solid rgba(71, 48, 38, 0.08);
  box-shadow: -18px 0 44px rgba(35, 22, 20, 0.12);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.favorites-drawer[data-open="true"] {
  pointer-events: auto;
  visibility: visible;
}

.favorites-drawer[data-closing="true"] {
  pointer-events: auto;
  visibility: visible;
}

.favorites-drawer[data-open="true"] .favorites-drawer__backdrop {
  opacity: 1;
}

.favorites-drawer[data-open="true"] .favorites-drawer__panel {
  transform: translateX(0);
}

.favorites-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(71, 48, 38, 0.08);
}

.favorites-drawer__title {
  display: inline-flex;
  align-items: center;
  color: var(--brand-deep);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.favorites-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(71, 48, 38, 0.08);
  color: var(--brand-deep);
  box-shadow: var(--shadow-soft);
}

.favorites-drawer__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.favorites-drawer__close svg {
  fill: none;
}

.favorites-drawer__remove-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  line-height: 1;
}

.favorites-drawer__remove-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: currentColor;
  stroke-width: 1.9;
  transition: fill 160ms ease, stroke 160ms ease, transform 160ms ease;
}

.favorites-drawer__content {
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1.15rem 0.2rem;
}

.favorites-drawer__state {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 3rem 1rem;
  text-align: center;
}

.favorites-drawer__state strong {
  color: var(--brand-deep);
  font-size: 1.02rem;
  line-height: 1.4;
}

.favorites-drawer__state p {
  margin: 0;
  max-width: 28ch;
  color: var(--text-soft);
  line-height: 1.65;
}

.favorites-drawer__state-icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: rgba(255, 242, 246, 0.94);
  color: #b43458;
  font-size: 1.8rem;
  font-weight: 700;
}

.favorites-drawer__state-action {
  min-width: 180px;
}

.favorites-drawer__list {
  display: grid;
  gap: 0.85rem;
}

.favorites-drawer__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.78rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(71, 48, 38, 0.08);
  box-shadow: 0 14px 28px rgba(49, 33, 29, 0.06);
}

.favorites-drawer__item-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(246, 236, 229, 0.92), rgba(230, 214, 204, 0.88));
  border: 1px solid rgba(94, 63, 51, 0.08);
}

.favorites-drawer__item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.favorites-drawer__item-placeholder {
  display: none;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(121, 34, 58, 0.56);
}

.favorites-drawer__item-placeholder svg {
  width: 48%;
  height: 48%;
}

.favorites-drawer__item-media.is-missing .favorites-drawer__item-placeholder {
  display: grid;
}

.favorites-drawer__item-media.is-missing img {
  display: none;
}

.favorites-drawer__item-body {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.favorites-drawer__item-title {
  color: var(--brand-deep);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.38;
}

.favorites-drawer__item-category {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.favorites-drawer__item-price {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  align-items: center;
  color: var(--brand-deep);
}

.favorites-drawer__item-price strong {
  font-size: 0.98rem;
}

.favorites-drawer__item-price-old {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: line-through;
}

.favorites-drawer__remove {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 236, 242, 0.92);
  border: 1px solid rgba(180, 52, 88, 0.18);
  color: #b43458;
  box-shadow: 0 10px 18px rgba(180, 52, 88, 0.12);
}

.favorites-drawer__remove:hover {
  background: rgba(255, 228, 236, 0.98);
}

.favorites-drawer__skeleton {
  min-height: 102px;
  border-radius: 20px;
  border: 1px solid rgba(71, 48, 38, 0.08);
  background: rgba(255, 255, 255, 0.74);
  position: relative;
  overflow: hidden;
}

.favorites-drawer__skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  animation: site-boot-shimmer 1.35s ease-in-out infinite;
}

@media (max-width: 767.98px) {
  .site-header__category-inner {
    width: min(calc(100% - 1rem), var(--container));
    justify-content: center;
    min-height: 48px;
  }

  .site-header__category-list {
    justify-content: center;
    width: 100%;
    gap: 0.18rem;
    padding: 0.2rem;
    border-radius: 12px;
  }

  .site-header__category-link {
    flex: 1 1 0;
    min-height: 34px;
    padding-inline: 0.46rem;
    border-radius: 9px;
    font-size: clamp(0.69rem, 3.1vw, 0.76rem);
  }

  .site-header__category-more {
    min-height: 34px;
    margin-left: 0;
    padding-inline: 0.62rem;
    border-radius: 9px;
    font-size: 0.74rem;
    gap: 0.24rem;
  }

  .site-header__category-more svg {
    width: 14px;
    height: 14px;
  }

  .site-header__category-menu {
    top: calc(100% + 0.34rem);
    right: 0;
    width: 100%;
  }

  .site-header__category-menu-card {
    max-height: min(62vh, 460px);
    border-radius: 14px;
    padding: 0.74rem;
  }

  .site-header__category-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
  }

  .site-header__category-menu-link {
    min-height: 38px;
    padding-inline: 0.62rem;
    border-radius: 9px;
    font-size: 0.78rem;
  }

  .site-logo__title {
    flex-direction: row;
    gap: 0.24rem;
    text-align: left;
  }
}

@media (min-width: 641px) and (max-width: 767.98px) {
  .top-bar-link--whatsapp .top-bar-link__prefix {
    display: none;
  }

  .top-bar-link--whatsapp .top-bar-link__label {
    gap: 0;
  }

  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 68px;
    gap: 0.58rem;
    padding-block: 0.46rem;
  }

  .site-logo {
    min-width: 0;
    gap: 0.44rem;
  }

  .site-logo__label {
    min-inline-size: 0;
  }

  .site-logo__mark {
    width: 50px;
    height: 50px;
    margin-block: 0;
  }

  .site-logo__title {
    line-height: 0.9;
  }

  .site-logo__title-main,
  .site-logo__title-sub {
    font-size: 0.94rem;
    white-space: nowrap;
  }

  .site-header__search {
    max-width: none;
    min-height: 44px;
    padding: 0 0.3rem 0 0.68rem;
  }

  .site-header__search input {
    font-size: 0.86rem;
  }

  .site-header__search button {
    width: 44px;
    height: 34px;
    min-width: 44px;
    min-height: 34px;
  }

  .site-header__search svg {
    width: 16px;
    height: 16px;
  }

  .site-header__actions {
    gap: 0.4rem;
  }

  .site-header__action {
    width: 34px;
    min-height: 34px;
    border-radius: 11px;
  }

  .site-header__action-label {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.48rem;
    min-height: 92px;
    padding-block: 0.44rem 0.52rem;
  }

  .site-header__search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
  }

  .site-logo {
    min-width: 0;
    gap: 0.36rem;
  }

  .site-logo__label {
    min-inline-size: 0;
  }

  .site-logo__mark {
    width: 46px;
    height: 46px;
    margin-block: 0;
  }

  .site-logo__title-main,
  .site-logo__title-sub {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .site-header__actions {
    gap: 0.42rem;
    padding-top: 0.32rem;
  }

  .site-header__action {
    width: 35px;
    min-height: 35px;
    border-radius: 11px;
  }

  .site-header__action-label {
    display: none;
  }

}

@media (max-width: 1023.98px) and (min-width: 768px) {
  .site-header__inner {
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 0.72rem;
    min-height: 78px;
    padding-block: 0.52rem;
  }

  .site-logo {
    gap: 0.48rem;
  }

  .site-logo__label {
    min-inline-size: 0;
  }

  .site-logo__mark {
    width: 56px;
    height: 56px;
    margin-block: 0;
  }

  .site-logo__title-main {
    font-size: 1.06rem;
  }

  .site-logo__title-sub {
    font-size: 1.06rem;
  }

  .site-header__search {
    max-width: none;
    min-height: 46px;
    padding: 0 0.32rem 0 0.72rem;
  }

  .site-header__search input {
    font-size: 0.88rem;
  }

  .site-header__search button {
    width: 46px;
    height: 36px;
    min-width: 46px;
    min-height: 36px;
  }

  .site-header__search svg {
    width: 16px;
    height: 16px;
  }

  .site-header__actions {
    gap: 0.42rem;
  }

  .site-header__action {
    width: 38px;
    min-height: 38px;
    border-radius: 10px;
  }

  .site-header__action-label {
    display: none;
  }

  .site-header__action svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 640px) {
  .site-shell:not(.site-shell--home) .site-floating-order-tracking {
    display: none !important;
  }

  .site-header__search {
    min-height: 44px;
    padding: 0 0.36rem 0 0.7rem;
  }

  .site-header__search input {
    font-size: 16px;
  }

  .site-header__search button {
    width: 42px;
    height: 34px;
    min-width: 42px;
    min-height: 34px;
    padding: 0;
    border-radius: 12px;
    background:
      linear-gradient(180deg, #5b504b 0%, #342c28 100%);
    box-shadow: 0 10px 18px rgba(46, 38, 35, 0.16);
    color: #fffaf5;
  }

  .site-header__search svg {
    width: 16px;
    height: 16px;
  }

  .site-header__topbar {
    display: block;
  }

  .top-bar-content {
    min-height: 34px;
    gap: 0.45rem;
    font-size: 0.72rem;
    line-height: 1;
  }

  .top-bar-left,
  .top-bar-actions,
  .top-bar-link {
    gap: 0.28rem;
  }

  .top-bar-left {
    flex: 1 1 auto;
    min-width: 0;
    color: #4b403c;
  }

  .top-bar-left__desktop,
  .top-bar-phone__desktop,
  .top-bar-link--whatsapp .top-bar-link__prefix,
  .top-bar-link--whatsapp .top-bar-link__number {
    display: none;
  }

  .top-bar-left__mobile,
  .top-bar-phone__mobile,
  .top-bar-link__mobile-label {
    display: inline;
    white-space: nowrap;
  }

  .top-bar-actions {
    flex: 0 0 auto;
    gap: 0.5rem;
  }

  .top-bar-actions > .top-bar-link:not(.top-bar-link--phone):not(.top-bar-link--whatsapp) {
    display: none;
  }

  .top-bar-actions > .top-bar-divider {
    display: none;
  }

  .top-bar-link--phone,
  .top-bar-link--whatsapp {
    display: inline-flex;
    padding: 0.32rem 0.48rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(79, 64, 58, 0.12);
  }

  .top-bar-left svg,
  .top-bar-link svg {
    width: 15px;
    height: 15px;
  }

  .site-logo__mark {
    width: 46px;
    height: 46px;
  }

  .site-header__action {
    width: 35px;
    min-height: 35px;
    border-radius: 12px;
  }

  .site-header__cart-badge,
  .site-header__favorites-badge,
  .site-header__account-badge {
    top: -6px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 0.3rem;
    font-size: 0.58rem;
    border-width: 2px;
    box-shadow:
      0 8px 16px rgba(46, 38, 35, 0.2),
      0 2px 6px rgba(46, 38, 35, 0.14);
  }

  .site-header__action--authenticated::after {
    top: 2px;
    right: 3px;
  }

  .site-floating-scrolltop,
  .site-floating-order-tracking {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    z-index: 45;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, opacity 160ms ease, visibility 160ms ease;
  }

  .site-floating-order-tracking {
    display: none;
  }

  .site-shell--home .site-floating-order-tracking {
    display: inline-flex;
  }

  .site-floating-scrolltop {
    bottom: calc(max(18px, env(safe-area-inset-bottom)) + var(--site-floating-viewport-bottom, 0px) + 64px);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(71, 48, 38, 0.82);
    border: 1px solid rgba(71, 48, 38, 0.08);
    box-shadow: 0 12px 22px rgba(71, 48, 38, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
  }

  .site-floating-scrolltop--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-floating-scrolltop svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-floating-scrolltop:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(71, 48, 38, 0.16);
  }

  .site-floating-order-tracking {
    bottom: calc(max(18px, env(safe-area-inset-bottom)) + var(--site-floating-viewport-bottom, 0px));
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 18px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.14rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--brand-deep);
    border: 1px solid rgba(71, 48, 38, 0.08);
    box-shadow: 0 12px 22px rgba(71, 48, 38, 0.12);
  }

  .site-floating-order-tracking:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(71, 48, 38, 0.16);
  }

  .site-floating-order-tracking svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-floating-order-tracking span {
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

}

@media (max-width: 359px) {
  .site-logo {
    gap: 0.38rem;
  }

  .site-logo__label {
    min-inline-size: 0;
  }

  .site-logo__mark {
    width: 46px;
    height: 46px;
    margin-block: 0;
  }

  .site-logo__title {
    flex-direction: row;
    gap: 0;
    text-align: left;
  }

  .site-logo__title-main {
    font-size: 1.25rem;
  }

  .site-logo__title-sub {
    display: none;
  }

  .site-header__search {
    min-height: 42px;
    padding: 0 0.35rem 0 0.68rem;
  }

  .site-header__search input {
    font-size: 16px;
  }

  .site-header__search button {
    width: 40px;
    height: 34px;
    min-width: 40px;
    min-height: 34px;
    padding: 0;
  }

  .site-header__search svg {
    width: 16px;
    height: 16px;
  }

  .site-header__actions {
    gap: 0.25rem;
  }

  .site-header__action {
    width: 34px;
    min-height: 34px;
    border-radius: 11px;
  }

  .site-header__cart-badge,
  .site-header__favorites-badge,
  .site-header__account-badge {
    top: -5px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 0.3rem;
    font-size: 0.58rem;
  }

  .site-header__action--authenticated::after {
    top: 2px;
    right: 3px;
  }

  .site-header__action svg {
    width: 15px;
    height: 15px;
  }

  .favorites-drawer__panel {
    width: 100vw;
    padding: 1rem 0;
  }

  .favorites-drawer__item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.7rem;
  }

  .site-floating-scrolltop {
    width: 44px;
    height: 44px;
    right: max(12px, env(safe-area-inset-right));
  }

  .site-floating-scrolltop {
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + var(--site-floating-viewport-bottom, 0px) + 56px);
  }

  .site-floating-order-tracking {
    display: none;
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + var(--site-floating-viewport-bottom, 0px));
    right: max(12px, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .site-shell--home .site-floating-order-tracking {
    display: inline-flex;
  }

  .site-floating-scrolltop svg {
    width: 21px;
    height: 21px;
  }

  .site-floating-order-tracking svg {
    width: 17px;
    height: 17px;
  }

  .site-floating-order-tracking span {
    font-size: 0.54rem;
  }
}
