/*
Theme Name: TriggerLink Audio
Theme URI: https://triggerlinkaudio.com
Author: Audio Integration Solutions LLC
Author URI: https://triggerlinkaudio.com
Description: Custom WordPress theme for TriggerLink Audio — professional 12V trigger to IR blaster modules. Features navy/teal brand palette, WooCommerce integration, and responsive design.
Version: 1.4.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: triggerlink
Tags: e-commerce, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, woocommerce

TriggerLink Audio — Closed-Loop Trigger-Activated IR Command System
Patent Pending | Audio Integration Solutions LLC
*/

/* ===== CSS Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== CSS Custom Properties ===== */
:root {
  /* Brand Colors — Navy/Slate + Teal Accent */
  --tl-bg: #f4f5f7;
  --tl-bg-dark: #0f1318;
  --tl-fg: #1a2030;
  --tl-fg-dark: #dde1e8;
  --tl-card: #f7f8fa;
  --tl-card-dark: #161b24;
  --tl-border: #d8dbe3;
  --tl-border-dark: #242c38;
  --tl-primary: #0e8b8b;
  --tl-primary-hover: #0a7070;
  --tl-primary-light: #e6f5f5;
  --tl-primary-dark: #14a8a8;
  --tl-muted: #6b7280;
  --tl-muted-dark: #8b95a5;
  --tl-destructive: #b91c1c;

  /* Typography */
  --font-heading: 'Cabinet Grotesk', 'General Sans', -apple-system, sans-serif;
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --container-max: 1152px;
  --section-py: 4rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
}

/* ===== Typography Loading ===== */
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('https://cdn.fontshare.com/wf/ZALDQKWFHR5GQIC43D5NWJHXUV3A2YPK/GFI2MVMGJT7CVS5RU35TXHXOQ7GXOEVK/ZCXSFPKVDQYIJZ5TCZFURV7MJTOPZQKS.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('https://cdn.fontshare.com/wf/LSMH5APMM5OKZNNZFAEGVLVK3E2SGJEP/TPSPD3GWZMZ3LQ6FXS2VMQCUG6BGXVDN/TMZFBTDJ6OTCPCFPQMAIIHU5GDE2S74J.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('https://cdn.fontshare.com/wf/LSMH5APMM5OKZNNZFAEGVLVK3E2SGJEP/MV5B6LU34WKFNK5S5YNTCN2RFG5YSXVP/TVMBR5IYRMFYKVFPNWFIXSUVEJKBHO5S.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('https://cdn.fontshare.com/wf/LSMH5APMM5OKZNNZFAEGVLVK3E2SGJEP/NMBBFXMQICPCIZFXICVX6RFAVF3E5DBA/NG7SKTMNAKR4GLKWWKIMT3MBPYA4BVGN.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== Global Styles ===== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--tl-fg);
  background-color: var(--tl-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }

a {
  color: var(--tl-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--tl-primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

code, pre {
  font-family: var(--font-mono);
}

/* ===== Layout ===== */
.tl-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .tl-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.tl-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

@media (min-width: 640px) {
  .tl-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ===== Buttons ===== */
.tl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.tl-btn-primary {
  background: var(--tl-primary);
  color: #fff;
  border-color: var(--tl-primary);
}

.tl-btn-primary:hover {
  background: var(--tl-primary-hover);
  border-color: var(--tl-primary-hover);
  color: #fff;
}

.tl-btn-outline {
  background: transparent;
  color: var(--tl-fg);
  border-color: var(--tl-border);
}

.tl-btn-outline:hover {
  background: var(--tl-card);
  border-color: var(--tl-primary);
  color: var(--tl-primary);
}

.tl-btn-secondary {
  background: #fff;
  color: var(--tl-primary);
  border-color: #fff;
}

.tl-btn-secondary:hover {
  background: var(--tl-primary-light);
  border-color: var(--tl-primary-light);
  color: var(--tl-primary-hover);
}

.tl-btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

/* ===== Cards ===== */
.tl-card {
  background: var(--tl-card);
  border: 1px solid var(--tl-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.tl-card:hover {
  border-color: rgba(14, 139, 139, 0.3);
}

/* ===== Badge ===== */
.tl-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background: var(--tl-primary-light);
  color: var(--tl-primary);
}

.tl-badge-pro {
  background: var(--tl-primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tl-badge-stock {
  border: 1px solid #bbf7d0;
  color: #15803d;
  background: transparent;
}

/* ===== Header / Navigation ===== */
.tl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 245, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tl-border);
}

.tl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

.tl-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--tl-fg);
}

.tl-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.tl-logo-text span {
  color: var(--tl-primary);
}

.tl-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tl-nav a {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tl-muted);
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
}

.tl-nav a:hover,
.tl-nav a.current-menu-item,
.tl-nav .current-menu-item > a {
  color: var(--tl-fg);
  background: rgba(0, 0, 0, 0.04);
}

/* Mobile nav toggle */
.tl-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--tl-border);
  border-radius: var(--radius);
  padding: 0.375rem;
  cursor: pointer;
  color: var(--tl-fg);
}

