/* ============================================
   FUEL & FORK - RECIPE WEBSITE STYLES
   ============================================

   INHOUDSOPGAVE:
   1. KLEUREN (CSS Variables) - Pas hier de kleuren aan!
   2. RESET & BASIS
   3. TYPOGRAFIE
   4. HEADER - Navigatiebalk
   5. HEADER - Logo
   6. HEADER - Iconen & Zoeken
   7. MENU POPUP
   8. HOMEPAGE - Categorie Cirkels
   9. HOMEPAGE - Featured Sectie
   10. HOOFDCONTENT - Layout
   11. SIDEBAR - Filters
   12. SIDEBAR - Filter Groepen
   13. SIDEBAR - Populair Chips
   14. SIDEBAR - Menugang Kaarten
   15. SIDEBAR - Ingrediënten Zoeken
   16. SIDEBAR - Duur Slider
   17. RECEPTEN - Grid & Kaarten
   18. RECEPTEN - Detail Pagina
   19. STATISCHE PAGINA'S
   20. ANIMATIES
   21. STATES & TOEGANKELIJKHEID
   22. MOBIEL - Bottom Bar
   23. MOBIEL - Filter Modal
   24. RESPONSIVE DESIGN

============================================ */


/* ============================================
   1. KLEUREN (CSS Variables)
   ============================================
   Pas deze waardes aan om de kleuren van de website te veranderen!
*/

:root {
  /* === Hoofdkleuren === */
  --background: #ebe4d6;              /* Achtergrond van de pagina */
  --card-background: #f5f0e8;         /* Achtergrond van kaarten/cards */
  --warm-background: #efe9dd;         /* Warme achtergrond voor hover states */
  --White-background: #f5f0e8;        /* witte achtergrond voor header

  /* === Tekstkleuren === */
  --text-primary: #3d2e28;            /* Hoofdtekst kleur */
  --text-secondary: #6b5549;          /* Secundaire tekst (subtitels, labels) */

  /* === Accent & Knoppen === */
  --accent: #c45a3a;                  /* Accent kleur (actieve states, highlights) */
  --button-color: #4a3832;            /* Knop/icoon kleur */
}


/* ============================================
   2. RESET & BASIS
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(196, 90, 58, 0.2);
  color: var(--text-primary);
}

/* Scrollbar styling (Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  padding-top: 5rem;
  min-height: 100vh;
}


/* ============================================
   3. TYPOGRAFIE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}


/* ============================================
   4. HEADER - Navigatiebalk
   ============================================ */

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  pointer-events: none;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 2rem);
  max-width: 1400px;
  padding: 0.75rem 1.5rem;
  margin: 0 auto;
  background: var(--card-background);
  border-radius: 100px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
  pointer-events: all;
}


/* ============================================
   5. HEADER - Logo
   ============================================ */

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  cursor: pointer;
}

.nav-logo h1 {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.logo-fuel,
.logo-fork {
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-ampersand {
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  font-size: 3rem;
  color: var(--text-secondary);
  margin: 0 0.5rem;
}

/* Verborgen tekst navigatie links */
.nav-right {
  display: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

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


/* ============================================
   6. HEADER - Iconen & Zoeken
   ============================================ */

.nav-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-icon {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.nav-icon:hover {
  background: var(--warm-background);
  color: var(--accent);
}

.nav-icon:active {
  transform: scale(0.9);
}

.nav-icon svg {
  display: block;
}

/* Uitklapbare zoekbalk in header */
.nav-search-container {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-search-input-wrapper {
  display: flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--warm-background);
  border-radius: 24px;
  border: 1px solid transparent;
  margin-right: -0.5rem;
}

.nav-search-container.expanded .nav-search-input-wrapper {
  width: 360px;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-right: 0;
}

.nav-search-container.expanded .search-toggle {
  background: rgba(0, 0, 0, 0.05);
  color: var(--button-color);
}

.nav-search-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
}

.nav-search-input::placeholder {
  color: var(--text-secondary);
}

.nav-search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.2s ease;
}

.nav-search-clear:hover {
  color: var(--accent);
}

.nav-search-container.has-value .nav-search-clear {
  display: flex;
}

/* Search dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--warm-background);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  z-index: 1000;
}

.search-dropdown.visible {
  max-height: 280px;
  overflow-y: auto;
  opacity: 1;
}

.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.15s;
}

.search-dropdown-item:first-child {
  border-radius: 16px 16px 0 0;
}

.search-dropdown-item:last-child {
  border-radius: 0 0 16px 16px;
}

.search-dropdown-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.search-dropdown-item + .search-dropdown-item {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.search-dropdown-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.search-dropdown-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-dropdown-nothumb {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.06);
}

.search-dropdown-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.search-dropdown-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-dropdown-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.search-dropdown-empty {
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.search-dropdown::-webkit-scrollbar {
  width: 6px;
}

.search-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.search-dropdown::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}


/* ============================================
   7. MENU POPUP
   ============================================ */

.mobile-menu-modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-modal.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.mobile-menu-modal-content {
  position: absolute;
  top: 10rem;
  right: 2.5rem;
  left: auto;
  width: auto;
  min-width: 200px;
  background: var(--card-background);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.04);
  transform: translateX(20px) scale(0.95);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-menu-modal.active .mobile-menu-modal-content {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.mobile-menu-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu-modal-header h3 {
  font-size: 1.1rem;
  color: var(--button-color);
  margin: 0;
  font-weight: 600;
}

.mobile-menu-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-menu-modal-close:hover {
  background: var(--warm-background);
  color: var(--accent);
}

.mobile-menu-modal-body {
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu-link {
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: var(--warm-background);
  color: var(--accent);
}


/* ============================================
   8. HOMEPAGE - Categorie Cirkels
   ============================================ */

.category-circles-section {
  padding: 1.5rem 2rem 2rem 2rem;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-circles-section::-webkit-scrollbar {
  display: none;
}

.category-circles-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.category-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

.category-circle:hover {
  transform: translateY(-5px);
}

.category-circle:active {
  transform: scale(0.95);
}

.category-circle-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--card-background);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.category-circle:hover .category-circle-image {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: scale(1.05);
}

.category-circle-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}

/* Categorie cirkel animatie delays */
.category-circle:nth-child(1) { animation-delay: 0.05s; }
.category-circle:nth-child(2) { animation-delay: 0.1s; }
.category-circle:nth-child(3) { animation-delay: 0.15s; }
.category-circle:nth-child(4) { animation-delay: 0.2s; }
.category-circle:nth-child(5) { animation-delay: 0.25s; }
.category-circle:nth-child(6) { animation-delay: 0.3s; }
.category-circle:nth-child(7) { animation-delay: 0.35s; }
.category-circle:nth-child(8) { animation-delay: 0.4s; }


/* ============================================
   9. HOMEPAGE - Featured Sectie
   ============================================ */

.featured-section {
  padding: 3rem 2rem 1.5rem 2rem;
  background: transparent;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 944px;
  margin: 0 auto;
}

.featured-card {
  position: relative;
  cursor: pointer;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.5s ease forwards;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.featured-overlay h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Featured card animatie delays */
.featured-card:nth-child(1) { animation-delay: 0.1s; }
.featured-card:nth-child(2) { animation-delay: 0.15s; }
.featured-card:nth-child(3) { animation-delay: 0.2s; }
.featured-card:nth-child(4) { animation-delay: 0.25s; }


/* ============================================
   10. HOOFDCONTENT - Layout
   ============================================ */

.main-content {
  display: flex;
  align-items: flex-start;
  padding: 3rem 2rem 3rem 1rem;
  gap: 2rem;
  max-width: 1500px;
  margin: 0 auto;
  min-height: calc(100vh - 5rem);
}


/* ============================================
   11. SIDEBAR - Filters
   ============================================ */

.sidebar {
  flex: 0 0 380px;
  background: var(--card-background);
  padding: 1.5rem;
  border-radius: 24px;
  height: fit-content;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.sidebar.collapsed {
  flex: 0 0 auto;
  padding: 0.5rem;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: none;
}

.sidebar.collapsed .sidebar-content {
  display: none;
}

.sidebar.collapsed .sidebar-expand-btn {
  display: flex;
}

.sidebar-expand-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  color: var(--button-color);
  border-radius: 50%;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-expand-btn:hover {
  background: var(--card-background);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

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

.sidebar-header h3 {
  margin-bottom: 0;
  color: var(--button-color);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.sidebar-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.sidebar-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--button-color);
}

.clear-filters-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: underline;
}

.clear-filters-btn:hover {
  color: var(--accent);
  background: var(--warm-background);
}

.sort-dropdown {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: var(--card-background);
  color: var(--text-primary);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.sort-dropdown:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

.sort-dropdown:focus {
  outline: none;
  border-color: var(--button-color);
  box-shadow: 0 0 0 3px rgba(196, 90, 58, 0.1);
}


/* ============================================
   12. SIDEBAR - Filter Groepen
   ============================================ */

.filter-group {
  margin-bottom: 0;
  padding: 1rem;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group h4 {
  font-size: 0.75rem;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
}

.filter-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.25rem 0;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.filter-group-header:hover h4 {
  color: var(--button-color);
}

.filter-group-chevron {
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.filter-group-header:hover .filter-group-chevron {
  opacity: 1;
}

.filter-group.collapsed .filter-group-chevron {
  transform: rotate(-90deg);
}

.filter-group-content {
  overflow: visible;
  max-height: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.filter-group.collapsed .filter-group-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

.filter-group.has-active-filter {
  background: transparent;
}

.filter-group.has-active-filter .filter-group-header h4 {
  color: var(--accent);
  font-weight: 700;
}


/* ============================================
   13. SIDEBAR - Populair Chips
   ============================================ */

.populair-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.populair-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--card-background);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--button-color);
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.populair-chip:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.populair-chip:active {
  transform: scale(0.97);
}

.populair-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 2px 8px rgba(196, 90, 58, 0.3);
}

.populair-chip.active .populair-chip-icon svg {
  stroke: white;
}

.populair-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.populair-chip-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  stroke-width: 2;
  fill: none;
}

.populair-chip:hover .populair-chip-icon svg {
  stroke: var(--button-color);
}

.populair-chip-label {
  line-height: 1;
}


/* ============================================
   14. SIDEBAR - Menugang Kaarten
   ============================================ */

.menugang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.menugang-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background: var(--card-background);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 0.4rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.menugang-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.menugang-card:active {
  transform: scale(0.97);
}

.menugang-card.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(196, 90, 58, 0.3);
}

.menugang-card.active .menugang-label {
  color: white;
}

.menugang-card.active .menugang-icon svg {
  stroke: white;
}

.menugang-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}

.menugang-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-secondary);
  stroke-width: 1.5;
  fill: none;
}

