/* ==========================================================================
   WIDES.DEVLANKA.LK - APPLE DESIGN SYSTEM (LIGHT MODE)
   ========================================================================== */

:root {
  /* Color Palette - Apple Aesthetic */
  --bg-body: #F5F5F7;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-nav: rgba(255, 255, 255, 0.82);
  --bg-secondary: #F2F2F7;
  --bg-tertiary: #E5E5EA;

  --text-primary: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary: #86868B;
  --text-inverse: #FFFFFF;

  /* Accent Colors */
  --accent-blue: #0071E3;
  --accent-blue-hover: #0077ED;
  --accent-blue-light: rgba(0, 113, 227, 0.08);
  --accent-green: #34C759;
  --accent-green-light: rgba(52, 199, 89, 0.1);
  --accent-orange: #FF9500;
  --accent-orange-light: rgba(255, 149, 0, 0.1);
  --accent-red: #FF3B30;
  --accent-red-light: rgba(255, 59, 48, 0.08);
  --accent-purple: #AF52DE;
  --accent-purple-light: rgba(175, 82, 222, 0.08);

  /* Borders & Shadows */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-subtle: rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-apple: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-sinhala: "Noto Sans Sinhala", "Iskoola Pota", var(--font-apple);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-apple);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Glassmorphism Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-nav);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  transition: background-color var(--transition-normal);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0071E3 0%, #42A5F5 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-pill);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
}

/* Apple/Android Left Hamburger Menu Button */
.hamburger-btn {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.hamburger-btn:hover {
  background: var(--bg-tertiary);
  color: var(--accent-blue);
}

.hamburger-icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* Hero Section */
.hero-section {
  padding: 3.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 113, 227, 0.15);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-title span {
  background: linear-gradient(135deg, #0071E3 0%, #00C6FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Bar (Apple Style Input) */
.search-box-container {
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  padding: 0.4rem 0.6rem 0.4rem 1.3rem;
  transition: all var(--transition-normal);
}

.search-input-wrapper:focus-within {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15), var(--shadow-lg);
}

.search-icon {
  color: var(--text-tertiary);
  font-size: 1.2rem;
  margin-right: 0.7rem;
}

.search-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--text-primary);
}

.search-btn {
  background: var(--accent-blue);
  color: #FFF;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--accent-blue-hover);
}

/* Apple 2-Tier Segmented Filter Control */
.filter-section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.filter-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  padding-left: 0.2rem;
}

.filter-tabs-wrapper {
  max-width: 1280px;
  margin: 0 auto 1.2rem auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.filter-tabs-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0.3rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-pill);
  width: max-content;
  border: 1px solid var(--border-subtle);
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--bg-card);
  color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}

.tab-badge {
  background: var(--bg-tertiary);
  font-size: 0.75rem;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-pill);
  color: var(--text-primary);
}

.tab-btn.active .tab-badge {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
}

/* Left Side Navigation Drawer Component */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  background: var(--bg-card);
  width: 100%;
  max-width: 360px;
  height: 100%;
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.drawer-backdrop.open .drawer-panel {
  transform: translateX(0);
}

/* Main Container & Grid */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem 1.5rem;
  flex: 1;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.results-count {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.results-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.control-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.sort-select {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.sort-select:hover, .sort-select:focus {
  border-color: var(--accent-blue);
}

/* Jobs Grid Layout */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* Apple Card Component */
.job-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 113, 227, 0.2);
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-secondary);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card-badges {
  display: flex;
  gap: 0.3rem;
}

