/* wethenorth.bestdarknetmarket.net */

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  size-adjust: 105%;
  ascent-override: 90%;
  descent-override: 20%;
  line-gap-override: 0%;
  src: url(fonts/inter-latin.woff2) format("woff2");
}

@font-face {
  font-family: Orbitron;
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  size-adjust: 110%;
  ascent-override: 85%;
  descent-override: 22%;
  line-gap-override: 0%;
  src: url(fonts/orbitron-latin.woff2) format("woff2");
}

:root {
  --bg: #000;
  --surface: #0a0a0a;
  --card: #111;
  --border: #1f1f1f;
  --accent: #3b82f6;
  --accent-dim: rgba(59, 130, 246, 0.12);
  --cyan: #06b6d4;
  --text: #f4f4f5;
  --text-2: #a1a1aa;
  --text-3: #71717a;
  --ok: #22c55e;
  --warn: #eab308;
  --bad: #ef4444;
  --r: 8px;
  --rl: 12px;
  --w: 1180px;
  --hdr: 68px;
  --font: Inter, system-ui, sans-serif;
  --display: Orbitron, var(--font);
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: var(--hdr);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
svg { display: block; flex-shrink: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--cyan); }
ul { list-style-position: inside; }

.container {
  width: 100%;
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: 1.15rem;
}

.main { padding-block: 1.75rem 2.5rem; }
.matrix-bg { display: none !important; }

/* Header & nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--border);
}

.header .container { padding-block: 0.9rem; }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-text {
  font-family: var(--display);
  font-size: clamp(0.9rem, 2.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  text-transform: uppercase;
}

.logo-text:hover { color: var(--accent); }

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid transparent;
  border-radius: var(--r);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--accent-dim);
  border-color: rgba(59, 130, 246, 0.35);
}

.nav-icon { width: 16px; height: 16px; }
.dropdown-arrow { width: 12px; height: 12px; transition: transform 0.2s; }
.markets-dropdown:has(.markets-menu.active) .dropdown-arrow { transform: rotate(180deg); }

.markets-dropdown { position: relative; }

.markets-menu.dropdown-simple {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: min(300px, 90vw);
  padding: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
}

.markets-menu.dropdown-simple.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.markets-list { list-style: none; }

.markets-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.85rem;
  color: var(--text-2);
  border-radius: 6px;
}

.markets-list a:hover { background: var(--accent-dim); color: var(--text); }

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.online { background: var(--ok); }
.status-dot.offline { background: var(--warn); }
.status-dot.closed { background: var(--bad); }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
}

.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--card);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header h3 {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.mobile-menu-close {
  padding: 0.35rem;
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
}

.mobile-menu-content { padding: 0.75rem; overflow-y: auto; }

.mobile-nav-link {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text-2);
  border-radius: 6px;
}

.mobile-nav-link:hover { background: var(--accent-dim); color: var(--text); }

.mobile-menu-section {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.mobile-section-title {
  padding: 0 0.75rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Typography & heroes */