@media (max-width: 768px) {
  .tl-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tl-card);
    border-bottom: 1px solid var(--tl-border);
    padding: 0.5rem 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .tl-nav.active {
    display: flex;
  }

  .tl-nav a {
    padding: 0.75rem;
  }

  .tl-mobile-toggle {
    display: block;
  }
}

/* ===== Footer ===== */
.tl-footer {
  background: var(--tl-card);
  border-top: 1px solid var(--tl-border);
  padding: 3rem 0 1.5rem;
}

.tl-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .tl-footer-grid {
    grid-template-columns: 1fr;
  }
}

.tl-footer h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--tl-muted);
}

.tl-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.tl-footer-links a {
  font-size: 0.875rem;
  color: var(--tl-muted);
}

.tl-footer-links a:hover {
  color: var(--tl-primary);
}

.tl-footer-bottom {
  border-top: 1px solid var(--tl-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--tl-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== Hero Section ===== */
.tl-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

@media (min-width: 640px) {
  .tl-hero {
    padding: 7rem 0 5rem;
  }
}

.tl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,139,139,0.05) 0%, transparent 50%, rgba(14,139,139,0.08) 100%);
  pointer-events: none;
}

.tl-hero-content {
  position: relative;
  max-width: 640px;
}

.tl-hero h1 {
  margin-bottom: 1rem;
}

.tl-hero h1 .tl-accent {
  color: var(--tl-primary);
}

.tl-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tl-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .tl-hero-desc {
    font-size: 1.125rem;
  }
}

.tl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tl-hero-illustration {
  display: none;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1024px) {
  .tl-hero-illustration {
    display: block;
  }
}