.menugang-card:hover .menugang-icon svg {
  stroke: var(--button-color);
}

.menugang-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.menugang-card:hover .menugang-label {
  color: var(--button-color);
}


/* ============================================
   15. SIDEBAR - Ingrediënten Zoeken
   ============================================ */

.ingredient-search {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: var(--card-background);
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.ingredient-search:focus {
  outline: none;
  border-color: var(--button-color);
  box-shadow: 0 0 0 3px rgba(196, 90, 58, 0.1);
}

.ingredient-search::placeholder {
  color: var(--text-secondary);
}

.ingredient-search-wrapper {
  position: relative;
}

.ingredient-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-background);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 50;
  margin-top: 4px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.15s ease;
}

.ingredient-suggestions.visible {
  max-height: 220px;
  overflow-y: auto;
  opacity: 1;
}

.ingredient-suggestion-item {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s ease;
}

.ingredient-suggestion-item:hover {
  background: var(--warm-background);
}

.ingredient-suggestion-item:first-child {
  border-radius: 12px 12px 0 0;
}

.ingredient-suggestion-item:last-child {
  border-radius: 0 0 12px 12px;
}

.ingredient-filters-list {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ingredient-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 24px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 2px 6px rgba(196, 90, 58, 0.25);
  animation: fadeIn 0.2s ease forwards;
}

.ingredient-chip:hover {
  background: #b54d30;
  border-color: #b54d30;
  box-shadow: 0 2px 8px rgba(196, 90, 58, 0.35);
}

.ingredient-chip-icon {
  font-size: 1rem;
  line-height: 1;
}

.ingredient-chip-label {
  line-height: 1;
}


/* ============================================
   16. SIDEBAR - Duur Slider
   ============================================ */

.duration-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.duration-description {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

/* Histogram */
.duration-histogram {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 50px;
  padding: 0 12px;
  gap: 3px;
}

.histogram-bar {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  transition: all 0.2s ease;
}

.histogram-bar.active {
  background: var(--accent);
}

.histogram-bar.inactive {
  background-color: rgba(0, 0, 0, 0.06);
}

/* Range Slider */
.range-slider-container {
  position: relative;
  height: 24px;
}

.range-slider-container::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.range-slider-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: var(--button-color);
  border-radius: 2px;
  pointer-events: none;
}

.range-slider {
  position: absolute;
  width: 100%;
  left: 0;
  height: 24px;
  top: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.range-slider.range-min {
  z-index: 2;
}

.range-slider.range-max {
  z-index: 1;
}

.range-slider::-webkit-slider-track {
  width: 100%;
  height: 4px;
  background: transparent;
  border-radius: 2px;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--card-background);
  cursor: pointer;
  pointer-events: all;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: none;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.range-slider::-moz-range-track {
  width: 100%;
  height: 4px;
  background: transparent;
  border-radius: 2px;
}

.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--card-background);
  cursor: pointer;
  pointer-events: all;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Range Input Velden */
.range-inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}

.range-input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.range-input-group:last-child {
  align-items: flex-end;
}

.range-input-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.range-value-input {
  width: 90px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: var(--card-background);
  font-size: 0.9rem;
  color: var(--button-color);
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.range-value-input:focus {
  outline: none;
  border-color: var(--button-color);
  box-shadow: 0 0 0 3px rgba(196, 90, 58, 0.1);
}

.range-value-input::-webkit-inner-spin-button,
.range-value-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.range-value-input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}


/* ============================================
   17. RECEPTEN - Grid & Kaarten
   ============================================ */

.recipe-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Recept top bar (sorteren + filter chips) */
.recipe-top-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.sort-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.sort-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sort-bar .sort-dropdown {
  width: auto;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: none;
  background-color: transparent;
  font-weight: 500;
  color: var(--text-primary);
}

.active-filters-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--card-background);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  animation: fadeIn 0.3s ease forwards;
}

.filter-chip-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-secondary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.filter-chip-remove:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

/* Recept Grid */
.recipe-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.recipe-grid.expanded {
  grid-template-columns: repeat(4, 1fr);
}

/* Recept Kaart */
.recipe-card {
  position: relative;
  background: var(--card-background);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  height: fit-content;
  border: none;
  animation: fadeInUp 0.4s ease forwards;
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
}

/* Favoriet hartje */
.favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.favorite-btn svg {
  width: 18px;
  height: 18px;
  transition: all 0.2s ease;
  fill: none;
}

