:root {
  --bg: #0c0b0f;
  --surface: #17151c;
  --surface-soft: #211b22;
  --text: #f7f2ef;
  --text-soft: #c4b8b2;
  --text-muted: #91857f;
  --line: rgba(247, 242, 239, 0.13);
  --accent: #ff604a;
  --accent-strong: #ff8a78;
  --accent-soft: rgba(255, 96, 74, 0.17);
  --success: #60b78c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 14px;
  --container: 1180px;
}

[data-theme="dark"] {
  --bg: #08070a;
  --surface: #141217;
  --surface-soft: #1c171d;
  --text: #f8f1ec;
  --text-soft: #c9bbb3;
  --text-muted: #9d8f87;
  --line: rgba(248, 241, 236, 0.14);
  --accent: #ff735e;
  --accent-strong: #ff9b8b;
  --accent-soft: rgba(255, 115, 94, 0.17);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 76px 0; }
.tint { background: linear-gradient(180deg, transparent, var(--surface-soft), transparent); }

.top-ad {
  position: relative;
  z-index: 30;
  background: linear-gradient(90deg, #7f2f24, #c94332, #ef5b45);
  color: #fff;
}
.top-ad-link {
  width: min(1200px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.top-ad strong {
  border: 1px solid rgba(255,255,255,.45);
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
}
.close-ad {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  width: 30px;
  height: 30px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  cursor: pointer;
}

.glass-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 48px;
  padding: 0 10px;
  background: #fff;
  border-radius: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.brand-logo {
  display: block;
  width: 200px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}
.brand span, .highlight, h1 span, .footer-brand span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}
.nav-links > li > a,
.nav-links > li > button,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 13px;
  color: var(--text-soft);
  border-radius: var(--radius);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  font-size: inherit;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.theme-toggle:hover {
  color: var(--text);
  background: var(--accent-soft);
}
.has-menu {
  position: relative;
  isolation: isolate;
}
.dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 999;
  display: grid;
  min-width: 220px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  visibility: hidden;
  transition: .18s ease;
}
.has-menu:hover .dropdown,
.has-menu:focus-within .dropdown,
.has-menu.open .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.dropdown a { display: block; padding: 10px 12px; border-radius: var(--radius); color: var(--text-soft); }
.dropdown a:hover { background: var(--accent-soft); color: var(--text); }
.menu-toggle, .mobile-theme { display: none; }
.icon-theme { width: 42px; padding: 0; justify-content: center; }

.hero {
  min-height: 640px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 7, 10, .92), rgba(12, 11, 15, .60) 52%, rgba(12, 11, 15, .20) 78%),
    url("/assets/lovegobuy/lovegobuy-hero.png?v=20260715") center/cover no-repeat;
  color: #fff7f3;
}
.hero::after {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  padding-right: 48%;
  text-align: left;
}
.eyebrow, .section-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .76rem;
}
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}
.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,247,243,.80);
  font-size: 1.12rem;
}
.hero-actions, .cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero .hero-actions { justify-content: flex-start; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}
.btn.primary { background: var(--accent); border-color: var(--accent); color: #24110d; }
.btn.ghost { background: color-mix(in srgb, var(--surface) 70%, transparent); color: var(--text); }
.hero .btn.ghost { color: #fff7f3; background: rgba(23,21,28,.78); border-color: rgba(255,255,255,.20); }
.btn.small { min-height: 40px; font-size: .9rem; }

.search-bar {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: 24px 1fr 44px 44px;
  align-items: center;
  gap: 8px;
  max-width: 720px;
  padding: 10px;
  background: rgba(23,21,28,.94);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.search-bar input {
  height: 42px;
  border: 0;
  outline: 0;
  background: transparent;
  min-width: 0;
  color: var(--text);
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button {
  height: 42px;
  width: 42px;
  border: 0;
  border-radius: var(--radius);
  background: #2b2226;
  color: var(--accent-strong);
  cursor: pointer;
}
.search-bar button:last-child { background: var(--accent); color: #24110d; }

.section-header { margin-bottom: 28px; }
.section-header h2, .guide-panel h2, .cta-banner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-header p { max-width: 620px; color: var(--text-soft); margin: 10px 0 0; }
.section-header.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-item {
  display: grid;
  place-items: center;
  min-height: 148px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20, 42, 73, .05);
  text-align: center;
}
.category-item i { color: var(--accent); font-size: 2.1rem; }
.category-item h3 { margin: 12px 0 0; font-size: 1rem; }
.category-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(20, 42, 73, .08);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--surface-soft);
}
.discount {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--success);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}
.product-body { padding: 14px; }
.product-body h3 { margin: 0 0 8px; font-size: 1rem; line-height: 1.3; min-height: 2.6em; }
.product-body p { margin: 0 0 8px; color: var(--accent-strong); font-weight: 900; }
.product-body span { color: var(--text-muted); font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; }
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.product-actions a, .product-actions button {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-weight: 800;
  cursor: pointer;
}
.product-actions a + a { border-left: 1px solid var(--line); color: var(--accent-strong); }
.product-actions button { border-left: 1px solid var(--line); color: var(--accent-strong); }
.loading-products {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: var(--text-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.category-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 800;
}
.category-filter a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #24110d;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px 0 0;
}
.page-count { color: var(--text-soft); font-weight: 800; }
.product-detail-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-soft);
}
.product-gallery {
  display: grid;
  gap: 12px;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.product-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.product-thumbs button.active { border-color: var(--accent); }
.product-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-image-list {
  display: grid;
  gap: 16px;
}
.product-image-list img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.guide-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 34px rgba(20, 42, 73, .07);
}
.guide-panel p, .guide-panel li { color: var(--text-soft); }
.guide-panel ul { padding-left: 20px; }
.steps { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; counter-reset: steps; }
.steps li {
  position: relative;
  padding-left: 58px;
  min-height: 46px;
  counter-increment: steps;
}
.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #24110d;
  font-weight: 900;
}
.steps strong, .steps span { display: block; }

