/* ─── HEADER ────────────────────────────────────────────── */
.site-header {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  padding: 34px var(--buffer);
  border-bottom: 0px solid var(--rule);
  position: sticky;
  top: 0px;
  z-index: 100;
  background: var(--bg);
}

.header-row1 {
  padding: 25px calc((100% - var(--container)) / 2) 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: "jeanne-moderno-geometrique", sans-serif;
  font-size: 35px;
  fill: var(--text);
  font-weight: 600;
  font-style: normal;
  flex-shrink: 0;
  line-height: 1;
}

.tagline {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--accent);
}

/* ─── NAV ───────────────────────────────────────────────── */
.site-nav {
  padding: 25px calc((100% - var(--container)) / 2) 1px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 35px;
}

.nav-inner a {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.2s;
  position: relative;
}

.nav-inner a:hover,
.nav-inner a.active {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}



.nav-cart {
  margin-left: auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.nav-cart svg { width: 25px; height: 25px; fill: var(--bg); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--bg);
  color: var(--text);
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}

/* ─── FAQ NAV DROPDOWN ──────────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px; /* bridges the gap between link and dropdown */
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  min-width: 190px;
  white-space: nowrap;
}

.nav-dropdown-wrap:hover .nav-dropdown {
  display: block;
}

.nav-dropdown-option {
  padding: 9px 16px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-option:hover {
  background: var(--text);
  color: var(--bg);
}

.nav-dropdown-option + .nav-dropdown-option {
  border-top: 1px solid var(--border);
}