/* Shared CSS for state landing pages (kentucky, ohio, west-virginia, virginia, tennessee, indiana, pennsylvania, north-carolina, michigan, georgia) */
/* ===== STATE PAGE — PREMIUM REDESIGN ===== */

    /* Hero */
    .state-hero {
      background: linear-gradient(145deg, #0d2619 0%, #1a4228 55%, #122b1c 100%);
      color: #fff;
      border-radius: 1rem;
      padding: 3rem 2rem 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 2rem;
    }
    .state-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(195,165,60,0.14) 0%, transparent 70%);
      pointer-events: none;
    }
    .state-hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.9);
      margin-bottom: 0.75rem;
      position: relative;
    }
    .state-hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 700;
      line-height: 1.1;
      color: #fff;
      margin: 0 0 0.75rem;
      position: relative;
    }
    .state-hero h1 em {
      font-style: italic;
      color: #c9a84c;
    }
    .state-hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      max-width: 520px;
      margin: 0 auto 1.75rem;
      line-height: 1.65;
      position: relative;
    }
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0 0;
      margin-bottom: 1.75rem;
      position: relative;
    }
    .hero-stat {
      text-align: center;
      padding: 0 1.25rem;
    }
    .hero-stat-num {
      display: block;
      font-size: 1.7rem;
      font-weight: 700;
      color: #c9a84c;
      line-height: 1;
    }
    .hero-stat-lbl {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 0.2rem;
      display: block;
    }
    .hero-divider {
      width: 1px;
      height: 32px;
      background: rgba(255,255,255,0.15);
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      position: relative;
    }
    .btn-hero-primary {
      background: #c9a84c;
      color: #0d2619;
      font-weight: 700;
      padding: 0.75rem 1.6rem;
      border-radius: 0.5rem;
      text-decoration: none;
      font-size: 0.92rem;
      transition: background 0.15s, transform 0.1s;
      display: inline-block;
    }
    .btn-hero-primary:hover { background: #deba60; transform: translateY(-1px); }
    .btn-hero-secondary {
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.9);
      border: 1px solid rgba(255,255,255,0.22);
      padding: 0.75rem 1.6rem;
      border-radius: 0.5rem;
      text-decoration: none;
      font-size: 0.92rem;
      transition: background 0.15s;
      display: inline-block;
    }
    .btn-hero-secondary:hover { background: rgba(255,255,255,0.18); }

    /* Market Intelligence */
    .mi-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      border-left: 4px solid #2c6e4f;
      border-radius: 0.75rem;
      padding: 1.5rem 1.75rem;
      margin-bottom: 2rem;
      box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    }
    .mi-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    .mi-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
    }
    .mi-update {
      font-size: 0.75rem;
      color: var(--text-muted);
      background: rgba(0,0,0,0.04);
      padding: 0.2rem 0.65rem;
      border-radius: 999px;
    }
    .mi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
      gap: 0.55rem;
    }
    .mi-species {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.5rem 0.75rem;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 0.45rem;
      background: rgba(0,0,0,0.015);
    }
    .mi-species-name { font-size: 0.85rem; font-weight: 600; }
    .demand-pill {
      font-size: 0.68rem;
      font-weight: 700;
      padding: 0.12rem 0.5rem;
      border-radius: 999px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .demand-high   { background: #dcfce7; color: #15803d; }
    .demand-medium { background: #fef9c3; color: #854d0e; }
    .demand-steady { background: #f1f5f9; color: #475569; }
    .demand-low    { background: #fee2e2; color: #b91c1c; }
    .mi-note {
      margin-top: 0.85rem;
      font-size: 0.83rem;
      color: var(--text-muted);
      line-height: 1.65;
      border-top: 1px solid rgba(0,0,0,0.06);
      padding-top: 0.75rem;
    }

    /* Search */
    .premium-search {
      background: #fff;
      border-radius: 0.75rem;
      padding: 1.5rem 1.75rem;
      margin-bottom: 2rem;
      box-shadow: 0 3px 14px rgba(0,0,0,0.05);
      border: 1px solid rgba(0,0,0,0.06);
    }
    .premium-search h2 { font-size: 1.05rem; margin: 0 0 1rem; }
    .search-form {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: flex-end;
    }
    .search-form .form-group { flex: 1; min-width: 140px; }
    .search-form label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 0.35rem;
    }
    .search-form select,
    .search-form input[type="text"] {
      width: 100%;
      padding: 0.65rem 0.85rem;
      border-radius: 0.45rem;
      border: 1.5px solid rgba(0,0,0,0.11);
      font-size: 0.92rem;
      background: #fafaf9;
      transition: border-color 0.15s;
      box-sizing: border-box;
    }
    .search-form select:focus,
    .search-form input:focus { outline: none; border-color: #2c6e4f; }

    /* Buyer / Seller guides */
    .guide-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .guide-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 0.75rem;
      padding: 1.5rem;
      box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    }
    .guide-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.75rem;
      font-size: 1.3rem;
    }
    .guide-card-icon.buyer  { background: rgba(44,110,79,0.1); }
    .guide-card-icon.seller { background: rgba(201,168,76,0.12); }
    .guide-card h3 { font-size: 0.98rem; margin: 0 0 0.75rem; }
    .guide-card ul {
      margin: 0;
      padding-left: 1.1rem;
      line-height: 1.9;
      font-size: 0.86rem;
      color: var(--text-secondary);
    }
    .guide-card ul li strong { color: var(--text-primary); }

    /* Price table */
    .price-section {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 0.75rem;
      padding: 1.5rem 1.75rem;
      margin-bottom: 2rem;
      box-shadow: 0 3px 12px rgba(0,0,0,0.04);
      overflow-x: auto;
    }
    .price-section h2 { font-size: 1.1rem; margin: 0 0 0.3rem; }
    .price-section .section-note { font-size: 0.8rem; color: var(--text-muted); margin: 0 0 1.1rem; }
    .price-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.86rem;
      min-width: 520px;
    }
    .price-table th {
      background: rgba(44,110,79,0.07);
      color: #1a4228;
      font-size: 0.73rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.6rem 0.85rem;
      text-align: left;
      border-bottom: 2px solid rgba(44,110,79,0.15);
    }
    .price-table td {
      padding: 0.65rem 0.85rem;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      vertical-align: top;
    }
    .price-table tr:last-child td { border-bottom: none; }
    .price-table tr:hover td { background: rgba(44,110,79,0.025); }
    .price-table td:first-child { font-weight: 600; }
    .price-val { font-weight: 600; color: #2c6e4f; white-space: nowrap; }
    .price-note { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 0.1rem; }
    .price-disclaimer { font-size: 0.77rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.5; }

    /* Species grid */
    .species-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 0.75rem;
      margin: 1.1rem 0;
    }
    .species-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 0.65rem;
      padding: 1rem 0.85rem;
      text-align: center;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      transition: transform 0.14s, box-shadow 0.14s, border-color 0.14s;
      display: block;
    }
    .species-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.09);
      border-color: rgba(44,110,79,0.3);
    }
    .species-card-icon { font-size: 1.4rem; margin-bottom: 0.35rem; display: block; }
    .species-card strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
    .species-card span { font-size: 0.75rem; color: var(--text-muted); }

    /* Region cards */
    .region-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }
    .region-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 0.65rem;
      padding: 1.1rem 1.25rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .region-card h4 { font-size: 0.95rem; margin: 0 0 0.4rem; color: #1a4228; }
    .region-card p { font-size: 0.83rem; color: var(--text-secondary); margin: 0 0 0.55rem; line-height: 1.55; }
    .region-mills {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      flex-wrap: wrap;
    }
    .region-mills span {
      background: rgba(44,110,79,0.08);
      color: #2c6e4f;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.1rem 0.5rem;
      border-radius: 999px;
    }

    /* Seasonal guide */
    .seasonal-section {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 0.75rem;
      padding: 1.5rem 1.75rem;
      margin-bottom: 2rem;
      box-shadow: 0 3px 12px rgba(0,0,0,0.04);
    }
    .seasonal-months {
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 0.65rem 0.85rem;
      align-items: center;
      margin-top: 1rem;
    }
    .seasonal-species-lbl { font-size: 0.84rem; font-weight: 600; }
    .seasonal-bars {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 3px;
      height: 18px;
    }
    .s-bar { border-radius: 3px; height: 100%; }
    .s-bar.peak   { background: #2c6e4f; }
    .s-bar.good   { background: #7ec8a0; }
    .s-bar.slow   { background: #e2e8f0; }
    .seasonal-month-labels {
      grid-column: 2;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 3px;
    }
    .seasonal-month-labels span {
      font-size: 0.6rem;
      color: var(--text-muted);
      text-align: center;
    }
    .seasonal-legend {
      display: flex;
      gap: 1.25rem;
      margin-top: 0.85rem;
      font-size: 0.75rem;
      color: var(--text-muted);
      flex-wrap: wrap;
    }
    .seasonal-legend span { display: flex; align-items: center; gap: 0.35rem; }
    .leg-swatch { width: 12px; height: 12px; border-radius: 2px; display: inline-block; }

    /* Live listings container */
    .listings-section {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 0.75rem;
      padding: 1.5rem 1.75rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 3px 12px rgba(0,0,0,0.04);
    }
    .listings-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }
    .listings-header h2 { font-size: 1.05rem; margin: 0; }
    .live-dot {
      display: inline-block;
      width: 7px;
      height: 7px;
      background: #22c55e;
      border-radius: 50%;
      margin-right: 0.4rem;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.35; }
    }
    @keyframes shimmer {
      0%, 100% { opacity: 0.6; }
      50%       { opacity: 1; }
    }

    /* Buyer request banner */
    .buyer-request-banner {
      background: rgba(44,110,79,0.06);
      border: 1px solid rgba(44,110,79,0.18);
      border-radius: 0.75rem;
      padding: 1.1rem 1.4rem;
      margin-bottom: 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* Premium dark CTA */
    .premium-cta {
      background: linear-gradient(140deg, #0d2619 0%, #1a4228 100%);
      border-radius: 1rem;
      padding: 2.5rem 2rem;
      text-align: center;
      color: #fff;
      margin: 2rem 0;
      position: relative;
      overflow: hidden;
    }
    .premium-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 65% 80% at 50% 0%, rgba(201,168,76,0.16) 0%, transparent 65%);
      pointer-events: none;
    }
    .premium-cta h2 { color: #fff; font-size: 1.6rem; margin-bottom: 0.5rem; position: relative; }
    .premium-cta p  { color: rgba(255,255,255,0.62); margin-bottom: 1.5rem; position: relative; }
    .premium-cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; position: relative; }

    /* About section */
    .about-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 0.75rem;
      padding: 1.75rem 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 3px 12px rgba(0,0,0,0.04);
      line-height: 1.82;
      color: var(--text-secondary);
    }
    .about-card p + p { margin-top: 1rem; }
    .about-card strong { color: var(--text-primary); }

    /* Species guide links */
    .species-guides-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 0.65rem;
      margin-top: 1rem;
    }
    .species-guide-link {
      display: block;
      padding: 0.9rem 1rem;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 0.6rem;
      text-decoration: none;
      color: var(--text-primary);
      box-shadow: 0 1px 4px rgba(0,0,0,0.04);
      transition: border-color 0.14s, box-shadow 0.14s;
    }
    .species-guide-link:hover {
      border-color: rgba(44,110,79,0.3);
      box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    }
    .species-guide-link strong { display: block; margin-bottom: 0.15rem; font-size: 0.92rem; }
    .species-guide-link span { font-size: 0.79rem; color: var(--text-muted); }

    @media (max-width: 768px) {
      .state-hero { padding: 2rem 1.25rem 1.75rem; }
      .guide-split { grid-template-columns: 1fr; }
      .hero-divider { display: none; }
      .hero-stat { padding: 0 0.75rem; }
      .mi-grid { grid-template-columns: 1fr 1fr; }
      .seasonal-months { grid-template-columns: 70px 1fr; gap: 0.5rem 0.6rem; }
    }
    @media (max-width: 500px) {
      .species-grid { grid-template-columns: repeat(2, 1fr); }
      .mi-grid { grid-template-columns: 1fr 1fr; }
      .search-form { flex-direction: column; }
      .search-form .form-group { min-width: 100%; }
      .hero-stats { gap: 0.3rem 0; }
      .hero-stat { padding: 0 0.6rem; }
      .hero-stat-num { font-size: 1.35rem; }
    }