.agent-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.agent-strip span {
  display: grid;
  place-items: center;
  min-height: 68px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  color: var(--text-soft);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 250px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.chip, .date {
  align-self: flex-start;
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 800;
}
.chip {
  color: #fff;
  background: var(--accent-strong);
  padding: 5px 9px;
  border-radius: 999px;
}
.news-card h3 { margin: 0; font-size: 1.1rem; line-height: 1.35; }
.news-card p { color: var(--text-soft); margin: 0; }
.news-card strong { margin-top: auto; color: var(--accent-strong); font-size: .92rem; }

.page-hero {
  padding: 150px 0 58px;
  background: linear-gradient(180deg, rgba(239,91,69,.13), rgba(255,255,255,0));
}
.page-hero .eyebrow { color: var(--accent-strong); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.page-hero h1 { max-width: 980px; margin: 12px 0 0; font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: .98; }
.page-hero p { max-width: 760px; color: var(--text-soft); font-size: 1.15rem; line-height: 1.7; }
.article-wrap { padding: 36px 0 90px; }
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}
.article-body, .article-sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(63,34,25,.09);
}
.article-body { padding: clamp(24px, 4vw, 46px); }
.article-body h2 { margin: 30px 0 12px; font-size: 1.55rem; }
.article-body h3 { margin: 24px 0 10px; font-size: 1.18rem; }
.article-body p, .article-body li { color: var(--text-soft); line-height: 1.8; }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--accent-strong); }
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 800;
}
.external-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  margin: 24px 0;
  border: 1px solid rgba(239,91,69,.32);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(239,91,69,.12), rgba(196,142,105,.09));
}
.external-link-card strong { display: block; color: var(--text); margin-bottom: 4px; }
.external-link-card span { color: var(--text-soft); }
.article-callout {
  padding: 20px;
  margin: 26px 0;
  border-left: 4px solid var(--accent-strong);
  background: var(--surface-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.nav-article {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--text);
}
.nav-article:hover { border-color: var(--accent-strong); color: var(--text); }
.nav-label { color: var(--accent-strong); font-size: .85rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.nav-title { margin-top: 7px; font-weight: 900; line-height: 1.35; }
.nav-article.next { text-align: right; }
.article-sidebar { padding: 22px; position: sticky; top: 96px; }
.article-sidebar h3 { margin-top: 0; }
.article-sidebar a { display: block; padding: 11px 0; border-top: 1px solid var(--line); color: var(--text); font-weight: 800; }
.article-sidebar a:hover { color: var(--accent-strong); }
.news-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stats div {
  display: grid;
  place-items: center;
  min-height: 120px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stats strong { font-size: 2.2rem; color: var(--accent-strong); }
.stats span { color: var(--text-soft); font-weight: 800; }

.cta-banner {
  text-align: center;
  padding: 46px 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(239,91,69,.17), rgba(196,142,105,.14)),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cta-banner p { color: var(--text-soft); max-width: 640px; margin: 12px auto 0; }

.social-dock {
  position: fixed;
  right: 18px;
  top: 45%;
  z-index: 20;
  display: grid;
  gap: 9px;
}
.social-dock a, .social-toggle, .back-to-top {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent-strong);
  box-shadow: 0 12px 26px rgba(63,34,25,.13);
  cursor: pointer;
}
.social-toggle { display: none; }
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

.site-footer {
  padding: 58px 0 26px;
  background: #070609;
  color: #f3e9e2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-brand { font-size: 1.35rem; font-weight: 900; margin-bottom: 10px; }
.site-footer p, .footer-bottom { color: #b9aaa1; }
.site-footer h4 { margin: 0 0 12px; }
.site-footer a { display: block; color: #d8cbc3; margin: 8px 0; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}
.muted { font-size: .9rem; }

@media (max-width: 900px) {
  .section { padding: 56px 0; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    background: var(--accent-soft);
    color: var(--text);
    border-radius: var(--radius);
  }
  .icon-theme { display: none; }
  .mobile-theme { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--surface-soft);
    margin: 6px 0 0;
  }
  .brand { width: 184px; padding: 0 8px; }
  .brand-logo { width: 164px; }
  .hero {
    min-height: 720px;
    background:
      linear-gradient(90deg, rgba(8, 7, 10, .86), rgba(12, 11, 15, .68)),
      url("/assets/lovegobuy/lovegobuy-hero.png?v=20260715") 62% center/cover no-repeat;
  }
  .hero-content {
    width: calc(100% - 24px);
    padding-right: 0;
    text-align: center;
  }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero .hero-actions { justify-content: center; }
  .search-bar { margin-left: auto; margin-right: auto; }
  .category-grid, .product-grid, .agent-strip { grid-template-columns: repeat(2, 1fr); }
  .guide-grid, .news-grid, .footer-grid { grid-template-columns: 1fr; }
  .article-shell, .news-list-grid { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .section-header.split { align-items: start; flex-direction: column; }
  .social-dock { top: auto; bottom: 76px; right: 18px; }
  .social-dock a { display: none; }
  .social-dock.open a { display: grid; }
  .social-toggle { display: grid; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  .search-bar { grid-template-columns: 20px 1fr 40px 40px; padding: 8px; }
  .category-grid, .product-grid, .agent-strip, .stats { grid-template-columns: 1fr; }
  .product-grid.compact { grid-template-columns: 1fr; }
  .category-item { min-height: 118px; }
  .stats div { min-height: 100px; }
}


/* Outfitreps product cards in category section */
.category-products-grid .product-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.category-products-grid .product-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
}
.category-products-grid .product-link-card .product-body span i {
  font-size: .78rem;
}
.shop-all-products {
  white-space: nowrap;
}
@media (max-width: 900px) {
  .shop-all-products { width: fit-content; }
}


/* Fixed Categories nav button */
.nav-fixed-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #24110d !important;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(239, 91, 69, .22);
}
.nav-fixed-button:hover {
  background: var(--accent-strong);
  color: #fff !important;
}

/* Compact OutfitReps category showcase */
.category-showcase {
  height: 770px;
  min-height: 770px;
  max-height: 770px;
  padding: 46px 0;
  overflow: hidden;
}
.category-showcase .section-header {
  margin-bottom: 22px;
}
.outfit-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  justify-content: space-between;
  gap: 18px 20px;
}
.outfit-category-card {
  display: grid;
  grid-template-rows: 202px 48px;
  width: 260px;
  height: 250px;
  overflow: hidden;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(10, 20, 35, .08);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.outfit-category-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 52%, var(--line));
  box-shadow: var(--shadow);
}
.outfit-category-card img {
  display: block;
  width: 100%;
  height: 202px;
  object-fit: cover;
  background: var(--surface-soft);
}
.outfit-category-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  font-size: 1rem;
  font-weight: 900;
}
.outfit-category-card span i {
  color: var(--accent-strong);
  font-size: .86rem;
}

@media (max-width: 1150px) and (min-width: 901px) {
  .outfit-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .outfit-category-card { width: 100%; }
}

@media (max-width: 900px) {
  .category-showcase {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 56px 0;
    overflow: visible;
  }
  .outfit-category-grid {
    grid-template-columns: repeat(2, 260px);
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .outfit-category-grid { grid-template-columns: 260px; }
}

/* Outfit guides homepage showcase */
#news {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #111016 0%, #1b151b 100%);
}
#news .section-header {
  align-items: end;
  margin-bottom: 34px;
}
#news .section-header h2 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  letter-spacing: -.035em;
}
#news .section-header p {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.home-more-news {
  min-height: 54px;
  padding: 0 22px;
  white-space: nowrap;
}
.home-news-grid {
  gap: 20px;
}
.home-news-grid .news-card {
  min-height: 300px;
  padding: 28px;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(20, 35, 60, .05);
}
.home-news-grid .news-card .date {
  color: #a99d97;
  font-size: .9rem;
}
.home-news-grid .news-card h3 {
  font-size: 1.35rem;
  line-height: 1.28;
}
.home-news-grid .news-card p {
  font-size: 1.02rem;
  line-height: 1.55;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--accent-strong);
  font-weight: 900;
  text-decoration: none;
}
.news-read-more:hover { color: var(--accent); }