.badge-hot {
  background: var(--accent-red-light);
  color: var(--accent-red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.badge-ad {
  background: var(--accent-purple-light);
  color: var(--accent-purple);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.job-title-en {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.job-title-en:hover {
  color: var(--accent-blue);
}

.job-card-clickable {
  cursor: pointer;
}

.job-title-si {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-family: var(--font-sinhala);
  margin-bottom: 1.2rem;
}

/* Salary Banner */
.salary-banner {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.salary-raw {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.salary-lkr {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-green);
  letter-spacing: -0.02em;
}

/* Benefits Tags */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.benefit-item {
  background: var(--bg-secondary);
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.benefit-item.included {
  background: var(--accent-green-light);
  color: #1B5E20;
}

/* Agency Info Footer */
.agency-info {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  margin-top: auto;
}

.agency-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agency-meta {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.8rem;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.btn-details {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  border: none;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.btn-details:hover {
  background: var(--accent-blue);
  color: #FFF;
}

.btn-call {
  background: var(--accent-green);
  color: #FFF;
  border: none;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity var(--transition-fast);
}

.btn-call:hover {
  opacity: 0.9;
}

/* Google Maps Action Button */
.btn-maps {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 113, 227, 0.2);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.btn-maps:hover {
  background: var(--accent-blue);
  color: #FFF;
  border-color: var(--accent-blue);
}

/* Mobile Bottom Sheet Modal (iOS Style Sheet for Mobile & Desktop) */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1.5rem;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-sheet {
  background: var(--bg-card);
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform var(--transition-bounce);
}

.modal-backdrop.open .modal-sheet {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--bg-secondary);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.modal-drag-handle {
  width: 36px;
  height: 5px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-pill);
  margin: 0 auto 1.2rem auto;
  display: none;
}

/* Drawer Header & Content List */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close-btn {
  background: var(--bg-secondary);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.country-drawer-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.country-drawer-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.country-drawer-card:hover, .country-drawer-card.active {
  background: var(--accent-blue-light);
  border-color: var(--accent-blue);
}

.country-info-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.country-flag-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.country-name-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.country-count-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  background: var(--bg-card);
  border-radius: var(--radius-pill);
  color: var(--accent-blue);
  border: 1px solid var(--border-light);
}

/* Touch & Mobile Optimizations */
button, a, input, select {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Mobile Responsive Styles (< 768px) */
@media (max-width: 768px) {
  .site-header {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }

  .header-container {
    padding: 0.65rem 1rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }

  .logo-sub {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    background: var(--accent-green-light);
    color: #1B5E20;
    font-weight: 700;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .logo-sub::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    padding: 2rem 1rem 1.5rem 1rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .search-box-container {
    margin-bottom: 1.5rem;
  }

  .search-input-wrapper {
    padding: 0.3rem 0.4rem 0.3rem 1rem;
  }

  .search-input {
    font-size: 0.95rem;
  }

  .search-btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.88rem;
    min-height: 44px;
  }

  .filter-tabs-wrapper {
    padding: 0 0.8rem;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tabs {
    gap: 0.35rem;
  }

  .tab-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    min-height: 40px;
  }

  .main-content {
    padding: 0 0.8rem 3rem 0.8rem;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .results-count {
    font-size: 1rem;
  }

  .sort-select {
    width: 100%;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .job-card {
    padding: 1.2rem;
    border-radius: var(--radius-md);
  }

  .job-title-en {
    font-size: 1.15rem;
  }

  .job-title-si {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .salary-banner {
    padding: 0.75rem 0.9rem;
  }

  .salary-lkr {
    font-size: 1.1rem;
  }

  .card-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .btn-details, .btn-call {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
  }

  /* iOS Mobile Bottom Sheet Dialog */
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .modal-sheet {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 1.2rem 1.2rem 3rem 1.2rem;
    max-height: 85vh;
    transform: translateY(100%);
  }

  .modal-drag-handle {
    display: block;
  }

  .modal-close-btn {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }
}

/* Apple Fixed Bottom Navigation Bar for Mobile (Disabled as requested) */
.mobile-bottom-nav {
  }

  body {
    padding-bottom: 70px;
}

/* Accordion & Sub-Category Side Drawer Styling */
.country-drawer-accordion {
  margin-bottom: 0.4rem;
}

.sub-cat-drawer-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sub-cat-drawer-item:hover {
  background: var(--bg-secondary);
  color: var(--accent-blue);
}

.sub-cat-drawer-item.active {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  font-weight: 700;
}

.sub-cat-count-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--text-secondary);
}