.favorite-btn:hover {
  transform: scale(1.1);
  background: var(--card-background);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.favorite-btn:active {
  transform: scale(0.95);
}

.favorite-btn.active {
  color: var(--accent);
}

.favorite-btn.active svg {
  fill: var(--accent);
}

/* Vergelijk knop op receptkaart */
.compare-btn {
  position: absolute;
  top: 54px;
  right: 12px;
  z-index: 10;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.compare-btn:hover {
  transform: scale(1.1);
  background: var(--card-background);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.compare-btn:active {
  transform: scale(0.95);
}

.compare-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(196, 90, 58, 0.35);
}

.compare-btn.active:hover {
  background: #b04e31;
  color: #fff;
}

/* Menu divider */
.user-dropdown-divider {
  height: 1px;
  background: rgba(61, 46, 40, 0.08);
  margin: 4px 0;
}

.compare-menu-item {
  display: flex;
  align-items: center;
}

.recipe-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: var(--warm-background);
  display: block;
}

.recipe-card-image[src=""] {
  opacity: 0;
}

.recipe-card-content {
  padding: 0.7rem 0.85rem 0.85rem;
}

.recipe-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.recipe-card-category {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: capitalize;
  font-weight: 600;
  background: rgba(196, 90, 58, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.recipe-card-title {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
}

.recipe-card-duration {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.duration-icon {
  flex-shrink: 0;
  color: var(--accent);
}

/* Recept kaart animatie delays */
.recipe-card:nth-child(1) { animation-delay: 0.05s; }
.recipe-card:nth-child(2) { animation-delay: 0.1s; }
.recipe-card:nth-child(3) { animation-delay: 0.15s; }
.recipe-card:nth-child(4) { animation-delay: 0.2s; }
.recipe-card:nth-child(5) { animation-delay: 0.25s; }
.recipe-card:nth-child(6) { animation-delay: 0.3s; }


/* ============================================
   18. RECEPTEN - Detail Pagina
   ============================================ */

.recipe-detail-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  padding: 2rem 2rem 2rem 6rem;
  animation: fadeIn 0.4s ease forwards;
}

.recipe-detail {
  flex: 1;
  min-width: 0;
  max-width: 1100px;
}

.recipe-ad-sidebar {
  width: 100px;
  flex-shrink: 0;
}

/* =====================
   Recipe discover strip
   ===================== */
.recipe-discover-strip {
  width: 100%;
  background: linear-gradient(135deg, #2e1f1a 0%, #4a3832 100%);
  padding: 3.5rem 2rem;
  margin-top: 3rem;
  box-sizing: border-box;
}

.recipe-discover-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.recipe-discover-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  cursor: pointer;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.recipe-discover-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.recipe-discover-icon {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-discover-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.recipe-discover-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.recipe-discover-content h3 {
  font-family: 'Crimson Text', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.recipe-discover-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  margin: 0;
}

.recipe-discover-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-top: 0.5rem;
}

.discover-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.recipe-discover-card:hover .discover-arrow {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .recipe-discover-inner {
    grid-template-columns: 1fr;
  }

  .recipe-discover-strip {
    padding: 2.5rem 1.25rem;
    margin-top: 2rem;
  }

  .recipe-discover-card {
    padding: 1.5rem;
    gap: 1.1rem;
  }

  .recipe-discover-icon {
    width: 52px;
    height: 52px;
    font-size: 2.2rem;
    border-radius: 12px;
  }

  .recipe-discover-content h3 {
    font-size: 1.15rem;
  }
}

/* Top section: info left, image right */
.recipe-detail-top {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.recipe-detail-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.recipe-equipment-section {
  margin-top: auto;
}

.recipe-detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.recipe-detail-topbar .back-button {
  margin-bottom: 0;
}

.recipe-detail-topbar .favorite-btn {
  position: static;
}

.recipe-detail-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: var(--button-color);
  line-height: 1.15;
  animation: fadeInUp 0.5s ease 0.1s forwards;
  opacity: 0;
}

.recipe-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.5s ease 0.15s forwards;
  opacity: 0;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.meta-item svg {
  flex-shrink: 0;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

.meta-badge-pref {
  background: #e0f0e4;
}

.meta-badge-vegan {
  background: #dceee2;
}

.meta-badge-vega {
  background: #e4f2e8;
}

.meta-badge-icon {
  width: 14px;
  height: 14px;
  display: flex;
}

.meta-badge-icon svg {
  width: 100%;
  height: 100%;
}

/* ---- Diet Labels (detail page, inline in meta row) ---- */

.diet-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 50%;
  cursor: default;
  transition: transform 0.15s ease;
}

.diet-label:hover {
  transform: scale(1.15);
}

.diet-label-icon {
  width: 18px;
  height: 18px;
  display: flex;
  flex-shrink: 0;
}

.diet-label-icon svg {
  width: 100%;
  height: 100%;
}

/* ---- Diet icons on recipe cards ---- */
.recipe-card-diets {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.45rem;
  flex-wrap: wrap;
  align-items: center;
}

.card-diet-icon {
  width: 15px;
  height: 15px;
  display: flex;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.card-diet-icon svg {
  width: 100%;
  height: 100%;
}

.recipe-card:hover .card-diet-icon {
  opacity: 1;
}

.card-diet-more {
  font-size: 0.6rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.recipe-detail-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  animation: fadeInUp 0.5s ease 0.2s forwards;
  opacity: 0;
}

/* Image right side */
.recipe-detail-image {
  width: 45%;
  flex-shrink: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.recipe-hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.recipe-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image navigation arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
}

.hero-nav-prev { left: 0.75rem; }
.hero-nav-next { right: 0.75rem; }

/* Image dots indicator */
.hero-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.hero-dot.active {
  background: white;
  transform: scale(1.25);
}

/* Body: ingredients + steps */
.recipe-detail-body {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
}

.recipe-sidebar-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recipe-ingredients {
  background: rgba(245, 240, 232, 0.75);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  height: fit-content;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.5s ease 0.2s forwards;
  opacity: 0;
}

.recipe-ingredients h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--button-color);
}

.recipe-ingredients ul {
  list-style: none;
}

.recipe-ingredients li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
  line-height: 1.6;
}

.recipe-ingredients li:last-child {
  border-bottom: none;
}

.ingredient-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.ingredient-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--border-color);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
  background: white;
}

.ingredient-check input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.ingredient-check.unchecked .ingredient-text {
  text-decoration: line-through;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* Voedingswaarden blok */
.recipe-nutrition {
  background: rgba(245, 240, 232, 0.75);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.5s ease 0.25s forwards;
  opacity: 0;
}

.recipe-nutrition h2 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: var(--button-color);
}

.nutrition-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
}

.nutrition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}

.nutrition-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nutrition-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

/* Allergenen blok */
.recipe-allergens {
  background: rgba(245, 240, 232, 0.75);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.5s ease 0.15s forwards;
  opacity: 0;
}

.recipe-allergens h2 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: var(--button-color);
}

.allergens-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.allergen-icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.allergen-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: default;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.allergen-badge:hover {
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.allergen-badge-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.allergen-badge-icon svg {
  width: 18px;
  height: 18px;
}

.allergen-badge-label {
  white-space: nowrap;
}

/* Allergen filter hint text */
.filter-group-hint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0 0 0.6rem;
  line-height: 1.4;
}

/* =====================
   Ingrediënten Ontdek Pagina
   ===================== */

.ingredienten-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.ingredienten-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ingredienten-hero h1 {
  font-size: 2.8rem;
  color: var(--button-color);
  margin-bottom: 0.5rem;
}

.ingredienten-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.ingredienten-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 238px;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ingredienten-result-empty {
  border-radius: 16px;
  background: rgba(245, 240, 232, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px dashed rgba(0, 0, 0, 0.08);
  animation: shimmer 2.5s ease infinite;
}

.ingredienten-empty-icon {
  font-size: 2rem;
  opacity: 0.4;
}

.ingredienten-empty-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.ingredienten-empty-hint {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.6;
  margin-top: 0.2rem;
}

.ingredienten-result-clickable {
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ingredienten-result-clickable:hover {
  border-color: var(--button-color);
  background: rgba(245, 240, 232, 0.9);
}

.ingredient-category-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.season-legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.season-legend-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.ingredienten-result-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeInUp 0.4s ease forwards;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ingredienten-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ingredienten-result-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.ingredienten-result-img-placeholder {
  width: 100%;
  height: 160px;
  background: rgba(245, 240, 232, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.ingredienten-result-body {
  padding: 0.9rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ingredienten-result-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.ingredienten-result-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ingredienten-result-meta .recipe-meta-tag {
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 0.18rem 0.55rem;
}

.ingredienten-match-badge {
  background: var(--button-color);
  color: white;
  border-radius: 12px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.ingredienten-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.random-btn {
  background: var(--button-color);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}

.random-btn:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.selection-counter {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.clear-ingredients-btn {
  background: none;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: border-color 0.15s, color 0.15s;
}

.clear-ingredients-btn:hover {
  border-color: var(--button-color);
  color: var(--button-color);
}

.ingredienten-grid {
  margin-top: 0.5rem;
}

.ingredient-category {
  margin-bottom: 2rem;
}

.ingredient-category-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.ingredient-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ingredient-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 25px;
  background: rgba(245, 240, 232, 0.85);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.88rem;
  user-select: none;
  color: var(--text-primary);
}

.ingredient-chip:hover:not(.disabled) {
  border-color: var(--button-color);
  background: rgba(245, 240, 232, 1);
}

.ingredient-chip.selected {
  background: var(--button-color);
  color: white;
  border-color: var(--button-color);
}

.ingredient-chip.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ingredient-chip-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.seasonal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 2px;
}

.seasonal-dot.in-season {
  background: #4caf50;
}

.seasonal-dot.off-season {
  background: rgba(0, 0, 0, 0.18);
}

.ingredient-chip.selected .seasonal-dot.in-season {
  background: #4caf50;
}

.ingredient-chip.selected .seasonal-dot.off-season {
  background: rgba(255, 255, 255, 0.45);
}

.ingredienten-loading {
  color: var(--text-secondary);
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .ingredienten-results {
    grid-template-columns: 1fr;
  }
  .ingredienten-hero h1 {
    font-size: 2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ingredienten-results {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recipe-steps {
  animation: fadeInUp 0.5s ease 0.25s forwards;
  opacity: 0;
}

.recipe-steps h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--button-color);
}

.recipe-step {
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.25s;
}

.recipe-step.done .step-number {
  background: var(--border-color);
  box-shadow: none;
}

.recipe-step.done .step-content {
  text-decoration: line-through;
  color: var(--text-secondary);
  opacity: 0.5;
}

.recipe-step.done .step-ingredient-tag {
  opacity: 0.4;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--button-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-body {
  flex: 1;
  min-width: 0;
}

.step-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.step-ingredient-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(245, 240, 232, 0.9);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

.step-ingredient-tag strong {
  color: var(--text-primary);
  margin-right: 0.2em;
}

.step-content {
  line-height: 1.8;
  color: var(--text-primary);
}

/* Recept stap animatie delays */
.recipe-step:nth-child(1) { animation-delay: 0.3s; }
.recipe-step:nth-child(2) { animation-delay: 0.35s; }
.recipe-step:nth-child(3) { animation-delay: 0.4s; }
.recipe-step:nth-child(4) { animation-delay: 0.45s; }
.recipe-step:nth-child(5) { animation-delay: 0.5s; }
.recipe-step:nth-child(6) { animation-delay: 0.55s; }
.recipe-step:nth-child(7) { animation-delay: 0.6s; }
.recipe-step:nth-child(8) { animation-delay: 0.65s; }

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--White-background);
  color: var(--button-color);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.back-button:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(196, 90, 58, 0.25);
}


/* ============================================
   19. STATISCHE PAGINA'S
   ============================================ */

.static-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 3rem;
  background: var(--card-background);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.5s ease forwards;
}

.static-page h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--button-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  animation: fadeInUp 0.5s ease 0.1s forwards;
  opacity: 0;
}

.static-page h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem 0;
  color: var(--button-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  animation: fadeIn 0.4s ease 0.2s forwards;
  opacity: 0;
}

.static-page p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1rem;
  animation: fadeIn 0.4s ease 0.2s forwards;
  opacity: 0;
}


/* ============================================
   20. ANIMATIES
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


/* ============================================
   21. STATES & TOEGANKELIJKHEID
   ============================================ */

/* Loading state */
.loading {
  text-align: center;
  padding: 4rem;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--warm-background) 25%, #e8e6de 50%, var(--warm-background) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.empty-state-subtext {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Focus states voor toegankelijkheid */
.menugang-card:focus-visible,
.populair-chip:focus-visible,
.recipe-card:focus-visible,
.featured-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 90, 58, 0.3);
}

