/* 1Less site shell — brand anchor + More menu (Dinner secondary) */
.oneless-shell {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 14px;
  padding: 12px 16px;
  min-height: 68px;
  border-radius: var(--radius, 16px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.12));
  box-shadow: var(--shadow-sm, 0 2px 12px rgba(21, 34, 56, 0.06));
  position: sticky;
  top: 8px;
  z-index: 40;
}

/* Field Trip Kit: warmer “gift shop × outing” bar — product name is the star */
.oneless-shell[data-product="bdo"] {
  gap: 14px 16px;
  padding: 14px 18px;
  min-height: 76px;
  background:
    linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 248, 230, 0.94) 42%,
      rgba(232, 248, 240, 0.95) 100%
    );
  border-color: rgba(15, 92, 92, 0.16);
  box-shadow:
    0 2px 14px rgba(21, 34, 56, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.oneless-shell .shell-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--teal-deep, #0a4545);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  transition: color 0.15s ease;
}

.oneless-shell .shell-brand:hover {
  color: var(--teal, #0f5c5c);
}

.oneless-shell .shell-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(15, 92, 92, 0.1);
}

@media (max-width: 520px) {
  .oneless-shell {
    padding: 10px 12px;
    gap: 10px;
    top: 6px;
    min-height: 62px;
  }
  .oneless-shell[data-product="bdo"] {
    padding: 12px 14px;
    min-height: 68px;
  }
  .oneless-shell .shell-brand {
    font-size: 1.05rem;
  }
  .oneless-shell .shell-brand img {
    width: 42px;
    height: 42px;
  }
  .oneless-shell[data-product="bdo"] .shell-product {
    font-size: 1.22rem;
  }
  .oneless-shell[data-product="bdo"] .shell-product small {
    font-size: 0.72rem;
    padding: 3px 8px;
  }
}

.oneless-shell .shell-product {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 750;
  font-size: 0.95rem;
  color: var(--ink, #152238);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-decoration: none;
}
a.shell-product:hover,
a.shell-product:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.oneless-shell .shell-product small {
  display: block;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--muted-soft, #5a6b82);
  margin-top: 1px;
}

/* Product title: big, confident, not a muted caption */
.oneless-shell[data-product="bdo"] .shell-product {
  font-weight: 850;
  font-size: clamp(1.28rem, 2.8vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--teal-deep, #0a4545);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 2px 0;
}

.oneless-shell[data-product="bdo"] .shell-product small {
  display: inline-block;
  margin-top: 0;
  font-weight: 750;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #9a3412;
  background: rgba(255, 207, 90, 0.42);
  border: 1px solid rgba(217, 101, 46, 0.28);
  border-radius: 999px;
  padding: 3px 10px 4px;
  max-width: 100%;
}

.oneless-shell .shell-more-wrap {
  position: relative;
  margin-left: auto;
}

.oneless-shell .shell-more {
  appearance: none;
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.14));
  background: rgba(247, 251, 249, 0.95);
  color: var(--teal-deep, #0a4545);
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 9px 14px;
  min-height: 40px;
  border-radius: var(--radius-pill, 999px);
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.oneless-shell .shell-more:hover,
.oneless-shell .shell-more[aria-expanded="true"] {
  background: #e8f6f0;
  border-color: var(--teal, #0f5c5c);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(21, 34, 56, 0.05));
}

.oneless-shell .shell-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 232px;
  padding: 8px;
  border-radius: var(--radius, 16px);
  background: var(--card, #fff);
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.12));
  box-shadow: var(--shadow-lg, 0 18px 40px rgba(21, 34, 56, 0.12));
}

.oneless-shell .shell-menu[hidden] {
  display: none !important;
}

.oneless-shell .shell-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm, 12px);
  text-decoration: none;
  color: var(--ink, #152238);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.12s ease;
}

.oneless-shell .shell-menu a small {
  display: block;
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--muted-soft, #5a6b82);
  margin-top: 2px;
}

.oneless-shell .shell-menu a:hover {
  background: var(--card-tint, #f0faf5);
  color: var(--teal-deep, #0a4545);
}

.oneless-shell .shell-menu a[aria-current="page"] {
  background: #e5f6ee;
}

/* Dinner page is denser — slightly tighter shell */
body[data-mode="dinner"] .oneless-shell {
  margin: 0 0 12px;
  max-width: 720px;
}
