@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* =========================================================
   1. COLOR CONTROL PANEL (CSS Variables) - PREMIUM THEME
========================================================= */
:root {
    /* Brand Colors - Deep Midnight Blue */
    --primary-color: #0B1120;       
    --primary-hover: #1E293B;       
    
    /* Button Colors - Vibrant Emerald/Teal */
    --button-color: #10B981;        
    --button-hover: #059669;        
    
    /* Accent Colors - Sleek Gold/Orange for featured */
    --accent-color: #F59E0B;        
    --accent-bg: #FEF3C7;           
    
    /* Base Colors - Crisp, clean off-white background */
    --bg-light: #F8FAFC;            
    --text-main: #334155;           
    --text-muted: #64748B;          
    
    /* Footer */
    --footer-bg: #0B1120;           

    /* Modern UI Shapes & Shadows */
    --radius-modern: 16px; /* Enhanced rounding */
    --shadow-soft: 0 4px 20px -2px rgba(15, 23, 42, 0.05); /* Buttery smooth shadow */
    --shadow-hover: 0 12px 30px -4px rgba(15, 23, 42, 0.12); /* Lift effect */
}

/* --- 2. Base Styles & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* --- 2.5 Modern Overrides --- */
input, select, textarea {
    border-radius: 8px !important;
    transition: all 0.2s ease;
}

button, .btn-primary, .btn-secondary, .btn-submit {
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.business-card, .filters, section {
    background: #ffffff;
    border-radius: var(--radius-modern) !important;
    box-shadow: var(--shadow-soft) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

/* --- 3. Navigation Bar (Glassmorphism) --- */
header {
    background-color: rgba(255, 255, 255, 0.85); /* Translucent */
    backdrop-filter: blur(12px); /* Apple-style blur */
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800; /* Extra bold for logo */
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary-color);
    letter-spacing: -0.05em;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--button-color); 
}

/* --- 4. Buttons --- */
.btn-primary {
    background: linear-gradient(135deg, var(--button-color) 0%, #059669 100%); 
    color: #ffffff !important;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
    display: inline-block;
    background-color: #F1F5F9;
    color: var(--text-main);
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #E2E8F0;
}

.btn-secondary:hover {
    background-color: #E2E8F0;
    transform: translateY(-2px);
}

/* Base form inputs focus (added here for global effect) */
input:focus, select:focus, textarea:focus {
    outline: none !important;
    border-color: var(--button-color) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15) !important;
}

/* --- 5. Hero & Search Section --- */
.hero {
    background: radial-gradient(circle at top, var(--primary-hover) 0%, var(--primary-color) 100%) !important; 
    color: white;
    text-align: center;
    padding: 6rem 1.5rem 5rem; /* More breathing room */
    border-radius: 0 !important; /* Keep hero spanning full edge if outside container */
}

.hero h1 {
    font-size: 3.5rem; /* Larger */
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.35rem;
    color: #94A3B8; /* Subtle blue-gray */
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.search-bar {
    display: flex;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05); /* Slight translucent backing */
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-bar input {
    flex: 1;
    padding: 1rem 1.2rem;
    border: none;
    font-size: 1.1rem;
    background: white;
}

.search-bar button {
    padding: 1rem 2rem;
    background: var(--button-color); 
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

.search-bar button:hover {
    background: var(--button-hover); 
}

/* --- 6. Main Directory Layout (CSS Grid) --- */
.directory-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* --- 7. Sidebar Filters --- */
.filters {
    padding: 1.5rem;
    align-self: start;
    border: none !important;
}

.filters h3 {
    margin-bottom: 1.2rem;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 0.8rem;
    font-size: 1.25rem;
}

.filters ul {
    list-style: none;
}

.filters li {
    margin-bottom: 0.6rem;
}

.filters label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.subcategories {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- 8. Business Listings --- */
.listings h2 {
    grid-column: 1 / -1; 
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Slightly wider cards */
    gap: 2rem;
    align-items: start;
}

.business-card {
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.6) !important;
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.business-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.category {
    font-size: 0.9rem;
    color: var(--button-color); /* Bright color for category */
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes button to bottom */
}

/* --- Logo Styles & Fallback Initials --- */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px; /* Adds space between the logo and the business name */
    margin-bottom: 1rem;
}

.business-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 12px;
    flex-shrink: 0;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

/* --- 9. Tiered Listing Highlights --- */
/* Premium Tier */
.tier-premium {
    border: 2px solid var(--accent-color) !important; 
    background-color: var(--accent-bg) !important; 
}
.badge-premium {
    background-color: var(--accent-color); 
    color: #78350F !important; /* Dark brown/gold text for contrast */
}

/* Paid Tier (In-between) */
.tier-paid {
    border: 2px solid var(--button-color) !important; 
}
.badge-paid {
    background: linear-gradient(135deg, var(--button-color) 0%, #059669 100%); 
}

/* Free Tier just uses the default .business-card styling! */

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color); 
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* --- 10. Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--footer-bg); 
    color: white;
    margin-top: 4rem;
}

