/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========================================= */
/* NAVIGATION & LOGO */
/* ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo { font-size: 1.5rem; font-weight: 800; color: #6c2c95; text-decoration: none; letter-spacing: -1px; z-index: 10002; position: relative; }
.nav-links { display: flex; align-items: center; }
.nav-links a { margin-left: 30px; text-decoration: none; color: #000; font-size: 0.9rem; font-weight: 500; }
.nav-links a.active { color: #6c2c95; }
.btn-primary { background: #6c2c95; color: #fff !important; padding: 10px 20px; border-radius: 980px; border:none; }
.btn-primary:hover { background: #5a1f7a; }
.logo-img { height: 32px; width: auto; vertical-align: middle; background: transparent; }

/* Hamburger & Mobile Menu */
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 20px; cursor: pointer; z-index: 10003; position: relative; }
.hamburger span { display: block; width: 100%; height: 2px; background: #000; transition: 0.3s; transform-origin: center; }
.mobile-menu { display: flex; flex-direction: column; justify-content: center; align-items: center; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #fff; z-index: 9999; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s; }
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a { font-size: 2rem; text-decoration: none; color: #000; font-weight: 600; padding: 15px 0; }
.mobile-menu a:hover { color: #6c2c95; }
.hamburger.active { position: fixed; right: 20px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); background: #000; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); background: #000; }

/* Hero & Stats */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; min-height: 85vh; padding-top: 100px; margin-bottom: 20px; }
.hero-content { padding-right: 40px; }
.hero h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 15px; color: #000; }
.hero h2 { font-size: 1rem; font-weight: 600; margin-bottom: 15px; color: #333; line-height: 1.4; }
.hero .subtext { font-size: 0.9rem; color: #666; margin-bottom: 30px; line-height: 1.5; }
.hero-btn { display: inline-block; background: #6c2c95; color: #fff; padding: 12px 24px; border-radius: 980px; text-decoration: none; font-weight: 600; transition: transform 0.2s; border: none; font-size: 0.9rem; }
.hero-btn:hover { transform: scale(1.02); background: #5a1f7a; }
.search-wrapper { background: #000; padding: 25px; border-radius: 16px; margin-top: 20px; text-align: center; border: 1px solid #333; }
.search-input { width: 100%; padding: 14px 20px; border-radius: 10px; border: 1px solid #333; font-size: 0.9rem; background: #111; color: #fff; margin-bottom: 12px; }
.search-input:focus { outline: none; border-color: #4ec5b6; }
.cta-text { display: block; margin-top: 10px; color: #4ec5b6; font-weight: 600; text-decoration: none; font-size: 0.85rem; }
.hero-visual { position: relative; height: 70vh; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 15px; }
.hero-img-card { background-size: cover; background-position: center; border-radius: 16px; transition: transform 0.5s ease; }
.hero-img-card:hover { transform: scale(1.02); }
.hero-img-1 { grid-row: span 2; }




/* ========================================= */
/* 5. STATS SECTION (Premium Style) */
/* ========================================= */
.stats-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    position: relative; 
    z-index: 1;
}

.stat-box {
    padding: 15px;
    transition: transform 0.3s ease;
}
.stat-box:hover { transform: translateY(-5px); }

.stat-box h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 800;
}
.stat-box p {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Mobile Stats Slider */
.stats-container-mobile { 
    display: none; 
    overflow: hidden; 
    width: 100%; 
    padding: 0; 
    height: auto; /* Auto height */
}
.stats-track { 
    display: flex; 
    width: max-content; 
    animation: scroll 20s linear infinite; 
}
.stat-box-mobile { 
    padding: 5px 25px; /* Reduced vertical padding significantly */
    text-align: center; 
    flex-shrink: 0; 
}
.stat-num-mobile { 
    font-size: 1.5rem; /* Reduced from 2rem */
    font-weight: 800; 
    color: #fff;
    margin-bottom: 0; /* Removed margin */
    line-height: 1.2;
}
.stat-label-mobile { 
    font-size: 0.65rem; /* Reduced from 0.75rem */
    color: #94a3b8; 
    text-transform: uppercase;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .stats-grid { display: none !important; }
    .stats-container-mobile { display: block !important; }
    
    /* REDUCED SECTION PADDING FOR MOBILE */
    .stats-section {
        padding: 15px 0 !important; /* Even tighter */
    }
}







/* Section Headers */
.section-header { margin-bottom: 30px; }
.featured-section .section-header { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
.featured-section .section-title { font-size: 3rem; font-weight: 700; letter-spacing: -0.02em; color: #000; margin-bottom: 15px; }
.featured-section .section-desc { font-size: 1rem; color: #666; line-height: 1.6; margin-bottom: 20px; }
.section-box .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; text-align: left; }
.section-box .section-header h3 { margin: 0; font-size: 1.1rem; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.filter-btn { background: #fff; border: 1px solid #ddd; padding: 8px 16px; border-radius: 20px; font-size: 0.85rem; cursor: pointer; transition: all 0.3s; color: #000; }
.filter-btn:hover, .filter-btn.active { background: #6c2c95; color: #fff; border-color: #6c2c95; }

/* Business Grid */
.business-grid { display: grid !important; grid-template-columns: repeat(5, 1fr) !important; gap: 25px; }
.business-card { background: #fff; border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #eee; display: flex; flex-direction: column; }
.business-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(108, 44, 149, 0.1); }
.card-img-container { position: relative; width: 100%; height: 140px; }
.card-img { width: 100%; height: 100%; object-fit: cover; background: #eee; }
.tag-overlay { position: absolute; top: 10px; right: 10px; background: #4ec5b6; color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; }
.card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.business-card h4 { font-size: 1rem; margin-bottom: 5px; font-weight: 600; color: #000; }
.business-card p { font-size: 0.85rem; color: #666; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.owner-info { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 15px; border-top: 1px solid #eee; }
.owner-avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; background: #eee; }
.owner-name { font-size: 0.75rem; color: #444; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.center-btn-wrapper { text-align: center; margin-top: 40px; }
.btn-explore { display: inline-block; background: transparent; color: #6c2c95; border: 2px solid #6c2c95; padding: 12px 35px; border-radius: 980px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-explore:hover { background: #6c2c95; color: #fff; }

/* Pricing */
.pricing-section { padding: 80px 0; background: #f9f9f9; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: stretch; }
.pricing-card { background: #fff; border-radius: 18px; padding: 30px; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; border: 2px solid transparent; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.card-header h3 { font-size: 1.2rem; margin-bottom: 10px; }
.price { font-size: 1.8rem; font-weight: 800; margin-bottom: 25px; color: #000; }
.price span { font-size: 0.9rem; font-weight: 400; color: #666; }
.features-list { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.features-list li { margin-bottom: 12px; font-size: 0.9rem; position: relative; padding-left: 20px; }
.features-list li::before { content: "✓"; position: absolute; left: 0; font-weight: bold; }
.btn-outline-dark { display: block; text-align: center; border: 2px solid #000; color: #000; padding: 12px; border-radius: 980px; text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-top: auto; transition: 0.3s; }
.btn-outline-dark:hover { background: #000; color: #fff; }
.pricing-card.bronze-card { border-color: #cd7f32; }
.pricing-card.bronze-card .features-list li::before { color: #cd7f32; }
.pricing-card.bronze-card .btn-outline-dark { border-color: #cd7f32; color: #cd7f32; }
.pricing-card.bronze-card .btn-outline-dark:hover { background: #cd7f32; color: #fff; }
.pricing-card.silver-card { border-color: #8a8a8a; }
.pricing-card.silver-card .features-list li::before { color: #8a8a8a; }
.pricing-card.silver-card .btn-outline-dark { border-color: #8a8a8a; color: #555; }
.pricing-card.silver-card .btn-outline-dark:hover { background: #8a8a8a; color: #fff; }
.pricing-card.featured { border: none; background: linear-gradient(135deg, #6c2c95 0%, #4a1e6b 100%); color: #fff; position: relative; }
.featured .price { color: #fff; } .featured .price span { color: #ddd; } .featured .features-list li { color: #f0f0f0; } .featured .features-list li::before { color: #4ec5b6; }
.badge { background: #4ec5b6; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; display: inline-block; margin-bottom: 15px; }
.btn-gold { display: block; text-align: center; background: #4ec5b6; color: #fff; padding: 12px; border-radius: 980px; text-decoration: none; font-weight: 700; font-size: 0.95rem; margin-top: auto; }
.btn-gold:hover { background: #3da8a8; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-10px); } }
.pricing-scroll-hint { display: none; text-align: center; color: #888; font-size: 0.8rem; margin-top: 15px; animation: bounce-right 1.5s infinite; }
@keyframes bounce-right { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

footer { background: #f9f9f9; padding: 40px 0; text-align: center; color: #666; font-size: 0.85rem; border-top: 1px solid #eee; }

/* Auth Pages */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 20px 40px; background: #f9f9f9; }
.auth-container { width: 100%; max-width: 420px; }
.auth-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; }
.auth-logo { text-align: center; margin-bottom: 30px; }
.auth-logo a { font-size: 2rem; font-weight: 800; color: #6c2c95; text-decoration: none; }
.auth-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; text-align: center; }
.auth-subtitle { color: #666; text-align: center; margin-bottom: 30px; font-size: 0.9rem; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
.form-input { width: 100%; padding: 14px 18px; border: 1px solid #ddd; border-radius: 10px; font-size: 0.95rem; transition: border-color 0.3s; }
.form-input:focus { outline: none; border-color: #6c2c95; }
.form-btn { width: 100%; padding: 14px; border-radius: 980px; border: none; background: #6c2c95; color: #fff; font-size: 1rem; font-weight: 600; cursor: pointer; transition: 0.3s; }
.form-btn:hover { background: #5a1f7a; transform: translateY(-2px); }
.auth-switch { text-align: center; margin-top: 25px; font-size: 0.9rem; color: #666; }
.auth-switch a { color: #6c2c95; font-weight: 600; text-decoration: none; }
.auth-divider { display: flex; align-items: center; margin: 25px 0; color: #aaa; font-size: 0.8rem; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: #eee; }
.auth-divider span { padding: 0 15px; }
.social-login { display: flex; gap: 10px; justify-content: center; }
.social-btn { flex: 1; padding: 12px; border: 1px solid #eee; border-radius: 10px; background: #fff; cursor: pointer; font-weight: 500; font-size: 0.9rem; transition: 0.3s; }
.social-btn:hover { background: #f5f5f5; }
.input-wrapper { position: relative; width: 100%; }
.input-wrapper .form-input { padding-right: 50px; }
.toggle-password { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 1.1rem; color: #888; padding: 5px; line-height: 1; }
.toggle-password:hover { color: #6c2c95; }
.password-hint { font-size: 0.75rem; color: #888; margin-top: 5px; }

/* Dashboard */
.dash-container { padding: 120px 0 60px; background: #f4f6f9; min-height: 100vh; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.dash-welcome h1 { font-size: 2rem; font-weight: 700; color: #111; margin-bottom: 5px; }
.dash-welcome p { color: #666; margin:0; }
.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.dash-card { background: #fff; border-radius: 16px; padding: 25px; border: 1px solid #eee; text-align: center; transition:0.2s; }
.dash-card:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.dash-stat { font-size: 2.5rem; font-weight: 800; color: #6c2c95; margin-bottom: 5px; }
.dash-label { font-size: 0.85rem; color: #666; font-weight: 500; }
.section-box { background: #fff; border-radius: 16px; padding: 25px; border: 1px solid #eee; margin-bottom: 30px; }
.btn-add { font-size: 0.8rem; padding: 6px 14px; background: #6c2c95; color: #fff; border-radius: 980px; text-decoration: none; font-weight: 600; }
.btn-edit { font-size: 0.8rem; padding: 5px 12px; background: #000; color: #fff; border-radius: 980px; text-decoration: none; font-weight: 600; }
.btn-delete { font-size: 0.8rem; padding: 5px 12px; background: #fff; color: #dc2626; border: 1px solid #dc2626; border-radius: 980px; text-decoration: none; font-weight: 600; margin-left: 5px; }
.alert-pending { background: #fff3cd; color: #856404; padding: 20px; border-radius: 12px; margin-bottom: 25px; border-left: 5px solid #ffa500; }
.alert-approved { background: #d4edda; color: #155724; padding: 20px; border-radius: 12px; margin-bottom: 25px; border-left: 5px solid #28a745; }
.biz-profile-card { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.biz-profile-img { width: 120px; height: 120px; border-radius: 16px; object-fit: cover; flex-shrink: 0; }
.biz-profile-info h2 { margin: 0 0 5px 0; font-size: 1.4rem; }
.biz-profile-info p { margin: 0 0 15px 0; color: #666; }
.biz-profile-actions a { margin-right: 10px; }
.no-business { text-align: center; padding: 40px 0; color: #888; }
.items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.item-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
.item-row:last-child { border-bottom: none; }
.item-info h4 { margin: 0 0 2px 0; font-size: 0.95rem; }
.item-info p { margin: 0; font-size: 0.8rem; color: #888; }
.item-meta { text-align: right; min-width: 120px; }
.item-price { display: block; font-weight: 700; color: #6c2c95; font-size: 0.9rem; margin-bottom: 5px; }
.item-actions a { font-size: 0.75rem; padding: 4px 10px; }
.empty-state { text-align: center; padding: 20px; color: #aaa; font-size: 0.9rem; }

/* ========================================= */
/* PRODUCT GRID DESIGN (CATALOG STYLE) */
/* ========================================= */
.product-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Gallery in Product Card */
.gallery-container {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f9f9f9;
}
.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255, 0.9);
    color: #000;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 5;
}
.gallery-btn:hover { background: #fff; }
.gallery-btn.prev { left: 10px; }
.gallery-btn.next { right: 10px; }

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 5;
}
.gallery-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
    background-color: rgba(255,255,255, 0.7);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}
.gallery-dot.active { background-color: #6c2c95; }

.product-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #111;
}
.product-details p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
    flex-grow: 1;
}
.product-price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6c2c95;
    margin-bottom: 15px;
}
.product-actions {
    margin-top: auto;
}
.product-actions .btn-whatsapp {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    text-decoration: none;
}

/* ========================================= */
/* DIRECTORY & MODALS */
/* ========================================= */
.search-hero { padding: 120px 0 60px; background: #000; text-align: center; color: #fff; }
.search-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.search-hero .subtext { color: #aaa; margin-bottom: 30px; }
.premium-search-form { max-width: 700px; margin: 0 auto; display: flex; background: rgba(255,255,255,0.1); border-radius: 60px; padding: 5px; border: 1px solid rgba(255,255,255,0.1); }
.premium-search-input { flex-grow: 1; background: transparent; border: none; padding: 15px 30px; color: #fff; font-size: 1.1rem; }
.premium-search-input::placeholder { color: rgba(255,255,255,0.5); }
.premium-search-btn { background: #6c2c95; color: #fff; border: none; padding: 15px 35px; border-radius: 60px; font-weight: 700; }
.results-container { padding: 60px 0; background: #f9f9f9; min-height: 60vh; }
.results-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
.filter-sidebar { border-right: 1px solid #eee; padding-right: 20px; }
.filter-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.filter-list { list-style: none; }
.filter-list li a { display: flex; justify-content: space-between; padding: 10px 0; color: #333; text-decoration: none; border-bottom: 1px solid #f5f5f5; transition: color 0.2s; }
.filter-list li a:hover { color: #6c2c95; }
.filter-count { background: #eee; padding: 2px 8px; border-radius: 10px; font-size: 0.8rem; }
.main-results { flex-grow: 1; }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.results-count { font-weight: 600; color: #666; }
.mobile-cats { display: none; }
.results-container .business-grid { grid-template-columns: repeat(3, 1fr) !important; }

/* Modals */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 99999; display: none; align-items: center; justify-content: center; cursor: pointer; }
.modal-content { background: #fff; width: 90%; max-width: 900px; max-height: 90vh; border-radius: 20px; overflow: hidden; position: relative; display: flex; flex-direction: column; cursor: default; }
.modal-header-img { width: 100%; height: 300px; object-fit: contain; background: #f5f5f7; flex-shrink: 0; }
.modal-body { padding: 30px; overflow-y: auto; flex-grow: 1; max-height: calc(90vh - 300px); }
.modal-close { position: absolute; top: 15px; right: 15px; background: #fff; width: 40px; height: 40px; border-radius: 50%; border: none; font-size: 1.5rem; cursor: pointer; font-weight: bold; color: #000; z-index: 20; box-shadow: 0 2px 10px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; line-height: 1; }
.modal-close:hover { background: #6c2c95; color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; padding: 12px 25px; border-radius: 980px; text-decoration: none; font-weight: 600; }
.modal-loading { text-align: center; padding: 100px 20px; }
.spinner { border: 4px solid #f3f3f3; border-top: 4px solid #6c2c95; border-radius: 50%; width: 40px; height: 40px; animation: spin 0.8s linear infinite; margin: 0 auto 20px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
#lightbox { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 100000; display: none; align-items: center; justify-content: center; cursor: zoom-out; }
#lightbox img { max-width: 95%; max-height: 95%; object-fit: contain; }

/* Admin */
.adm-body { background: #f4f6f9; }
.adm-wrapper { display: flex; min-height: 100vh; }
.adm-sidebar { width: 260px; background: #fff; border-right: 1px solid #e5e7eb; padding: 20px; position: fixed; height: 100vh; box-sizing: border-box; z-index: 100; }
.adm-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 30px; padding: 0 10px; }
.adm-logo img { height: 35px; }
.adm-logo span { font-size: 1.2rem; font-weight: 700; color: #6c2c95; }
.adm-nav { display: flex; flex-direction: column; gap: 5px; }
.adm-nav a { padding: 10px 15px; border-radius: 8px; color: #374151; text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: 0.2s; }
.adm-nav a:hover { background: #f3f4f6; color: #111; }
.adm-nav a.active { background: #6c2c95; color: #fff; }
.adm-main { margin-left: 260px; padding: 30px; width: 100%; box-sizing: border-box; }
.adm-header { margin-bottom: 30px; }
.adm-page-title { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 0; }
.adm-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.adm-stat-card { background: #fff; padding: 25px; border-radius: 12px; border: 1px solid #e5e7eb; text-decoration: none; display: block; transition: transform 0.2s; }
.adm-stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.adm-stat-value { font-size: 2rem; font-weight: 800; color: #6c2c95; margin-bottom: 5px; }
.adm-stat-label { font-size: 0.9rem; color: #6b7280; margin-bottom: 10px; }
.adm-stat-hint { font-size: 0.8rem; color: #4ec5b6; font-weight: 600; }
.adm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.adm-section { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; padding: 25px; }
.adm-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #f3f4f6; }
.adm-section-title { font-size: 1.1rem; font-weight: 600; color: #111; margin: 0; }
.adm-section-link { font-size: 0.85rem; color: #6c2c95; text-decoration: none; font-weight: 500; }
.adm-table { width: 100%; border-collapse: collapse; }
.adm-table th { text-align: left; padding: 12px 10px; font-size: 0.75rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid #e5e7eb; }
.adm-table td { padding: 12px 10px; font-size: 0.9rem; color: #374151; border-bottom: 1px solid #f3f4f6; }
.adm-table tr:hover { background: #f9fafb; }
.adm-badge { padding: 4px 10px; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; display: inline-block; }
.adm-badge-pending { background: #fef3c7; color: #92400e; }
.adm-badge-success { background: #d1fae5; color: #065f46; }

/* Business Page */
.biz-hero { padding: 120px 0 60px; background: #000; color: #fff; }
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.biz-badge { background: #4ec5b6; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; display: inline-block; margin-bottom: 15px; }
.biz-content h1 { font-size: 2.5rem; margin: 0 0 20px 0; line-height: 1.1; }
.biz-desc { color: #aaa; font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; }
.biz-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.biz-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.biz-details { max-width: 800px; margin: 0 auto; padding-top: 80px; /* ADDED SPACING HERE */ }

/* Owner & Location */
.biz-owner { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.biz-owner-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.biz-owner-label { font-size: 0.8rem; color: #666; margin: 0 0 5px 0; }
.biz-location { margin-bottom: 40px; }
.biz-location h3 { font-size: 1.2rem; margin-bottom: 10px; }
.biz-location p { color: #666; margin: 0; }

/* Modal Product Grid Override (2 cols inside modal) */
#modalContentBody .product-grid-container { grid-template-columns: 1fr 1fr; }
#modalContentBody .gallery-container { height: 180px; }

/* Service Icon Box */
.service-icon-box { height: 180px; background: linear-gradient(135deg, #6c2c95 0%, #4a1e6b 100%); display: flex; align-items: center; justify-content: center; }
.service-icon-box span { font-size: 3rem; }

/* Mobile Responsive */
@media (max-width: 900px) {
    body { font-size: 14px; }
    h1 { font-size: 1.6rem !important; }
    .container { padding: 0 15px; }
    .logo-img { height: 26px; }
    .featured-section .section-header { display: block; text-align: center; margin-left: 0; margin-right: 0; max-width: 100%; }
    .featured-section .section-title { font-size: 1.8rem !important; }
    .nav-links { display: none !important; }
    .hamburger { display: flex !important; }
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; gap: 20px; text-align: center; }
    .hero-content { padding-right: 0; order: 1; }
    .hero-visual { height: 30vh; order: 2; }
    .search-wrapper { padding: 20px; margin-top: 15px; }
    .stats-grid { display: none !important; }
    .stats-container-mobile { display: block; height: 120px; }
    .stats-track { animation: scroll 12s linear infinite; }
    .filter-bar { display: none !important; }
    .business-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
    .featured-section .business-card:nth-child(n+5) { display: none !important; }
    .results-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none !important; }
    .search-hero { padding: 100px 0 40px; }
    .premium-search-form { flex-direction: column; background: transparent; border: none; padding: 0; }
    .premium-search-input { background: #1a1a1a; border-radius: 10px; margin-bottom: 10px; border: 1px solid #333; }
    .premium-search-btn { width: 100%; border-radius: 10px; }
    .mobile-cats { display: flex !important; overflow-x: auto; padding: 15px 0; white-space: nowrap; }
    .mobile-cats a { display: inline-block; background: #eee; color: #000; padding: 8px 16px; border-radius: 20px; margin-right: 10px; font-size: 0.85rem; text-decoration: none; }
    .mobile-cats a.active { background: #6c2c95; color: #fff; }
    .results-container .business-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
    .pricing-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 15px; padding-bottom: 20px; }
    .pricing-card { min-width: 280px; scroll-snap-align: center; flex-shrink: 0; }
    .pricing-scroll-hint { display: block; }
    .dash-grid { grid-template-columns: 1fr; }
    .dash-header { text-align: center; justify-content: center; }
    .items-grid { grid-template-columns: 1fr; }
    .biz-profile-card { flex-direction: column; text-align: center; }
    .biz-profile-img { width: 100px; height: 100px; }
    .biz-profile-actions { margin-top: 15px; }
    .adm-sidebar { display: none; }
    .adm-main { margin-left: 0; }
    .adm-stats-grid { grid-template-columns: 1fr 1fr; }
    .adm-row { grid-template-columns: 1fr; }
    .biz-grid { grid-template-columns: 1fr; gap: 30px; }
    .biz-img { order: -1; }
    .biz-content { text-align: center; }
    .biz-details { padding-top: 40px; } /* Less padding on mobile */
    .modal-content { width: 95%; max-height: 95vh; }
    .modal-header-img { height: 200px; }
    .modal-body { padding: 20px; max-height: calc(95vh - 200px); }
    
    /* Mobile Product Grid - 2 Columns */
    .product-grid-container { grid-template-columns: repeat(2, 1fr); }
    .gallery-container { height: 150px; }
    
    /* Modal products 1 column on mobile */
    #modalContentBody .product-grid-container { grid-template-columns: 1fr; }
    #modalContentBody .gallery-container { height: 200px; }
}



/* ========================================= */
/* UNIFIED SECTION STYLES */
/* ========================================= */

/* Container for Title + Description */
.section-header {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Universal Title Style */
.section-title {
    font-size: 2.2rem; /* Desktop Size */
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #000;
    margin-bottom: 10px;
}

/* Universal Description Style */
.section-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Mobile Typography (Consistent across all sections) */
@media (max-width: 900px) {
    .section-title {
        font-size: 1.8rem !important;
    }
    .section-header {
        display: block;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

/* ========================================= */
/* SECTION SPACING */
/* ========================================= */

.featured-section {
    padding: 50px 0;
    background: #fff;
}

.pricing-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.center-btn-wrapper {
    margin-top: 40px; 
    text-align: center;
}

/* ========================================= */
/* VERIFIED BADGE */
/* ========================================= */
.verified-badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('/assets/images/verify.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent !important;
    vertical-align: middle;
    margin-left: 5px;
    position: relative;
    top: -2px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .verified-badge {
        width: 16px;
        height: 16px;
        margin-left: 4px;
        top: -1px;
    }
}

.verified-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    z-index: 100000;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
    border: 1px solid #eee;
}

.verified-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.verified-popup .popup-icon {
    width: 60px;
    height: 60px;
    background-image: url('/assets/images/verify.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 20px;
    background-color: transparent !important; 
}

.verified-popup h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
}

.verified-popup p {
    margin: 0 0 25px 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.verified-popup button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 980px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.verified-popup button:hover { opacity: 0.8; }




/* ========================================= */
/* CONTACT SECTION */
/* ========================================= */
.contact-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.contact-section .section-title {
    color: #fff;
}

.contact-section .section-desc {
    color: rgba(255,255,255, 0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, background 0.2s;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.contact-card p {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-section {
        padding: 50px 0;
    }
}