/* ===== KITCHEN HAND — Design System ===== */
:root {
  --teal: #2B8A8A;
  --teal-light: #E8F4F4;
  --teal-dark: #1E6B6B;
  --mustard: #E5A836;
  --mustard-light: #FFF5E0;
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #EEEEEE;
  --grey-300: #E0E0E0;
  --grey-400: #BDBDBD;
  --grey-500: #9E9E9E;
  --grey-600: #757575;
  --grey-700: #616161;
  --grey-800: #424242;
  --grey-900: #212121;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

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

body {
  font-family: var(--font-body);
  background: var(--grey-50);
  color: var(--grey-900);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ===== Header ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--mustard);
}

.logo-accent {
  color: var(--teal-dark);
}

.logo-text {
  word-spacing: -0.15em;
}

.btn-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  box-shadow: var(--shadow-sm);
}

.btn-add:hover {
  background: var(--teal-dark);
}

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

/* ===== Search ===== */
.search-bar {
  max-width: 960px;
  margin: 16px auto 0;
  padding: 0 20px;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-400);
  pointer-events: none;
}

.search-bar input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--grey-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-light);
}

.search-bar input::placeholder {
  color: var(--grey-400);
}

/* ===== Cuisine Filter ===== */
.cuisine-filter {
  max-width: 960px;
  margin: 16px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cuisine-filter::-webkit-scrollbar {
  display: none;
}

.cuisine-tag {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--grey-600);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.cuisine-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.cuisine-tag.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* ===== Recipe Grid ===== */
.recipe-grid {
  max-width: 960px;
  margin: 20px auto 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ===== Recipe Card ===== */
.recipe-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.recipe-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.recipe-card:active {
  transform: translateY(0);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--grey-100);
}

.card-image-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--teal-light), var(--mustard-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-body {
  padding: 16px;
}

.card-cuisine {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  margin-bottom: 4px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--grey-900);
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-description {
  font-size: 0.85rem;
  color: var(--grey-600);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--grey-100);
}

.card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--grey-500);
}

.card-meta-item svg {
  width: 14px;
  height: 14px;
}

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  max-width: 960px;
  margin: 0 auto;
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.empty-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--grey-800);
  margin-bottom: 8px;
}

.empty-text {
  color: var(--grey-500);
  font-size: 0.95rem;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal.open {
  display: flex;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-close {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--grey-100);
  color: var(--grey-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--grey-200);
}

/* ===== Recipe Detail ===== */
.detail-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.detail-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--teal-light), var(--mustard-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.detail-body {
  padding: 24px 20px 40px;
}

.detail-cuisine {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  margin-bottom: 4px;
}

.detail-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--grey-900);
  margin-bottom: 8px;
  line-height: 1.2;
}

.detail-description {
  color: var(--grey-600);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.detail-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.detail-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--grey-50);
  border-radius: var(--radius-sm);
  min-width: 80px;
}

.detail-meta-value {
  font-weight: 600;
  font-size: 1rem;
  color: var(--grey-800);
}

.detail-meta-label {
  font-size: 0.75rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Servings Scaler */
.servings-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.servings-btn:hover {
  background: var(--teal);
  color: var(--white);
}

.servings-count {
  font-weight: 600;
  font-size: 1rem;
  color: var(--grey-800);
  min-width: 20px;
  text-align: center;
}

.detail-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--grey-800);
  margin: 24px 0 12px;
}

/* Ingredients */
.ingredients-list {
  list-style: none;
}

.ingredients-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.95rem;
  color: var(--grey-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ingredients-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  border: 2px solid var(--grey-300);
  margin-top: 1px;
  transition: all 0.2s;
}

.ingredients-list li.checked {
  opacity: 0.4;
  text-decoration: line-through;
}

.ingredients-list li.checked::before {
  background: var(--teal);
  border-color: var(--teal);
}

/* Method */
.method-list {
  list-style: none;
  counter-reset: step;
}

.method-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.6;
  display: flex;
  gap: 12px;
}

.method-list li::before {
  counter-increment: step;
  content: counter(step);
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Source */
.detail-source {
  margin-top: 24px;
  padding: 12px 16px;
  background: var(--mustard-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--grey-700);
}

.detail-source a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

.detail-source a:hover {
  text-decoration: underline;
}

/* Detail Actions */
.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-delete {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid #E57373;
  background: var(--white);
  color: #E57373;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-delete:hover {
  background: #FFEBEE;
}

/* ===== Add Form ===== */
.add-form {
  padding: 24px 20px 40px;
}

.add-form h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--grey-900);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 6px;
}

.form-group .hint {
  font-weight: 400;
  color: var(--grey-400);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--grey-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-light);
}

.form-group textarea {
  resize: vertical;
}