.page-header,
.reg-hero,
.review-hero,
.shipping-hero,
.strains-hero,
.status-hero {
  padding: 1.25rem 0 1rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.page-header h1,
.reg-hero h1,
.review-hero h1,
.shipping-hero h1,
.strains-hero h1,
.status-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.page-header p,
.reg-hero p,
.review-hero p,
.shipping-hero p,
.strains-hero p,
.status-hero p {
  font-size: 0.95rem;
  color: var(--text-2);
  max-width: 40rem;
  margin-inline: auto;
}

.main section > h2,
.main > section > h2,
.prerequisites h3,
.canada-advantage h3,
.mirror-status h3,
.related-guides h3,
.cta-section h3 {
  font-family: var(--display);
  font-size: clamp(0.95rem, 2.3vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.main section > p,
.overview-content p,
.verdict-section p,
.canada-advantage p {
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

/* Shared cards & grids */
.advantage,
.detail-card,
.category-deep-card,
.forum-thread,
.related-card,
.prereq-item,
.security-card,
.tip-card,
.trouble-card,
.issue-item,
.province-card,
.stealth-card,
.option-card,
.category-card,
.subcategory,
.grade-card,
.strain-type,
.guide-link,
.verification-step,
.why-section > div > div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1rem;
}

.details-grid,
.advantages-grid,
.categories-deep-grid,
.forum-threads,
.related-grid,
.prereq-list,
.security-grid,
.tips-grid,
.trouble-grid,
.issues-list,
.provinces-grid,
.stealth-grid,
.options-grid,
.subcategory-grid,
.grading-grid,
.strain-types,
.guides-grid,
.verification-steps,
.pros-cons-grid,
.features-grid,
.history-grid {
  display: grid;
  gap: 0.85rem;
}

.details-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.advantages-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.categories-deep-grid,
.features-grid,
.trouble-grid,
.provinces-grid,
.stealth-grid,
.options-grid,
.grading-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.subcategory-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.strain-types { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.pros-cons-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.guides-grid,
.related-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.history-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }

.market-overview,
.market-details,
.market-advantages,
.safety-tips,
.product-categories-deep,
.community-forum,
.related-markets,
.pros-cons,
.features-section,
.comparison-section,
.verdict-section,
.registration-steps,
.security-section,
.first-order-tips,
.provinces-section,
.stealth-section,
.shipping-options,
.delivery-tips,
.categories-section,
.grading-section,
.choosing-section,
.buyer-tips,
.troubleshooting,
.common-issues,
.mirror-status {
  margin-bottom: 2rem;
}

/* Homepage market */
.market-hero { display: grid; gap: 1.25rem; }
.market-actions { order: -1; }

.market-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.15rem;
}

.market-info-card h2 {
  font-family: var(--display);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  margin-bottom: 0.65rem;
}

.market-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.status {
  padding: 0.2rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.status.online { color: var(--ok); background: rgba(34, 197, 94, 0.12); }
.rating { color: var(--warn); font-size: 0.88rem; }
.market-description { color: var(--text-2); margin-bottom: 0.85rem; line-height: 1.65; }
.market-photo { margin-top: 1rem; text-align: center; }

.market-hero .market-photo {
  margin-top: 4rem;
}
.market-video { margin-inline: auto; border-radius: var(--r); border: 1px solid var(--border); }

.market-links-container {
  padding: 1.1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
}

.market-links-title {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.onion-link-plain {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.onion-link-plain:last-child { border-bottom: none; padding-bottom: 0; }

.onion-link-plain .link-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.onion-link-plain .link-url {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text);
  word-break: break-all;
  user-select: text;
}

.detail-card h4,
.advantage h4,
.category-deep-card h4 {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.advantage strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}

.advantage p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }

.categories-list,
.payment-methods,
.security-features,
.shipping-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.category-item,
.payment-method,
.security-feature,
.shipping-option {
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.subcategories-list { list-style: none; margin: 0.4rem 0 0.6rem; }
.subcategories-list li { font-size: 0.82rem; color: var(--text-2); padding: 0.1rem 0; }
.product-count { font-size: 0.72rem; font-weight: 600; color: var(--accent); }
.category-deep-icon { font-size: 1.35rem; margin-bottom: 0.25rem; }

.safety-tips .tip-item { padding: 1rem; }
.safety-tips .tip-item h4 { font-size: 0.92rem; margin-bottom: 0.3rem; }
.safety-tips .tip-item p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }
.tips-list { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* Callouts */
.warning-box,
.mnemonic-warning,
.no-international {
  padding: 1.1rem;
  margin: 1.25rem 0;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--rl);
}

.warning-box h3,
.warning-box h4,
.mnemonic-warning h3,
.no-international h3 { color: var(--bad); margin-bottom: 0.35rem; }

.warning-box p,
.mnemonic-warning p,
.mnemonic-warning li,
.no-international p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}

.mnemonic-warning ul { margin: 0.4rem 0 0.4rem 1.15rem; }

.bookmark-reminder {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem;
  margin: 1.25rem 0;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: var(--rl);
}

.verification-section,
.why-section {
  margin: 2rem 0;
}

.verification-section > h2,
.why-section > h2 {
  margin-bottom: 1rem;
}

.warning-box h3 {
  margin-bottom: 0.75rem;
}

.bookmark-content h4 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.bookmark-icon { flex-shrink: 0; color: var(--bad); }
.bookmark-content h4 { margin-bottom: 0.3rem; }
.bookmark-content p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }

.verification-section > p,
.why-section > p { color: var(--text-2); margin-bottom: 1rem; line-height: 1.65; }

.verification-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.vstep-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
}

