/* Billy Bargain - Complete Stylesheet 

*/

:root {
    /* Primary Brand Colors */
    --ps-nav-bg: #002d58;    /* Deep Navy Header */
    --billy-blue: #004a99;   /* Superhero Blue */
    --billy-yellow: #ffd700; /* Superhero Yellow/Gold */
    --billy-red: #d90429;    /* Alert/Price Drop Red */
    
    /* UI Colors */
    --bg-light: #f2f4f5;     /* Light Grey Body Background */
    --border-color: #e2e6e9; /* Soft Borders */
    --text-main: #1a1b1c;    /* High Contrast Text */
    --green-save: #1f8a70;   /* Success/Savings Green */
}

/* Global Reset & Base */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    margin: 0;
    padding: 0;
}

/* --- HEADER SECTION --- */
.navbar-custom {
    background-color: var(--ps-nav-bg);
    padding: 8px 16px;
    border-bottom: 3px solid var(--billy-yellow);
}

.navbar-brand {
    color: white !important;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    margin-left: 15px;
}

.header-logo {
    height: 35px;
    width: auto;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.2));
}

/* Hamburger / Categories Button */
.btn-categories {
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-categories:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--billy-yellow);
    border-color: var(--billy-yellow);
}

/* Centered Search Bar */
.header-search-wrap {
    flex-grow: 1;
    max-width: 650px;
    margin: 0 25px;
}

.header-search-wrap .form-control {
    border-radius: 4px 0 0 4px;
    border: none;
    height: 42px;
    font-size: 0.95rem;
}

.header-search-wrap .btn-search-main {
    border-radius: 0 4px 4px 0;
    background-color: var(--billy-yellow);
    border: none;
    color: #000;
    font-weight: 700;
    height: 42px;
    padding: 0 20px;
}

.header-search-wrap .btn-search-main:hover {
    background-color: #e6c200;
}

/* --- SIDEBAR & NAVIGATION --- */
.sidebar-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #70767a;
    letter-spacing: 1px;