/* =========================
   HEADER BASE
========================= */
#billboard-header,
#compact-header {
    width: 100%;
    background: #fff;
    border-bottom: 3px solid #e5e5e5;
    position: relative;
}

/* Specific adjustments */
#billboard-header {
    height: auto;
    min-height: 220px; /* keeps structure stable */
    overflow: visible;
}

#compact-header {
    padding-bottom: 0.5rem;
}

/* =========================
   LOGO AREA
========================= */
#logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    flex: 0 0 200px;
}

#logo-area img {
    height: 140px;
    max-width: 100%;
    object-fit: contain;
}

/* Compact override */
#compact-header #logo-area {
    height: 120px;
}

/* Remove billboard in compact mode */
#compact-header #billboard-stage {
    display: none !important;
}

/* =========================
   BILLBOARD STAGE
========================= */
#billboard-stage {
    height: 120px;
    position: relative;
    overflow: hidden;
}

/* =========================
   NAVIGATION
========================= */
#billboard-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-row {
    display: flex;
    align-items: center;
    padding: 8px 20px;
}

.centered-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex: 1;
}

.nav-right {
    display: flex;
    gap: 10px;
    margin-left: auto;
    align-items: center;
}

/* =========================
   PAGE CONTROLS
========================= */
.page-controls {
    position: absolute;
    top: 12px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.page-controls .ctrl {
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.page-controls .divider {
    opacity: 0.6;
}

.page-controls .cart {
    font-size: 20px;
    margin-left: 6px;
}

/* =========================
   MEGA MENU PANEL
========================= */
#megaMenuPanel {
    position: absolute;
    top: 260px;
    left: 0;
    width: 100%;
    display: none;
    padding: 40px 60px;
    background: #fff;
    color: #222;
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    box-sizing: border-box;
}
#megaMenuPanel.open {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
}

.mega-col a:hover {
    color: #f4a742;
}

#megaMenu.open {
    opacity: 1;
    pointer-events: auto;
    padding: 40px 60px;
}

/* =========================
   DL HEADER (ALT SYSTEM)
========================= */
#dl-header {
    width: 100%;
    background: #0d1b2a;
    color: #fff;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.dl-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
}

#dl-billboard-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

#dl-logo-area .dl-logo {
    height: 70px;
    object-fit: contain;
}

#dl-billboard-stage {
    width: 100%;
    max-width: 700px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 12px;
    position: relative;
    border-radius: 12px;
}

#dl-billboard-stage img {
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

#dl-category-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* =========================
   UTILITIES
========================= */
.mega-menu {
    overflow: visible !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    #billboard-categories {
        padding: 0.25rem 0 0.5rem;
        border-bottom: 1px solid #eaeaea;
    }
}

/* ============================================
   FINAL FIX — FORCE CATEGORY BAR HORIZONTAL
============================================ */
#billboard-categories {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 10px 0 !important;
    white-space: nowrap !important;
}

#billboard-categories .pill-tab {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    white-space: nowrap !important;
}
/* FORCE MEGA MENU TO BE A FULL-WIDTH OVERLAY */
.mega-menu {
    position: fixed !important;
    top: 80px; /* adjust to match your header height */
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;

    padding: 20px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}
.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#billboard-header {
    height: 0 !important;
    overflow: visible !important;
}

#logo-area img {
    height: 450px !important;
    width: auto !important;
}
#notif-panel {
    background: #ffffff !important;
    color: #333 !important;
}

#notif-panel .notif-item {
    color: #333 !important;
}

#notif-panel .notif-text {
    color: #333 !important;
}

#notif-panel input[type="checkbox"] {
    accent-color: #6CC24A;
}
#notif-panel {
    background: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 12px;
    width: 260px;
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 9999;
}

.notif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.notif-text {
    font-size: 0.85rem;
    color: #333;
}

.hide-label {
    font-size: 0.75rem;
    color: #666;
    cursor: pointer;
}

.hide-label input {
    margin-right: 4px;
}

.notif-settings-link {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-size: 0.85rem;
    color: #6CC24A;
    text-decoration: none;
    font-weight: 600;
}

/* GLOBAL — TRANSPARENT BELL + CLEAN DROPDOWN */
#notif-wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#notif-bell {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 6px !important;
}

/* Dropdown panel — glassy floating look */
#notif-panel {
    background: rgba(0,0,0,0.55) !important;
    backdrop-filter: blur(6px) !important;
    border-radius: 10px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
    color: #fff !important;
    padding: 12px !important;
}

/* Hide badge when empty or hidden */
#notif-count.hidden,
#notif-count:empty {
    display: none !important;
}

body #notif-panel {
    background: rgba(0,0,0,0.55) !important;
    backdrop-filter: blur(6px) !important;
}

#top-controls {
    background: rgba(0,0,0,0.35);
    padding: 6px 14px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}
#top-controls {
    position: absolute;       /* or fixed if you want it always visible */
    top: 12px;
    right: 16px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 6px 14px;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);

    z-index: 50;
}

#top-controls a,
#top-controls span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

#top-controls .cart-count {
    font-weight: 700;
}

#top-controls .search-btn {
    margin-left: 8px;
}
body {
    margin: 0;
    padding: 0;
}
header, #header, .header {
    background: transparent !important;
    border: none !important;
}
#top-controls {
    position: absolute;
    top: 12px;
    right: 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 6px 14px;
    border-radius: 999px;

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);

    z-index: 999;
}
.page-controls {
    position: absolute;
    top: 12px;
    right: 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 6px 14px;
    border-radius: 999px;

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);

    z-index: 999;
}

.page-controls a,
.page-controls button,
.page-controls span {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.page-controls {
    position: absolute;
    top: 12px;
    right: 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 6px 14px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.55);   /* soft white */
    backdrop-filter: blur(8px);              /* frosted glass */
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 2px 8px rgba(0,0,0,0.15);  /* subtle lift */
    z-index: 999;
}

.page-controls a,
.page-controls button,
.page-controls span {
    color: #222;                              /* dark text for contrast */
    font-weight: 600;
    text-shadow: none;                        /* no shadow needed on white */
}
.signin,
.signout {
    display: none;
}