.verification-step h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.verification-step p { font-size: 0.86rem; color: var(--text-2); line-height: 1.55; }

.verification-step a {
  color: var(--accent);
}

.why-section > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.85rem;
}

.why-section > div > div h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.why-section > div > div p { font-size: 0.86rem; color: var(--text-2); line-height: 1.55; }

/* FAQ accordion */
.faq-section { margin: 2rem 0; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  font: inherit;
  text-align: left;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq-question:hover { background: var(--accent-dim); }
.faq-question h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.faq-question .icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform 0.2s;
}
.faq-item.active .faq-question .icon svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.active .faq-answer { max-height: 1500px; }
.faq-answer-content {
  padding: 0 1.15rem 1rem;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}
.faq-answer-content a { color: var(--accent); }

/* Forum */
.thread-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
}

.thread-author { font-weight: 600; color: var(--text); }

.thread-badge {
  padding: 0.12rem 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  background: var(--surface);
  color: var(--text-3);
}

.thread-badge.admin { color: var(--accent); background: var(--accent-dim); }
.thread-badge.verified { color: var(--ok); background: rgba(34, 197, 94, 0.12); }
.thread-badge.mod { color: var(--warn); background: rgba(234, 179, 8, 0.12); }
.thread-date { color: var(--text-3); margin-left: auto; }
.thread-title { font-size: 0.92rem; margin-bottom: 0.35rem; }
.thread-preview { font-size: 0.85rem; color: var(--text-2); margin-bottom: 0.5rem; line-height: 1.55; }
.thread-stats { font-size: 0.75rem; color: var(--text-3); }

.related-card {
  display: block;
  color: inherit;
}

.related-card:hover { border-color: var(--accent); color: inherit; }
.related-card h4 { font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--text); }
.related-card p { font-size: 0.82rem; color: var(--text-2); }

/* Registration */
.prerequisites {
  padding: 1.1rem;
  margin-bottom: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
}

.prerequisites h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.prereq-list { grid-template-columns: 1fr; }

.prereq-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem 0.85rem;
}

.prereq-check { color: var(--ok); font-weight: 700; }

.step-timeline { display: flex; flex-direction: column; gap: 0.85rem; }

.timeline-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.step-marker {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
}

.step-content h4 { font-size: 0.92rem; margin-bottom: 0.25rem; }
.step-content p,
.step-content li { font-size: 0.88rem; color: var(--text-2); }
.step-content ul,
.step-content ol { margin: 0.4rem 0 0.4rem 1.15rem; }

.optional-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
}

.security-card h4,
.tip-card h4,
.trouble-card h4 { font-size: 0.88rem; margin-bottom: 0.3rem; }

.security-card p,
.tip-card p,
.trouble-card p { font-size: 0.86rem; color: var(--text-2); line-height: 1.55; }

.tip-icon,
.stealth-icon,
.feature-icon { font-size: 1.25rem; margin-bottom: 0.35rem; }

/* Review */
.rating-summary {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
}

.overall-score { text-align: center; }

.score-number {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.score-stars { font-size: 1.1rem; color: var(--warn); margin: 0.25rem 0; }
.score-label { font-size: 0.78rem; color: var(--text-3); }

.rating-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem 0.65rem;
  align-items: center;
}

