:root {
  --navy: #071b56;
  --navy-soft: #123582;
  --accent: #2f5fb8;
  --accent-light: #e7eefc;
  --accent-ink: #173c87;
  --display: "Raleway", Inter, sans-serif;
  --white: #ffffff;
  --paper: #ffffff;
  --mist: #f1f5ff;
  --ink: #071b56;
  --muted: #4f628c;
  --line: rgba(7, 27, 86, .13);
  --line-strong: rgba(7, 27, 86, .28);
  --shadow: 0 22px 58px rgba(7, 27, 86, .1);
  --radius: 8px;
}

* { box-sizing: border-box; letter-spacing: 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  display: none;
}

a { color: inherit; }
img { max-width: 100%; }

.announcement-bar {
  min-height: 38px;
  padding: 8px 22px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.announcement-bar span:first-child { color: var(--accent-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: calc(100% - 64px);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo {
  width: 142px;
  height: auto;
  display: block;
}

.brand-main,
.brand-sub { display: block; line-height: 1; }

.brand-main {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
}

.brand-sub {
  margin-top: 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover { background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }

.cart-pill {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(7, 21, 69, .16);
}

.cart-pill:hover { background: var(--navy-soft); color: var(--white); }

.cart-pill span {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
}

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 76px;
}

.messages { display: grid; gap: 10px; margin-bottom: 18px; }

.message {
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-home {
  min-height: 610px;
  padding: clamp(26px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-small {
  min-height: 270px;
  padding: clamp(26px, 5vw, 56px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 21, 69, .94), rgba(7, 21, 69, .72)),
    url("/static/store/dunedogs-band.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-copy { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: 72px;
  line-height: .9;
}

h2 {
  margin-bottom: 14px;
  font-size: 52px;
  line-height: .94;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.05;
}

.hero-small h1,
.hero-small h2 { color: var(--white); }

.lead,
.hero p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-small .lead,
.hero-small p { color: rgba(255, 255, 255, .82); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.btn, button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover, button:hover {
  transform: translateY(-2px);
  background: var(--navy-soft);
  box-shadow: 0 12px 26px rgba(7, 21, 69, .18);
}

.btn.secondary, button.secondary {
  background: var(--white);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.hero-image-stack { position: relative; min-height: 470px; }

.hero-band-card {
  position: relative;
  height: 100%;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(7, 21, 69, .22);
}

.hero-band-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(.94) contrast(1.04);
}

.hero-band-card::after {
  content: "Official band merch";
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats span {
  min-height: 72px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stats strong {
  display: block;
  color: var(--accent);
  font-family: var(--display);
  font-size: 34px;
  line-height: .9;
}

.brand-marquee {
  margin-bottom: 34px;
  padding: 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.brand-marquee span {
  min-width: max-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-marquee span:nth-child(2n) { background: rgba(47, 95, 184, .12); color: var(--navy); }

.brand-story {
  margin: 0 0 46px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, .92fr);
  gap: 24px;
  align-items: stretch;
}

.story-media, .story-copy {
  min-height: 430px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-copy { border-top: 5px solid var(--accent); }
.story-media { overflow: hidden; }

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.story-copy {
  padding: clamp(26px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-points { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 10px; }

.story-points span,
.detail-notes span,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(7, 21, 69, .06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-head {
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.section-head h2 { margin-bottom: 0; }

.category-bar { display: flex; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }

.category-bar a, .sidebar a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px var(--line);
}

.category-bar a:hover, .sidebar a:hover { background: var(--navy); color: var(--white); }

.layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.sidebar, .product-card, .empty, .summary-box, .table-wrap, .checkout-form, .detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.sidebar { position: sticky; top: 118px; padding: 18px; }
.sidebar h3 { margin: 0 0 14px; color: var(--navy); font-size: 22px; }
.sidebar a { width: 100%; margin: 7px 0; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.product-grid { align-items: stretch; }

.product-card { overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 30px 80px rgba(7, 21, 69, .18); }

.product-media { position: relative; display: block; overflow: hidden; background: var(--mist); }
.product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform .22s ease; }
.product-card:hover img { transform: scale(1.035); }

.product-info { padding: 18px; }
.product-kicker { margin-bottom: 9px; color: var(--accent); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.muted { min-height: 68px; color: var(--muted); font-size: 14px; font-weight: 600; line-height: 1.5; }
.product-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; }
.price { color: var(--navy); font-family: var(--display); font-size: 30px; font-weight: 700; line-height: .95; }

.text-link { display: inline-flex; margin-top: 14px; color: var(--navy); font-size: 13px; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.text-link:hover { color: var(--accent); }

.detail-card { display: grid; grid-template-columns: minmax(300px, 560px) minmax(0, 1fr); gap: clamp(26px, 5vw, 64px); padding: clamp(18px, 4vw, 42px); align-items: center; }
.detail-media { overflow: hidden; border-radius: 14px; background: var(--mist); }
.detail-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.detail-copy h1 { font-size: 60px; }
.detail-copy .lead { color: var(--muted); }
.detail-price { margin: 20px 0; font-size: 44px; }
.detail-notes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.detail-form { margin: 0; }

.cart-shell, .checkout-shell { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; align-items: start; }
.table-wrap { overflow-x: auto; }
table { width: 100%; min-width: 720px; border-collapse: collapse; }
th, td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
th { background: var(--navy); color: var(--white); font-size: 12px; font-weight: 900; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
.qty-actions { display: flex; gap: 8px; align-items: center; }
.qty-actions button { width: 38px; min-height: 38px; padding: 0; }
.qty-actions button.secondary { background: var(--white); color: var(--navy); box-shadow: inset 0 0 0 1px var(--line-strong); }
.summary-box { padding: 20px; }
.summary-row, .checkout-line { display: flex; justify-content: space-between; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.summary-row strong, .checkout-line strong { text-align: right; }
.summary-box .btn { width: 100%; margin-top: 12px; }
.checkout-complete { width: min(100%, 420px); margin: 0 auto; }
.checkout-complete-action { display: flex; justify-content: center; margin: 22px 0 10px; }

.checkout-form { padding: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 20px; }
.form-grid label { display: grid; gap: 7px; color: var(--navy); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.form-grid label:has(textarea) { grid-column: 1 / -1; }
input, textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 12px; background: var(--white); color: var(--ink); font: inherit; font-size: 15px; text-transform: none; }
input:focus, textarea:focus { outline: 3px solid rgba(47, 95, 184, .28); border-color: var(--accent); }
textarea { min-height: 120px; resize: vertical; }
small { color: #a13b35; font-size: 12px; }
.status.pending { background: rgba(47, 95, 184, .14); color: var(--navy); }
.status.complete { background: rgba(7, 21, 69, .08); color: var(--navy); }

.empty { padding: 30px; }
.empty-large { padding: clamp(34px, 7vw, 82px); }
.empty-large .lead { color: var(--muted); }

.footer {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer span { color: var(--navy); font-family: var(--display); font-size: 22px; font-weight: 700; text-transform: uppercase; }
.footer p { margin: 8px 0 0; }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--navy); font-size: 13px; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: var(--accent); }

@media (max-width: 980px) {
  h1 { font-size: 60px; }
  h2 { font-size: 44px; }
  .detail-copy h1 { font-size: 52px; }
  .hero-stats { grid-template-columns: 1fr; }
  .nav-wrap { min-height: auto; padding: 16px 0; position: static; align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero-home, .brand-story, .section-head, .layout, .detail-card, .cart-shell, .checkout-shell { grid-template-columns: 1fr; }
  .hero-home { min-height: auto; }
  .hero-image-stack, .hero-band-card, .hero-band-card img { min-height: 420px; }
  .category-bar { justify-content: flex-start; }
  .sidebar { position: static; }
  .footer { flex-direction: column; }
}

@media (max-width: 620px) {
  .announcement-bar { justify-content: flex-start; }
  .container, .nav-wrap, .footer { width: min(100% - 20px, 1220px); }
  .brand { align-items: flex-start; flex-direction: column; gap: 10px; }
  .brand-logo { width: 150px; }
  .brand-main { font-size: 20px; }
  nav a { min-height: 38px; padding: 8px 11px; }
  .hero-home, .hero-small { padding: 24px 18px; }
  .hero-image-stack, .hero-band-card, .hero-band-card img { min-height: 330px; }
  h1 { font-size: 46px; }
  h2 { font-size: 34px; }
  .detail-copy h1 { font-size: 42px; }
  .lead, .hero p { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .product-row { align-items: stretch; flex-direction: column; }
  .product-row button, .detail-copy button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .story-media, .story-media img { min-height: 320px; }
}

/* BRIGHT EDITORIAL PASS START */
.announcement-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--accent);
}
.announcement-bar span:first-child { color: var(--accent-light); }

nav a:hover { background: var(--accent-light); }

.hero-home {
  border: 2px solid var(--navy);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  color: var(--navy);
  gap: 0;
  padding: 0;
}
.hero-home .hero-copy { padding: clamp(30px, 5vw, 60px); }
.hero-home h1 { color: var(--navy); }
.hero-home .eyebrow { color: var(--accent-ink); }
.hero-home .lead { color: var(--muted); }
.hero-line {
  margin: -8px 0 18px;
  color: var(--accent-ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-home .btn { background: var(--accent); color: var(--white); }
.hero-home .btn:hover { background: #426fca; }
.hero-home .btn.secondary {
  background: var(--white);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
}
.hero-home .btn.secondary:hover { background: var(--accent-light); }

.hero-band-card {
  border: 0;
  border-left: 2px solid var(--navy);
  border-radius: 0;
  background: var(--navy);
  box-shadow: none;
}
.hero-band-card::after { display: none; }
.hero-band-card img { filter: saturate(1.05) contrast(1.02); }
.hero-band-card.hero-rail-image {
  min-height: 610px;
  background-image: url("/static/store/dunedogs-rail.jpg");
  background-position: center;
  background-size: cover;
}

.hero-stats span {
  border-color: var(--line-strong);
  border-radius: 0;
  background: var(--white);
  color: var(--navy);
}
.hero-stats strong { color: var(--accent-ink); }

.brand-marquee {
  margin-bottom: 48px;
  padding: 0;
  border: 0;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--white);
}
.brand-marquee span,
.brand-marquee span:nth-child(2n) {
  padding: 13px 16px;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
}
.brand-marquee span + span { border-left: 1px solid var(--line-strong); }
.brand-marquee span:nth-child(2n) { background: var(--accent-light); }

.brand-story { gap: 48px; }
.story-media, .story-copy {
  min-height: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.story-media { border: 2px solid var(--navy); }
.story-copy {
  padding: 18px 0;
  border-top: 6px solid var(--accent);
}
.story-media img { min-height: 400px; }

.section-head {
  margin-bottom: 32px;
  padding-top: 16px;
  border-top: 2px solid var(--navy);
}

.shop-toolbar {
  margin: 0 0 34px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line-strong);
}
.shop-toolbar p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.shop-toolbar strong {
  margin-right: 5px;
  color: var(--accent-ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 0;
}

.product-grid, .product-grid-editorial {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 24px;
}
.product-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.product-card:hover { transform: none; box-shadow: none; }
.product-media {
  border: 2px solid var(--navy);
  border-radius: 0;
  background: var(--mist);
}
.product-media::after { display: none; }
.product-card img {
  aspect-ratio: 4 / 5;
  object-position: center;
}
.product-card:hover img { transform: scale(1.018); }
.product-info {
  padding: 15px 0 21px;
  border-bottom: 5px solid var(--accent);
}
.product-kicker {
  margin: 0 0 5px;
  color: var(--accent-ink);
}
.product-info h3 {
  margin-bottom: 6px;
  font-size: 28px;
}
.product-info .muted {
  min-height: 0;
  margin-bottom: 0;
  max-width: 58ch;
}
.product-row { margin-top: 10px; }
.product-row button { background: var(--accent); color: var(--white); }
.product-row button:hover { background: #426fca; }
.product-info .text-link {
  margin-top: 8px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero-small {
  border: 2px solid var(--navy);
  border-left: 8px solid var(--accent);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  color: var(--navy);
}
.hero-small h1, .hero-small h2 { color: var(--navy); }
.hero-small .eyebrow { color: var(--accent-ink); }
.hero-small .lead, .hero-small p { color: var(--muted); }
.category-bar a, .sidebar a { border-radius: 0; box-shadow: none; }
.category-bar a:hover, .sidebar a:hover { background: var(--accent); color: var(--white); }

.detail-card { border-radius: 0; box-shadow: none; }
.detail-media { border: 2px solid var(--navy); border-radius: 0; }

@media (max-width: 980px) {
  .brand-story { gap: 28px; }
  .hero-band-card.hero-rail-image {
    min-height: 420px;
    border-top: 2px solid var(--navy);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .hero-line { font-size: 28px; }
  .product-grid, .product-grid-editorial { grid-template-columns: 1fr; gap: 38px; }
  .shop-toolbar { align-items: flex-start; flex-direction: column; }
  .brand-marquee span { padding: 11px 13px; }
}
/* BRIGHT EDITORIAL PASS END */

/* BAND-SITE HOME PASS START */
.site-header {
  position: sticky;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid var(--navy);
  backdrop-filter: none;
}

.nav-wrap {
  width: calc(100% - 64px);
  min-height: 108px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: static;
  left: auto;
  transform: none;
}

.brand-logo {
  width: 320px;
}

.primary-nav,
.utility-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
}

.primary-nav { justify-content: flex-start; }
.utility-nav { justify-content: flex-end; }

.primary-nav a,
.utility-nav a {
  min-height: 0;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
  box-shadow: none;
}

.primary-nav a:hover,
.utility-nav a:hover {
  background: transparent;
  border-bottom-color: var(--navy);
  box-shadow: none;
}

.cart-pill,
.cart-pill:hover {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}

.cart-pill span {
  min-width: 0;
  width: auto;
  height: auto;
  margin-left: 3px;
  background: transparent;
  color: #7a7f89;
  font-size: inherit;
}

.container {
  width: min(1220px, calc(100% - 48px));
  padding-top: 0;
}

.hero-home {
  width: 100vw;
  min-height: 0;
  margin: 0 0 84px calc(50% - 50vw);
  display: block;
  border: 0;
  border-bottom: 1px solid var(--navy);
  background: var(--white);
  color: var(--navy);
}

.hero-photo {
  min-height: clamp(500px, 67vh, 760px);
  margin: 0;
  border-bottom: 1px solid var(--navy);
  background-color: var(--navy);
  background-image: url("/static/store/dunedogs-rail.jpg");
  background-position: center;
  background-size: cover;
}

.hero-home .hero-copy {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .56fr);
  align-items: end;
  gap: 32px;
  text-shadow: none;
}

.hero-home h1 {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: 68px;
}

.hero-home .eyebrow,
.hero-home .lead {
  color: var(--accent-ink);
}

.hero-home .lead {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.hero-home .hero-actions {
  margin-top: 18px;
  transform: translateY(-8px);
}

.hero-home .hero-detail {
  justify-self: end;
}

.hero-home .hero-actions {
  justify-content: flex-end;
}
.hero-detail-label {
  margin: 0;
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-home .btn {
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 27, 86, .18);
}

.hero-home .btn:hover {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 16px 32px rgba(7, 27, 86, .24);
}

.home-showcase-head {
  display: block;
  margin-bottom: 26px;
  padding: 0 0 18px;
  border-top: 0;
  border-bottom: 2px solid var(--navy);
}

.home-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.showcase-piece:nth-child(even) {
  padding-top: 34px;
}

.showcase-piece a {
  display: block;
  color: var(--navy);
  text-decoration: none;
}

.showcase-media {
  overflow: hidden;
  border: 2px solid var(--navy);
  background: var(--mist);
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}

.showcase-piece a:hover .showcase-media img {
  transform: scale(1.025);
}

.showcase-caption {
  min-height: 66px;
  padding: 11px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  border-top: 2px solid var(--navy);
}

.showcase-caption h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1;
}

.showcase-caption span {
  color: var(--accent-ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  line-height: .85;
}

@media (max-width: 760px) {
  .nav-wrap {
    width: calc(100% - 28px);
    min-height: 76px;
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .brand {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
  }

  .brand-logo { width: 148px; }
  .primary-nav,
  .utility-nav { position: relative; z-index: 1; }
  .primary-nav { gap: 14px; margin-right: auto; }
  .utility-nav { margin-left: auto; }
  .primary-nav a,
  .utility-nav a { font-size: 13px; }

  .container { width: min(1220px, calc(100% - 28px)); }
  .hero-home {
    margin-bottom: 54px;
  }
  .hero-photo {
    min-height: 0;
    aspect-ratio: 1099 / 761;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .hero-home .hero-copy {
    width: min(1220px, calc(100% - 28px));
    display: block;
    padding: 28px 0 34px;
  }
  .hero-home h1 { font-size: 52px; }
  .hero-detail { margin-top: 20px; }
  .hero-home .hero-detail { justify-self: start; }
  .hero-home .hero-actions { justify-content: flex-start; transform: none; }
  .home-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .showcase-piece:nth-child(even) { padding-top: 20px; }
  .showcase-caption { min-height: 58px; padding-top: 9px; gap: 7px; }
  .showcase-caption h3 { font-size: 14px; }
  .showcase-caption span { font-size: 19px; }
}

@media (max-width: 380px) {
  .brand-logo { width: 128px; }
  .primary-nav { gap: 11px; }
  .primary-nav a,
  .utility-nav a { font-size: 12px; }
}

.hero-small {
  min-height: 0;
  margin: 34px 0 28px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 2px solid var(--navy);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-small .hero-copy { padding: 0; }
.hero-small h1 {
  margin: 0;
  color: var(--navy);
  font-size: 46px;
}

.shop-hero h1 {
  position: relative;
  display: inline-block;
  padding: 0 10px 5px 0;
  text-shadow: 5px 5px 0 var(--accent-light);
}

.rack-heading {
  position: relative;
  display: inline-block;
  padding: 0 8px 5px 0;
  text-shadow: 5px 5px 0 var(--accent-light);
}

/* TEE SIZE SELECTION */
.product-purchase {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.product-purchase .product-row { margin-top: 0; }

.size-select {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.size-select select {
  width: 100%;
  min-height: 42px;
  appearance: auto;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 8px 10px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.size-select select:focus {
  outline: 3px solid rgba(47, 95, 184, .24);
  border-color: var(--accent);
}

.detail-form {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.size-options {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.size-options legend {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.size-options-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.size-options input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.size-options label {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.size-options input:checked + label {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.size-options input:focus-visible + label {
  outline: 3px solid rgba(47, 95, 184, .34);
  outline-offset: 2px;
}

.cart-size {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero-small { margin: 26px 0 22px; padding-bottom: 14px; }
  .hero-small h1 { font-size: 36px; }
  .shop-hero h1 { text-shadow: 4px 4px 0 var(--accent-light); }
  .rack-heading { text-shadow: 4px 4px 0 var(--accent-light); }
  .size-options-list { max-width: 340px; }
}
/* BAND-SITE HOME PASS END */
