/* ── Fli World — Brand Showcase Styles ── */

:root {
  --bg: #060606;
  --bg-2: #0e0e0e;
  --surface: #161616;
  --surface-2: #1f1f1f;
  --border: #2a2a2a;
  --fg: #f0ece4;
  --fg-dim: #8a8680;
  --accent: #f0c040;
  --accent-2: #e06020;
  --accent-dim: rgba(240, 192, 64, 0.08);
  --font-head: 'Cinzel', serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(6,6,6,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 18px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: var(--accent);
  color: #000;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_168913/images/b7b15873-62b4-4c9a-8731-60f2761698fc.webp');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,6,6,0.45) 0%,
    rgba(6,6,6,0.65) 50%,
    rgba(6,6,6,0.90) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-crown {
  width: 90px;
  margin: 0 auto 24px;
  opacity: 0.95;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--fg);
  text-shadow: 0 2px 24px rgba(0,0,0,0.75);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-tagline {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--fg-dim);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.5;
  font-weight: 300;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(240,192,64,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,192,64,0.35);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fg-dim);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fg-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── STORY ── */
.story {
  background: var(--bg);
  padding: 100px 48px;
}
.story-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.story-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  color: var(--fg);
}
.story-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--fg-dim);
  font-weight: 300;
}
.story-body p + p { margin-top: 20px; }
.story-divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 48px auto 0;
}

/* ── VALUES ── */
.values {
  background: var(--bg-2);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.values-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.values-header { text-align: center; margin-bottom: 56px; }
.values-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0.3);
}
.value-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.value-desc {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.55;
  font-weight: 300;
}

/* ── COMING SOON ── */
.coming-soon {
  background: var(--bg);
  padding: 100px 48px;
  text-align: center;
}
.coming-inner {
  max-width: 600px;
  margin: 0 auto;
}
.coming-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(240,192,64,0.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.coming-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--fg);
}
.coming-sub {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin-bottom: 44px;
  font-weight: 300;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}
.signup-row {
  display: flex;
  gap: 10px;
}
.signup-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.signup-input::placeholder { color: var(--fg-dim); }
.signup-input:focus { border-color: var(--accent); }
.signup-btn {
  background: var(--accent);
  color: #000;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 13px 24px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.signup-btn:hover { background: #e0b030; }
.signup-msg {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.signup-msg.ok { color: var(--accent); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-logo { opacity: 0.7; }
.footer-logo img { height: 52px; width: auto; }
.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-social a {
  color: var(--fg-dim);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.footer-social a:hover { color: var(--accent); }
.footer-copy {
  font-size: 11px;
  color: #444;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { min-height: 85vh; }
  .story, .coming-soon, .values { padding: 72px 24px; }
  .signup-row { flex-direction: column; }
  .footer { padding: 40px 24px; }
  .footer-inner { gap: 20px; }
}
/* ── SUBSCRIBER DASHBOARD ── */
.dash-main {
  min-height: calc(100vh - 65px);
  background: var(--bg);
  padding: 64px 24px 80px;
}
.dash-container {
  max-width: 900px;
  margin: 0 auto;
}

.dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.dash-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.dash-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.dash-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-dim);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.dash-back:hover { color: var(--accent); }
.dash-crown-wrap { flex-shrink: 0; }
.dash-crown { height: 64px; width: auto; opacity: 0.75; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.dash-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-stat-primary {
  border-color: rgba(240, 192, 64, 0.3);
}
.dash-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.dash-stat-value {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.dash-stat-primary .dash-stat-value { color: var(--accent); }
.dash-stat-date .dash-stat-value { font-size: clamp(18px, 3vw, 24px); color: var(--fg-dim); }

.dash-recent-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 192, 64, 0.06);
  border: 1px solid rgba(240, 192, 64, 0.25);
  border-radius: 3px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 32px;
}
.dash-recent-banner svg { color: var(--accent); flex-shrink: 0; }
.dash-recent-banner strong { color: var(--accent); }

.dash-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.dash-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.dash-table-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dash-table-count {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dash-empty {
  padding: 60px 24px;
  text-align: center;
  color: var(--fg-dim);
  font-size: 15px;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
}
.dash-table thead tr {
  background: var(--bg-2);
}
.dash-table th {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 14px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.dash-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.dash-table tbody tr:last-child td { border-bottom: none; }
.dash-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.dash-row-new { background: rgba(240, 192, 64, 0.03); }

.dash-email-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-email-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
}
.dash-badge-new {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 10px;
}

.dash-date-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash-date-main {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg);
}
.dash-date-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--fg-dim);
}

.dash-status-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.5);
}
.dash-status-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .nav { padding: 0 16px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 28px; }
  .dash-header { flex-direction: column; gap: 24px; }
  .dash-crown { height: 48px; }
  .dash-stats { grid-template-columns: 1fr; }
  .dash-table th, .dash-table td { padding: 14px 16px; }
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-shop {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-shop:hover { color: var(--accent); }

/* ── PRODUCTS ── */
.products {
  background: var(--bg);
  padding: 80px 48px 100px;
}
.products-header {
  text-align: center;
  margin-bottom: 48px;
}
.products-crown-wrap {
  margin-bottom: 16px;
}
.products-crown {
  width: 56px;
  height: auto;
  margin: 0 auto;
  opacity: 0.7;
}
.products-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.products-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
  line-height: 1.1;
}
.products-headline em {
  font-style: normal;
  color: var(--accent);
}

/* ── COLLECTION NAV ── */
.collection-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.col-tab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.col-tab:hover {
  color: var(--fg);
  border-color: rgba(240,192,64,0.4);
}
.col-tab.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ── COLLECTION GROUP ── */
.collections-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.collection-group {
  margin-bottom: 72px;
}

/* ── COLLECTION LABEL ── */
.col-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.col-label-name {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.col-label-count {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── COLLECTION BANNER ── */
.col-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21/6;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 32px;
  background: var(--surface);
}
.col-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.col-banner-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px 32px;
  background: linear-gradient(to top, rgba(6,6,6,0.85) 0%, transparent 60%);
}
.col-banner-name {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
}
.col-banner-count {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: rgba(240,192,64,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.product-card--soon {
  opacity: 0.75;
}
.product-card--soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-2);
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img {
  transform: scale(1.04);
}
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 2px;
}
.product-info {
  padding: 20px;
}
.product-collection {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-colorway {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-dim);
  font-weight: 300;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.product-price {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.product-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.size-select {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 7px 10px;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.size-select:focus { border-color: var(--accent); }
.size-select option { background: var(--surface); }
.add-to-cart {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  border: none;
  padding: 8px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.add-to-cart:hover { background: #e0b030; }
.product-soon-text {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--fg-dim);
  font-style: italic;
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .products { padding: 64px 24px 80px; }
  .collection-nav { gap: 6px; margin-bottom: 40px; }
  .col-tab { font-size: 10px; padding: 7px 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .col-banner { aspect-ratio: 16/6; }
  .col-banner-label { padding: 16px 20px; }
  .product-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .product-controls { width: 100%; }
  .size-select, .add-to-cart { flex: 1; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 14px; }
  .product-name { font-size: 13px; }
  .product-price { font-size: 18px; }
  .collection-nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .collection-nav::-webkit-scrollbar { display: none; }
}