.tl-hero-card {
  width: 16rem;
  height: 16rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(14,139,139,0.1), rgba(14,139,139,0.05));
  border: 1px solid rgba(14,139,139,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-hero-price-tag {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  background: var(--tl-card);
  border: 1px solid var(--tl-border);
  border-radius: var(--radius);
  padding: 0.375rem 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tl-hero-price-tag .label {
  font-size: 0.75rem;
  color: var(--tl-muted);
}

.tl-hero-price-tag .price {
  font-size: 0.875rem;
  font-weight: 700;
}

/* ===== How It Works ===== */
.tl-how-it-works {
  background: var(--tl-card);
  border-top: 1px solid var(--tl-border);
  border-bottom: 1px solid var(--tl-border);
}

.tl-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tl-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tl-step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(14, 139, 139, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tl-step h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tl-step p {
  font-size: 0.875rem;
  color: var(--tl-muted);
  line-height: 1.6;
}

/* ===== Section Header ===== */
.tl-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tl-section-header h2 {
  margin-bottom: 0.75rem;
}

.tl-section-header p {
  color: var(--tl-muted);
  max-width: 32rem;
  margin: 0 auto;
}

/* ===== Product Cards ===== */
.tl-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tl-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tl-product-card {
  position: relative;
}

.tl-product-card .tl-badge-pro {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
}

.tl-product-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.tl-product-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.tl-product-icon.base svg { color: var(--tl-muted); }
.tl-product-icon.pro svg { color: var(--tl-primary); }

.tl-product-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tl-primary);
  margin-bottom: 0.5rem;
}

.tl-product-desc {
  font-size: 0.875rem;
  color: var(--tl-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tl-feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.tl-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.tl-feature-list .check {
  color: var(--tl-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 0.875rem;
  height: 0.875rem;
}

.tl-product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--tl-border);
}

.tl-product-price {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===== Use Cases ===== */
.tl-usecases {
  background: var(--tl-card);
  border-top: 1px solid var(--tl-border);
  border-bottom: 1px solid var(--tl-border);
}

.tl-usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .tl-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tl-usecase {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.tl-usecase-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--tl-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tl-primary);
}

.tl-usecase-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.tl-usecase h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tl-usecase p {
  font-size: 0.875rem;
  color: var(--tl-muted);
  line-height: 1.6;
}

/* ===== Compatibility ===== */
.tl-compat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .tl-compat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tl-compat-item {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--tl-border);
  background: var(--tl-card);
}

.tl-compat-item strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.tl-compat-item span {
  font-size: 0.75rem;
  color: var(--tl-muted);
}

/* ===== CTA Section ===== */
.tl-cta {
  background: var(--tl-primary);
  color: #fff;
  text-align: center;
}

.tl-cta h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.tl-cta p {
  color: rgba(255,255,255,0.8);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

/* ===== Comparison Table ===== */
.tl-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.tl-comparison-table th,
.tl-comparison-table td {
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--tl-border);
}

.tl-comparison-table th {
  font-weight: 600;
  text-align: left;
  background: rgba(0,0,0,0.02);
}

.tl-comparison-table th:nth-child(2),
.tl-comparison-table th:nth-child(3),
.tl-comparison-table td:nth-child(2),
.tl-comparison-table td:nth-child(3) {
  text-align: center;
  width: 7rem;
}

.tl-comparison-table th.pro-col {
  color: var(--tl-primary);
}

.tl-comparison-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.015);
}

.tl-check {
  color: var(--tl-primary);
  font-weight: 700;
}

.tl-cross {
  color: #ccc;
}

/* ===== Specs Table ===== */
.tl-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border: 1px solid var(--tl-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tl-specs-table td {
  padding: 0.5rem 0.75rem;
}

.tl-specs-table tr:nth-child(even) {
  background: rgba(0,0,0,0.02);
}

.tl-specs-table .spec-label {
  font-weight: 500;
  color: var(--tl-muted);
  width: 33%;
}

/* ===== Setup Guide ===== */
.tl-setup-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tl-setup-step {
  padding: 1rem;
}

.tl-setup-step-inner {
  display: flex;
  gap: 1rem;
}

.tl-setup-number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--tl-primary-light);
  color: var(--tl-primary);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-setup-step h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tl-setup-step p {
  font-size: 0.875rem;
  color: var(--tl-muted);
  line-height: 1.6;
}

/* ===== FAQ Accordion ===== */
.tl-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tl-faq-tab {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--tl-border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--tl-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  text-transform: capitalize;
}

.tl-faq-tab:hover,
.tl-faq-tab.active {
  background: var(--tl-primary);
  color: #fff;
  border-color: var(--tl-primary);
}

.tl-faq-group {
  display: none;
}

.tl-faq-group.active {
  display: block;
}

.tl-faq-item {
  border: 1px solid var(--tl-border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.tl-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--tl-fg);
  transition: background 0.2s;
}

.tl-faq-question:hover {
  background: rgba(0,0,0,0.02);
}

.tl-faq-question .chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.tl-faq-item.open .tl-faq-question .chevron {
  transform: rotate(180deg);
}

.tl-faq-answer {
  display: none;
  padding: 0 1rem 0.875rem;
  font-size: 0.875rem;
  color: var(--tl-muted);
  line-height: 1.6;
}

.tl-faq-item.open .tl-faq-answer {
  display: block;
}

/* ===== Contact Form ===== */
.tl-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .tl-contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.tl-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .tl-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.tl-form-group {
  margin-bottom: 1rem;
}

