/*
Theme Name: AI Direct Search Dark Theme
Theme URI: https://aidirectsearch.com
Author: James (Digital CEO)
Author URI: https://aidirectsearch.com
Description: Custom dark theme for AI Direct Search directory - E-commerce, Real Estate, Small Business AI tools. Soft blue (#3B82F6) and soft green (#10B981) on deep dark (#0F172A). Modern SaaS feel.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aidirectsearch
*/

:root {
  --bg-primary: #0F172A;
  --bg-secondary: #1E293B;
  --bg-card: #1E293B;
  --accent-blue: #3B82F6;
  --accent-green: #10B981;
  --accent-blue-dim: rgba(59, 130, 246, 0.15);
  --accent-green-dim: rgba(16, 185, 129, 0.15);
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border: #334155;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 24px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.site-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--text-primary);
  background: var(--bg-secondary);
}
.site-nav a.cta-btn {
  background: var(--accent-blue);
  color: white;
  padding: 8px 20px;
}
.site-nav a.cta-btn:hover {
  background: #2563EB;
  color: white;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-blue-dim);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--accent-blue);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .highlight-blue { color: var(--accent-blue); -webkit-text-fill-color: var(--accent-blue); }
.hero h1 .highlight-green { color: var(--accent-green); -webkit-text-fill-color: var(--accent-green); }
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Search Bar */
.search-container {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.search-bar {
  width: 100%;
  display: flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--accent-blue); }
.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  outline: none;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button {
  background: var(--accent-blue);
  border: none;
  padding: 0 28px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.search-bar button:hover { background: #2563EB; }

/* Category Cards */
.categories-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}
.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--accent-blue));
  opacity: 0;
  transition: opacity 0.25s;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-accent, var(--accent-blue));
  box-shadow: var(--shadow);
}
.category-card:hover::before { opacity: 1; }
.category-card.ec { --card-accent: var(--accent-blue); }
.category-card.re { --card-accent: var(--accent-green); }
.category-card.sb { --card-accent: #F59E0B; }
.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: var(--card-accent, var(--accent-blue));
  opacity: 0.9;
}
.category-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.category-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.category-stats {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.category-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.category-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.25s;
}
.category-card:hover .category-arrow { opacity: 1; }

