/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.hamburger-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sidebar-header h3 {
    font-size: 1.2rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}

.sidebar-nav {
    padding: 1rem 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: #f8f9fa;
}

.nav-link i {
    margin-right: 10px;
    width: 20px;
}

.beta-badge {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #667eea;
    font-weight: 600;
}

.beta-badge i {
    margin-right: 10px;
    color: #ff6b6b;
}

.nav-divider {
    height: 1px;
    background: #eee;
    margin: 1rem 0;
}

.nav-section-title {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-owner-link {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 3px solid #667eea;
}

.business-owner-link:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-left-color: #5a6fd8;
}

.user-link {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-left: 3px solid #28a745;
}

.user-link:hover {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left-color: #218838;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Search Container */
.search-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Filters Container */
.filters-container {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 150px;
}

.filter-group label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-select {
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.filter-input {
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.filter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.filter-input::placeholder {
    color: #999;
}

.filter-clear-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-end;
}

.filter-clear-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.search-box {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #667eea;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #5a6fd8;
}

/* Business Preview Section */
.business-preview {
    padding: 4rem 0;
}

.business-preview h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.business-preview p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Business Card */
.business-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.business-photo {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
}

.business-card .business-header,
.business-card .business-info,
.business-card .business-pricing,
.business-card .business-actions {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.business-card .business-header {
    padding-top: 1rem;
}

.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Alternative badge styles for A/B testing */
.verified-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.business-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.business-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffc107;
    font-size: 0.9rem;
}

.business-info {
    margin-bottom: 1rem;
}

.business-address {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.business-phone {
    color: #667eea;
    font-size: 0.9rem;
    text-decoration: none;
}

.business-phone:hover {
    text-decoration: underline;
}

.business-pricing {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.pricing-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.pricing-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #28a745;
}

.business-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5a6fd8;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-results i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.beta-badge-small {
    background: #ff6b6b;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.claim-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.claim-btn:hover {
    background: #5a6fd8;
}

.claim-btn.secondary {
    background: #6c757d;
    margin-top: 0.5rem;
}

.claim-btn.secondary:hover {
    background: #5a6268;
}

/* Claim Benefits */
.claim-benefits {
    margin-bottom: 2rem;
}

.claim-benefits h4 {
    color: #667eea;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.benefit-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.benefit-card h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Pricing Info */
.pricing-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.free-badge {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Claim Actions */
.claim-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.claim-btn.primary {
    background: #28a745;
    color: white;
    font-weight: 600;
}

.claim-btn.primary:hover {
    background: #218838;
}

/* Business Search Modal */
.search-results {
    max-height: 300px;
    overflow-y: auto;
    margin: 1rem 0;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 1rem;
    background: #f8f9fa;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.search-result-item:hover {
    background-color: #e9ecef;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-info h6 {
    margin: 0 0 0.25rem 0;
    color: #333;
    font-size: 1rem;
}

.search-result-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.search-result-actions {
    display: flex;
    gap: 0.5rem;
}

.search-result-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-result-btn.claim {
    background: #667eea;
    color: white;
}

.search-result-btn.claim:hover {
    background: #5a6fd8;
}

.search-result-btn.view {
    background: #6c757d;
    color: white;
}

.search-result-btn.view:hover {
    background: #5a6268;
}

.search-actions {
    margin-top: 1rem;
    text-align: center;
}

/* Responsive adjustments for modals */
@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .claim-actions {
        flex-direction: column;
    }
    
    .search-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .search-result-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .business-detail-actions {
        flex-direction: column;
    }
    
    .detail-btn {
        flex: none;
        width: 100%;
    }
    
    .business-detail-modal {
        width: 98%;
        max-height: 95vh;
    }
}

/* User Pricing Submission Form */
.pricing-submission-intro {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-submission-intro h4 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

.pricing-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.price-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 12px;
    color: #666;
    font-weight: 600;
    z-index: 1;
}

.price-input-group input {
    padding-left: 30px;
}

.verification-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid #e9ecef;
}

.verification-section h5 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Receipt Upload Area */
.receipt-upload-area {
    margin: 1.5rem 0;
}

.upload-zone {
    border: 2px dashed #667eea;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background: #f8f9ff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-zone:hover {
    border-color: #5a6fd8;
    background: #f0f2ff;
}

.upload-zone.dragover {
    border-color: #28a745;
    background: #e8f5e8;
}

.upload-zone i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.upload-zone h6 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.upload-zone p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.upload-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.upload-btn:hover {
    background: #5a6fd8;
}

.upload-preview {
    background: #e8f5e8;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-content i {
    font-size: 1.5rem;
    color: #28a745;
}

.file-name {
    flex: 1;
    color: #333;
    font-weight: 500;
}

.remove-file {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-file:hover {
    background: #c82333;
}

.verification-note {
    background: #e8f5e8;
    border: 1px solid #28a745;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.verification-note i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.verification-note p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.submit-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 150px;
}

.submit-btn.primary {
    background: #28a745;
    color: white;
}

.submit-btn.primary:hover {
    background: #218838;
    transform: translateY(-2px);
}

.submit-btn.secondary {
    background: #6c757d;
    color: white;
}

.submit-btn.secondary:hover {
    background: #5a6268;
}

/* Responsive adjustments for pricing form */
@media (max-width: 768px) {
    .verification-options {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-btn {
        flex: none;
    }
}

/* Business Detail Modal */
.business-detail-modal {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.business-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.business-detail-title h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.5rem;
}

.business-detail-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffc107;
    font-size: 0.9rem;
}

.business-detail-body {
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.detail-section h4 {
    margin: 0 0 1rem 0;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
}

.info-item i {
    width: 20px;
    color: #667eea;
}

.info-item a {
    color: #667eea;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.pricing-detail {
    text-align: center;
}

.pricing-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-status.has-pricing {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pricing-status.no-pricing {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pricing-value-large {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 1rem;
}

.pricing-details {
    text-align: left;
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.pricing-details p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-rating {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-text {
    color: #666;
    line-height: 1.5;
    margin: 0.5rem 0;
}

.review-date {
    color: #999;
    font-size: 0.8rem;
}

.business-detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 2px solid #eee;
}

.detail-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 120px;
}

.detail-btn.btn-primary {
    background: #667eea;
    color: white;
}

.detail-btn.btn-primary:hover {
    background: #5a6fd8;
}

.detail-btn.btn-secondary {
    background: #6c757d;
    color: white;
}

.detail-btn.btn-secondary:hover {
    background: #5a6268;
}

.detail-btn.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.detail-btn.btn-outline:hover {
    background: #667eea;
    color: white;
}

.detail-btn.btn-success {
    background: #28a745;
    color: white;
}

.detail-btn.btn-success:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .business-actions {
        flex-direction: column;
    }
    
    .action-btn {
        flex: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .business-preview {
        padding: 2rem 0;
    }
    
    .search-input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.75rem 1rem;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .filter-clear-btn {
        align-self: center;
    }
}
