/**
 * Tri-Cities Queer Concierge - Main Styles
 * Minimal Design (Black & White) with Pride Banner
 */

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
    /* Minimal Color Palette */
    --color-primary: #000000;
    --color-secondary: #333333;
    --color-accent: #666666;

    --color-success: #27ae60;
    /* Keep functional colors but muted if needed */
    --color-warning: #f39c12;
    --color-error: #c0392b;
    --color-info: #2980b9;

    /* Neutral colors */
    --color-text: #111111;
    --color-text-light: #555555;
    --color-bg: #ffffff;
    --color-bg-light: #f4f4f4;
    --color-bg-dark: #e0e0e0;
    --color-border: #cccccc;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Borders */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-text);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

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

/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    z-index: 9999;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--color-accent);
}

/* Improved Focus States */
:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Remove default outline for mouse users if :focus-visible is supported */
:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.site-header {
    background: var(--color-bg);
    color: var(--color-text);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.site-header.header-with-bg {
    border-bottom: none;
    color: white;
}

.site-header.header-with-bg .hero-background {
    z-index: 0;
}

.site-header.header-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(218, 211, 247, 0.65);
    z-index: 1;
}

.site-header .container {
    position: relative;
    z-index: 2;
}

/* White text styling for header with background */
.site-header.header-with-bg .logo a {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0);
}

.site-header.header-with-bg .main-nav a {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0);
}

.site-header.header-with-bg .main-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.site-header.header-with-bg .mobile-menu-toggle span {
    background: white;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.logo a {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.main-nav a:hover {
    background: var(--color-bg-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: var(--radius-sm);
}

.header-search {
    margin-top: var(--spacing-md);
}

.search-form {
    display: flex;
    gap: var(--spacing-sm);
}

.search-input {
    flex: 1;
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.search-button {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-button:hover {
    background: var(--color-secondary);
}

/* 3D Search Input Effect */
.search-input {
    flex: 1;
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
    /* 3D inset effect */
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05);
}

/* 3D Search Button Effect */
.search-button {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    /* More rounded */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    /* 3D raised effect */
    box-shadow: 0 4px 0 #333, 0 5px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #222;
    transform: translateY(0);
}

.search-button:hover {
    background: var(--color-secondary);
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #333, 0 6px 12px rgba(0, 0, 0, 0.2);
}

.search-button:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #333, inset 0 2px 4px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}

/* Prevent double-click while submitting */
.search-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: translateY(4px);
    box-shadow: 0 0 0 #333, inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 3D Button Styles (Button 14 inspired) */
.button-14 {
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    border-width: 0;
    padding: 0 8px 12px;
    min-width: 10em;
    box-sizing: border-box;
    background: transparent;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    /* For anchor tags */
    display: inline-block;
    /* For anchor tags */
}

.button-14-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    padding: 8px 16px;
    transform: translateY(0);
    text-align: center;
    color: #fff;
    text-shadow: 0 -1px rgba(0, 0, 0, .25);
    transition-property: transform;
    transition-duration: .2s;
    -webkit-user-select: none;
    user-select: none;
    font-weight: 600;
}

.button-14:active .button-14-top {
    transform: translateY(6px);
}

.button-14-top::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    /* Dark Purple Theme (Default) */
    background-image: radial-gradient(#6a1b9a, #4a148c);
    text-align: center;
    color: #fff;
    box-shadow: inset 0 0 0px 1px rgba(255, 255, 255, .2), 0 1px 2px 1px rgba(255, 255, 255, .2);
    transition-property: border-radius, padding, width, transform;
    transition-duration: .2s;
}

.button-14:active .button-14-top::after {
    border-radius: 6px;
    padding: 0 2px;
}

.button-14-bottom {
    position: absolute;
    z-index: -1;
    bottom: 4px;
    left: 4px;
    border-radius: 8px / 16px 16px 8px 8px;
    padding-top: 6px;
    width: calc(100% - 8px);
    height: calc(100% - 10px);
    box-sizing: content-box;
    /* Dark Purple Bottom */
    background-color: #38006b;
    background-image: radial-gradient(4px 8px at 4px calc(100% - 8px), rgba(255, 255, 255, .25), transparent), radial-gradient(4px 8px at calc(100% - 4px) calc(100% - 8px), rgba(255, 255, 255, .25), transparent), radial-gradient(16px at -4px 0, white, transparent), radial-gradient(16px at calc(100% + 4px) 0, white, transparent);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5), inset 0 -1px 3px 3px rgba(0, 0, 0, .4);
    transition-property: border-radius, padding-top;
    transition-duration: .2s;
}

.button-14:active .button-14-bottom {
    border-radius: 10px 10px 8px 8px / 8px;
    padding-top: 0;
}

.button-14-base {
    position: absolute;
    z-index: -2;
    top: 4px;
    left: 0;
    border-radius: 12px;
    width: 100%;
    height: calc(100% - 4px);
    background-color: rgba(0, 0, 0, .15);
    box-shadow: 0 1px 1px 0 rgba(255, 255, 255, .75), inset 0 2px 2px rgba(0, 0, 0, .25);
}

/* Light Purple Theme (Clear Filters) */
.button-14-light .button-14-top::after {
    background-image: radial-gradient(#ba68c8, #8e24aa);
}

.button-14-light .button-14-bottom {
    background-color: #6a1b9a;
}

.main-content {
    min-height: calc(100vh - 400px);
    padding: var(--spacing-2xl) 0;
}

.site-footer {
    background: var(--color-bg-light);
    color: var(--color-text);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-3xl);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section a {
    color: var(--color-text-light);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
}

/* ============================================================
   COMPONENTS
   ============================================================ */

/* Hero Section */
.hero-section {
    position: relative;
    color: white;
    padding: var(--spacing-3xl) 0;
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    overflow: hidden;
    background: #000;
    /* Fallback */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 0;
    opacity: 0.6;
    /* Adjust opacity for text readability */
}

.flag-row {
    flex: 1;
    display: flex;
    width: 100%;
}

.flag {
    flex: 1;
    height: 100% !important;
    /* Override library default */
    width: auto !important;
    /* Override library default */
    aspect-ratio: auto !important;
    /* Override library default */
    background-size: cover;
    background-position: center;
    display: block !important;
    /* Override library default inline-block */
}

/* Overlay to ensure text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(218, 211, 247, 0.65);
    /* Increased opacity for better contrast */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--text-4xl);
    color: white;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 1px 2px rgba(0, 0, 0);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Badges */
.badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: white;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.badge-queer-owned {
    border-color: var(--color-text);
}

.badge-queer-friendly {
    border-color: var(--color-accent);
}

.badge-both {
    background: var(--color-text);
    color: white;
}

/* Sections */
.section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Grids */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.category-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.category-card h3 {
    color: var(--color-text);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.category-card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.category-count {
    display: block;
    margin-top: var(--spacing-md);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-weight: 600;
}

.category-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    /* No background as requested */
}

.category-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    /* Make icons grayscale for minimal look */
    transition: filter var(--transition-fast);
}

.category-card:hover .category-icon img {
    filter: grayscale(0%);
    /* Reveal color on hover */
}

.businesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.business-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.business-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

/* Make business-card links behave like blocks */
a.business-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.business-card:hover {
    color: inherit;
}

.business-logo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition-fast);
}

