/* ========== Design Tokens ========== */
:root {
  --color-primary: #007bff;
  --color-picker: #000046;
  --color-banner-bg: #000046;
  --color-gray-100: #f8f9fa;
  --color-gray-300: #dee2e6;
  --color-text: #212529;
  --color-text-muted: #000046;
  --maxw: 1400px;
}

body { margin: 0; font-family: 'Roboto', sans-serif; color: var(--color-text); background: #fff; line-height: 1.5; font-size: 15px; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }




/* ========== BRANDING TOP BAR ========== */
.banner-top-bar {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* Aligns to the far left of the container */
  margin-bottom: 4px; 
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  transition: opacity 0.2s;
}

.brand-link:hover {
  opacity: 0.8;
}

.banner-logo {
  height: 32px; /* Adjust this to match your logo's height */
  width: auto;
}

.brand-text {
  color: #ffffff;
  font-size: 20px; /* Slightly larger than the 14px qbtn text */
  font-weight: 700;
  letter-spacing: 0.2px;
}



/* ========== BANNER SECTION ========== */
.full-width-banner { width: 100%; background-color: var(--color-banner-bg); padding: 20px 0 10px 0; text-align: center; }

/* This ensures the banner content aligns with the rest of your site's width */
.banner-content.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title { 
  font-size: clamp(26px, 3.5vw, 35px);
  font-weight: 700; 
  color: #fff; 
  margin: 8px 0 4px; 
  line-height: 1.2; 
}

.hero-subtitle { 
  font-size: 16px; 
  font-weight: 500; 
  color: #bbbbbb; 
  margin: 0px auto 12px; 
  max-width: 900px; 
  line-height: 1.45;
}


/* ========== QUICK NAV ON BANNER ========== */
.quick-nav { 
  display: flex; 
  flex-wrap: nowrap; /* Forces them onto one line */
  justify-content: flex-start;  /* pack items left (was space-between) */
  width: 100%; 
  max-width: var(--maxw);
  margin: 12px 0 0; 
  padding: 0; 
  border-bottom: none; /* Removed the line */
  gap: 8px; /* Added gap between buttons */
}

.qbtn { 
  padding: 8px 12px; 
  color: white; /* Changed to white for the dark background */
  text-decoration: none; 
  font-size: 14px; 
  border: none; /* Removed border for a cleaner look on the banner */
  background: transparent; 
  transition: 0.2s; 
  white-space: nowrap;
}

.qbtn:hover { 
  background: rgba(255, 255, 255, 0.1); /* Subtle highlight */
  color: white; 
  border-radius: 4px;
}

.qbtn img { 
  vertical-align: middle; 
  filter: brightness(0) invert(1); 
  margin-left: 5px;
}



/* ========== FILTER ROW ========== */
.filter-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-top: 20px; }
.selected-items-bar { flex: 1; min-width: 0; background: var(--color-gray-100); padding: 6px 10px; border-radius: 8px; min-height: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.selected-items-bar-label { font-size: 0.85em; color: var(--color-text-muted); margin-right: 5px; }
.selected-item-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; background: var(--color-picker); color: white; border-radius: 20px; font-size: 0.85em; }
.selected-item-tag .remove-btn { background: none; border: none; color: white; cursor: pointer; padding: 0; font-size: 1.1em; line-height: 1; opacity: 0.8; transition: opacity 0.2s; }
.selected-item-tag .remove-btn:hover { opacity: 1; }
.no-selection-message { color: var(--color-text-muted); font-style: italic; font-size: inherit; }

/* ========== FILTER DROPDOWN ========== */
.product-filter-dropdown { position: relative; }
.filter-dropdown-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; background: #fff; border: 1px solid var(--color-picker); border-radius: 6px; cursor: pointer; color: var(--color-picker); white-space: nowrap; transition: all 0.2s ease; }
.filter-dropdown-btn:hover { background: var(--color-picker); color: #fff; }
.filter-dropdown-btn[aria-expanded="true"] { background: var(--color-picker); color: #fff; box-shadow: 0 2px 8px rgba(0,127,176,0.3); }
.filter-selected { font-weight: 500; }
.dropdown-arrow { transition: transform 0.2s ease; font-size: 10px; }
.filter-dropdown-btn[aria-expanded="true"] .dropdown-arrow { transform: rotate(180deg); }
.filter-dropdown-menu { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: #fff; border: 1px solid var(--color-picker); border-radius: 8px; box-shadow: 0 8px 12px rgba(0,0,0,0.12); z-index: 1000; min-width: 220px; max-width: 260px; max-height: 240px; overflow-y: auto; transform-origin: top right; transform: translateY(-6px); opacity: 0; transition: transform .16s ease, opacity .16s ease;}
.filter-dropdown-menu.open { display: block !important; transform: translateY(0); opacity: 1; }
.filter-product-list { list-style: none; margin: 0; padding: 6px 0; }
.filter-product-list li { padding: 10px 14px; cursor: pointer; color: var(--color-text); transition: 0.2s; display: flex; align-items: center; justify-content: space-between; }
.filter-product-list li:hover { background: rgba(0, 173, 229, 0.1); }
.filter-product-list li.selected { background: rgba(0, 173, 229, 0.15); color: var(--color-picker); }
.filter-product-list li .check-icon { opacity: 0; color: var(--color-picker); }
.filter-product-list li.selected .check-icon { opacity: 1; }

/* ========== GRID CARDS & ICON FIX ========== */

.picker-panel-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  margin: 20px 0;
}
.picker-panel { background: #fff; border: 1px solid var(--color-gray-300); border-radius: 10px; padding: 20px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: all 0.2s ease; box-shadow: -9px 9px 10px rgba(22,9,9,0.73); }
.picker-panel:hover { border-color: var(--color-picker); box-shadow: -6px 6px 14px rgba(0,0,0,0.2); transform: translateY(-2px); }

.picker-panel .panel-title { font-size: 18px; font-weight: 600; color: var(--color-picker); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.picker-panel .panel-title i { font-size: 16px; display: inline-block; font-weight: 900 !important; }
.picker-panel .panel-body { font-size: 15px; color: var(--color-text-muted); line-height: 1.5;}

/* ========== FOOTER ========== */
.whats-new { background: var(--color-gray-100); padding: 20px; border-radius: 8px; margin: 40px 0; }
.site-footer { border-top: 1px solid #eee; padding: 20px 0; text-align: center; color: var(--color-text-muted); font-size: 13px; }
