/* =========================================
   THEME DEFINITIONS
   ========================================= */

/* 1. Default (iFood Style) */
body.theme-default {
    --primary-color: #ff4500;
    --secondary-color: #ff6347;
    --bg-color: #f4f4f4;
    --card-bg: #ffffff;
    --text-color: #333333;
    --heading-color: #222222;
    --border-color: #eeeeee;
    --font-family: 'Inter', sans-serif;
    --radius: 8px;
}

/* 2. Dark Mode Premium */
body.theme-dark {
    --primary-color: #ffb703;
    /* Gold/Yellow */
    --secondary-color: #fb8500;
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --border-color: #333333;
    --font-family: 'Inter', sans-serif;
    --radius: 12px;
}

/* 3. Natural / Fresh (Green) */
body.theme-natural {
    --primary-color: #43a047;
    --secondary-color: #66bb6a;
    --bg-color: #f1f8e9;
    --card-bg: #ffffff;
    --text-color: #33691e;
    --heading-color: #1b5e20;
    --border-color: #dcedc8;
    --font-family: 'Inter', sans-serif;
    --radius: 16px;
    /* Soft round */
}

/* 4. Bold / BBQ (Brown & Yellow) */
body.theme-bbq {
    --primary-color: #d84315;
    --secondary-color: #ffab00;
    --bg-color: #fff3e0;
    --card-bg: #ffffff;
    --text-color: #3e2723;
    --heading-color: #bf360c;
    --border-color: #ffccbc;
    --font-family: 'Impact', sans-serif;
    /* Strong font */
    --radius: 4px;
    /* Boxy */
}

/* 5. Sweet / Acai (Purple) */
body.theme-purple {
    --primary-color: #8e24aa;
    --secondary-color: #ba68c8;
    --bg-color: #f3e5f5;
    --card-bg: #ffffff;
    --text-color: #4a148c;
    --heading-color: #6a1b9a;
    --border-color: #e1bee7;
    --font-family: 'Nunito', sans-serif;
    /* Friendly font */
    --radius: 20px;
}

/* 6. Tech Blue */
body.theme-blue {
    --primary-color: #0066cc;
    --secondary-color: #0099ff;
    --bg-color: #eef2f6;
    --card-bg: #ffffff;
    --text-color: #2c3e50;
    --heading-color: #0a2540;
    --border-color: #dde1e7;
    --font-family: 'Roboto', sans-serif;
    --radius: 6px;
}

/* 7. Minimalist (B&W) */
body.theme-minimal {
    --primary-color: #000000;
    --secondary-color: #333333;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-color: #000000;
    --heading-color: #000000;
    --border-color: #e0e0e0;
    --font-family: 'Helvetica Neue', sans-serif;
    --radius: 0px;
    /* Sharp edges */
}

/* 8. Tropical (Orange & Teal) */
body.theme-tropical {
    --primary-color: #ff6d00;
    --secondary-color: #00bfa5;
    --bg-color: #fff8e1;
    --card-bg: #ffffff;
    --text-color: #263238;
    --heading-color: #e65100;
    --border-color: #ffecb3;
    --font-family: 'Poppins', sans-serif;
    --radius: 12px;
}

/* Apply Variables */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
}

/* Specific overrides for Dark Mode */
body.theme-dark .restaurant-info-card,
body.theme-dark .product-item,
body.theme-dark .cat-nav-item {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-color);
}

body.theme-dark .category-title,
body.theme-dark .product-name,
body.theme-dark .restaurant-details h1 {
    color: var(--heading-color);
}

body.theme-dark .info-badge {
    background-color: #333;
    color: #eee;
    border-color: #444;
}

body.theme-dark .product-desc {
    color: #aaa;
}

body.theme-dark .cat-nav-item:hover,
body.theme-dark .cat-nav-item.active {
    background-color: var(--primary-color);
    color: #000;
    /* Contrast on yellow */
}