.rating-label { font-size: 0.82rem; color: var(--text-2); grid-column: 1; }
.rating-value { font-size: 0.82rem; font-weight: 600; color: var(--text); grid-column: 2; grid-row: 1; }
.rating-bar { grid-column: 1 / -1; height: 6px; background: var(--surface); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--accent); border-radius: 3px; }

.pros-card,
.cons-card {
  padding: 1.1rem;
  border-radius: var(--rl);
  border: 1px solid var(--border);
}

.pros-card { background: rgba(34, 197, 94, 0.06); border-color: rgba(34, 197, 94, 0.25); }
.cons-card { background: rgba(239, 68, 68, 0.06); border-color: rgba(239, 68, 68, 0.25); }

.pros-card h3 { color: var(--ok); font-size: 0.9rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.4rem; }
.cons-card h3 { color: var(--bad); font-size: 0.9rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.4rem; }

.pros-list li,
.cons-list li { font-size: 0.86rem; color: var(--text-2); margin: 0 0 0.3rem 1rem; }

.feature-card h4 { font-size: 0.88rem; margin-bottom: 0.3rem; }
.feature-card p { font-size: 0.86rem; color: var(--text-2); line-height: 1.55; }

.comparison-section { overflow-x: auto; }

table.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 0.55rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th { background: var(--surface); font-weight: 600; }
.comparison-table td { color: var(--text-2); }
.comparison-table tr:last-child td { border-bottom: none; }
.check-yes { color: var(--ok); font-weight: 600; }
.check-no { color: var(--bad); }

.verdict-section {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
}

.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ok);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
}

/* Status */
.current-status {
  text-align: center;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
}

.status-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.status-dot-large {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ok);
}

.current-status.online .status-text {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ok);
  letter-spacing: 0.06em;
}

.last-checked { font-size: 0.78rem; color: var(--text-3); }

.enhanced-status {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.uptime-display {
  text-align: center;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
}

.uptime-percentage {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ok);
}

.uptime-label { font-size: 0.82rem; color: var(--text-3); }

.status-history h3 { font-size: 0.88rem; margin-bottom: 0.6rem; }

.status-bars {
  display: flex;
  gap: 3px;
  margin: 0.6rem 0;
}

.day-bar {
  flex: 1;
  min-height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3px;
  border-radius: 3px;
  font-size: 0.5rem;
  color: var(--text-3);
}

.day-bar.online { background: rgba(34, 197, 94, 0.35); }
.day-bar.degraded { background: rgba(234, 179, 8, 0.35); }
.day-bar.down { background: rgba(239, 68, 68, 0.35); }

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.72rem;
  color: var(--text-2);
}

.legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.2rem;
}

.legend-dot.online { background: var(--ok); }
.legend-dot.degraded { background: var(--warn); }
.legend-dot.down { background: var(--bad); }

.incident {
  padding: 0.75rem;
  margin-bottom: 0.45rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.incident-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.incident-date { font-size: 0.78rem; color: var(--text-3); }
.incident-status.resolved { font-size: 0.68rem; font-weight: 700; color: var(--ok); }
.incident-type { font-size: 0.82rem; color: var(--text-2); }

.mirror-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mirror-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.mirror-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  flex-shrink: 0;
}

.mirror-url {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.76rem;
  line-height: 1.5;
  word-break: break-all;
  color: var(--text);
  user-select: text;
}

.mirror-actions { display: flex; gap: 0.4rem; flex-shrink: 0; }

.btn-small {
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}

.btn-go-small { display: inline-block; }
.btn-small:hover { border-color: var(--accent); color: var(--accent); }