/* --- 12. Application Form Styles --- */
.form-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-container h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-container p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.business-form {
    display: flex;
    flex-direction: column;
}

.business-form .form-group {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
}

.business-form label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.business-form input,
.business-form select,
.business-form textarea {
    padding: 1rem;
    border: 1px solid #CBD5E1;
    background: #F8FAFC;
    font-size: 1rem;
    font-family: inherit;
}

.business-form small {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--button-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--button-hover);
}

.founder-story-block {
    background: #f8fafc; /* A very soft, clean background */
    border-left: 4px solid var(--accent-color); /* A pop of your green accent color */
    padding: 1.5rem 2rem 1.5rem 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    border-radius: 0 var(--radius-modern) var(--radius-modern) 0;
}

.founder-story-block p {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.15rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* The giant decorative quote mark */
.founder-story-block .quote-mark {
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.15;
    position: absolute;
    top: -15px;
    left: 10px;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}
/* =========================================================
   11. ABOUT PAGE (Desktop & Base Styles)
========================================================= */
.about-page-wrapper {
    max-width: 850px;
    margin: 4rem auto;
    padding: 0 20px;
}

.about-card {
    background: #ffffff;
    border-radius: var(--radius-modern);
    overflow: hidden; /* Keeps the hero strip inside the rounded corners */
    box-shadow: var(--shadow-modern);
    border: 1px solid #E2E8F0;
}

/* The dark blue strip at the top of the card */
.about-hero-strip {
    background: var(--primary-color);
    padding: 4rem 3rem;
    color: white;
    text-align: center;
}

.about-hero-strip h1 {
    font-size: 3.2rem;
    margin: 0;
    letter-spacing: -1px;
}

/* The teal accent line under the title */
.accent-bar {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.about-content {
    padding: 3rem;
}

/* The first introductory paragraph */
.lead-text {
    font-size: 1.4rem;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* The rest of the body text */
.main-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-main);
}

.main-body h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.about-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Mobile Fixes for About Page */
@media (max-width: 768px) {
    /* Gives the whole page breathing room from the phone's edges */
    .about-page-wrapper {
        padding: 1.5rem !important;
        margin: 2rem auto !important;
    }
    
    /* Keeps the text away from the edges of the white card */
    .about-content { 
        padding: 2rem 1.5rem !important; 
    }
    
    .about-hero-strip { 
        padding: 2.5rem 1.5rem !important; 
    }
    
    .about-hero-strip h1 { 
        font-size: 2.2rem !important; 
    }
    
    /* Pushes the button down safely */
    .about-footer {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
        display: block !important;
        clear: both !important;
    }
}

/* =========================================================
   13. RATINGS & REVIEWS
========================================================= */
.reviews-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    color: #F59E0B; /* Vibrant Gold */
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.review-comment {
    color: var(--text-main);
    line-height: 1.6;
}

.review-form-container {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 1px dashed #CBD5E1;
}

.review-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* =========================================================
   14. BUSINESS HOURS & SCHEDULES
========================================================= */

/* Dynamic Badges */
.badge-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857; /* Deep Emerald */
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-open::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
}

.badge-closed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(239, 68, 68, 0.1);
    color: #B91C1C; /* Deep Red */
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-closed::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #EF4444;
    border-radius: 50%;
}

/* Profile Hours List */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.95rem;
    color: var(--text-main);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-today {
    font-weight: 700;
    color: var(--primary-color) !important;
    background: #F1F5F9;
    padding: 0.5rem;
    border-radius: 6px;
    border: none !important;
}

/* Schedule Builder Form UI */
.schedule-builder {
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.schedule-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #E2E8F0;
    background: #fff;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-day {
    flex: 0 0 100px;
    font-weight: 600;
    color: var(--primary-color);
}

.schedule-inputs {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 10px;
}

.schedule-inputs select, .schedule-inputs input[type="time"] {
    padding: 0.5rem;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-family: inherit;
}