@media (max-width: 900px) {
  #news .section-header { align-items: flex-start; }
  .home-news-grid { grid-template-columns: 1fr; }
  .home-news-grid .news-card { min-height: 250px; }
}

/* Buyer Route Guide homepage — 2026-07-30 */
.route-page {
  --route-coral: #ff6953;
  --route-mint: #a8e9cf;
  --route-blue: #67c5dc;
  --route-ink: #0a0b10;
  --route-panel: #14161d;
  --route-line: rgba(255,255,255,.14);
  background: var(--route-ink);
  color: #f8f4f1;
}
.route-page h1, .route-page h2, .route-page h3 { letter-spacing: -.035em; }
.glass-nav .nav-fixed-button {
  background: var(--accent) !important;
  color: #24110d !important;
}
.glass-nav .nav-fixed-button:hover {
  background: var(--accent-strong) !important;
  color: #24110d !important;
}
.buyer-route-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 13% 18%, rgba(255,105,83,.17), transparent 25%),
    radial-gradient(circle at 88% 80%, rgba(103,197,220,.13), transparent 27%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #0a0b10;
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
}
.buyer-route-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -250px;
  top: -250px;
  border: 1px solid rgba(168,233,207,.23);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(168,233,207,.018), 0 0 0 140px rgba(168,233,207,.012);
}
.route-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}
.route-kicker, .route-index {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--route-mint);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.route-hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 22px;
  font-size: clamp(3.4rem, 6.5vw, 6.9rem);
  line-height: .92;
}
.route-hero-copy > p {
  max-width: 700px;
  margin: 0;
  color: #c8c2bf;
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.7;
}
.route-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.route-hero-actions .btn { min-height: 50px; }
.route-search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  max-width: 720px;
  margin-top: 22px;
  padding: 8px 8px 8px 17px;
  border: 1px solid var(--route-line);
  border-radius: 15px;
  background: rgba(20,22,29,.88);
  box-shadow: 0 18px 52px rgba(0,0,0,.28);
}
.route-search > i { color: var(--route-blue); }
.route-search input {
  min-width: 0;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}