.day-status {
  text-align: center;
  padding: 0.65rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.day-status .day { font-size: 0.72rem; color: var(--text-3); margin-bottom: 0.35rem; }
.day-status .bar { height: 4px; background: var(--ok); border-radius: 2px; margin-bottom: 0.35rem; }
.day-status .uptime { font-size: 0.78rem; font-weight: 600; color: var(--text); }

.issue-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.issue-icon { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
.issue-content h4 { font-size: 0.88rem; margin-bottom: 0.2rem; }
.issue-content p { font-size: 0.86rem; color: var(--text-2); line-height: 1.55; }

/* Shipping */
.canada-advantage {
  padding: 1.1rem;
  margin-bottom: 1.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--rl);
}

.canada-advantage h3 { display: flex; align-items: center; gap: 0.4rem; }

.province-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.province-time { font-family: var(--display); font-size: 0.85rem; color: var(--accent); margin-bottom: 0.15rem; }
.province-note { font-size: 0.78rem; color: var(--text-3); }

.option-card.recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25);
}

.option-name { font-weight: 600; margin-bottom: 0.2rem; }
.option-time { font-size: 0.82rem; color: var(--accent); margin-bottom: 0.35rem; }
.option-desc { font-size: 0.86rem; color: var(--text-2); line-height: 1.55; }

.delivery-tips .tip-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
}

.delivery-tips .tip-icon { font-size: 1.2rem; flex-shrink: 0; }
.delivery-tips .tip-content h4 { font-size: 0.88rem; margin-bottom: 0.2rem; }
.delivery-tips .tip-content p { font-size: 0.86rem; color: var(--text-2); }

/* Strains catalog */
.category-header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.category-icon { font-size: 1.5rem; line-height: 1; }
.category-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.category-desc { font-size: 0.84rem; color: var(--text-2); }

.subcategory-name { font-weight: 600; font-size: 0.85rem; margin-bottom: 0.15rem; }
.subcategory-info { font-size: 0.78rem; color: var(--text-3); }

.grade-letter {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.grade-aaaa { color: var(--accent); }
.grade-aaa { color: var(--ok); }
.grade-aa { color: var(--warn); }
.grade-a { color: var(--text-3); }

.grade-name { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.25rem; }
.grade-desc { font-size: 0.84rem; color: var(--text-2); line-height: 1.55; }

.strain-type h4 { font-size: 0.92rem; margin-bottom: 0.35rem; }
.strain-type p { font-size: 0.86rem; color: var(--text-2); margin-bottom: 0.5rem; }

.strain-effects { display: flex; flex-wrap: wrap; gap: 0.35rem; }

.effect-tag {
  padding: 0.2rem 0.5rem;
  font-size: 0.72rem;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* CTA & guides */
.cta-section {
  text-align: center;
  padding: 1.5rem 1rem;
  margin: 1.5rem 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: var(--r);
}

.cta-btn:hover { background: #2563eb; color: #fff; }

.guide-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-size: 0.88rem;
}

.guide-link:hover { border-color: var(--accent); color: var(--text); }

/* Footer & misc */
.breadcrumb-nav { margin: 1.5rem 0 0.4rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-2);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.3rem;
  color: var(--text-3);
}

.footer {
  margin-top: 1.5rem;
  padding: 2rem 0 1.25rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.footer-section p { font-size: 0.82rem; color: var(--text-2); }
.footer-nav { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-nav a { font-size: 0.82rem; color: var(--text-2); }

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
}

.scroll-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover { background: #2563eb; }
.scroll-to-top svg { width: 18px; height: 18px; }

@media (min-width: 700px) {
  .rating-summary {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .market-hero {
    grid-template-columns: 1fr minmax(260px, 320px);
    align-items: start;
  }

  .market-actions {
    order: 0;
    position: sticky;
    top: calc(var(--hdr) + 0.75rem);
    align-self: start;
  }

  .enhanced-status {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 768px) {
  .nav,
  .markets-dropdown { display: none; }

  .mobile-menu-toggle { display: flex; }
}

.research-disclaimer {
  margin: 0 0 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
  border-left: 3px solid rgba(220, 38, 38, 0.5);
  background: rgba(15, 23, 42, 0.4);
}

.research-disclaimer p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