.nav-link:focus-visible,
.nav-icon:focus-visible,
.mobile-menu-link:focus-visible {
  outline: none;
  border-radius: 4px;
  box-shadow: 0 0 0 2px rgba(196, 90, 58, 0.3);
}

.clear-filters-btn:focus-visible,
.mobile-filter-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 90, 58, 0.2);
}


/* ============================================
   22. MOBIEL - Bottom Bar
   ============================================ */

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 999;
  gap: 1rem;
  align-items: center;
}

.mobile-search-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--card-background);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mobile-search-wrapper:focus-within {
  border-color: var(--button-color);
  box-shadow: 0 0 0 3px rgba(196, 90, 58, 0.1);
}

.mobile-search-wrapper .search-icon {
  color: var(--text-secondary);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.mobile-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
}

.mobile-search-input::placeholder {
  color: var(--text-secondary);
}

.clear-search-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-search-input:not(:placeholder-shown) ~ .clear-search-btn {
  display: flex;
}

.mobile-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  background: var(--button-color);
  color: white;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

.mobile-filter-btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.filter-btn-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.filter-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #c0392b;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.filter-count-badge:not(:empty) {
  display: flex;
}


/* ============================================
   23. MOBIEL - Filter Modal
   ============================================ */

.mobile-filter-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-filter-modal.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-filter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-filter-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-filter-modal.active .mobile-filter-content {
  transform: translateY(0);
}

.mobile-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-filter-header h3 {
  font-size: 1.5rem;
  color: var(--button-color);
  margin: 0;
}

.mobile-filter-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-filter-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.mobile-filter-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mobile-sort-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-sort-wrapper label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.mobile-filter-top-bar .clear-filters-btn {
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  flex-shrink: 0;
  align-self: flex-end;
}


/* ============================================
   24. RESPONSIVE DESIGN
   ============================================ */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar-inner {
    padding: 0.6rem 1rem;
  }

  .nav-left {
    gap: 1rem;
  }

  .featured-section,
  .main-content {
    padding: 1.5rem;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .featured-card {
    height: 280px;
  }

  .recipe-ad-sidebar {
    display: none;
  }

  .recipe-detail-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .recipe-detail-image {
    width: 50%;
  }

  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .recipe-grid.expanded {
    grid-template-columns: repeat(2, 1fr);
  }

  .static-page {
    margin: 1rem;
    padding: 2rem;
  }
}

/* Mobiel (max 768px) */
@media (max-width: 768px) {
  body {
    padding-top: 4.5rem;
  }

  /* Header mobiel */
  .navbar {
    padding: 0.5rem 0.75rem;
  }

  .navbar-inner {
    padding: 0.5rem 1rem;
    border-radius: 50px;
  }

  .nav-left {
    margin-left: 0;
    gap: 0.5rem;
  }

  .nav-right {
    display: none;
  }

  .nav-logo h1 {
    font-size: 1.4rem;
  }

  .logo-ampersand {
    font-size: 2rem;
    margin: 0 0.25rem;
  }

  /* Zoekbalk standaard ingeklapt op mobiel */
  .nav-search-container {
    position: static;
  }

  .nav-search-container .nav-search-input-wrapper {
    position: absolute;
    top: 100%;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    margin-top: 0.5rem;
    border-radius: 24px;
    z-index: 100;
  }

  .nav-search-container.expanded .nav-search-input-wrapper {
    width: auto;
    padding: 0.25rem;
    background: var(--card-background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-search-container:not(.expanded) .nav-search-input-wrapper {
    display: none;
  }

  .nav-icon {
    padding: 0.4rem;
  }

  .nav-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Bottom bar & filter modal tonen */
  .mobile-bottom-bar {
    display: flex;
  }

  .mobile-filter-modal {
    display: block;
  }

  .sidebar {
    display: none;
  }

  /* Hoofdcontent mobiel */
  .main-content {
    flex-direction: column;
    padding: 1rem;
    padding-bottom: 8rem;
  }

  .recipe-section {
    width: 100%;
  }

  .recipe-grid {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Recept detail mobiel */
  .recipe-detail-wrapper {
    padding: 1rem;
  }

  .recipe-detail {
    padding: 0;
  }

  .recipe-detail-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .recipe-detail-image {
    width: 100%;
  }

  .recipe-hero-image {
    aspect-ratio: 4 / 3;
  }

  .recipe-detail-title {
    font-size: 1.8rem;
  }

  .diet-label {
    padding: 0.3rem;
  }

  .diet-label-icon {
    width: 15px;
    height: 15px;
  }

  /* Featured sectie mobiel */
  .featured-section {
    padding: 1.5rem 1rem 1rem 1rem;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 100%;
  }

  .featured-card {
    height: 180px;
    border-radius: 16px;
  }

  .featured-overlay h3 {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  /* Categorie cirkels mobiel */
  .category-circles-section {
    padding: 1rem 0;
    overflow-x: auto;
  }

  .category-circles-container {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 0 1rem;
    max-width: none;
  }

  .category-circle {
    flex-shrink: 0;
  }

  .category-circle-image {
    width: 65px;
    height: 65px;
    border-width: 2px;
  }

  .category-circle-label {
    font-size: 0.6rem;
  }

  .category-circle:nth-child(n+5) {
    display: flex;
  }

  /* Statische pagina's mobiel */
  .static-page {
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 20px;
  }

  .static-page h2 {
    font-size: 1.75rem;
  }
}


/* ============================================
   25. GEBRUIKER - Avatar & Dropdown
   ============================================ */

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.user-btn {
  position: relative;
}

.user-dropdown {
  position: fixed;
  z-index: 1000;
  background: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 240px;
  overflow: hidden;
  animation: fadeInUp 0.2s ease;
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.user-dropdown-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-dropdown-info {
  display: flex;
  flex-direction: column;
}

.user-dropdown-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.user-dropdown-email {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.user-dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.user-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}

.user-dropdown-item:hover {
  background: var(--warm-background);
}


/* ============================================
   26. LOGIN MODAL
   ============================================ */

.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.2s ease;
}

.login-modal {
  background: var(--card-background);
  border-radius: 24px;
  padding: 2rem;
  width: 90%;
  max-width: 380px;
  position: relative;
  animation: fadeInUp 0.3s ease;
}

.login-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.login-modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

.login-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  text-align: center;
}

.login-modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-btn {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.login-btn-google {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-primary);
}

.login-btn-google:hover {
  background: #f8f8f8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.login-btn-email {
  background: var(--button-color);
  border: none;
  color: white;
}

.login-btn-email:hover {
  background: var(--text-primary);
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 1.25rem 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.login-divider span {
  padding: 0 1rem;
}

.login-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  background: white;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}

.login-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 90, 58, 0.1);
}

.login-input::placeholder {
  color: var(--text-secondary);
}

#emailLoginForm .login-btn-email,
#emailRegisterForm .login-btn-email {
  margin-top: 0.5rem;
}