.business-card:hover .business-logo img {
    filter: grayscale(0%);
}

.business-content {
    padding: var(--spacing-lg);
}

.business-name {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-sm);
}


.business-category {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-sm);
}

.business-description {
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.business-city {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* Business Detail Page */
.business-detail {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.business-header {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--color-border);
}

.business-logo-large {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.business-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-header-info {
    flex: 1;
}

.business-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-md);
}

.business-badges {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.business-body {
    margin-bottom: var(--spacing-2xl);
}

.business-short-desc {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.business-long-desc {
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.business-contact h3 {
    margin-bottom: var(--spacing-md);
}

.contact-info {
    list-style: none;
}

.contact-item {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
    border-bottom: none;
}

.business-tags h3 {
    margin-bottom: var(--spacing-md);
}

.tags-list {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.tag {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-bg-light);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--color-text);
    color: white;
}

.business-actions {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    font-size: var(--text-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-bg-light);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-dark);
    border-color: var(--color-text);
}

/* Filters */
.filters-section {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.filter-group label {
    font-weight: 600;
    margin-right: var(--spacing-md);
}

.filter-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--color-bg-light);
    color: var(--color-text);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-weight: 500;
    border: 1px solid var(--color-border);
    cursor: pointer;
}

.filter-btn:hover {
    background: var(--color-bg-dark);
}

.filter-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.pagination-link {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--color-bg-light);
    color: var(--color-text);
    border-radius: var(--radius-md);
    font-weight: 600;
    border: 1px solid var(--color-border);
    text-decoration: none;
}

.pagination-link:hover {
    background: var(--color-bg-dark);
}

.pagination-info {
    color: var(--color-text-light);
    font-weight: 500;
}

/* Search & Filters */
.page-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.page-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-light);
}

.search-filters {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-2xl);
    border: 1px solid var(--color-border);
}

.filters-form .filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.filter-input,
.filter-select {
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.results-info {
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    color: var(--color-text-light);
}

.no-results {
    text-align: center;
    padding: var(--spacing-3xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (min-width: 769px) {
    .main-nav ul {
        display: flex;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

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

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: var(--spacing-md);
    }

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

    .hero-title {
        font-size: var(--text-3xl);
    }

    .business-header {
        flex-direction: column;
        text-align: center;
    }

    .business-logo-large {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .categories-grid,
    .businesses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-2xl);
    }

    h1 {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }

    .search-form {
        flex-direction: column;
    }
}