/* Featured Section */
.featured-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.section-header h2 {
  font-size: 24px;
  font-weight: 700;
}
.section-header a {
  color: var(--accent-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 600px) {
  .featured-grid { grid-template-columns: 1fr; }
}
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.tool-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}
.tool-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.tool-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.tool-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.tool-info span {
  font-size: 12px;
  color: var(--text-muted);
}
.tool-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tool-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-primary);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.tool-tag.blue { background: var(--accent-blue-dim); color: var(--accent-blue); border-color: rgba(59,130,246,0.3); }
.tool-tag.green { background: var(--accent-green-dim); color: var(--accent-green); border-color: rgba(16,185,129,0.3); }

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { height: 64px; }
  .site-nav { display: none; }
  .hero { padding: 60px 24px 40px; }
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Category Pages */
.page-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  text-align: center;
}
.page-header .breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.page-header h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.page-header .category-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.7;
}
.category-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-item .stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-blue);
}
.stat-item .stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Tool Detail */
.tool-detail-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
@media (max-width: 900px) {
  .tool-detail-grid { grid-template-columns: 1fr; }
}
.tool-main h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.tool-sidebar {
  position: sticky;
  top: 88px;
  height: fit-content;
}
.affiliate-disclosure {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 20px;
}
.tool-action-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.tool-action-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.tool-action-card .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 16px;
}
.cta-button {
  display: block;
  width: 100%;
  background: var(--accent-blue);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.cta-button:hover { background: #2563EB; color: white; }
.cta-button.green { background: var(--accent-green); }
.cta-button.green:hover { background: #059669; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-blue { color: var(--accent-blue); }
.text-green { color: var(--accent-green); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* Hamburger Toggle - Always visible on all screens */
.hamburger-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    z-index: 1001;
}
.hamburger-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger-toggle:hover { background: rgba(255,255,255,0.25); }
.hamburger-toggle:hover span { background: #ffffff; }

@media (max-width: 768px) {
    .hamburger-toggle { display: flex; }
    .site-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 4px;
        z-index: 999;
    }
    body.menu-open .site-nav { display: flex; }
    .site-nav a {
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
        color: var(--text-secondary);
    }
    .site-nav a:last-child { border-bottom: none; }
    .site-nav a.cta-btn {
        background: var(--accent-blue);
        color: white;
        border-radius: 8px;
        padding: 12px 20px;
        text-align: center;
        margin-top: 8px;
        border: none;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .category-hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero h1 { font-size: 32px !important; }
    .hero p { font-size: 16px !important; }
}

/* ============================================
   DESKTOP HAMBURGER MENU
   ============================================ */
@media (min-width: 769px) {
    .site-nav {
        display: none;
    }
    body.menu-open .site-nav {
        display: flex;
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 220px;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        flex-direction: column;
        padding: 12px 0;
        gap: 2px;
        z-index: 1000;
        box-shadow: var(--shadow);
    }
    body.menu-open .site-nav a {
        padding: 12px 20px;
        font-size: 15px;
        color: var(--text-secondary);
        border-bottom: 1px solid var(--border);
    }
    body.menu-open .site-nav a:last-child { border-bottom: none; }
    body.menu-open .site-nav a.cta-btn {
        background: var(--accent-blue);
        color: white;
        border-radius: 8px;
        margin: 8px 12px 4px;
        padding: 12px 16px;
        text-align: center;
        border: none;
    }
    /* Hamburger X animation when open */
    body.menu-open .hamburger-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    body.menu-open .hamburger-toggle span:nth-child(2) {
        opacity: 0;
    }
    body.menu-open .hamburger-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


/* ============================================
   NAV OVERLAY
   ============================================ */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
body.menu-open .nav-overlay {
    display: block;
}


/* ============================================
   CATEGORY PAGE STYLES (page.php)
   ============================================ */

/* Page Hero - centered header */
.page-hero {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-content .page-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}
.page-hero-content h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* Tools Section */
.tools-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}
.tools-header {
  text-align: center;
  margin-bottom: 40px;
}
.tools-header h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tools-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Tools Grid - 2 columns desktop, 1 column mobile */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
}

/* Tool Card - for static page.php cards */
.tools-grid .tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tools-grid .tool-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.tools-grid .tool-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--bg-primary);
  display: block;
  margin-bottom: 14px;
}
.tools-grid .tool-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--accent-blue-dim);
  color: var(--accent-blue);
  border: 1px solid rgba(59,130,246,0.3);
}
.tools-grid .tool-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-right: 80px; /* space for badge */
}
.tools-grid .tool-card > p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.tools-grid .tool-features {
  list-style: none;
  margin-bottom: 16px;
  flex-grow: 1;
}
.tools-grid .tool-features li {
  font-size: 12px;
  color: var(--text-secondary);
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}
.tools-grid .tool-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}
.tools-grid .tool-meta {
  margin-bottom: 14px;
}
.tools-grid .tool-meta .price {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* CTA Buttons - visible colors */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: auto;
}
.btn-green {
  background: #10B981;
  color: white;
}
.btn-green:hover {
  background: #059669;
  color: white;
  transform: translateY(-1px);
}
.btn-blue {
  background: #3B82F6;
  color: white;
}
.btn-blue:hover {
  background: #2563EB;
  color: white;
  transform: translateY(-1px);
}

/* ============================================
   LINK COLORS - visible on dark bg
   ============================================ */
a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #60A5FA;
}
.site-footer a {
  color: var(--text-secondary);
}
.site-footer a:hover {
  color: var(--text-primary);
}
.footer-col a {
  color: var(--text-secondary);
}
.footer-col a:hover {
  color: var(--text-primary);
}
/* Category Page Hero */
.page-hero {
    padding: 100px 24px 40px;
    text-align: center;
    background: var(--bg-primary);
}
.page-hero .container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.hero-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Tools Section */
.tools-section {
    padding: 20px 24px 80px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}
.tools-section .container {
    max-width: 1100px;
    margin: 0 auto;
}
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}
.section-sub {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: 32px;
    text-align: center;
}

/* Tool Card Elements */
.tool-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.tool-desc {
    color: var(--text-secondary);
    font-size: .85rem;
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}
.tool-link {
    color: #00d2ff;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
    transition: color 0.2s;
}
.tool-link:hover {
    color: #38bdf8;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 600px) {
    section div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    .tools-section {
        padding: 20px 16px 60px;
    }
}