/* =========================================================
   15. MOBILE RESPONSIVENESS (Refined)
========================================================= */
@media (max-width: 768px) {
    /* Stack the Navigation */
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links {
        margin-top: 1rem;
        width: 100%;
        justify-content: space-around;
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    /* Hero Section Adjustments */
    .hero h1 {
        font-size: 1.8rem;
    }

    .search-bar {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .search-bar input {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* The Sidebar & Listings Layout */
    .directory-container {
        grid-template-columns: 1fr; /* Force single column */
        margin: 1rem auto;
        padding: 0 1rem;
    }

    /* Move Filters to a scrollable row or stack them */
    .filters {
        order: 2; /* Moves filters BELOW the listings on mobile */
        margin-top: 2rem;
    }

    /* Business Cards */
    .listings {
        grid-template-columns: 1fr; /* One card per row */
        order: 1;
    }

    .business-card {
        padding: 1rem;
    }

    /* Form Container */
    .form-container {
        margin: 1rem;
        padding: 1.5rem;
        width: auto;
    }

    /* Buttons - Make them easier to tap with thumbs */
    .btn-primary, .btn-submit, .btn-secondary {
        padding: 12px;
        font-size: 1rem;
        display: block;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .profile-header {
        padding: 1.5rem !important;
        text-align: center;
    }
    
    .profile-intro {
        min-width: 100% !important;
    }

    .profile-body {
        grid-template-columns: 1fr !important; /* Stacks About and Contact */
        padding: 1.5rem !important;
        gap: 2rem !important;
    }
}

/* =========================================================
   14. ADMIN DASHBOARD STATS
   Change card colors/sizes here — never touch admin.php
========================================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid transparent;
}

.stat-card__number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-card__label {
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

/* Individual card color themes */
.stat-card--total    { background: #f8f9fa; border-color: #e0e0e0; }
.stat-card--total    .stat-card__number { color: var(--primary-color); }
.stat-card--total    .stat-card__label  { color: var(--text-muted); }

.stat-card--pending  { background: #FFF8E1; border-color: #FFE082; }
.stat-card--pending  .stat-card__number { color: #F57F17; }
.stat-card--pending  .stat-card__label  { color: #795548; }

.stat-card--approved { background: #E8F5E9; border-color: #A5D6A7; }
.stat-card--approved .stat-card__number { color: #2E7D32; }
.stat-card--approved .stat-card__label  { color: #388E3C; }

.stat-card--month    { background: #E3F2FD; border-color: #90CAF9; }
.stat-card--month    .stat-card__number { color: #1565C0; }
.stat-card--month    .stat-card__label  { color: #1976D2; }

/* =========================================================
   15. VERIFIED BADGE
   Change the look of the verified checkmark here
========================================================= */
.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #DBEAFE;
    color: #1D4ED8;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #BFDBFE;
    letter-spacing: 0.3px;
}

/* Larger verified badge for profile pages */
.badge-verified--large {
    font-size: 0.85rem;
    padding: 5px 14px;
}

/* =========================================================
   16. PROFILE PAGE COMPONENTS
   All profile layout pieces — edit here, not in profile.php
========================================================= */
.profile-card {
    background: white;
    border-radius: var(--radius-modern);
    overflow: hidden;
    box-shadow: var(--shadow-modern);
    border: 1px solid #E2E8F0;
}

.profile-header-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2.5rem;
    background: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.profile-img-col {
    flex: 1;
    min-width: 250px;
}

.profile-img-col img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-intro-col {
    flex: 2;
    min-width: 300px;
}

.profile-intro-col h1 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin: 0.5rem 0 0.25rem;
}

.profile-intro-col .profile-category {
    font-size: 1.1rem;
    color: var(--button-color);
    font-weight: 600;
    margin-bottom: 0;
}

.profile-body-wrap {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.profile-contact-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.profile-contact-box h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.profile-contact-box p {
    margin-bottom: 1rem;
}

.profile-map-wrap {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.profile-map-wrap iframe {
    display: block;
    border: 0;
    width: 100%;
    height: 220px;
}

/* =========================================================
   17. SOCIAL SHARE BUTTONS
   Change share button styles here
========================================================= */
.share-row {
    margin-top: 1.25rem;
}

.share-row__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}

.share-btn:hover { opacity: 0.85; }

.share-btn--facebook { background: #1877F2; color: white; }
.share-btn--x        { background: #000;    color: white; }
.share-btn--copy     { background: #f1f5f9; color: #334155; border: 1px solid #CBD5E1; }

/* =========================================================
   18. PROFILE ACTION BUTTONS ROW
========================================================= */
.profile-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* =========================================================
   19. PRICING PAGE
========================================================= */
.pricing-hero {
    background: var(--primary-color);
    padding: 4rem 2rem;
    color: white;
}

.pricing-container {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-modern);
    border: 1px solid #E2E8F0;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-modern);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card__title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card__price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.pricing-card__price span {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card__desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 50px;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1; /* Pushes the button to the bottom */
}

.pricing-card__features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-main);
}

.pricing-card__features li.disabled {
    color: #94A3B8;
}

/* Featured / Popular tier styling */
.pricing-card--featured {
    border: 2px solid var(--button-color);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.15);
    background: #FAFAFA;
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--button-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium tier styling */
.pricing-card--premium {
    border: 2px solid var(--accent-color);
    background: #F8FAFC;
}
