.ld-announcement {
  border-bottom: 1px solid #cfbea8;
  background: linear-gradient(90deg, #f2e8db 0%, #f8f2e7 48%, #efe3d2 100%);
  color: #6e5534;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  text-align: center;
}

.ld-announcement p {
  margin: 0;
  padding: 0.58rem 0;
}

.ld-announcement .ld-dot {
  margin: 0 0.65rem;
  opacity: 0.55;
}

.ld-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background 280ms var(--ld-ease), border-color 280ms var(--ld-ease), box-shadow 280ms var(--ld-ease);
}

.ld-header.is-home-top {
  background: linear-gradient(180deg, rgba(252, 247, 240, 0.95) 0%, rgba(252, 247, 240, 0.7) 100%);
  backdrop-filter: blur(3px);
}

.ld-header.is-scrolled,
.ld-header:not(.is-home-top) {
  backdrop-filter: blur(12px);
  background: rgba(252, 247, 240, 0.92);
  border-color: var(--ld-border);
  box-shadow: 0 14px 26px rgba(68, 48, 25, 0.12);
}

.ld-header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

.ld-branding {
  display: flex;
  align-items: center;
}

.ld-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}

.ld-branding__mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  flex: 0 0 auto;
}

.ld-branding__mark img {
  width: 100%;
  height: 100%;
}

.ld-branding__text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.06rem;
}

.ld-wordmark {
  color: #231a14;
  font-family: var(--ld-font-display);
  font-size: clamp(1.35rem, 1.45vw, 1.85rem);
  letter-spacing: 0.14em;
  line-height: 1;
}

.ld-wordmark-sub {
  color: var(--ld-text-muted);
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.ld-branding img {
  width: clamp(150px, 18vw, 230px);
  height: auto;
}

.ld-nav__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.ld-nav__menu > li {
  position: relative;
}

.ld-nav__menu > li > a {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #2f251d;
  padding: 0.5rem 0;
}

.ld-nav__menu > li > a:hover {
  color: var(--ld-accent-gold);
}

.ld-nav__menu li.has-submenu > ul {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 230px;
  padding: 0.7rem;
  border: 1px solid var(--ld-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 25px 44px rgba(52, 35, 17, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ld-nav__menu li.has-submenu.is-open > ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.ld-nav__menu li.has-submenu > ul a {
  display: block;
  padding: 0.48rem 0.56rem;
  border-radius: 9px;
  font-size: 0.84rem;
}

.ld-nav__menu li.has-submenu > ul a:hover {
  background: #f8f2e8;
}

.ld-header-actions {
  display: flex;
  gap: 0.38rem;
  align-items: center;
}

.ld-mobile-toggle {
  display: none;
}

.ld-mobile-menu[hidden],
.ld-search-overlay[hidden] {
  display: none;
}

.ld-mobile-menu {
  border-top: 1px solid var(--ld-border);
  background: #fbf5ed;
}

.ld-mobile-menu__panel {
  width: min(100%, var(--ld-container-max));
  margin: 0 auto;
  padding: 0.3rem 1.2rem 1rem;
}

.ld-mobile-menu__list {
  list-style: none;
}

.ld-mobile-menu__list a {
  display: block;
  padding: 0.86rem 0;
  border-bottom: 1px solid #e2d5c4;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ld-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 16, 9, 0.45);
  backdrop-filter: blur(10px);
  z-index: 95;
  padding: clamp(1rem, 4vw, 2.2rem);
  overflow: auto;
}

.ld-search-overlay__inner {
  width: min(980px, 100%);
  margin-inline: auto;
  border: 1px solid #d8c6ae;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(170, 124, 68, 0.14), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #f8efe0 100%);
  box-shadow: 0 34px 80px rgba(37, 25, 14, 0.2);
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 0.95rem;
}

.ld-search-overlay__top {
  display: flex;
  justify-content: flex-end;
}

.ld-search-close {
  border: 1px solid #d7c2a7;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.75);
}

.ld-search-overlay h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.95rem);
  line-height: 1;
}

.ld-search-overlay .ld-search-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
}

.ld-search-overlay .ld-search-form .ld-input {
  min-height: 54px;
  border-radius: 999px;
  font-size: 1rem;
}

.ld-search-overlay__hint {
  margin: 0;
  font-size: 0.78rem;
  color: #6c5944;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ld-search-results {
  min-height: 120px;
}

.ld-live-result {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 0.62rem;
  align-items: center;
  padding: 0.55rem;
  border: 1px solid #ddccb7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ld-live-result:hover {
  border-color: #c7ab86;
  box-shadow: 0 16px 28px rgba(49, 35, 19, 0.14);
  transform: translateY(-2px);
}

.ld-live-result img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #e3d5c3;
  background: linear-gradient(180deg, #f8f2e9 0%, #fff 100%);
}

.ld-live-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.ld-live-result__body {
  display: grid;
  gap: 0.35rem;
}

.ld-live-result__meta {
  margin: 0;
  font-size: 0.63rem;
  color: #8a7356;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ld-live-result__body h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.28;
  color: #1f1711;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ld-live-result__price {
  margin: 0;
  font-size: 0.88rem;
  color: #3f301f;
  font-weight: 700;
}

.ld-search-view-all {
  margin-top: 0.72rem;
  justify-self: start;
  color: #5a4428;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.ld-search-min {
  margin: 0;
  color: #5c4e40;
  font-size: 0.94rem;
}

.ld-search-empty {
  border: 1px solid #dccab3;
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.ld-search-empty h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.ld-search-empty p {
  margin: 0 0 0.85rem;
}

@media (max-width: 960px) {
  .ld-nav {
    display: none;
  }

  .ld-mobile-toggle {
    display: inline-flex;
  }

  .ld-header__inner {
    grid-template-columns: auto 1fr;
  }

  .ld-branding__mark {
    width: 32px;
    height: 32px;
  }

  .ld-header-actions {
    justify-self: end;
  }

  .ld-header-actions .ld-icon-btn:not(.ld-mobile-toggle):not([data-search-toggle]) {
    display: none;
  }

  .ld-header-actions .ld-icon-btn[data-search-toggle] {
    display: inline-flex;
  }

  .ld-search-overlay__inner {
    border-radius: 20px;
  }

  .ld-search-overlay .ld-search-form {
    grid-template-columns: 1fr;
  }

  .ld-live-result-grid {
    grid-template-columns: 1fr;
  }

  .ld-search-overlay h2 {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
  }
}