.login-switch {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.login-switch a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.login-switch a:hover {
  text-decoration: underline;
}

.login-forgot {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
}

.login-forgot:hover {
  color: var(--accent);
}

.login-forgot-info {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}


/* ============================================
   27. FAVORIETEN - Lijst Picker Popup
   ============================================ */

.list-picker-popup {
  position: fixed;
  z-index: 1002;
  width: 240px;
  background: var(--card-background);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  animation: fadeInUp 0.2s ease;
}

.list-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.list-picker-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.list-picker-body {
  padding: 0.5rem 0;
  max-height: 200px;
  overflow-y: auto;
}

.list-picker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-primary);
  transition: background 0.15s ease;
}

.list-picker-item:hover {
  background: var(--warm-background);
}

.list-picker-item input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.list-picker-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.5rem;
}

.list-picker-new-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 0.5rem;
  text-align: left;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  font-family: inherit;
}

.list-picker-new-btn:hover {
  background: var(--warm-background);
}

.list-picker-new-row {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.list-picker-new-input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  background: var(--warm-background);
  color: var(--text-primary);
}

.list-picker-new-input:focus {
  border-color: var(--accent);
}

.list-picker-new-confirm {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.list-picker-new-confirm:hover {
  opacity: 0.9;
}


/* ============================================
   27. FAVORIETEN - Pagina
   ============================================ */

.favorieten-page {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

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

.favorieten-header h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.favorieten-new-list-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.favorieten-new-list-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(196, 90, 58, 0.3);
}

.favorieten-list-section {
  background: var(--card-background);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.favorieten-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.favorieten-list-header:hover {
  background: var(--warm-background);
}

.favorieten-list-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 600;
}

.favorieten-list-count {
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.favorieten-list-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.favorieten-list-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.favorieten-list-action-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
}

.favorieten-list-chevron {
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.favorieten-list-section.collapsed .favorieten-list-chevron {
  transform: rotate(-90deg);
}

.favorieten-list-recipes {
  padding: 0 1.5rem 1.5rem;
}

.favorieten-list-section.collapsed .favorieten-list-recipes {
  display: none;
}

.favorieten-list-recipes .recipe-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.favorieten-empty {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.9rem;
}

.favorieten-login-prompt {
  text-align: center;
  padding: 3rem 0;
}

.favorieten-login-prompt p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.favorieten-login-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.favorieten-login-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(196, 90, 58, 0.3);
}

/* Responsive favorieten */
@media (max-width: 768px) {
  .favorieten-page {
    padding: 0 1rem;
    margin: 1rem auto;
  }

  .favorieten-header h2 {
    font-size: 1.6rem;
  }

  .favorieten-list-recipes .recipe-grid {
    grid-template-columns: 1fr;
  }

  .favorieten-list-header {
    padding: 1rem;
  }

  .favorieten-list-recipes {
    padding: 0 1rem 1rem;
  }
}

/* ============================================================
   28b. Account Pagina
   ============================================================ */

.account-page {
  max-width: 600px;
  margin: 2rem auto;
}

.account-section {
  background: #fff;
  border: 1px solid #e8e0d8;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.account-section h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.account-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0ebe5;
}

.account-info-row:last-child {
  border-bottom: none;
}

.account-label {
  font-size: 0.9rem;
  color: #888;
}

.account-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.account-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #e0d6cc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: #faf8f5;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.account-input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.account-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: background 0.2s, transform 0.15s;
}

.account-btn:hover {
  background: #b34e2a;
  transform: translateY(-1px);
}

.account-btn-danger {
  background: #d9534f;
}

.account-btn-danger:hover {
  background: #c9302c;
}

.account-login-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  margin-top: 1rem;
  transition: background 0.2s;
}

.account-login-btn:hover {
  background: #b34e2a;
}

.account-msg {
  font-size: 0.85rem;
  margin: 0.5rem 0;
  min-height: 1.2em;
}

.account-msg-success {
  color: #2d8a5e;
}

.account-msg-error {
  color: #d9534f;
}

.account-google-note {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}

.account-danger-zone {
  border-color: #f5c6c2;
}

.account-danger-zone h3 {
  color: #d9534f;
}

.account-danger-zone p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* =====================
   Pantry / Voorraadkast
   ===================== */
.account-section-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: -0.5rem 0 1rem;
  line-height: 1.5;
}

.pantry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  min-height: 32px;
}

.pantry-empty-hint {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

.pantry-chip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: #f0f7f1;
  border: 1px solid #c5dbc9;
  border-radius: 20px;
  padding: 0.25rem 0.55rem 0.25rem 0.8rem;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.pantry-chip-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.1rem;
  transition: color 0.15s;
}

.pantry-chip-remove:hover {
  color: #c0392b;
}

.pantry-input-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.pantry-autocomplete-wrapper {
  position: relative;
  flex: 1;
}

.pantry-autocomplete-wrapper .account-input {
  width: 100%;
  box-sizing: border-box;
}

.pantry-suggestions {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0d8d0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
}

.pantry-suggestions.hidden {
  display: none;
}

.pantry-suggestion-item {
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.pantry-suggestion-item:hover {
  background: #f5f0ea;
}

.pantry-add-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.pantry-tag {
  font-size: 0.8rem;
  margin-left: 0.25rem;
  opacity: 0.55;
  flex-shrink: 0;
}

.account-providers-intro {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.account-providers-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.account-provider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e8e0d8;
  border-radius: 10px;
  background: #faf8f5;
  transition: border-color 0.2s;
}

.account-provider.linked {
  border-color: #c5dbc9;
  background: #f7faf7;
}

.account-provider-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.account-provider-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.account-provider-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
}

.account-provider-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: #2d8a5e;
  background: #e2f3e8;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.account-provider-only {
  font-size: 0.78rem;
  color: #aaa;
  font-style: italic;
}

.account-btn-sm {
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: background 0.2s;
}

.account-btn-sm:hover {
  background: #b34e2a;
}

.account-btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid #d8d0c8;
}

.account-btn-outline:hover {
  background: #f0ebe5;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .account-page {
    padding: 0 1rem;
    margin: 1rem auto;
  }

  .account-section {
    padding: 1.2rem;
  }

  .account-provider {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .account-provider-action {
    align-self: flex-end;
  }
}

/* ============================================================
   28c. Keukengereedschap Pagina
   ============================================================ */

.keuken-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* --- Hero --- */
.keuken-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.keuken-hero h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.keuken-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* --- 3D Scene Container --- */
.keuken-3d-container {
  width: 100%;
  max-width: 800px;
  height: 420px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--background);
}

.keuken-3d-container canvas {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.keuken-3d-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 420px;
  color: var(--text-secondary);
  gap: 0.8rem;
  font-size: 0.9rem;
}

.keuken-3d-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e8e0d8;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: keuken-spin 0.7s linear infinite;
}

@keyframes keuken-spin {
  to { transform: rotate(360deg); }
}

.keuken-3d-tip {
  position: absolute;
  transform: translate(-50%, -120%);
  background: rgba(60, 46, 40, 0.9);
  color: #fff;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  z-index: 10;
}

.keuken-3d-tip.visible {
  opacity: 1;
}

/* --- Equipment Cards Grid --- */
.keuken-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.keuken-card {
  background: #fff;
  border: 1px solid #e8e0d8;
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  scroll-margin-top: 100px;
}

.keuken-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.keuken-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.keuken-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--accent);
}

.keuken-card-icon svg {
  width: 100%;
  height: 100%;
}

.keuken-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0;
}

