/* ===========================
   Amorecipes Weekplanner
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;600;700&display=swap');

#amore-weekplanner {
    font-family: 'Karla', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    color: #1a1a1a;
}

.amore-wp-intro {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

/* --- WEEKGRID --- */
.amore-wp-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.amore-wp-day-header {
    text-align: center;
    font-weight: 700;
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.amore-wp-day-cell {
    background: #f0f7f3;
    border: 1px dashed #b7d9c7;
    border-radius: 6px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    position: relative;
    padding: 8px 6px;
}

.amore-wp-day-cell:hover {
    background: #e0f0e8;
    border-color: #2d6a4f;
}

.amore-wp-day-cell.has-recipe {
    background: #fff;
    border: 1px solid #ddd;
    border-style: solid;
    align-items: flex-start;
    cursor: default;
}

.amore-wp-plus {
    color: #b7d9c7;
    font-size: 22px;
    line-height: 1;
}

.amore-wp-cell-title {
    font-size: 11px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    word-break: break-word;
}

.amore-wp-cell-remove {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 11px;
    color: #ccc;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}
.amore-wp-cell-remove:hover { color: #e05a5a; }

/* --- KOELKAST --- */
.amore-wp-fridge-section {
    margin-bottom: 16px;
}

.amore-wp-fridge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.amore-wp-fridge-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

.amore-wp-fridge-input-row {
    display: flex;
    gap: 6px;
    align-items: center;
}

.amore-wp-fridge-input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 7px 11px;
    font-size: 13px;
    font-family: 'Karla', sans-serif;
    color: #333;
    width: 200px;
    outline: none;
    flex: 1 1 auto;
}
.amore-wp-fridge-input:focus { border-color: #2d6a4f; }

.amore-wp-fridge-add-btn {
    flex-shrink: 0;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 13px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}
.amore-wp-fridge-add-btn:hover { background: #245a42; }

.amore-wp-fridge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.amore-wp-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e0f0e8;
    color: #2d6a4f;
    border: 1px solid #b7d9c7;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
}

.amore-wp-tag-remove {
    cursor: pointer;
    color: #80b59a;
    font-size: 11px;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    font-family: 'Karla', sans-serif;
}
.amore-wp-tag-remove:hover { color: #2d6a4f; }

/* --- DIVIDER --- */
.amore-wp-divider {
    border: none;
    border-top: 1px solid #e8e3dc;
    margin: 16px 0;
}

/* --- RECEPTEN --- */
.amore-wp-search-row {
    margin-bottom: 12px;
}

.amore-wp-search {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-family: 'Karla', sans-serif;
    width: 100%;
    max-width: 320px;
    outline: none;
    box-sizing: border-box;
}
.amore-wp-search:focus { border-color: #2d6a4f; }

.amore-wp-recipe-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.amore-wp-loading {
    color: #aaa;
    font-size: 13px;
}

.amore-wp-recipe-card {
    background: #f8f5f0;
    border: 1px solid #e0dbd4;
    border-radius: 8px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.15s;
}
.amore-wp-recipe-card:hover { border-color: #2d6a4f; }

.amore-wp-recipe-thumb {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: #e8e3dc;
    flex-shrink: 0;
    overflow: hidden;
    object-fit: cover;
}
.amore-wp-recipe-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amore-wp-recipe-text {
    flex: 1;
    min-width: 0;
}

.amore-wp-recipe-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amore-wp-recipe-meta {
    font-size: 12px;
    color: #aaa;
}

.amore-wp-recipe-match {
    font-size: 12px;
    color: #40916c;
    font-weight: 600;
}

.amore-wp-plan-btn {
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Karla', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}
.amore-wp-plan-btn:hover { background: #245a42; }
.amore-wp-plan-btn:disabled {
    background: #ccc;
    cursor: default;
}

/* Dag-picker dropdown */
.amore-wp-day-picker {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 100;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 160px;
}

.amore-wp-day-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    gap: 8px;
}
.amore-wp-day-option:hover { background: #f0f7f3; }
.amore-wp-day-option .day-label { color: #888; width: 24px; }
.amore-wp-day-option .day-recipe { color: #333; font-weight: 400; font-size: 11px; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.amore-wp-day-option .day-confirm { color: #e05a5a; font-size: 12px; }

/* --- ACTIES --- */
.amore-wp-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.amore-wp-btn-primary {
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Karla', sans-serif;
    cursor: pointer;
}
.amore-wp-btn-primary:hover { background: #245a42; }

.amore-wp-btn-outline {
    background: #fff;
    color: #2d6a4f;
    border: 1.5px solid #2d6a4f;
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Karla', sans-serif;
    cursor: pointer;
}
.amore-wp-btn-outline:disabled {
    color: #aaa;
    border-color: #ccc;
    cursor: default;
}

/* --- MOBIEL --- */
@media (max-width: 700px) {
    .amore-wp-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .amore-wp-day {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .amore-wp-day-header {
        width: 28px;
        margin-bottom: 0;
        flex-shrink: 0;
        text-align: left;
    }

    .amore-wp-day-cell {
        flex: 1;
        min-height: 44px;
        justify-content: flex-start;
        padding: 8px 12px;
    }

    .amore-wp-fridge-input {
        width: 100%;
    }

    .amore-wp-recipe-name {
        white-space: normal;
    }
}

/* --- PRINT / PDF --- */
@media print {
    body * { visibility: hidden; }
    #amore-weekplanner, #amore-weekplanner * { visibility: visible; }
    #amore-weekplanner { position: absolute; top: 0; left: 0; width: 100%; }

    .amore-wp-fridge-section,
    .amore-wp-recipes-section,
    .amore-wp-actions,
    .amore-wp-divider,
    .amore-wp-intro,
    .amore-wp-cell-remove,
    .amore-wp-search-row { display: none !important; }

    .amore-wp-grid-section { page-break-inside: avoid; }

    .amore-wp-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
    }

    .amore-wp-day-cell {
        border: 1px solid #333 !important;
        min-height: 80px;
        background: #fff !important;
    }

    .amore-wp-cell-title { font-size: 10px; }
    .amore-wp-day-header { font-size: 10px; color: #333; }
}

/* --- Koelkast-notificatie (receptpagina's) --- */
.amore-fridge-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #e0f0e8;
    border: 1px solid #b7d9c7;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
}

.amore-fridge-notice-text { flex: 1; }

.amore-fridge-notice-swap {
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Karla', sans-serif;
    cursor: pointer;
}
.amore-fridge-notice-swap:hover { background: #245a42; }

.amore-fridge-notice-keep {
    background: transparent;
    color: #2d6a4f;
    border: 1px solid #2d6a4f;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Karla', sans-serif;
    cursor: pointer;
}

.amore-fridge-notice-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* --- Plan deze week knop (receptpagina's) --- */
.amore-plan-week-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 24px;
    font-family: 'Karla', sans-serif;
}

.amore-plan-week-btn {
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Karla', sans-serif;
    cursor: pointer;
}
.amore-plan-week-btn:hover { background: #245a42; }

.amore-plan-week-picker {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    z-index: 200;
    min-width: 200px;
    padding: 6px;
}

.amore-plan-day-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
}
.amore-plan-day-opt:hover { background: #f0f7f3; }
.amore-plan-day-label { font-weight: 700; color: #888; width: 28px; }
.amore-plan-day-status { color: #aaa; font-size: 11px; }

.amore-plan-week-confirm {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #2d6a4f;
    font-weight: 600;
    font-family: 'Karla', sans-serif;
}

/* ======================================
   Amorecipes Boodschappenlijst — Modal
   ====================================== */

.amore-bs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.amore-bs-overlay[hidden] {
  display: none;
}

.amore-bs-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  font-family: 'Karla', sans-serif;
}

.amore-bs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e8e0d8;
}

.amore-bs-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d6a4f;
  margin: 0;
}

.amore-bs-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #666;
  padding: 4px 8px;
  line-height: 1;
}

.amore-bs-close:hover {
  color: #333;
}

.amore-bs-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

/* Portie controls */
.amore-bs-portie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.amore-bs-portie-label {
  font-size: 0.95rem;
  color: #444;
}

.amore-bs-portie-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.amore-bs-portie-btn {
  background: #f0ebe4;
  border: none;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  color: #2d6a4f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amore-bs-portie-btn:hover {
  background: #e0d9d0;
}

.amore-bs-portie-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d6a4f;
  min-width: 24px;
  text-align: center;
}

/* Dag checkboxes */
.amore-bs-dagen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.amore-bs-dag-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: #444;
}

.amore-bs-dag-item--disabled {
  opacity: 0.4;
}

.amore-bs-dag-cb {
  accent-color: #2d6a4f;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Ingredient blocks */
.amore-bs-recept-blok {
  margin-bottom: 16px;
}

.amore-bs-dag-header {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2d6a4f;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #e8e0d8;
  padding-bottom: 4px;
  margin-bottom: 6px;
}

.amore-bs-recept-naam {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.amore-bs-ingredient-row {
  display: grid;
  grid-template-columns: 60px 80px 1fr;
  gap: 4px;
  font-size: 0.875rem;
  color: #555;
  padding: 2px 0;
}

.amore-bs-ingredient-row::before {
  content: '·';
  grid-column: 1;
  color: #2d6a4f;
}

.amore-bs-ingredient-amount {
  grid-column: 1;
  text-align: right;
}

.amore-bs-ingredient-unit {
  grid-column: 2;
  color: #888;
}

.amore-bs-ingredient-name {
  grid-column: 3;
}

.amore-bs-empty-msg {
  font-size: 0.875rem;
  font-style: italic;
  color: #888;
  padding: 8px 0;
}

.amore-bs-empty-msg--green {
  color: #2d6a4f;
  font-style: normal;
}

.amore-bs-zero-days {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  padding: 24px 0;
}

/* Vegetable summary */
.amore-bs-vegsum {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e8e0d8;
  font-size: 0.875rem;
}

.amore-bs-vegsum-loader {
  color: #888;
  font-style: italic;
}

.amore-bs-vegsum-text {
  color: #444;
}

.amore-bs-vegsum--green .amore-bs-vegsum-text strong {
  color: #2d6a4f;
}

.amore-bs-vegsum--orange .amore-bs-vegsum-text strong {
  color: #e07a00;
}

/* Footer */
.amore-bs-footer {
  padding: 16px 24px 20px;
  border-top: 1px solid #e8e0d8;
  display: flex;
  justify-content: flex-end;
}

/* ======================================
   Print styles — Boodschappenlijst
   ====================================== */

@media print {
  body > *:not(#amore-bs-overlay),
  .amore-weekplanner-wrapper,
  .amore-weekplanner,
  header, footer, nav, aside {
    display: none !important;
  }

  #amore-bs-overlay {
    display: block !important;
    position: static;
    background: none;
    padding: 0;
  }

  .amore-bs-modal {
    box-shadow: none;
    max-height: none;
    max-width: 100%;
  }

  .amore-bs-header h2 {
    color: #000;
  }

  .amore-bs-dag-header {
    color: #000;
  }

  .amore-bs-close,
  .amore-bs-portie-btn,
  .amore-bs-footer,
  .amore-bs-vegsum-loader,
  .amore-bs-dagen {
    display: none !important;
  }

  .amore-bs-body {
    overflow: visible;
  }
}

/* ======================================
   Weekplanner Uitbreidingen — Filters
   ====================================== */

.amore-wp-filters {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.amore-wp-filter-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.amore-wp-filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    min-width: 44px;
}

.amore-wp-filter-dropdown {
    position: relative;
}

.amore-wp-filter-btn {
    font-family: 'Karla', sans-serif;
    font-size: 0.8rem;
    padding: 5px 10px;
    border: 1px solid #d4cdc4;
    border-radius: 6px;
    background: #fff;
    color: #555;
    cursor: pointer;
    white-space: nowrap;
}

.amore-wp-filter-btn.active {
    border-color: #2d6a4f;
    color: #2d6a4f;
    font-weight: 600;
}

.amore-wp-filter-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid #d4cdc4;
    border-radius: 6px;
    padding: 6px 0;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.amore-wp-filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
}

.amore-wp-filter-option:hover {
    background: #f5f5f5;
}

.amore-wp-filter-option input[type="checkbox"] {
    accent-color: #2d6a4f;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.amore-wp-filter-time {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.amore-wp-time-btn {
    font-family: 'Karla', sans-serif;
    font-size: 0.8rem;
    padding: 5px 10px;
    border: 1px solid #d4cdc4;
    border-radius: 6px;
    background: #fff;
    color: #555;
    cursor: pointer;
}

.amore-wp-time-btn.active {
    background: #2d6a4f;
    color: #fff;
    border-color: #2d6a4f;
}

.amore-wp-time-btn:hover:not(.active) {
    background: #f0ebe4;
}

.amore-wp-recipe-kanveg {
    font-size: 0.75rem;
    color: #2d6a4f;
    font-style: italic;
}

/* ======================================
   Weekplanner Uitbreidingen — Ingrediëntenpreview
   ====================================== */

.amore-wp-recipe-card {
    cursor: pointer;
    flex-wrap: wrap;
}

.amore-wp-ing-preview {
    padding: 8px 12px 4px;
    border-top: 1px solid #e8e0d8;
    width: 100%;
}

.amore-wp-ing-row {
    display: grid;
    grid-template-columns: 48px 60px 1fr;
    font-size: 0.8rem;
    color: #555;
    padding: 2px 0;
}

.amore-wp-ing-amount {
    text-align: right;
    color: #2d6a4f;
    font-weight: 600;
}

.amore-wp-ing-unit {
    padding-left: 6px;
    color: #888;
}

.amore-wp-ing-empty {
    font-size: 0.8rem;
    color: #aaa;
    font-style: italic;
    margin: 0;
}

/* ======================================
   Weekplanner Uitbreidingen — Drag & drop
   ====================================== */

.amore-wp-recipe-card.is-dragging {
    opacity: 0.5;
}

.amore-wp-day-cell.drag-over {
    background: #e8f5e9 !important;
    border: 2px dashed #2d6a4f !important;
}

.amore-wp-cell-pending {
    display: block;
    font-size: 0.7rem;
    color: #e07a00;
    margin-top: 2px;
}

/* ======================================
   Boodschappenlijst — Wegstrepen
   ====================================== */

.amore-bs-ingredient--crossed .amore-bs-ingredient-amount,
.amore-bs-ingredient--crossed .amore-bs-ingredient-unit,
.amore-bs-ingredient--crossed .amore-bs-ingredient-name {
    text-decoration: line-through;
    color: #aaa;
    opacity: 0.6;
}

.amore-bs-ingredient-row:hover {
    background: #f8f5f0;
    border-radius: 4px;
}

@media print {
    .amore-bs-ingredient--crossed {
        display: none;
    }
}

/* ======================================
   Weekplanner — Alternatievengids
   ====================================== */

.amore-wp-ing-name {
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #ccc;
}

.amore-wp-ing-name:hover {
    text-decoration-color: #2d6a4f;
    color: #2d6a4f;
}

.amore-wp-ing-row.has-override .amore-wp-ing-name {
    color: #2d6a4f;
    text-decoration: none;
}

.amore-wp-vervangen-badge {
    display: inline-block;
    font-size: 0.75rem;
    background: #d1fae5;
    color: #065f46;
    border-radius: 4px;
    padding: 1px 5px;
    margin-left: 4px;
    vertical-align: middle;
    font-style: normal;
}

.amore-wp-alt-panel {
    grid-column: 1 / -1;
    width: 100%;
    background: #fff;
    border: 1px solid #e0d9d0;
    border-radius: 8px;
    margin-top: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.amore-wp-alt-panel-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 10px 4px;
    background: #f8f5f0;
}

.amore-wp-alt-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    cursor: pointer;
    border-top: 1px solid #f0ebe4;
    font-size: 0.82rem;
    gap: 8px;
}

.amore-wp-alt-option:hover {
    background: #f8f5f0;
}

.amore-wp-alt-option.is-selected {
    background: #ecfdf5;
}

.amore-wp-alt-option.is-orig {
    color: #999;
}

.amore-wp-alt-name-wrap {
    flex: 1;
    min-width: 0;
}

.amore-wp-alt-name {
    display: block;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amore-wp-alt-option.is-orig .amore-wp-alt-name {
    color: #999;
}

.amore-wp-alt-option.is-selected .amore-wp-alt-name {
    color: #065f46;
}

.amore-wp-alt-desc {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amore-wp-alt-hoeveelheid {
    font-size: 0.78rem;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.amore-wp-ing-loading,
.amore-wp-ing-error {
    font-size: 0.78rem;
    padding: 8px 10px;
    color: #888;
    font-style: italic;
}

/* ── Groente & calorie schatting ─────────────────────────────────── */

.amore-wp-estimate-row {
    grid-column: 1 / -1;
    font-size: 0.85em;
    color: #888;
    padding-top: 6px;
}

.amore-wp-estimate-row--loading {
    font-style: italic;
}
