/* ============================================================
   Clutch City v4 — Outfitters Page Styles
   Brand green: #39ff6a  |  Background: #0a0a0a
   ============================================================ */

/* ── SEASON BANNER ─────────────────────────────────────────── */
.outfitters-season-banner {
  background: #39ff6a;
  color: #000;
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Bricolage Grotesque', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 9999;
  flex-wrap: wrap;
}
.outfitters-season-banner .banner-icon {
  font-size: 14px;
}
.outfitters-season-banner .banner-text {
  line-height: 1.4;
}
.outfitters-season-banner .banner-cta {
  background: #000;
  color: #39ff6a;
  padding: 4px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  transition: opacity .2s;
}
.outfitters-season-banner .banner-cta:hover {
  opacity: .8;
}

/* ── TOPO CANVAS ───────────────────────────────────────────── */
#topo-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}
#hero .hero-split {
  position: relative;
  z-index: 2;
}
#hero .hero-gradient {
  z-index: 1;
}
#hero #hero-canvas {
  z-index: 0;
}

/* ── TOPO DIVIDERS ─────────────────────────────────────────── */
.topo-divider {
  width: 100%;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='40'%3E%3Cellipse cx='50' cy='20' rx='45' ry='15' fill='none' stroke='%2339ff6a' stroke-width='0.5' opacity='0.3'/%3E%3Cellipse cx='50' cy='20' rx='35' ry='10' fill='none' stroke='%2339ff6a' stroke-width='0.5' opacity='0.3'/%3E%3Cellipse cx='50' cy='20' rx='25' ry='6' fill='none' stroke='%2339ff6a' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.5;
  margin: 0;
}

/* ── OUTFITTER TOOLS SECTION ───────────────────────────────── */
#outfitter-tools {
  padding: 5rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.outfitter-tools-header {
  margin-bottom: 2.5rem;
}
.outfitter-tools-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin: .5rem 0 .75rem;
  line-height: 1.2;
}
.outfitter-tools-header h2 span {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--green, #39ff6a);
}
.outfitter-tools-header p {
  color: var(--text-muted, #888899);
  font-size: .92rem;
  max-width: 580px;
  line-height: 1.65;
}
.outfitter-tools-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.outfitter-tools-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.outfitter-tools-table thead th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted, #888899);
  padding: .6rem 1rem .8rem;
  text-align: left;
  font-weight: 400;
}
.outfitter-tools-table thead th:last-child {
  text-align: center;
  width: 70px;
}
.outfitter-tools-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s;
}
.outfitter-tools-table tbody tr:hover {
  background: rgba(57,255,106,.03);
}
.outfitter-tools-table tbody tr:last-child {
  border-bottom: none;
}
.ot-before {
  padding: .9rem 1rem;
  color: var(--text-muted, #888899);
  font-size: .83rem;
  width: 38%;
  vertical-align: middle;
}
.ot-after {
  padding: .9rem 1rem;
  color: #fff;
  font-size: .83rem;
  vertical-align: middle;
}
.ot-after strong {
  color: var(--green, #39ff6a);
  font-weight: 600;
  display: block;
  margin-bottom: .15rem;
}
.ot-after span {
  color: var(--text-muted, #888899);
  font-size: .78rem;
}
.ot-check {
  text-align: center;
  vertical-align: middle;
  padding: .9rem 1rem;
}
.ot-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(57,255,106,.12);
  border: 1px solid rgba(57,255,106,.25);
  border-radius: 50%;
  color: var(--green, #39ff6a);
  font-size: .75rem;
}

/* ── PHOTO OVERLAYS ────────────────────────────────────────── */
.outfitter-photo-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}
.outfitter-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 0;
}
.outfitter-photo-bg > * {
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .outfitters-season-banner {
    font-size: 11px;
    gap: 8px;
    padding: 8px 12px;
  }
  .outfitter-tools-table thead {
    display: none;
  }
  .outfitter-tools-table tbody tr {
    display: block;
    padding: .75rem 0;
  }
  .outfitter-tools-table tbody td {
    display: block;
    padding: .2rem .5rem;
    width: 100% !important;
  }
  .ot-check { text-align: left; }
}
