/* ============================================
   BUSINESS DIRECTORY - OPTIMIZED & CLEAN
   Google Search Style + Single Business Page
   ============================================ */

/* ============================================
   BASE STYLES
   ============================================ */
.business-directory-page,
.single-business-page {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.business-directory-page .container,
.single-business-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.business-directory-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.page-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

/* ============================================
   FILTERS SECTION
   ============================================ */
.business-filters {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.filter-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 0.9rem;
}

.filter-group input,
.filter-group select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.filter-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

#results-count {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.reset-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.reset-btn:hover {
    background: #c0392b;
}

/* ============================================
   LOADING INDICATOR
   ============================================ */
.loading-indicator {
    text-align: center;
    padding: 40px;
    display: none;
}

.loading-indicator.active {
    display: block;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-indicator p {
    color: #7f8c8d;
    font-size: 1rem;
}

/* ============================================
   BUSINESS LISTINGS GRID
   ============================================ */
#business-listings {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

/* ============================================
   GOOGLE STYLE BUSINESS CARDS
   ============================================ */
.business-card-google {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
    position: relative;
}

.business-card-google:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #dadce0;
}

.business-google-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Logo Area - ON RIGHT (order 2) */
.business-logo-area {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    order: 2;
}

.business-logo-image,
.business-logo-fallback {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.business-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.business-card-google:hover .business-logo-image img {
    transform: scale(1.02);
}

.business-logo-fallback {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.business-initials {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Content Area - ON LEFT (order 1) */
.business-content-area {
    flex: 1;
    min-width: 0;
    order: 1;
}

.business-header-google {
    margin-bottom: 8px;
}

.business-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.business-title-google {
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
}

.business-title-link {
    color: #1a0dab;
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
    display: inline-block;
    word-break: break-word;
}

.business-title-link:hover {
    text-decoration: underline;
}

.business-title-link:visited {
    color: #681da8;
}

.featured-badge-google {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.featured-badge-google svg {
    width: 14px;
    height: 14px;
}

/* Meta Row */
.business-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5f6368;
    flex-wrap: wrap;
    line-height: 1.5;
    margin-bottom: 10px;
}

.business-category-google {
    font-weight: 500;
    color: #202124;
    padding: 3px 10px;
    background: #f1f3f4;
    border-radius: 12px;
    font-size: 12px;
}

.meta-separator {
    color: #dadce0;
    margin: 0 2px;
}

.business-url-google {
    color: #006621;
    font-size: 14px;
}

/* Description */
.business-description-google {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.58;
    margin: 10px 0 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Contact Tags */
.business-tags-google {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.business-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 18px;
    font-size: 13px;
    color: #5f6368;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.business-tag-item:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #1967d2;
}

.business-tag-item svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* Action Buttons */
.business-actions-google {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.action-btn-google {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background: #fff;
    color: #5f6368;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
}

.action-btn-google:hover {
    background: #f8f9fa;
    border-color: #70757a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.action-btn-google svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.whatsapp-btn:hover {
    background: #f0fdf4;
    border-color: #25d366;
    color: #25d366;
}

.map-btn:hover {
    background: #fef3f2;
    border-color: #ea4335;
    color: #ea4335;
}

.website-btn:hover {
    background: #f0f9ff;
    border-color: #4285f4;
    color: #4285f4;
}

/* Social Links */
.business-social-google {
    display: flex;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid #f1f3f4;
}

.social-link-google {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    color: #5f6368;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link-google svg {
    width: 18px;
    height: 18px;
}

.social-link-google.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #fff;
}

.social-link-google.facebook:hover {
    background: #1877f2;
    border-color: transparent;
    color: #fff;
}

.social-link-google.tiktok:hover {
    background: #000;
    border-color: transparent;
    color: #fff;
}

/* ============================================
   NO RESULTS & LOADING
   ============================================ */
.no-results-message {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.no-results-message h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.no-results-message p {
    color: #7f8c8d;
    font-size: 1rem;
}

#load-more-container {
    text-align: center;
    margin: 30px 0;
}

.load-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.load-more-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   PAGINATION
   ============================================ */
.business-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination-info {
    color: #5f6368;
    font-size: 14px;
    margin-right: auto;
    padding: 8px 12px;
}

.pagination-btn {
    padding: 9px 18px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background: #fff;
    color: #5f6368;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pagination-btn:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #70757a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-numbers {
    display: flex;
    gap: 4px;
}

.pagination-number {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background: #fff;
    color: #5f6368;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-number:hover:not(.active) {
    background: #f8f9fa;
    border-color: #70757a;
}

.pagination-number.active {
    background: #4285f4;
    color: #fff;
    border-color: #4285f4;
    font-weight: 600;
}

.pagination-ellipsis {
    padding: 8px 4px;
    color: #70757a;
}

/* ============================================
   SINGLE BUSINESS PAGE
   ============================================ */
.business-breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #6c757d;
    flex-wrap: wrap;
}

.business-breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.business-breadcrumb a:hover {
    text-decoration: underline;
}

.business-breadcrumb .separator {
    margin: 0 10px;
    color: #dee2e6;
}

.business-breadcrumb .current {
    color: #495057;
    font-weight: 500;
}

.business-single-header {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.business-header-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
}

.business-featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.business-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-header-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-title-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.business-single-title {
    margin: 0;
    font-size: 2rem;
    color: #2c3e50;
    line-height: 1.2;
}

.business-category-badge {
    background: #3498db;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.business-excerpt {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.business-quick-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.business-single-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 50px;
}

.business-main-details {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.business-section {
    margin-bottom: 40px;
}

.business-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.business-description {
    line-height: 1.7;
    color: #495057;
    font-size: 1rem;
}

.contact-details-grid {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: #3498db;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-value {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    word-break: break-word;
}

.contact-value:hover {
    color: #3498db;
}

.social-media-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-media-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.social-media-link svg {
    width: 20px;
    height: 20px;
}

.social-media-link.instagram {
    background: linear-gradient(45deg, #E4405F, #C13584);
    color: #fff;
}

.social-media-link.facebook {
    background: #1877F2;
    color: #fff;
}

.social-media-link.tiktok {
    background: #000;
    color: #fff;
}

.social-media-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.business-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.sidebar-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.sidebar-btn svg {
    width: 18px;
    height: 18px;
}

.sidebar-btn.phone {
    background: #28a745;
    color: #fff;
}

.sidebar-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.sidebar-btn.email {
    background: #e74c3c;
    color: #fff;
}

.sidebar-btn.map {
    background: #EA4335;
    color: #fff;
}

.sidebar-btn.website {
    background: #3498db;
    color: #fff;
}

.sidebar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

.related-businesses {
    margin-top: 50px;
}

.related-businesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.related-business-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-business-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.related-business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-business-card:hover .related-business-image img {
    transform: scale(1.05);
}

.related-business-content {
    padding: 20px;
}

.related-business-title {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.related-business-title a {
    color: #2c3e50;
    text-decoration: none;
}

.related-business-title a:hover {
    color: #3498db;
}

.related-business-category {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.related-business-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.related-business-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

.related-business-phone svg {
    width: 16px;
    height: 16px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn svg {
    width: 18px;
    height: 18px;
}

.action-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.action-btn.map {
    background: #EA4335;
    color: #fff;
}

.action-btn.website {
    background: #3498db;
    color: #fff;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.business-card-google:focus-within {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

.action-btn-google:focus,
.business-title-link:focus,
.pagination-btn:focus,
.filter-group input:focus,
.filter-group select:focus {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .filter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .business-logo-area {
        width: 120px;
        height: 120px;
    }
    
    .business-initials {
        font-size: 42px;
    }
    
    .business-header-content {
        grid-template-columns: 300px 1fr;
    }
    
    .business-single-content {
        grid-template-columns: 1fr;
    }
    
    .business-sidebar {
        order: -1;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .business-directory-page,
    .single-business-page {
        padding: 20px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .filter-results {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .reset-btn {
        width: 100%;
    }
    
    .business-google-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .business-logo-area {
        width: 100%;
        height: 200px;
        order: -1;
    }
    
    .business-logo-image,
    .business-logo-fallback {
        height: 200px;
    }
    
    .business-initials {
        font-size: 56px;
    }
    
    .business-title-link {
        font-size: 20px;
    }
    
    .business-content-area {
        width: 100%;
        order: 1;
    }
    
    .business-actions-google {
        flex-direction: column;
    }
    
    .action-btn-google {
        justify-content: center;
        width: 100%;
    }
    
    .pagination-info {
        margin-right: 0;
        width: 100%;
        text-align: center;
    }
    
    .pagination-numbers {
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .business-breadcrumb {
        font-size: 0.8rem;
    }
    
    .business-header-content {
        grid-template-columns: 1fr;
    }
    
    .business-featured-image {
        height: 250px;
    }
    
    .business-header-info {
        padding: 20px;
    }
    
    .business-single-title {
        font-size: 1.5rem;
    }
    
    .business-main-details {
        padding: 20px;
    }
    
    .business-quick-actions {
        justify-content: center;
    }
    
    .action-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .social-media-links {
        flex-direction: column;
    }
    
    .social-media-link {
        width: 100%;
    }
    
    .related-businesses-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .business-directory-page .container,
    .single-business-page .container {
        padding: 0 15px;
    }
    
    .business-card-google {
        padding: 16px;
    }
    
    .business-filters {
        padding: 20px;
    }
    
    .business-logo-area {
        height: 180px;
    }
    
    .business-initials {
        font-size: 48px;
    }
    
    .business-tags-google {
        flex-direction: column;
    }
    
    .business-tag-item {
        justify-content: flex-start;
        width: 100%;
    }
    
    .business-social-google {
        justify-content: center;
    }
    
    .business-single-title {
        font-size: 1.3rem;
    }
    
    .business-quick-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .sidebar-card {
        padding: 20px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .business-filters,
    .business-pagination,
    .business-actions-google,
    .business-social-google,
    #load-more-container,
    .loading-indicator,
    .business-breadcrumb,
    .business-quick-actions,
    .business-sidebar,
    .related-businesses {
        display: none !important;
    }
    
    .business-card-google {
        break-inside: avoid;
        border: 1px solid #e8eaed;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .business-title-link {
        color: #000 !important;
        text-decoration: underline !important;
    }
    
    .business-single-content,
    .business-header-content {
        grid-template-columns: 1fr !important;
    }
    
    .business-featured-image {
        display: none;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .spinner {
        display: none;
    }
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */
@media (prefers-contrast: high) {
    .business-card-google,
    .action-btn-google {
        border: 2px solid #000;
    }
}