/* Header chrome */
.chroma-skip { position: absolute; left: -9999px; top: 0; background: var(--chroma-red); color: #fff; padding: 10px 16px; z-index: 1000; }
.chroma-skip:focus { left: 8px; top: 8px; }

/* Thin red bar across the very top */
.chroma-topbar { height: 24px; background: var(--chroma-red); }

.chroma-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--chroma-cream);
  border-bottom: 1px solid rgba(36, 22, 18, .08);
}
.chroma-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--chroma-header-h);
  padding-top: 10px;
  padding-bottom: 10px;
}
.chroma-header__logo { flex: 0 0 auto; }
.chroma-header__logo img { height: 64px; width: auto; }

.chroma-nav { margin-left: auto; }
.chroma-nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.chroma-nav__menu a {
  display: block;
  padding: .6em .9em;
  font-family: var(--chroma-font-body);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: .3px;
  color: var(--chroma-ink);
  transition: color .15s ease;
}
.chroma-nav__menu a:hover,
.chroma-nav__menu .current-menu-item > a { color: var(--chroma-red); }

.chroma-header__actions { display: flex; align-items: center; gap: 10px; }
.chroma-header__icon { position: relative; display: inline-flex; color: var(--chroma-ink); }
.chroma-header__icon svg { width: 26px; height: 26px; }
.chroma-header__icon:hover { color: var(--chroma-red); }
.chroma-cart-count {
  position: absolute; top: -8px; right: -10px;
  min-width: 18px; height: 18px; padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--chroma-red); color: #fff; border-radius: 999px;
  font-family: var(--chroma-font-body); font-size: 11px; line-height: 1;
}
.chroma-cart-count[data-count="0"] { display: none; }

.chroma-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  background: transparent; border: 0; cursor: pointer;
}
.chroma-burger span { display: block; height: 3px; width: 100%; background: var(--chroma-ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.chroma-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.chroma-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.chroma-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Drawer */
.chroma-drawer { background: var(--chroma-cream); border-top: 1px solid rgba(36,22,18,.08); }
.chroma-drawer[hidden] { display: none; }
.chroma-drawer__menu { list-style: none; margin: 0; padding: 8px 0; }
.chroma-drawer__menu a {
  display: block; padding: 14px var(--chroma-gutter);
  font-family: var(--chroma-font-body); font-weight: 400; font-size: 19px;
  color: var(--chroma-ink); text-align: right;
}
.chroma-drawer__menu a:hover { color: var(--chroma-red); }

@media (max-width: 992px) {
  .chroma-nav { display: none; }
  .chroma-burger { display: flex; }
  .chroma-header__logo img { height: 52px; }
}