.keuken-card-why {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* --- Pick (recommendation) --- */
.keuken-pick {
  background: linear-gradient(135deg, #fdf5ef 0%, #faf0e6 100%);
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
  position: relative;
}

.keuken-pick-badge {
  position: absolute;
  top: -9px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
}

.keuken-pick-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.keuken-pick-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
  font-style: italic;
}

/* --- Alternatives --- */
.keuken-alts {
  border-top: 1px solid #f0ebe5;
  padding-top: 0.75rem;
}

.keuken-alts-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.keuken-alt {
  padding: 0.4rem 0;
}

.keuken-alt + .keuken-alt {
  border-top: 1px dashed #f0ebe5;
}

.keuken-alt-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.keuken-alt-note {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .keuken-page {
    padding: 1rem 1rem 3rem;
  }

  .keuken-hero h2 {
    font-size: 1.6rem;
  }

  .keuken-3d-container {
    height: 300px;
    border-radius: 12px;
  }

  .keuken-3d-loader {
    height: 300px;
  }

  .keuken-grid {
    grid-template-columns: 1fr;
  }

  .keuken-card {
    padding: 1.2rem;
  }
}

/* ============================================================
   28. Admin Pagina
   ============================================================ */

.admin-page {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

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

.admin-header h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin: 0;
}

.admin-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--card-background);
  color: var(--text-primary);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.admin-btn:hover {
  background: var(--warm-background);
}

.admin-btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.admin-btn-primary:hover {
  background: #b04e30;
}

.admin-btn-small {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
}

.admin-btn-danger {
  color: #e74c3c;
  border-color: #e74c3c;
}

.admin-btn-danger:hover {
  background: #e74c3c;
  color: white;
}

/* Tabs */
.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  flex-wrap: wrap;
}

.admin-tab {
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font-body);
  border-radius: 6px;
  transition: all 0.2s;
}

.admin-tab:hover {
  background: var(--warm-background);
}

.admin-tab.active {
  background: var(--accent);
  color: white;
}

/* Recipe list */
.admin-recipe-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-recipe-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--card-background);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.admin-recipe-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.admin-recipe-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-no-thumb {
  width: 100%;
  height: 100%;
  background: var(--warm-background);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.admin-recipe-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.admin-recipe-title {
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-recipe-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.admin-status-badge {
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-live { background: #d5f5e3; color: #1e8449; }
.status-review { background: #fef3cd; color: #b7791f; }
.status-edit { background: #d6eaf8; color: #2471a3; }
.status-template { background: #eaecee; color: #5d6d7e; }

.recipe-card-status {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.admin-recipe-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.admin-empty, .admin-loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================================
   29. Recept Editor
   ============================================================ */

.editor-page {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.editor-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.editor-header h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 0;
}

.recipe-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--card-background);
  color: var(--text-primary);
  transition: border-color 0.2s;
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.form-checkboxes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-primary);
}

.form-checkbox input[type="checkbox"] {
  accent-color: var(--accent);
}

/* Image previews */
.editor-images {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.editor-image-preview {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.editor-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-image-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.editor-image-upload {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 2px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-align: center;
  transition: border-color 0.2s;
}

.editor-image-upload:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Upload progress */
.upload-progress {
  height: 4px;
  background: var(--warm-background);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.upload-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s;
  width: 0%;
}

/* Dynamic list */
.dynamic-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dynamic-list-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.dynamic-list-item input,
.dynamic-list-item textarea {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--card-background);
  color: var(--text-primary);
}

.dynamic-list-item input:focus,
.dynamic-list-item textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.dynamic-list-item textarea {
  min-height: 60px;
  resize: vertical;
}

.dynamic-list-remove {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: var(--card-background);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  transition: all 0.2s;
}

.dynamic-list-remove:hover {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

/* Form actions */
.form-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  margin-top: 0.5rem;
}

/* Suggestie hints in admin form */
.suggestion-hint {
  display: none;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--accent);
  margin-top: 4px;
}

/* Admin bewerken knop op recept detail */
.admin-edit-recipe-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: transparent;
  color: var(--accent);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  margin-left: 0.75rem;
}

.admin-edit-recipe-btn:hover {
  background: var(--accent);
  color: white;
}

/* ============================================================
   30. Admin Responsive
   ============================================================ */

@media (max-width: 768px) {
  .admin-recipe-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .admin-recipe-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ============================================================
   31. Filter Icon Grid (Gerechtsoort / Voorkeur)
   ============================================================ */

.filter-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.filter-icon-grid-wide {
  grid-template-columns: repeat(2, 1fr);
}

.filter-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.25rem;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: transparent;
  transition: all 0.2s;
}

.filter-icon-item:hover {
  background: var(--warm-background);
  border-color: var(--text-secondary);
}

.filter-icon-item.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.filter-icon-item.active .filter-icon-label {
  font-weight: 600;
  color: white;
}

.filter-icon-item.active .filter-icon-svg {
  color: white !important;
}

.filter-icon-svg {
  width: 22px;
  height: 22px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.filter-icon-svg svg {
  width: 100%;
  height: 100%;
}

.filter-icon-item:hover .filter-icon-svg {
  color: var(--text-primary);
}

.filter-icon-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.1;
  transition: color 0.2s;
}

/* ============================================================
   32b. Servings Adjuster (Recipe Detail)
   ============================================================ */

.servings-adjuster {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.servings-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.2s;
  line-height: 1;
}

.servings-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--warm-background);
}

.servings-btn:active {
  transform: scale(0.92);
}

#servingsCount {
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 1.5rem;
  text-align: center;
  color: var(--text-primary);
}

.servings-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================================
   32c. Equipment / Benodigheden
   ============================================================ */

.recipe-equipment-section {
  padding-top: 1rem;
  animation: fadeInUp 0.5s ease 0.25s forwards;
  opacity: 0;
}

.recipe-equipment-section h2 {
  font-size: 1.6rem;
  color: var(--button-color);
  margin-bottom: 1rem;
}

.equipment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.equipment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 72px;
}

.equipment-icon {
  width: 52px;
  height: 52px;
  background: var(--White-background);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.equipment-icon svg {
  width: 100%;
  height: 100%;
}

.equipment-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.2;
}

/* ============================================================
   32. Skeleton Loaders
   ============================================================ */

@keyframes skeleton-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-card {
  overflow: hidden;
  pointer-events: none;
}

.skeleton-img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: linear-gradient(90deg, var(--warm-background) 25%, var(--card-background) 50%, var(--warm-background) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-text {
  height: 0.75rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--warm-background) 25%, var(--card-background) 50%, var(--warm-background) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}


/* ============================================
   25. VERGELIJKEN - Floating Bar
   ============================================ */

.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--card-background);
  border-top: 1px solid rgba(61, 46, 40, 0.1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.5rem;
  animation: slideUpBar 0.3s ease forwards;
}

@keyframes slideUpBar {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.compare-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.compare-bar-slots {
  display: flex;
  gap: 0.75rem;
  flex: 1;
}

.compare-bar-slot {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  min-height: 56px;
}

.compare-bar-slot.filled {
  background: var(--warm-background);
  border: 1px solid rgba(196, 90, 58, 0.2);
}

.compare-bar-slot.empty {
  background: rgba(61, 46, 40, 0.04);
  border: 1.5px dashed rgba(61, 46, 40, 0.2);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
}

.compare-bar-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.compare-bar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compare-bar-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 2px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.compare-bar-remove:hover {
  color: var(--accent);
  background: rgba(196, 90, 58, 0.1);
}

.compare-bar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
}

.compare-bar-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.compare-bar-btn.primary {
  background: var(--accent);
  color: #fff;
}

.compare-bar-btn.primary:hover:not(:disabled) {
  background: #b04e31;
  transform: translateY(-1px);
}

.compare-bar-btn.primary.disabled,
.compare-bar-btn.primary:disabled {
  background: rgba(196, 90, 58, 0.4);
  cursor: default;
}

.compare-bar-btn.secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(61, 46, 40, 0.2);
}

.compare-bar-btn.secondary:hover {
  background: var(--warm-background);
  color: var(--text-primary);
}


/* ============================================
   26. VERGELIJKEN - Pagina
   ============================================ */

.vergelijk-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 8rem;
}

.vergelijk-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.vergelijk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.vergelijk-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
}

