/* Desktop dropdown */
.nav-dropdown {
  position: relative;
}

iframe {
  margin: 0 auto;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  .nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4a574;
    text-decoration: none;
  }
  .nav-logo:hover {
    color: #c8966a;
  }
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-dropdown-item:hover {
  background-color: #fff8f0;
  color: #d4a574;
}
.nav-dropdown-section {
  display: block;
  padding: 0.75rem 1.25rem 0.35rem;
  color: #d4a574;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-dropdown-section:hover {
  color: #c8966a;
}
.nav-dropdown-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 0.35rem 0;
}

/* Fullscreen mobile menu */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: white;
  flex-direction: column;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}
.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 2rem;
}
.mobile-menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: #374151;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #f9fafb;
}
.mobile-menu-link:hover {
  background: #fff8f0;
  color: #d4a574;
}
.mobile-submenu {
  border-bottom: 1px solid #f9fafb;
}
.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  color: #374151;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.mobile-submenu-toggle:hover {
  background: #fff8f0;
  color: #d4a574;
}
.mobile-submenu-icon {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}
.mobile-submenu.is-expanded .mobile-submenu-icon {
  transform: rotate(180deg);
}
.mobile-submenu-items {
  display: none;
  background: #faf8f5;
  padding: 0.25rem 0 0.5rem;
}
.mobile-submenu.is-expanded .mobile-submenu-items {
  display: block;
}
.mobile-submenu-link {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 2.25rem;
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.mobile-submenu-link:hover {
  color: #d4a574;
  background: #fff8f0;
}
.mobile-submenu-section {
  display: block;
  padding: 0.6rem 1.5rem 0.6rem 2.25rem;
  color: #d4a574;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-submenu-section:hover {
  background: #fff8f0;
}