.btn-save {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-save:hover {
  background: var(--teal-dark);
}

/* ===== Import Section ===== */
.import-section {
  margin-bottom: 8px;
}

.import-row {
  display: flex;
  gap: 8px;
}

.import-input {
  flex: 1;
  padding: 12px 14px;
  border: 2px solid var(--teal-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--grey-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.import-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-light);
}

.btn-import {
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--mustard);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-import:hover {
  background: #CC9430;
}

.btn-import:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.import-hint {
  font-size: 0.8rem;
  color: var(--grey-400);
  margin-top: 8px;
}

.import-status {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.import-status.loading {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.import-status.error {
  background: #FFEBEE;
  color: #C62828;
}

.import-status.success {
  background: #E8F5E9;
  color: #2E7D32;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--grey-400);
  font-size: 0.85rem;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-200);
}

/* ===== Detail Actions ===== */
.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
}

.btn-edit {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--teal);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--teal);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-edit:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-delete {
  padding: 12px 20px;
  border: 2px solid #E57373;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: #E57373;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-delete:hover {
  background: #E57373;
  color: var(--white);
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .modal-content {
    border-radius: var(--radius);
    margin: 20px;
    max-height: 90vh;
  }
  
  .modal {
    align-items: center;
  }
}

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

/* ===== Navigation Tabs ===== */
.nav-tabs {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--grey-200);
  background: var(--white);
}

.nav-tab {
  background: none;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.nav-tab:hover {
  color: var(--teal);
}

.nav-tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* ===== Meal Planner ===== */
.planner-header {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.planner-nav {
  background: none;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--grey-600);
  display: flex;
  align-items: center;
  transition: background 0.15s;
}

.planner-nav:hover {
  background: var(--grey-100);
}

.planner-week-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--grey-800);
  min-width: 200px;
  text-align: center;
}

.planner-grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.planner-day {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--grey-200);
  overflow: hidden;
}

.planner-day-header {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.planner-day-date {
  font-weight: 400;
  color: var(--grey-400);
  text-transform: none;
  letter-spacing: 0;
}

.planner-day.today .planner-day-header {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.planner-slots {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 48px;
}

.planner-slot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--grey-50);
  border-radius: 8px;
}

.planner-slot-item img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.planner-slot-img-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.planner-slot-info {
  flex: 1;
  min-width: 0;
}

.planner-slot-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.planner-slot-meta {
  font-size: 0.75rem;
  color: var(--grey-400);
}

.planner-slot-remove {
  background: none;
  border: none;
  color: var(--grey-400);
  cursor: pointer;
  padding: 4px;
  font-size: 1rem;
  line-height: 1;
  border-radius: 4px;
}

.planner-slot-remove:hover {
  color: var(--grey-700);
  background: var(--grey-200);
}

.planner-add-btn {
  background: none;
  border: 1px dashed var(--grey-300);
  border-radius: 8px;
  padding: 8px;
  color: var(--grey-400);
  cursor: pointer;
  font-size: 0.85rem;
  width: 100%;
  transition: border-color 0.15s, color 0.15s;
}

.planner-add-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* Extras */
.planner-extras {
  max-width: 960px;
  margin: 20px auto 0;
  padding: 0 20px;
}

.planner-extras-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--grey-700);
  margin-bottom: 8px;
}

.planner-extras-hint {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--grey-400);
  display: block;
  margin-top: 2px;
}

.planner-extras-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.btn-add-extra {
  background: none;
  border: 1px dashed var(--grey-300);
  border-radius: 8px;
  padding: 10px;
  color: var(--grey-400);
  cursor: pointer;
  font-size: 0.85rem;
  width: 100%;
  transition: border-color 0.15s, color 0.15s;
}

.btn-add-extra:hover {
  border-color: var(--mustard);
  color: var(--mustard);
}

/* Grocery List */
.grocery-section {
  max-width: 960px;
  margin: 20px auto 40px;
  padding: 0 20px;
}

.btn-grocery {
  width: 100%;
  padding: 14px;
  background: var(--mustard);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-grocery:hover {
  background: var(--mustard-dark, #C98E2E);
}

.grocery-list-content h2 {
  font-family: var(--font-display);
  margin-bottom: 16px;
  color: var(--grey-800);
}

.grocery-list-content h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.grocery-list-content ul {
  list-style: none;
  padding: 0;
}

.grocery-list-content li {
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.95rem;
  color: var(--grey-700);
  cursor: pointer;
  transition: color 0.15s;
}

.grocery-list-content li.checked {
  text-decoration: line-through;
  color: var(--grey-400);
}

.grocery-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--grey-400);
}

.grocery-empty-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* Recipe Picker */
.picker-content h2 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  color: var(--grey-800);
}

.picker-search {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.picker-search:focus {
  outline: none;
  border-color: var(--teal);
}

.picker-list {
  max-height: 50vh;
  overflow-y: auto;
}

.picker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}

.picker-item:hover {
  background: var(--grey-100);
}

.picker-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.picker-item-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.picker-item-info {
  flex: 1;
}

.picker-item-title {
  font-weight: 500;
  color: var(--grey-800);
}

.picker-item-cuisine {
  font-size: 0.8rem;
  color: var(--grey-400);
}

/* ===== Image Upload ===== */
.upload-area {
  position: relative;
  border: 2px dashed var(--grey-300);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
  cursor: pointer;
}

.upload-area:hover,
.upload-area:focus-within {
  border-color: var(--teal);
}

.upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  color: var(--grey-500);
}

.upload-icon {
  font-size: 1.5rem;
}

.upload-text {
  font-size: 0.85rem;
}

.upload-preview {
  position: relative;
}

.upload-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.upload-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.upload-remove:hover {
  background: rgba(0,0,0,0.8);
}