.vergelijk-loading {
  text-align: center;
  padding: 4rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

/* Selectors */
.vergelijk-selectors {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.vergelijk-vs {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  opacity: 0.5;
}

.vergelijk-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vergelijk-selector-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.vergelijk-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.vergelijk-search-icon {
  position: absolute;
  left: 0.75rem;
  color: var(--text-secondary);
  pointer-events: none;
  flex-shrink: 0;
}

.vergelijk-search-input {
  width: 100%;
  padding: 0.65rem 0.75rem 0.65rem 2.3rem;
  border: 1.5px solid rgba(61, 46, 40, 0.15);
  border-radius: 12px;
  background: var(--card-background);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.vergelijk-search-input:focus {
  border-color: var(--accent);
}

.vergelijk-dropdown {
  display: none;
  background: var(--card-background);
  border: 1px solid rgba(61, 46, 40, 0.12);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 4px;
}

.vergelijk-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
}

.vergelijk-dropdown-item:hover {
  background: var(--warm-background);
}

.vergelijk-dropdown-thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.vergelijk-dropdown-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.vergelijk-dropdown-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  margin-top: 1px;
}

.vergelijk-dropdown-empty {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
}

/* Geselecteerd recept kaartje */
.vergelijk-selected-recipe {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--warm-background);
  border: 1px solid rgba(196, 90, 58, 0.2);
  border-radius: 14px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  position: relative;
}

.vergelijk-selected-recipe:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.vergelijk-selected-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.vergelijk-selected-info {
  flex: 1;
  min-width: 0;
}

.vergelijk-selected-category {
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2px;
}

.vergelijk-selected-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vergelijk-selected-duration {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
}

.vergelijk-clear-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(61, 46, 40, 0.08);
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.15s;
}

.vergelijk-clear-btn:hover {
  background: rgba(196, 90, 58, 0.15);
  color: var(--accent);
}

/* Placeholder */
.vergelijk-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.vergelijk-placeholder svg {
  margin-bottom: 1rem;
  opacity: 0.3;
}

.vergelijk-placeholder p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

/* Results sectie */
.vergelijk-results {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vergelijk-section {
  background: var(--card-background);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(61, 46, 40, 0.07);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.vergelijk-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.vergelijk-subtitle-note {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
  opacity: 0.7;
}

.vergelijk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vergelijk-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Tijdbalk */
.vergelijk-bar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.vergelijk-bar-track {
  height: 8px;
  background: rgba(61, 46, 40, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.vergelijk-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: rgba(61, 46, 40, 0.25);
  transition: width 0.6s ease;
}

.vergelijk-bar-fill.winner {
  background: var(--accent);
}

.vergelijk-winner-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-top: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(196, 90, 58, 0.08);
  border-radius: 100px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.vergelijk-winner-note.even {
  color: var(--text-secondary);
  background: rgba(61, 46, 40, 0.06);
}

/* Stappen dots */
.vergelijk-stat-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(61, 46, 40, 0.25);
  line-height: 1;
}

.vergelijk-stat-big span {
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.vergelijk-stat-big.winner {
  color: var(--text-primary);
}

.vergelijk-steps-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.vergelijk-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(61, 46, 40, 0.15);
}

.vergelijk-dot.filled {
  background: var(--accent);
  opacity: 0.7;
}

.vergelijk-dot-more {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
}

/* Ingrediënten grid */
.vergelijk-ingredients-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.vergelijk-ingredients-col,
.vergelijk-ingredients-shared {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vergelijk-ing-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vergelijk-ing-group-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  font-family: 'Montserrat', sans-serif;
}

.vergelijk-ing-group-label.only-left  { color: #4a6fa5; }
.vergelijk-ing-group-label.only-right { color: #7a4fa5; }
.vergelijk-ing-group-label.shared     { color: var(--accent); text-align: center; }

.vergelijk-ing-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-primary);
  padding: 0.2rem 0;
}

.vergelijk-ing-item.shared {
  justify-content: center;
}

.vergelijk-ing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(61, 46, 40, 0.25);
  flex-shrink: 0;
}

.vergelijk-ing-dot.shared {
  background: var(--accent);
}

/* Voedingswaarden tabel */
.vergelijk-nutrition-table {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.vergelijk-nut-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 0.75rem;
}

.vergelijk-nut-label {
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-secondary);
  font-weight: 500;
}

.vergelijk-nut-bars {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.vergelijk-nut-side {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vergelijk-nut-side.right {
  flex-direction: row-reverse;
}

.vergelijk-nut-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(61, 46, 40, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.vergelijk-nut-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: rgba(61, 46, 40, 0.2);
  transition: width 0.6s ease;
}

.vergelijk-nut-bar-fill.winner {
  background: var(--accent);
}

.vergelijk-nut-bar-fill.left {
  margin-left: auto;
}

.vergelijk-nut-val {
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-secondary);
  white-space: nowrap;
  font-weight: 500;
  flex-shrink: 0;
}

.vergelijk-nut-val.winner {
  color: var(--text-primary);
  font-weight: 600;
}

.vergelijk-nut-divider {
  width: 1px;
  height: 20px;
  background: rgba(61, 46, 40, 0.12);
}

.vergelijk-no-nutrition {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  margin-top: 0.75rem;
  font-style: italic;
}

/* Responsive */
@media (max-width: 640px) {
  .vergelijk-selectors {
    grid-template-columns: 1fr;
  }

  .vergelijk-vs {
    padding-top: 0;
    font-size: 1.2rem;
    opacity: 0.3;
  }

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

  .vergelijk-ingredients-grid {
    grid-template-columns: 1fr;
  }

  .vergelijk-ingredients-shared {
    border-top: 1px dashed rgba(61, 46, 40, 0.1);
    border-bottom: 1px dashed rgba(61, 46, 40, 0.1);
    padding: 0.5rem 0;
  }

  .vergelijk-nut-row {
    grid-template-columns: 80px 1fr;
  }

  .compare-bar-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .compare-bar-actions {
    flex-direction: row;
    width: 100%;
  }

  .compare-bar-btn {
    flex: 1;
    text-align: center;
  }
}


/* ============================================
   27. WEEKPLANNER - Knop op receptkaart
   ============================================ */

.planner-btn {
  position: absolute;
  top: 96px;
  right: 12px;
  z-index: 10;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.planner-btn:hover {
  transform: scale(1.1);
  background: var(--card-background);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.planner-btn:active {
  transform: scale(0.95);
}

.planner-btn.active {
  background: #3a7a4a;
  color: #fff;
  box-shadow: 0 4px 12px rgba(58, 122, 74, 0.35);
}

.planner-btn.active:hover {
  background: #2d6139;
  color: #fff;
}


/* ============================================
   28. WEEKPLANNER - Modal (dag-picker)
   ============================================ */

.planner-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(30, 20, 15, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.15s ease;
}

.planner-modal {
  background: var(--card-background);
  border-radius: 20px;
  padding: 1.75rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideUp 0.2s ease;
}

.planner-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: color 0.15s, background 0.15s;
}

.planner-modal-close:hover {
  color: var(--accent);
  background: rgba(196, 90, 58, 0.1);
}

.planner-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.planner-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.planner-modal-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: color 0.15s, background 0.15s;
}

.planner-modal-nav-btn:hover:not(:disabled) {
  color: var(--text-primary);
  background: var(--warm-background);
}

.planner-modal-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.planner-modal-week-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.planner-modal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.planner-modal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.5rem 0.25rem;
  border-radius: 10px;
  border: 1.5px solid rgba(61, 46, 40, 0.1);
  background: var(--warm-background);
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.planner-modal-day:hover:not(.past) {
  border-color: var(--accent);
  background: rgba(196, 90, 58, 0.06);
}

.planner-modal-day.planned {
  border-color: #3a7a4a;
  background: rgba(58, 122, 74, 0.08);
}

.planner-modal-day.past {
  opacity: 0.45;
  cursor: default;
}

.planner-modal-day-name {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.planner-modal-day-num {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.planner-modal-day-count {
  font-size: 0.6rem;
  color: var(--text-secondary);
  background: rgba(61, 46, 40, 0.1);
  border-radius: 100px;
  padding: 1px 5px;
}

.planner-modal-check {
  color: #3a7a4a;
  margin-top: 2px;
}

.planner-modal-hint {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-top: 1rem;
}


/* ============================================
   29. WEEKPLANNER - Pagina
   ============================================ */

.planner-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 6rem;
}

.planner-header {
  text-align: center;
  margin-bottom: 2rem;
}

.planner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.planner-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
}

.planner-loading {
  text-align: center;
  padding: 4rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.planner-login-prompt {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.planner-login-prompt svg {
  opacity: 0.3;
}

.planner-login-prompt p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.planner-login-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.65rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.planner-login-btn:hover {
  background: #b04e31;
}

/* Week navigatie */
.planner-week-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.planner-nav-btn {
  background: var(--card-background);
  border: 1px solid rgba(61, 46, 40, 0.12);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.15s;
  flex-shrink: 0;
}

.planner-nav-btn:hover:not(:disabled) {
  background: var(--warm-background);
  color: var(--text-primary);
  border-color: rgba(61, 46, 40, 0.2);
}

.planner-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.planner-week-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: center;
}

.planner-week-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
}

.planner-today-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(196, 90, 58, 0.1);
  border: none;
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  transition: background 0.15s;
}