.route-search input::placeholder { color: #8f929b; }
.route-search button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: var(--route-coral);
  color: #190c09;
  font-weight: 950;
  cursor: pointer;
}
.route-board {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(30,33,43,.96), rgba(15,17,23,.96));
  box-shadow: 0 35px 100px rgba(0,0,0,.46);
  transform: rotate(1.3deg);
}
.route-board::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: 17px;
  pointer-events: none;
}
.route-board-head, .route-board-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
}
.route-board-head small { color: #8f929b; }
.route-stations {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}
.route-stations::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 25px;
  width: 3px;
  background: linear-gradient(var(--route-coral), var(--route-blue), var(--route-mint));
}
.route-stations li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  align-items: center;
  min-height: 92px;
}
.route-stations li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 4px solid #171922;
  border-radius: 50%;
  background: var(--route-coral);
  color: #190c09;
  font-size: .78rem;
  font-weight: 950;
}
.route-stations li:nth-child(2) > span, .route-stations li:nth-child(3) > span { background: var(--route-blue); color: #061217; }
.route-stations li:nth-child(4) > span { background: var(--route-mint); color: #071510; }
.route-stations strong { display: block; font-size: 1.22rem; }
.route-stations small { display: block; margin-top: 3px; color: #9da0aa; line-height: 1.45; }
.route-board-foot { justify-content: flex-start; gap: 14px; color: var(--route-mint); }
.route-board-foot i { flex: 1; color: #6e727d; }
.route-section { padding: 88px 0; border-top: 1px solid var(--route-line); }
.route-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}
.route-section-head h2 {
  max-width: 920px;
  margin: 10px 0 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: .98;
}
.route-section-head > p {
  max-width: 440px;
  margin: 0;
  color: #a7a3a2;
  line-height: 1.65;
}
.goal-route-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.goal-route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--route-line);
  border-radius: 20px;
  background: var(--route-panel);
}
.goal-route-card::after {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
}
.goal-route-card.featured-route {
  background: linear-gradient(145deg, #25212a, #181a22);
  border-color: rgba(255,105,83,.45);
  transform: translateY(-12px);
}
.goal-route-code { color: var(--route-mint); font-size: .7rem; font-weight: 950; letter-spacing: .13em; }
.goal-route-card > i { margin: 54px 0 22px; color: var(--route-coral); font-size: 2.2rem; }
.goal-route-card h3 { margin: 0 0 12px; font-size: 1.8rem; }
.goal-route-card p { margin: 0; color: #aaa5a3; line-height: 1.65; }
.goal-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 26px; }
.goal-links a {
  padding: 8px 12px;
  border: 1px solid var(--route-line);
  border-radius: 999px;
  color: #f8f4f1;
  font-size: .82rem;
  font-weight: 850;
}
.goal-links a:hover { background: var(--route-coral); color: #190c09; border-color: var(--route-coral); }
.finds-section { background: #0e1016; }
.route-link { display: inline-flex; align-items: center; gap: 10px; color: var(--route-mint); font-weight: 950; }
.route-find-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.route-find-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--route-line);
  border-radius: 16px;
  background: var(--route-panel);
  color: #fff;
}
.route-find-card img { width: 100%; aspect-ratio: 1.45/1; object-fit: cover; filter: saturate(.78) contrast(1.04); transition: .3s ease; }
.route-find-card:hover img { transform: scale(1.035); filter: saturate(1); }
.route-find-card span {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 0 17px;
  font-weight: 950;
}
.route-find-card b { color: var(--route-coral); font-size: .72rem; letter-spacing: .08em; }
.route-find-card i { color: var(--route-mint); }
.route-notes { background: #11131a; }
.route-note-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 46px;
}
.route-note-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--route-coral), var(--route-blue), var(--route-mint));
}
.route-note-track article {
  position: relative;
  padding: 66px 28px 28px;
  border: 1px solid var(--route-line);
  border-radius: 18px;
  background: #181b23;
}
.route-note-track article > span {
  position: absolute;
  top: 17px;
  left: 28px;
  color: #8f929b;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.route-note-track article > i {
  position: absolute;
  top: 0;
  right: 26px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 5px solid #11131a;
  border-radius: 50%;
  background: var(--route-coral);
  color: #190c09;
}
.route-note-track article:nth-child(2) > i { background: var(--route-blue); }
.route-note-track article:nth-child(3) > i { background: var(--route-mint); }
.route-note-track h3 { margin: 0 0 12px; font-size: 1.55rem; }
.route-note-track p, .route-note-track li { color: #aaa7a6; line-height: 1.6; }
.route-note-track ul { margin: 20px 0 0; padding-left: 18px; }
.agent-route-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 28px;
  padding: 18px;
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 15px;
}
.agent-route-strip span { flex: 0 0 auto; padding: 8px 13px; border-radius: 8px; background: #20232d; color: #b9b6b4; font-size: .82rem; font-weight: 850; }
.how-route { background: #0b0c11; }
.route-timeline { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 0; padding: 0; list-style: none; }
.route-timeline li { position: relative; min-height: 300px; padding: 0 26px 28px 0; }
.route-timeline li::before { content: ""; position: absolute; left: 0; right: 0; top: 29px; height: 2px; background: var(--route-line); }
.route-timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 7px solid #0b0c11;
  border-radius: 50%;
  background: var(--route-coral);
  color: #190c09;
  font-weight: 950;
}
.route-timeline li:nth-child(2) > span, .route-timeline li:nth-child(3) > span { background: var(--route-blue); }
.route-timeline li:nth-child(4) > span { background: var(--route-mint); }
.route-timeline li div { padding: 28px 22px 0 7px; }
.route-timeline small { color: var(--route-mint); font-weight: 950; letter-spacing: .12em; }
.route-timeline h3 { margin: 8px 0 10px; font-size: 1.35rem; }
.route-timeline p { margin: 0; color: #aaa7a6; line-height: 1.6; }
.route-agent-link { margin-top: 10px; }
.route-news { background: linear-gradient(180deg,#15171f,#101118); }
.news-head-actions { display: grid; justify-items: end; gap: 12px; }
.editorial-cadence {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(103,197,220,.3);
  border-radius: 999px;
  background: rgba(103,197,220,.08);
  color: #b8dfe8;
  font-size: .78rem;
  font-weight: 850;
}
.route-news .home-news-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.route-news .news-card { min-height: 300px; border-color: var(--route-line); background: var(--route-panel); box-shadow: none; }
.route-news .news-card:nth-child(1), .route-news .news-card:nth-child(4) { border-top: 3px solid var(--route-coral); }
.route-news .news-card:nth-child(2), .route-news .news-card:nth-child(5) { border-top: 3px solid var(--route-blue); }
.route-news .news-card:nth-child(3), .route-news .news-card:nth-child(6) { border-top: 3px solid var(--route-mint); }
.route-news .news-card .date { color: #969aa4; }
.route-faq { background: #0a0b10; }
.faq-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.faq-grid details { padding: 20px 22px; border: 1px solid var(--route-line); border-radius: 14px; background: var(--route-panel); }
.faq-grid summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-weight: 900; list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary i { color: var(--route-coral); transition: .2s ease; }
.faq-grid details[open] summary i { transform: rotate(45deg); }
.faq-grid p { margin: 16px 0 0; color: #aaa7a6; line-height: 1.65; }
.route-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(168,233,207,.28);
  border-radius: 18px;
  background: linear-gradient(110deg,rgba(168,233,207,.09),rgba(255,105,83,.08));
}
.route-support span { color: var(--route-mint); font-size: .72rem; font-weight: 950; letter-spacing: .13em; }
.route-support h3 { margin: 8px 0 0; font-size: 1.7rem; }
@media (max-width: 1000px) {
  .route-hero-grid { grid-template-columns: 1fr; }
  .route-board { max-width: 680px; transform: none; }
  .goal-route-grid, .route-note-track { grid-template-columns: 1fr; gap: 18px; }
  .goal-route-card { min-height: 330px; }
  .goal-route-card.featured-route { transform: none; }
  .route-note-track::before { display: none; }
  .route-note-track article { padding-top: 70px; }
  .route-note-track article > i { top: 24px; transform: none; border-width: 0; }
  .route-find-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .route-timeline { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px 0; }
  .route-news .home-news-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .buyer-route-hero { min-height: 0; padding: 60px 0; }
  .route-hero-copy h1 { font-size: clamp(3rem,15vw,4.8rem); }
  .route-hero-actions { display: grid; }
  .route-hero-actions .btn { width: 100%; }
  .route-search { grid-template-columns: 20px 1fr 48px; }
  .route-search button { width: 48px; padding: 0; font-size: 0; }
  .route-search button i { font-size: 1rem; }
  .route-board { padding: 20px; }
  .route-section { padding: 64px 0; }
  .route-section-head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .news-head-actions { justify-items: start; }
  .route-section-head h2 { font-size: 2.7rem; }
  .route-find-grid, .route-timeline, .route-news .home-news-grid, .faq-grid { grid-template-columns: 1fr; }
  .route-timeline li { min-height: 0; padding-bottom: 20px; }
  .route-timeline li::before { display: none; }
  .route-support { align-items: flex-start; flex-direction: column; }
  .route-support .btn { width: 100%; }
}