.tl-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.tl-form-group input,
.tl-form-group select,
.tl-form-group textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1px solid var(--tl-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--tl-fg);
  transition: border-color 0.2s;
}

.tl-form-group input:focus,
.tl-form-group select:focus,
.tl-form-group textarea:focus {
  outline: none;
  border-color: var(--tl-primary);
  box-shadow: 0 0 0 3px rgba(14,139,139,0.1);
}

.tl-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.tl-contact-info-card {
  padding: 1.5rem;
}

.tl-contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: normal;
}

.tl-contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tl-contact-info-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--tl-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.tl-contact-info-item .label {
  font-size: 0.875rem;
  font-weight: 500;
}

.tl-contact-info-item .value {
  font-size: 0.875rem;
  color: var(--tl-muted);
}

.tl-contact-info-item .value a {
  color: var(--tl-primary);
}

.tl-response-times {
  padding: 1.5rem;
}

.tl-response-times h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: normal;
}

.tl-response-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.375rem 0;
}

.tl-response-row .label {
  color: var(--tl-muted);
}

/* ===== WooCommerce Overrides ===== */
.woocommerce .button,
.woocommerce input.button,
.woocommerce a.button {
  background: var(--tl-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  padding: 0.625rem 1.25rem !important;
  transition: background 0.2s !important;
}

.woocommerce .button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
  background: var(--tl-primary-hover) !important;
  color: #fff !important;
}

.woocommerce .button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt {
  background: var(--tl-primary) !important;
}

.woocommerce .button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover {
  background: var(--tl-primary-hover) !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-color: var(--tl-border) !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--tl-primary) !important;
  border-color: var(--tl-primary) !important;
}

.woocommerce .woocommerce-message {
  border-top-color: var(--tl-primary) !important;
}

.woocommerce .woocommerce-message::before {
  color: var(--tl-primary) !important;
}

.woocommerce .price {
  color: var(--tl-fg) !important;
  font-weight: 700 !important;
}

.woocommerce .star-rating span::before {
  color: var(--tl-primary) !important;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review {
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--tl-border) !important;
}

/* ===== WordPress Defaults ===== */
.alignwide {
  max-width: calc(var(--container-max) + 4rem);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ===== Dark Mode ===== */
body.dark-mode {
  background-color: var(--tl-bg-dark);
  color: var(--tl-fg-dark);
}

body.dark-mode .tl-header {
  background: rgba(15, 19, 24, 0.85);
  border-color: var(--tl-border-dark);
}

body.dark-mode .tl-card {
  background: var(--tl-card-dark);
  border-color: var(--tl-border-dark);
}

body.dark-mode .tl-how-it-works,
body.dark-mode .tl-usecases,
body.dark-mode .tl-footer {
  background: var(--tl-card-dark);
  border-color: var(--tl-border-dark);
}

body.dark-mode .tl-nav a {
  color: var(--tl-muted-dark);
}

body.dark-mode .tl-nav a:hover {
  color: var(--tl-fg-dark);
  background: rgba(255,255,255,0.05);
}

body.dark-mode .tl-logo {
  color: var(--tl-fg-dark);
}

body.dark-mode .tl-btn-outline {
  color: var(--tl-fg-dark);
  border-color: var(--tl-border-dark);
}

body.dark-mode .tl-btn-outline:hover {
  background: var(--tl-card-dark);
}

body.dark-mode .tl-form-group input,
body.dark-mode .tl-form-group select,
body.dark-mode .tl-form-group textarea {
  background: var(--tl-bg-dark);
  border-color: var(--tl-border-dark);
  color: var(--tl-fg-dark);
}

body.dark-mode .tl-compat-item,
body.dark-mode .tl-faq-item {
  border-color: var(--tl-border-dark);
}

body.dark-mode .tl-comparison-table th,
body.dark-mode .tl-comparison-table td {
  border-color: var(--tl-border-dark);
}

body.dark-mode .tl-footer-bottom {
  border-color: var(--tl-border-dark);
}

body.dark-mode .tl-badge-stock {
  border-color: #166534;
  color: #4ade80;
}