.planner-today-btn:hover {
  background: rgba(196, 90, 58, 0.18);
}

/* Tabs */
.planner-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--card-background);
  padding: 4px;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(61, 46, 40, 0.08);
}

.planner-tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

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

.planner-tab.active {
  background: var(--accent);
  color: #fff;
}

.planner-tab-count {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  font-size: 0.7rem;
  padding: 0 5px;
  min-width: 18px;
  text-align: center;
}

/* Week grid */
.planner-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
}

.planner-day-cell {
  background: var(--card-background);
  border-radius: 14px;
  border: 1px solid rgba(61, 46, 40, 0.07);
  padding: 0.75rem;
  min-height: 180px;
  min-width: 0; /* prevent content from expanding grid column */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.15s;
}

.planner-day-cell.today {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(196, 90, 58, 0.15);
}

.planner-day-cell.past {
  background: rgba(61, 46, 40, 0.025);
  border-color: rgba(61, 46, 40, 0.05);
  opacity: 0.6;
}

.planner-day-cell.past .planner-add-btn {
  pointer-events: none;
  opacity: 0.4;
}

.planner-day-header {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(61, 46, 40, 0.07);
}

.planner-day-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-secondary);
}

.planner-day-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.planner-day-date.today {
  color: var(--accent);
}

/* Recepten in dag */
.planner-day-recipes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.planner-recipe-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--warm-background);
  border-radius: 8px;
  padding: 0.35rem 0.4rem 0.35rem 0.35rem;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
  min-width: 0;
}

.planner-recipe-item:hover {
  background: rgba(61, 46, 40, 0.08);
}

.planner-recipe-thumb {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.planner-recipe-info {
  flex: 1;
  min-width: 0;
  cursor: pointer;
}

.planner-recipe-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
}

.planner-recipe-duration {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
}

.planner-recipe-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(61, 46, 40, 0.3);
  padding: 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
}

.planner-recipe-remove:hover {
  color: var(--accent);
  background: rgba(196, 90, 58, 0.1);
}

/* Recept toevoegen knop in dag */
.planner-add-btn {
  display: block;
  width: 100%;
  padding: 0.45rem 0.6rem;
  background: rgba(61, 46, 40, 0.05);
  border: 1.5px dashed rgba(61, 46, 40, 0.18);
  border-radius: 8px;
  color: rgba(61, 46, 40, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}

.planner-add-btn:hover {
  background: rgba(61, 46, 40, 0.09);
  border-color: rgba(61, 46, 40, 0.3);
  color: var(--text-primary);
}

/* Floating picker panel */
.planner-picker {
  position: fixed;
  width: 320px;
  background: var(--card-background);
  border: 1px solid rgba(61, 46, 40, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 480px;
}

.planner-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem 0.6rem;
  border-bottom: 1px solid rgba(61, 46, 40, 0.08);
  flex-shrink: 0;
}

.planner-picker-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.planner-picker-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(61, 46, 40, 0.4);
  display: flex;
  align-items: center;
  padding: 2px;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
}

.planner-picker-close:hover {
  color: var(--accent);
  background: rgba(196, 90, 58, 0.1);
}

.planner-picker-search-row {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(61, 46, 40, 0.07);
  flex-shrink: 0;
}

.planner-picker-input {
  flex: 1;
  border: 1.5px solid rgba(61, 46, 40, 0.15);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: var(--text-primary);
  background: var(--warm-background);
  outline: none;
  transition: border-color 0.15s;
}

.planner-picker-input:focus {
  border-color: rgba(61, 46, 40, 0.35);
}

.planner-picker-input::placeholder {
  color: rgba(61, 46, 40, 0.35);
}

.planner-picker-results {
  overflow-y: auto;
  flex: 1;
}

.planner-picker-section-title {
  padding: 0.55rem 1rem 0.3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(61, 46, 40, 0.45);
}

.planner-picker-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: background 0.12s;
}

.planner-picker-item:hover {
  background: var(--warm-background);
}

.planner-picker-item.planned {
  opacity: 0.7;
}

.planner-picker-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.planner-picker-info {
  flex: 1;
  min-width: 0;
}

.planner-picker-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.planner-picker-meta {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  margin-top: 1px;
}

.planner-picker-check {
  color: #4caf50;
  flex-shrink: 0;
}

.planner-picker-add-icon {
  background: rgba(61, 46, 40, 0.08);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.planner-picker-item:hover .planner-picker-add-icon {
  background: var(--accent);
  color: white;
}

.planner-picker-empty {
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
}


/* ============================================
   30. BOODSCHAPPENLIJST
   ============================================ */

.boodschappen-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.boodschappen-empty svg {
  opacity: 0.25;
}

.boodschappen-empty p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
}

.boodschappen-switch-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.boodschappen-switch-btn:hover {
  background: #b04e31;
}

.boodschappen-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.boodschappen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.boodschappen-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.boodschappen-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.boodschappen-from {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.boodschappen-header-actions {
  display: flex;
  gap: 0.5rem;
}

.boodschappen-action-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(61, 46, 40, 0.15);
  background: var(--card-background);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
}

.boodschappen-action-btn:hover {
  background: var(--warm-background);
  color: var(--text-primary);
}

.boodschappen-recipes-used {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.boodschappen-recipe-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--warm-background);
  border-radius: 100px;
  padding: 0.3rem 0.7rem 0.3rem 0.35rem;
  cursor: pointer;
  transition: background 0.15s;
  border: 1px solid rgba(61, 46, 40, 0.1);
}

.boodschappen-recipe-chip:hover {
  background: rgba(196, 90, 58, 0.08);
  border-color: rgba(196, 90, 58, 0.2);
}

.boodschappen-recipe-chip img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.boodschappen-recipe-chip span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Ingrediënten lijst */
.boodschappen-list {
  background: var(--card-background);
  border-radius: 16px;
  border: 1px solid rgba(61, 46, 40, 0.07);
  overflow: hidden;
}

.boodschappen-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(61, 46, 40, 0.06);
  cursor: pointer;
  transition: background 0.12s;
  user-select: none;
}

.boodschappen-item:last-child {
  border-bottom: none;
}

.boodschappen-item:hover {
  background: var(--warm-background);
}

.boodschappen-item.checked .boodschappen-name {
  text-decoration: line-through;
  color: var(--text-secondary);
  opacity: 0.6;
}

.boodschappen-item.checked .boodschappen-qty {
  opacity: 0.5;
}

.boodschappen-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(61, 46, 40, 0.25);
  background: var(--warm-background);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.boodschappen-item.checked .boodschappen-checkbox {
  background: #3a7a4a;
  border-color: #3a7a4a;
  color: #fff;
}

.boodschappen-qty {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 48px;
  flex-shrink: 0;
}

.boodschappen-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-primary);
  flex: 1;
  text-transform: capitalize;
}

/* Bezorgen sectie */
.boodschappen-bestellen {
  background: var(--card-background);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(61, 46, 40, 0.07);
}

.boodschappen-bestellen-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.boodschappen-bestellen-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.boodschappen-supermarkt-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.boodschappen-supermarkt-btn.ah {
  background: #e8f4fc;
  color: #006dbe;
  border: 1px solid rgba(0, 109, 190, 0.2);
}

.boodschappen-supermarkt-btn.ah:hover {
  background: #d0eaf8;
  transform: translateY(-1px);
}

.boodschappen-supermarkt-btn.jumbo {
  background: #fffae0;
  color: #c8a200;
  border: 1px solid rgba(200, 162, 0, 0.25);
}

.boodschappen-supermarkt-btn.jumbo:hover {
  background: #fff4b8;
  transform: translateY(-1px);
}

.boodschappen-bestellen-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
}


/* ============================================
   Weekplanner Responsive
   ============================================ */

@media (max-width: 900px) {
  .planner-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .planner-grid > *:nth-child(n+5):nth-child(-n+7) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .planner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .planner-week-text {
    font-size: 1rem;
  }

  .boodschappen-bestellen-btns {
    flex-direction: column;
  }
}
