/*
 * Local Coupon Directory Pro - Main Stylesheet
 * Mobile-first responsive design inspired by Groupon
 */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Business Dashboard Styles */
.business-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    min-height: 100vh;
}

.business-dashboard .dashboard-header {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.business-dashboard .dashboard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-dashboard .dashboard-nav h1 {
    margin: 0;
    font-size: 28px;
    color: #333;
    font-weight: 600;
}

.business-dashboard .business-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.business-dashboard .business-name {
    background: #53a318;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Quick Actions */
.quick-actions {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-actions h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #333;
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.action-btn.primary {
    background: #53a318;
    color: white;
}

.action-btn.primary:hover {
    background: #4a9216;
}

.btn-icon {
    font-size: 16px;
}

/* Recent Activity */
.recent-activity {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recent-activity h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #333;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.activity-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.activity-time {
    font-size: 12px;
    color: #666;
}

/* Coupons Content */
.coupons-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.section-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.create-coupon-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #53a318;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.create-coupon-btn:hover {
    background: #4a9216;
}

.coupons-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coupon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.coupon-info h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.coupon-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.coupon-meta span {
    font-size: 14px;
    color: #666;
}

.status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-paused {
    background: #fff3cd;
    color: #856404;
}

.status-expired {
    background: #f8d7da;
    color: #721c24;
}

.coupon-actions {
    display: flex;
    gap: 8px;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-primary {
    background: #53a318;
    color: white;
}

.btn-primary:hover {
    background: #4a9216;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: 1px solid #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
}

/* Coupon actions specific styling */
.coupon-actions .btn-secondary {
    background: #ffffff;
    color: #333333;
    border: 1px solid #333333;
}

.coupon-actions .btn-secondary:hover {
    background: #333333;
    color: #ffffff;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

/* Toggle Switch Styles */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 24px;
    transition: background 0.3s ease;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider {
    background: #53a318;
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-text {
    font-weight: 500;
    color: #333;
}

/* Pricing fields transition */
.pricing-fields {
    transition: all 0.3s ease;
}

/* Rich Text Editor Styles */
.rich-text-editor {
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

.editor-toolbar {
    display: flex;
    gap: 4px;
    padding: 8px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 4px 4px 0 0;
}

.editor-btn {
    padding: 6px 10px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.editor-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.editor-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.editor-content {
    min-height: 100px;
    padding: 12px;
    outline: none;
    line-height: 1.5;
    font-family: inherit;
    font-size: 14px;
}

.editor-content:empty:before {
    content: attr(data-placeholder);
    color: #6c757d;
    pointer-events: none;
    white-space: pre-line;
}

.editor-content ul,
.editor-content ol {
    margin: 10px 0;
    padding-left: 20px;
}

.editor-content li {
    margin: 5px 0;
}

.editor-content strong {
    font-weight: bold;
}

.editor-content em {
    font-style: italic;
}

/* Analytics Content */
.analytics-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.analytics-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 14px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.chart-container {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-container h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
}

.chart-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 160px;
    padding: 0 10px;
}

.bar {
    flex: 1;
    background: #53a318;
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
}

.bar:hover {
    background: #4a9216;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 12px;
    color: #666;
}

.revenue-breakdown {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.revenue-breakdown h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.breakdown-item.total {
    border-bottom: none;
    border-top: 2px solid #53a318;
    font-weight: 600;
    color: #53a318;
}

.breakdown-label {
    font-size: 14px;
    color: #666;
}

.breakdown-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.top-performing {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-performing h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
}

.performance-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.performance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.performance-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #333;
}

.performance-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #666;
}

.performance-chart {
    width: 100px;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.mini-bar {
    height: 100%;
    background: #53a318;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Claims Content */
.claims-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.claims-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.claims-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.claim-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.claim-info {
    flex: 1;
}

.claim-customer {
    font-size: 16px;
    margin-bottom: 4px;
}

.claim-coupon {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.claim-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #666;
}

.claim-status {
    margin: 0 20px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.claim-actions {
    display: flex;
    gap: 8px;
}

/* Account Content */
.account-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.account-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.account-section {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.account-section h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #333;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #53a318;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.payment-label {
    font-size: 14px;
    color: #666;
}

.payment-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

/* Header Menu Enhancements */
.menu-divider {
    height: 1px;
    background: #e9ecef;
    margin: 8px 0;
}

.business-link {
    background: linear-gradient(135deg, #53a318 0%, #4a9216 100%);
    color: white !important;
    border-radius: 8px;
    margin: 4px 0;
}

.business-link:hover {
    background: linear-gradient(135deg, #4a9216 0%, #3d7a12 100%);
    transform: translateX(2px);
}

.business-link .menu-icon {
    color: white;
}

.menu-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive for Dashboard Navigation */
@media (max-width: 768px) {
    .dashboard-main-tabs {
        padding: 0 10px;
        gap: 6px;
    }
    
    .main-tab-link {
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .tab-icon {
        font-size: 18px;
    }
    
    .tab-text {
        font-size: 11px;
    }
    
    .dashboard-sub-tabs {
        padding: 0 10px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .sub-tab-link {
        font-size: 13px;
        padding: 8px 0;
    }
    
    /* Business Dashboard Mobile */
    .business-dashboard {
        padding: 10px;
    }
    
    .business-dashboard .dashboard-header {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .business-dashboard .dashboard-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .business-dashboard .dashboard-nav h1 {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .stat-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 24px;
        width: 48px;
        height: 48px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .quick-actions,
    .recent-activity {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .action-btn {
        justify-content: center;
        padding: 14px 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .coupon-item,
    .claim-item {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .coupon-actions,
    .claim-actions {
        justify-content: center;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container,
    .revenue-breakdown,
    .top-performing {
        padding: 16px;
    }
    
    .chart-bars {
        height: 120px;
    }
    
    .performance-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .performance-chart {
        width: 80px;
    }
    
    .account-sections {
        gap: 16px;
    }
    
    .account-section {
        padding: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #4a4a4a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
    margin-bottom: 1rem;
}

a {
    color: #1c8e42;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    opacity: 0.85;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.site {
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

/* Buttons */
.btn, button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #1c8e42;
    color: #ffffff;
}

.btn:hover, button:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #ffffff;
    border: 1px solid #1c8e42;
    color: #1c8e42;
}

/* Top Bar */
.top-bar {
    background: #f7f7f7;
    padding: 8px 0;
    font-size: 14px;
    display: none;
}



.language-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.sell-link {
    background: #28a745;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.sell-link:hover {
    background: #218838;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.header-actions .sell-link,
.header-actions .language-selector {
    margin-right: 16px;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

/* Logo */
.site-branding .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1c8e42;
    letter-spacing: -0.5px;
}

/* Search Container */
.search-container {
    flex: 1;
    max-width: 600px;
    margin: 0 16px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #1c8e42;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(28, 142, 66, 0.1);
}

.search-icon {
    padding: 0 12px;
    color: #666;
}

.search-field {
    flex: 1;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    outline: none;
}

.location-selector {
    border-left: 1px solid #e5e5e5;
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #4a4a4a;
}

.search-submit {
    background: #1c8e42;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    color: white;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f7f7f7;
    color: #4a4a4a;
    font-size: 18px;
}

.action-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #1c8e42;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Account */
.user-account {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1c8e42;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    z-index: 1001;
    display: none;
    overflow: hidden;
}

.user-dropdown.active {
    display: block;
}

.user-info {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
    gap: 12px;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #666;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.user-details {
    flex: 1;
}

.user-name {
    display: block;
    font-weight: 600;
    color: #000;
}

.user-email {
    display: block;
    font-size: 14px;
    color: #666;
}

.user-menu {
    padding: 8px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #4a4a4a;
    text-decoration: none;
    gap: 12px;
    transition: background 0.2s ease;
}

.menu-item:hover {
    background: #f7f7f7;
}

.menu-value {
    margin-left: auto;
    color: #1c8e42;
    font-weight: 600;
}

.app-promotion {
    padding: 16px;
    background: #f7f7f7;
    display: flex;
    gap: 12px;
}

.app-promo-content {
    flex: 1;
}

.app-promo-content h4 {
    color: #1c8e42;
    margin-bottom: 8px;
}

.app-promo-content p {
    font-size: 14px;
    margin-bottom: 8px;
}

.get-app-btn {
    background: #1c8e42;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 8px;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.stars {
    color: #f5a623;
}

.qr-code img {
    width: 60px;
    height: 60px;
}

.menu-footer {
    padding: 16px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: #4a4a4a;
    font-size: 14px;
}

.sign-out {
    color: #dc3545;
}



.nav-text {
    font-size: 12px;
    font-weight: 500;
}

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 9999;
    visibility: hidden;
    transform: translateZ(0);
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-menu {
    padding: 16px 0;
}

.mobile-nav-item {
    display: block;
    padding: 16px 24px;
    color: #4a4a4a;
    text-decoration: none;
    border-bottom: 1px solid #f7f7f7;
}

.mobile-nav-item:hover {
    background: #f7f7f7;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1c8e42;
    color: white;
    border: 2px solid #1c8e42;
}

.btn-primary:hover {
    background-color: #155a33;
    border-color: #155a33;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 142, 66, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Hero Banner Mobile Responsive */
@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

.hero-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: white;
}

/* Location Modal */
.location-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.location-modal.active {
    display: flex;
}

.location-modal-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.location-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.location-input-wrapper {
    margin: 16px 0;
}

.location-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.location-input:focus {
    border-color: #1c8e42;
}

.location-divider {
    text-align: center;
    margin: 16px 0;
    color: #666;
}

.current-location-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
}

/* Categories Section */
.categories-section {
    background: #f8f9fa;
    padding: 24px 0;
    border-top: 1px solid #e9ecef;
}

/* Categories in Section Header */
.categories-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    margin: 16px 0;
    width: 100%;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #e5e5e5;
    color: #4a4a4a;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.category-tab.active {
    background: #1c8e42;
    color: white;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
}

/* Business Directory Special Tab */
.business-directory-tab {
    background: linear-gradient(135deg, #1c8e42, #28a745) !important;
    color: white !important;
    font-weight: 600;
    border: 2px solid #1c8e42;
    box-shadow: 0 2px 8px rgba(28, 142, 66, 0.3);
    text-decoration: none;
}

.business-directory-tab:hover {
    background: linear-gradient(135deg, #155d2e, #1c8e42) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 142, 66, 0.4);
}

.business-directory-tab .business-icon {
    font-size: 16px;
}

/* Section Headers */
.section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 16px;
}

.section-header > h2 {
    margin: 0;
}

.section-header .section-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.see-all-link {
    color: #1c8e42;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn,
.map-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    color: #4a4a4a;
    text-decoration: none;
}

.results-count {
    font-size: 14px;
    color: #666;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

/* Trending Section */
.trending-section {
    padding: 32px 0;
    background: #ffffff;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Deals Section */
.deals-section {
    padding: 32px 0;
    background: #f7f7f7;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Coupon Cards */
.coupon-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.coupon-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coupon-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.coupon-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.summer-hit {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

e .favorite-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
}

.favorite-btn .heart-icon {
    color: #000;
}

.favorite-btn.favorited .heart-icon {
    color: #e74c3c;
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.favorite-btn:hover .heart-icon {
    color: #e74c3c;
}

.coupon-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.business-info-header {
    margin-bottom: 4px;
}

.business-info-header .business-name {
    display: block;
    font-weight: 500;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #000;
}

.business-info {
    margin-bottom: 12px;
}

.business-name {
    display: block;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 4px;
    font-size: 14px;
}

.location,
.distance {
    font-size: 14px;
    color: #666;
    margin-right: 8px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 14px;
}

.star.filled {
    color: #f5a623;
}

.star.half {
    color: #f5a623;
}

.star.empty {
    color: #e5e5e5;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

.pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.sale-price {
    font-size: 18px;
    font-weight: 700;
    color: #1c8e42;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.limited-time {
    color: #dc3545;
    font-size: 12px;
    font-weight: 600;
}

.coupon-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding: 16px;
    border-top: 1px solid #f0f0f0;
}

.claim-btn {
    flex: 1;
    background: #1c8e42;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.claim-btn:hover {
    background: #008a45;
}

.coupon-actions .favorite-btn {
    position: static;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.coupon-actions .favorite-btn:hover {
    background: #e8e8e8;
    transform: none;
}

.coupon-code {
    font-size: 12px;
    color: #666;
}

/* Load More */
.load-more-section {
    text-align: center;
    margin-top: 32px;
}

.load-more-btn {
    background: #1c8e42;
    color: white;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
}

/* ==========================================================================
   Authentication Styles
   ========================================================================== */

/* Authentication Messages */
.auth-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.auth-message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.password-strength.weak {
    background: #f8d7da;
    color: #721c24;
}

.password-strength.medium {
    background: #fff3cd;
    color: #856404;
}

.password-strength.strong {
    background: #d1ecf1;
    color: #0c5460;
}

.password-strength.very-strong {
    background: #d4edda;
    color: #155724;
}

/* OTP Input Styling */
.otp-inputs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.otp-input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #1c8e42;
    box-shadow: 0 0 0 3px rgba(28, 142, 66, 0.1);
}

.otp-input:valid {
    border-color: #28a745;
}

/* Loading States */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn:disabled:hover {
    background: #1c8e42;
    transform: none;
}

/* Phone Input Enhancements */
.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    flex: 0 0 auto;
    min-width: 80px;
    padding: 0.75rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 0.875rem;
}

.phone-input input[type="tel"] {
    flex: 1;
}

/* Resend Section */
.resend-section {
    text-align: center;
    margin-top: 1rem;
}

.resend-link {
    color: #1c8e42;
    text-decoration: none;
    font-weight: 500;
}

.resend-link:hover {
    text-decoration: underline;
}

/* Auth Buttons for Non-Logged-In Users */
.auth-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.login-btn {
    color: #333;
    background-color: transparent;
    border-color: #ddd;
}

.login-btn:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
    color: #333;
    text-decoration: none;
}

.register-btn {
    color: white;
    background-color: #1c8e42;
    border-color: #1c8e42;
}

.register-btn:hover {
    background-color: #155a33;
    border-color: #155a33;
    color: white;
    text-decoration: none;
}

/* Mobile responsive auth buttons */
@media (max-width: 768px) {
    .auth-buttons {
        gap: 0.5rem;
    }
    
    .auth-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .auth-btn {
        padding: 0.3125rem 0.625rem;
        font-size: 0.75rem;
    }
    
    .auth-btn .btn-text {
        display: none;
    }
    
    .login-btn::after {
        content: 'Login';
    }
    
    .register-btn::after {
        content: 'Join';
    }
}

/* ==========================================================================
   Authentication Pages
   ========================================================================== */

/* Login Page */
.login-page {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-page .container {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
}

.login-form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #666;
    font-size: 0.9rem;
}

.login-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: white;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-form, .otp-login-form {
    display: none;
}

.login-form.active, .otp-login-form.active {
    display: block;
}

/* Register Page */
.register-page {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.register-page .container {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

.register-wrapper {
    width: 100%;
    max-width: 500px;
}

.register-form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.register-header p {
    color: #666;
    font-size: 0.9rem;
}

/* Account Type Toggle Switch */
.account-type-toggle {
    margin-bottom: 2rem;
}

.toggle-switch {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 6px;
    display: flex;
    margin-bottom: 1rem;
}

.toggle-switch input[type="radio"] {
    display: none;
}

.toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    z-index: 1;
}

.toggle-switch input[name="account_type_toggle"][value="business"]:checked ~ .toggle-slider {
    transform: translateX(100%);
}

.toggle-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.toggle-switch input[name="account_type_toggle"][value="customer"]:checked ~ .toggle-label.customer-label,
.toggle-switch input[name="account_type_toggle"][value="business"]:checked ~ .toggle-label.business-label {
    color: #333;
}

.toggle-label .account-icon {
    display: flex;
    align-items: center;
}

.account-type-description {
    text-align: center;
}

.account-type-description p {
    display: none;
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

.account-type-description p.active {
    display: block;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.875rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.password-input {
    position: relative;
}

.password-toggle,
.toggle-password {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: #007bff;
}

.toggle-password .eye-icon {
    width: 18px;
    height: 18px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-label .checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #007bff;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

.checkbox-label input:checked ~ .checkmark:after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label input:focus ~ .checkmark {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 0.875rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.submit-btn:hover {
    background: #0056b3;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.loading-spinner {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* OTP Verification */
.otp-verification-section {
    text-align: center;
}

.otp-verification-section h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.otp-verification-section p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.otp-inputs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.otp-digit {
    width: 3rem;
    height: 3rem;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 600;
}

.otp-digit:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.resend-section {
    margin-top: 1rem;
    text-align: center;
}

.resend-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.875rem;
}

/* Sign In Modal */
.signin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.signin-modal {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.signin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.signin-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

/* Publish Confirmation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

.modal-body {
    padding: 0 24px;
    color: #666;
    line-height: 1.6;
}

.modal-body p {
    margin: 0 0 16px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px;
    border-top: 1px solid #eee;
    margin-top: 24px;
}

.modal-actions .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-actions .btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
}

.modal-actions .btn-secondary:hover {
    background: #e9ecef;
}

.modal-actions .btn-primary {
    background: #53a318;
    color: white;
}

.modal-actions .btn-primary:hover {
    background: #4a9216;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-actions {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
}

.signin-modal-content {
    padding: 0 1.5rem 1.5rem;
}

.signin-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.signin-form {
    display: none;
}

.signin-form.active {
    display: block;
}

.signin-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.signin-footer p {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
}

.create-account-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.create-account-link:hover {
    text-decoration: underline;
}

/* Error Messages */
.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Hidden elements */
.hidden {
    display: none !important;
}

/* Form transitions */
.register-form {
    display: none;
    transition: opacity 0.3s ease;
}

.register-form.active {
    display: block;
}

/* Account type descriptions */
.customer-desc,
.business-desc {
    display: none;
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.875rem;
}

.customer-desc.active,
.business-desc.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-page, .register-page {
        padding: 1rem;
    }
    
    .login-form-container, .register-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .otp-inputs {
        gap: 0.25rem;
    }
    
    .otp-digit {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .signin-modal {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */



.footer-main {
    background: #2c2c2c;
    color: white;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #ccc;
    font-size: 14px;
}

.footer-menu a:hover {
    color: white;
}

.footer-description {
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #1c8e42;
    transform: translateY(-2px);
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.app-download-btn img {
    height: 40px;
    width: auto;
}

.app-features {
    margin-top: 16px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom {
    background: #1a1a1a;
    color: #ccc;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-links {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.legal-links a {
    color: #ccc;
    font-size: 14px;
}

.footer-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.payment-methods,
.security-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.payment-icons,
.security-icons {
    display: flex;
    gap: 4px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1c8e42;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(28, 142, 66, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(28, 142, 66, 0.4);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    text-align: center;
}

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

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

.loading-text {
    color: #666;
    font-size: 14px;
}

/* Single Coupon Page Styles */
.single-coupon-page {
    background: #f8f9fa;
}

.coupon-hero {
    background: white;
    padding: 24px 24px 8px 24px;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 8px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Hero Gallery */
.hero-gallery {
    margin-top: 16px;
}

/* Coupon Tags */
.coupon-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.coupon-tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e5e5e5;
    background: white;
    color: #333;
}

.coupon-tags .tag.best-rated {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.coupon-tags .tag.popular {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.coupon-tags .tag.trending {
    background: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: #00a652;
    text-decoration: none;
}

.single-coupon-page .coupon-title {
    font-size: 36px !important;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #333;
}

.meta-info-inline {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.meta-info-inline .business-name {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.meta-info-inline .rating-inline {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-info-inline .rating-inline .stars {
    display: flex;
    gap: 2px;
    margin-right: 4px;
}

.meta-info-inline .rating-inline .star {
    color: #ddd;
    font-size: 14px;
}

.meta-info-inline .rating-inline .star.filled {
    color: #ffc107;
}

.meta-info-inline .rating-text {
    font-weight: 600;
    color: #333;
}

.meta-info-inline .review-count {
    color: #666;
    font-size: 14px;
}

.meta-info-inline .location {
    color: #666;
    font-size: 14px;
}

.meta-info-inline .distance {
    color: #666;
    font-size: 14px;
}

.rating-location {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 16px;
}

.star.filled {
    color: #ffa500;
}

.rating-text {
    font-weight: 600;
    color: #333;
}

.review-count {
    color: #666;
    font-size: 14px;
}

.location-info {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #666;
}

.coupon-main {
    padding: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-left h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.content-left h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

/* Photo Gallery */
.photo-gallery {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.gallery-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Reviews Section */
.reviews-section {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.rating-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stars-large {
    display: flex;
    gap: 4px;
    margin: 8px 0;
}

.stars-large .star {
    font-size: 20px;
}

.review-count-large {
    font-size: 14px;
    color: #666;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e8;
    padding: 12px 16px;
    border-radius: 6px;
    color: #2e7d32;
    font-weight: 600;
}

.checkmark {
    background: #4caf50;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Removed conflicting reviews-list rule - using grid layout below */

.review-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-rating {
    margin-bottom: 8px;
}

.review-text {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.show-more-reviews {
    background: none;
    border: 1px solid #00a652;
    color: #00a652;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.show-more-reviews:hover {
    background: #00a652;
    color: white;
}

/* About Section */
.about-section {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.highlights-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.highlights-list li:last-child {
    border-bottom: none;
}

/* Location Section */
.location-section {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 200px;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    color: #666;
}

.location-details .address {
    color: #666;
    margin: 8px 0;
}

.location-details .phone {
    color: #00a652;
    font-weight: 600;
    margin: 0;
}

/* Purchase Widget */
.purchase-widget {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
    position: sticky;
    top: 20px;
}

.deal-pricing {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.single-coupon .sale-price {
    font-size: 32px;
    font-weight: 700;
    color: #00a652;
}

.single-coupon .original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.single-coupon .discount {
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.savings {
    color: #00a652;
    font-weight: 600;
    font-size: 16px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.quantity-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    min-width: 80px;
}

.buy-now-btn {
    width: 100%;
    background: #00a652;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 20px;
}

.buy-now-btn:hover {
    background: #008a45;
}

.deal-info {
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.amenities {
    margin-bottom: 24px;
}

.amenities h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-tag {
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: #666;
    border: 1px solid #e0e0e0;
}

.fine-print {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.fine-print h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

/* Responsive Design */
/* Mobile Styles (max-width: 639px) */
@media (max-width: 639px) {
    .header-content {
        padding: 8px 0;
        gap: 8px;
    }
    
    .search-container {
        margin: 0 8px;
        flex: 1;
        min-width: 0;
    }
    
    .search-input-wrapper {
        min-width: 0;
    }
    
    .search-field {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .location-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .search-submit {
        padding: 8px 12px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-action {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .user-avatar {
        width: 36px;
        height: 36px;
    }
    
    .site-branding .logo-text {
        font-size: 20px;
    }
    
    .user-dropdown {
        width: 280px;
        right: -8px;
    }
    
    /* Single Coupon Page Mobile Styles */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .coupon-title {
        font-size: 24px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-left {
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item img {
        height: 60px;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .rating-number {
        font-size: 36px;
    }
    
    .purchase-widget {
        position: static;
        order: -1;
    }
    
    .price-info {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .sale-price {
        font-size: 28px;
    }
    
    .amenity-tags {
        justify-content: center;
    }
}

@media (min-width: 640px) {
    .top-bar {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .trending-grid,
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-download-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-slide h1 {
        font-size: 40px;
    }
    
    .hero-slide p {
        font-size: 20px;
    }
    
    .section-header {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    .trending-grid,
    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-scroll {
        justify-content: center;
    }
    
    .nav-menu {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .trending-grid,
    .deals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.visible { display: block; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* Navigation Menu */
.coupon-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-top: 8px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #00a651;
    border-bottom-color: #00a651;
}

/* Reviews Section */
.reviews-section {
    background: #f8f9fa;
    padding: 48px 0;
    margin-top: 48px;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.reviews-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rating-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #333;
}

.stars-large {
    display: flex;
    gap: 4px;
}

.stars-large .star {
    font-size: 24px;
    color: #ddd;
}

.stars-large .star.filled {
    color: #ffa500;
}

.review-count-large {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00a651;
    font-weight: 500;
}

.checkmark {
    background: #00a651;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Removed conflicting reviews-list rule - using grid layout below */

.review-item {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-rating {
    margin-bottom: 12px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.show-more-reviews {
    background: #fff;
    border: 2px solid #00a651;
    color: #00a651;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-reviews:hover {
    background: #00a651;
    color: #fff;
}

/* Similar Categories Section */
.similar-categories-section {
    padding: 48px 0;
    background: #fff;
}

.similar-categories-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.category-tag {
    background: #f8f9fa;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #00a651;
    color: #fff;
    border-color: #00a651;
}

/* Similar Deals Section */
.similar-deals-section {
    padding: 48px 0;
    background: #f8f9fa;
}

.similar-deals-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #333;
}

.similar-deals-section .coupon-title {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.similar-deals-section .coupon-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
}

.similar-deals-section .claim-btn {
    background: #00a651;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.similar-deals-section .claim-btn:hover {
    background: #008a44;
}

.similar-deals-section .deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .similar-deals-section .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .similar-deals-section .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .similar-deals-section .deals-grid {
        grid-template-columns: 1fr;
    }
}

/* Explore Categories Section */
.explore-categories-section {
    background: #fff;
    padding: 32px 0;
    border-top: 1px solid #e0e0e0;
}

.explore-toggle {
    text-align: center;
    margin-bottom: 32px;
}

.explore-btn {
    background: none;
    border: none;
    color: #00a651;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.explore-btn:hover {
    color: #008a43;
}

.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.categories-content {
    margin-top: 32px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.category-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #00a651;
}

.category-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-column li {
    margin-bottom: 8px;
}

.category-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.category-column a:hover {
    color: #00a651;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .nav-link {
        white-space: nowrap;
        font-size: 14px;
    }
    
    .reviews-summary {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .rating-number {
        font-size: 36px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .category-tags {
        gap: 8px;
    }
    
    .category-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Customer Dashboard Styles */
.customer-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.app-promotion-banner {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    padding: 32px 0;
    margin-bottom: 32px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.banner-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.app-benefits {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.app-benefits li {
    margin-bottom: 8px;
    font-size: 16px;
}

.get-app-btn {
    background: #fff;
    color: #00b4d8;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin: 16px 0;
    transition: all 0.3s ease;
}

.get-app-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 12px;
}

.banner-visual {
    display: flex;
    align-items: center;
    gap: 24px;
}

.qr-code {
    background: white;
    padding: 12px;
    border-radius: 8px;
}

.phone-mockup {
    width: 60px;
    height: 120px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #333;
    border-radius: 12px;
    padding: 8px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00b4d8, #0077b6);
    border-radius: 6px;
}

.dashboard-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 24px 0;
    margin-bottom: 32px;
}

.dashboard-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.back-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background: #f8f9fa;
}

.dashboard-nav h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

/* Main Dashboard Navigation */
.dashboard-main-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dashboard-main-tabs::-webkit-scrollbar {
    display: none;
}

.main-tab-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
    border: 2px solid transparent;
}

.main-tab-link:hover {
    background: #e9ecef;
    color: #53a318;
}

.main-tab-link.active {
    background: #53a318;
    color: white;
    border-color: #4a9216;
}

.tab-icon {
    font-size: 20px;
    margin-bottom: 4px;
    display: block;
}

.tab-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

/* Sub-tabs for specific sections */
.dashboard-sub-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 20px;
    border-bottom: 1px solid #e0e0e0;
}

.sub-tab-link {
    padding: 10px 0;
    text-decoration: none;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.sub-tab-link:hover {
    color: #53a318;
}

.sub-tab-link.active {
    color: #53a318;
    border-bottom-color: #53a318;
}

/* Legacy dashboard tabs (keeping for compatibility) */
.dashboard-tabs {
    display: flex;
    gap: 0;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 16px;
}

.tab-link {
    padding: 12px 24px;
    text-decoration: none;
    color: #666;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-link.active {
    background: white;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-link:hover {
    color: #333;
}

.filter-sort {
    display: flex;
    justify-content: flex-end;
}

.dashboard-content {
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dashboard-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    overflow: hidden;
}

.section-header {
    padding: 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.groupons-tabs {
    display: flex;
    gap: 0;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 4px;
}

.tab-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: #666;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.tab-btn.active {
    background: white;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sort-dropdown {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    color: #333;
    font-size: 14px;
}

.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: #666;
}

.empty-icon {
    margin-bottom: 24px;
    opacity: 0.6;
}

.empty-state h3 {
    margin-bottom: 24px;
    color: #333;
    font-size: 20px;
}

.empty-state p {
    margin-bottom: 24px;
    line-height: 1.5;
}

.continue-shopping-btn {
    background: #00b4d8;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.continue-shopping-btn:hover {
    background: #0077b6;
}

.recommended-deals {
    padding: 24px;
}

.recommended-deals h3 {
    margin-bottom: 24px;
    color: #333;
    font-size: 20px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.deal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.deal-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.favorite-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: white;
    color: #dc3545;
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #dc3545;
    background: white;
}

.deal-content {
    padding: 16px;
}

.deal-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.deal-business {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffc107;
    font-size: 14px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.review-count {
    color: #999;
    font-size: 14px;
    margin-left: 4px;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #00b4d8;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Preferences Content */
.preferences-content {
    max-width: 600px;
}

.preference-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.preference-section h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.preference-item {
    margin-bottom: 15px;
}

.preference-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.preference-label input[type="checkbox"] {
    margin-right: 10px;
}

.location-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.category-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.category-item input[type="checkbox"] {
    margin-right: 8px;
}

.save-preferences-btn {
    background: #53a318;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.save-preferences-btn:hover {
    background: #4a9216;
}

/* Profile Content */
.profile-content {
    max-width: 600px;
}

.profile-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.profile-section h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #53a318;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
}

.save-profile-btn {
    background: #53a318;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.save-profile-btn:hover {
    background: #4a9216;
}

/* Groupon Bucks Content */
.groupon-bucks-content {
    max-width: 600px;
}

.bucks-balance {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #53a318, #4a9216);
    color: white;
    border-radius: 8px;
    margin-bottom: 30px;
}

.bucks-balance h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.balance-amount {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
}

.bucks-balance p {
    margin: 10px 0 0 0;
    opacity: 0.9;
    font-size: 14px;
}

.bucks-history {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 20px;
}

.bucks-history h4 {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.empty-state-small {
    text-align: center;
    padding: 20px;
    color: #666;
}

.empty-state-small p {
    margin: 0;
    font-size: 14px;
}

/* Business Header Styles */
.business-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.business-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.business-logo .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #53a653;
    text-decoration: none;
}

.business-label {
    color: #6c757d;
    font-size: 0.9rem;
    padding-left: 1rem;
    border-left: 1px solid #e9ecef;
}

.business-user-menu .user-account {
    position: relative;
}

.business-user-menu .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #53a653;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Welcome Message */
.dashboard-welcome {
    background: linear-gradient(135deg, #53a653 0%, #4a9a4a 100%);
    color: white;
    padding: 2rem 0;
}

.dashboard-welcome .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-content h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.welcome-subtitle {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.dashboard-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #53a653;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dashboard-actions .btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* Secondary Stats */
.secondary-stats {
    margin-top: 1.5rem;
}

.secondary-stats .stat-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.stat-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Payment Actions */
.payment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-actions .btn-primary {
    background: #53a653;
    color: white;
}

.payment-actions .btn-primary:hover {
    background: #4a9a4a;
}

.payment-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.payment-actions .btn-secondary:hover {
    background: #5a6268;
}

@media (max-width: 768px) {
    .customer-dashboard {
        padding: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .app-promotion-banner {
        padding: 24px 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .banner-text h2 {
        font-size: 24px;
    }
    
    .banner-visual {
        justify-content: center;
    }
    
    .dashboard-header {
        padding: 16px 0;
        margin-bottom: 24px;
    }
    
    .dashboard-nav {
        margin-bottom: 16px;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px;
    }
    
    .tab-link {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .filter-sort {
        justify-content: center;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .empty-state {
        padding: 32px 16px;
    }
    
    .recommended-deals {
        padding: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .preference-section,
    .profile-section {
        padding: 15px;
    }
    
    /* Business Dashboard Mobile */
    .dashboard-welcome .container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .welcome-content h1 {
        font-size: 1.5rem;
    }
    
    .business-header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .business-branding {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .business-label {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e9ecef;
        padding-top: 0.5rem;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .secondary-stats {
        grid-template-columns: 1fr;
    }
}

/* Create Coupon Form Styles */
.create-coupon-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-container {
    padding: 24px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.form-header h3 {
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.close-form-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-form-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.form-section.full-width {
    grid-column: 1 / -1;
}

.form-section h4 {
    margin: 0 0 16px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #00a652;
    box-shadow: 0 0 0 2px rgba(0, 166, 82, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-help {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #666;
}

.discount-display {
    background: #e8f5e8;
    padding: 12px;
    border-radius: 4px;
    margin-top: 12px;
    text-align: center;
}

.discount-label {
    font-weight: 500;
    color: #333;
}

.discount-value {
    font-size: 18px;
    font-weight: 600;
    color: #00a652;
    margin: 0 8px;
}

.savings-value {
    color: #666;
    font-size: 14px;
}

/* Image Upload Styles */
.image-upload-area {
    position: relative;
}

.upload-placeholder {
    border: 2px dashed #ddd;
    border-radius: 6px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.upload-placeholder:hover {
    border-color: #00a652;
    background-color: #f8f8f8;
}

.upload-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.upload-placeholder p {
    margin: 8px 0 4px 0;
    color: #333;
    font-weight: 500;
}

.upload-placeholder small {
    color: #666;
    font-size: 12px;
}

.image-preview {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.image-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.remove-image-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-image-btn:hover {
    background: rgba(0,0,0,0.9);
}

/* Form Actions */
.form-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.form-actions .btn {
    min-width: 120px;
}

/* Form Mobile Responsive */
@media (max-width: 768px) {
    .form-container {
        padding: 16px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .upload-placeholder {
        padding: 24px 16px;
    }
}

/* ===== BUSINESS DIRECTORY PAGE STYLES ===== */

/* Business Directory Page Header */
.business-directory-page .page-header {
    background: linear-gradient(135deg, #1c8e42 0%, #28a745 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business-directory-page .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    margin: 0;
}

/* Search and Filters Section */
.search-filters-section {
    background: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.search-filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.search-bar-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-input-group:focus-within {
    border-color: #1c8e42;
    box-shadow: 0 4px 16px rgba(28, 142, 66, 0.15);
}

.search-input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.search-input::placeholder {
    color: #6c757d;
}

.search-btn {
    background: #1c8e42;
    color: white;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0 12px 12px 0;
}

.search-btn:hover {
    background: #155d2e;
}

/* Filter Controls */
.filter-controls {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 150px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 4px;
}

.filter-select {
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #1c8e42;
    box-shadow: 0 0 0 2px rgba(28, 142, 66, 0.1);
}

.clear-filters-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.clear-filters-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Results Section */
.results-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.results-count {
    font-size: 16px;
    color: #495057;
    font-weight: 500;
}

.view-toggle {
    display: none;
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.business-grid.grid-view {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.business-grid.list-view {
    grid-template-columns: 1fr;
}

/* Business Cards */
.business-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.business-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.business-card-inner {
    position: relative;
}

.business-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.business-info {
    padding: 20px;
}

.business-name {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.business-name a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.business-name a:hover {
    color: #1c8e42;
}

.business-category {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.business-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 12px;
}

.business-location svg {
    flex-shrink: 0;
    color: #1c8e42;
}

.distance {
    margin-left: auto;
    font-weight: 600;
    color: #1c8e42;
}

.business-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 16px;
    line-height: 1;
}

.star.filled {
    color: #ffc107;
}

.star.half {
    color: #ffc107;
}

.star.empty {
    color: #e9ecef;
}

.rating-text {
    font-size: 14px;
    color: #6c757d;
    margin-left: 8px;
}

.business-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f8f9fa;
}

.coupon-count {
    font-size: 14px;
    color: #1c8e42;
    font-weight: 600;
}

.total-savings {
    font-size: 14px;
    color: #dc3545;
    font-weight: 600;
}

.favorite-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6c757d;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.favorite-btn:hover {
    background: white;
    color: #dc3545;
    transform: scale(1.1);
}

.favorite-btn.favorited {
    color: #dc3545;
    background: white;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    padding: 40px 0;
}

.load-more-btn {
    background: #1c8e42;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(28, 142, 66, 0.2);
}

.load-more-btn:hover {
    background: #155d2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(28, 142, 66, 0.3);
}

/* No Results Section */
.no-results {
    text-align: center;
    padding: 80px 0;
    background: #f8f9fa;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results svg {
    color: #6c757d;
    margin-bottom: 24px;
}

.no-results h3 {
    font-size: 24px;
    color: #495057;
    margin-bottom: 12px;
}

.no-results p {
    color: #6c757d;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .search-filters-section {
        padding: 20px 0;
    }
    
    .search-filters-wrapper {
        gap: 16px;
        padding: 0 16px;
    }
    
    .search-bar-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .results-section {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .business-grid.grid-view {
        grid-template-columns: 1fr;
    }
    
}

/* ===================================
   SINGLE BUSINESS PAGE STYLES
   =================================== */

.single-business-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.business-main {
    padding: 24px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Business Hero Section */
.business-hero {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: #1c8e42;
    text-decoration: none;
}

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

.business-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 24px;
}

.business-title-section {
    flex: 1;
    min-width: 0;
    margin-right: 20px;
}

.business-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.business-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-section .stars {
    display: flex;
    gap: 2px;
}

.rating-section .star {
    color: #ddd;
    font-size: 16px;
}

.rating-section .star.filled {
    color: #ffc107;
}

.rating-text {
    font-weight: 600;
    color: #333;
}

.review-count {
    color: #666;
    font-size: 14px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.location-info svg {
    color: #1c8e42;
}

.distance {
    color: #999;
    font-size: 14px;
}

.category-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.category-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.featured-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.business-actions {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-shrink: 0;
    margin-left: auto;
}

/* Removed .business-actions .favorite-btn styles - buttons moved to quick actions */

/* Removed .business-actions .share-btn styles - buttons moved to quick actions */

/* Share Modal */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.share-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.share-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.share-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.share-modal-body {
    padding: 24px;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.share-option:hover {
    background: #e8f5e8;
    border-color: #1c8e42;
    transform: translateY(-1px);
}

.share-option svg {
    flex-shrink: 0;
    color: #666;
    transition: color 0.2s ease;
}

.share-option:hover svg {
    color: #1c8e42;
}

.share-option[data-platform="facebook"]:hover {
    background: #e7f3ff;
    border-color: #1877f2;
}

.share-option[data-platform="facebook"]:hover svg {
    color: #1877f2;
}

.share-option[data-platform="twitter"]:hover {
    background: #e7f7ff;
    border-color: #1da1f2;
}

.share-option[data-platform="twitter"]:hover svg {
    color: #1da1f2;
}

@media (max-width: 480px) {
    .share-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .share-modal-header,
    .share-modal-body {
        padding: 20px;
    }
    
    .share-option {
        padding: 14px;
        font-size: 15px;
    }
}

/* Business Stats */
.business-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1c8e42;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Hero Gallery */
.hero-gallery {
    margin-bottom: 32px;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

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

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumbnail {
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.view-all {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 32px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 32px;
}

.nav-link {
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1c8e42;
    border-bottom-color: #1c8e42;
}

/* Content Sections */
.about-section,
.deals-section,
.reviews-section,
.location-section,
.contact-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-section h3,
.deals-section h3,
.reviews-section h3,
.location-section h3,
.contact-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px 0;
}

.about-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 24px 0 16px 0;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.amenities-list svg {
    color: #1c8e42;
    flex-shrink: 0;
}

.hours-list {
    display: grid;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.hours-item .day {
    font-weight: 500;
    color: #333;
}

.hours-item .hours {
    color: #666;
}

.hours-item .hours.closed {
    color: #e74c3c;
}

/* Deals Section */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.deal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
}

.deal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.deal-content {
    padding: 20px;
}

.deal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.deal-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sale-price {
    font-size: 24px;
    font-weight: 700;
    color: #1c8e42;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.deal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Reviews Section */
.reviews-header {
    margin-bottom: 32px;
}

.reviews-summary {
    margin-top: 16px;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #1c8e42;
}

.overall-rating .stars {
    display: flex;
    gap: 4px;
}

.overall-rating .star {
    font-size: 20px;
    color: #ddd;
}

.overall-rating .star.filled {
    color: #ffc107;
}

.total-reviews {
    color: #666;
    font-size: 16px;
}

.reviews-list {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.review-item {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-rating .star {
    color: #ddd;
    font-size: 14px;
}

.review-rating .star.filled {
    color: #ffc107;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-content p {
    color: #333;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.review-coupon {
    color: #666;
    font-style: italic;
}

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

/* Location Section */
.map-placeholder {
    height: 300px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-bottom: 24px;
}

.map-placeholder span {
    font-size: 48px;
    margin-bottom: 8px;
}

.address-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.address-info p {
    color: #666;
    margin: 0 0 12px 0;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1c8e42;
    text-decoration: none;
    font-weight: 500;
}

.directions-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: #1c8e42;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.contact-value {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.contact-value:hover {
    color: #1c8e42;
}

.social-media h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

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

.social-link.twitter {
    background: #1da1f2;
    color: white;
}

/* Sidebar Styles */
.content-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

/* Quick Actions */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #1c8e42;
    border-color: #1c8e42;
    color: white;
    transform: translateY(-2px);
}

.action-btn svg {
    color: inherit;
}

.action-btn .heart-icon {
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease;
}

.action-btn.favorite-btn.favorited {
    background: #ffe6e6;
    border-color: #e74c3c;
    color: #e74c3c;
}

.action-btn.favorite-btn.favorited .heart-icon {
    color: #e74c3c;
}

.action-btn.share-btn {
    font-weight: 600;
}

/* Hours Card */
.hours-card {
    position: relative;
}

.today-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.today-status .day {
    font-weight: 600;
    color: #333;
}

.today-status .hours.open {
    color: #1c8e42;
    font-weight: 500;
}

.today-status .hours.closed {
    color: #e74c3c;
    font-weight: 500;
}

.toggle-hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: #1c8e42;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
}

.toggle-hours svg {
    transition: transform 0.3s ease;
}

.hours-card.expanded .toggle-hours svg {
    transform: rotate(180deg);
}

.all-hours {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.hours-card.expanded .all-hours {
    max-height: 300px;
    margin-top: 16px;
}

.all-hours .hours-item.today {
    background: #f0f8f4;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
}

/* Similar Businesses */
.similar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.similar-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.similar-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.similar-info {
    flex: 1;
}

.similar-info h5 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
}

.similar-info h5 a {
    color: #333;
    text-decoration: none;
}

.similar-info h5 a:hover {
    color: #1c8e42;
}

.similar-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.similar-rating .stars {
    display: flex;
    gap: 1px;
}

.similar-rating .star {
    font-size: 12px;
    color: #ddd;
}

.similar-rating .star.filled {
    color: #ffc107;
}

.similar-rating .rating-text {
    font-size: 12px;
    color: #666;
}

.similar-distance {
    font-size: 12px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .business-hero {
        padding: 20px;
        position: relative;
    }
    
    .business-header {
        display: block;
        padding-top: 60px;
    }
    
    .business-actions {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        gap: 12px;
        z-index: 10;
    }
    
    .business-title {
        font-size: 24px;
    }
    
    .business-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .about-section,
    .deals-section,
    .reviews-section,
    .location-section,
    .contact-section {
        padding: 20px;
    }
}
    
    .business-info {
        padding: 16px;
    }
    
    .business-image {
        height: 180px;
    }
}?