:root {
  --cream: #FFF9F0;
  --orange: #FF6B35;
  --orange-light: #FF8C5A;
  --orange-glow: rgba(255, 107, 53, 0.2);
  --sage: #7CB342;
  --sage-light: #9CCC65;
  --charcoal: #2D3436;
  --charcoal-light: #636E72;
  --white: #FFFFFF;
  --shadow: rgba(45, 52, 54, 0.08);
  --shadow-md: rgba(45, 52, 54, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #FFE4D6 0%, #FFF9F0 50%, #E8F5E9 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.app-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.phone-frame {
  background: var(--cream);
  border-radius: 40px;
  box-shadow: 
    0 25px 80px rgba(45, 52, 54, 0.15),
    0 10px 30px rgba(45, 52, 54, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  min-height: 85vh;
  max-height: 900px;
  position: relative;
}

@media (max-width: 480px) {
  body {
    padding: 0;
    background: var(--cream);
  }
  
  .phone-frame {
    border-radius: 0;
    min-height: 100vh;
    max-height: none;
    box-shadow: none;
  }
}

.screen {
  min-height: 85vh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: fadeIn 0.3s ease;
}

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

/* Progress Dots */
.progress-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E0E0E0;
  transition: all 0.3s ease;
}

.progress-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

/* Buttons */
.btn {
  padding: 16px 32px;
  border-radius: 16px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: white;
  box-shadow: 0 4px 15px var(--orange-glow);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--orange-glow);
}

.btn-primary:active:not(:disabled) {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px var(--shadow);
}

.icon-btn:hover {
  transform: scale(1.05);
}

/* Chips */
.chip {
  padding: 10px 16px;
  border-radius: 20px;
  border: 2px solid #E8E8E8;
  background: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.chip:hover {
  border-color: var(--orange-light);
}

.chip.selected {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 2px 10px var(--orange-glow);
}

.chip.large {
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 24px;
}

/* Onboarding */
.onboarding-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.welcome-step {
  justify-content: center;
  text-align: center;
}

.welcome-icon {
  font-size: 80px;
  margin-bottom: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.welcome-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.welcome-subtitle {
  font-size: 16px;
  color: var(--charcoal-light);
  margin-bottom: 32px;
}

.name-input-wrapper {
  width: 100%;
  max-width: 280px;
}

.name-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E8E8E8;
  border-radius: 16px;
  font-family: inherit;
  font-size: 16px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.name-input:focus {
  outline: none;
  border-color: var(--orange);
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 24px;
  text-align: center;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* Dislikes Input */
.dislikes-input-wrapper {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-bottom: 16px;
}

.dislikes-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #E8E8E8;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
}

.dislikes-input:focus {
  outline: none;
  border-color: var(--orange);
}

.add-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: var(--orange);
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.dislikes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  min-height: 36px;
}

.dislike-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #FFEBE3;
  border-radius: 20px;
  font-size: 14px;
  color: var(--charcoal);
}

.remove-tag {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
}

.suggestions-label {
  font-size: 13px;
  color: var(--charcoal-light);
  margin-bottom: 12px;
  text-align: center;
}

/* Skill Cards */
.skill-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.skill-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 2px solid #E8E8E8;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.skill-card:hover {
  border-color: var(--orange-light);
}

.skill-card.selected {
  border-color: var(--orange);
  background: #FFF5F0;
  box-shadow: 0 4px 15px var(--orange-glow);
}

.skill-emoji {
  font-size: 32px;
}

.skill-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}

.skill-desc {
  font-size: 14px;
  color: var(--charcoal-light);
}

/* Equipment */
.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.equipment-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: white;
  border-radius: 16px;
  border: 2px solid #E8E8E8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.equipment-item.checked {
  border-color: var(--sage);
  background: #F1F8E9;
}

.eq-label {
  font-size: 16px;
  font-weight: 500;
}

.toggle {
  width: 52px;
  height: 28px;
  background: #E0E0E0;
  border-radius: 14px;
  position: relative;
  transition: background 0.2s ease;
}

.toggle.on {
  background: var(--sage);
}

.toggle-knob {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 12px;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.toggle.on .toggle-knob {
  transform: translateX(24px);
}

/* Bottom Action */
.bottom-action {
  padding-top: 24px;
  margin-top: auto;
}

.bottom-action .btn {
  width: 100%;
}

.fixed-bottom {
  position: sticky;
  bottom: 0;
  background: linear-gradient(transparent, var(--cream) 20%);
  padding: 24px 0;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

/* Home Screen */
.home-screen {
  padding-bottom: 100px;
}

.home-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.greeting h1 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

.greeting p {
  font-size: 14px;
  color: var(--charcoal-light);
  margin-top: 4px;
}

.avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.scan-section {
  margin-bottom: 32px;
}

.scan-btn {
  width: 100%;
  padding: 24px;
  font-size: 18px;
}

.use-last-scan {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 8px;
  background: none;
  border: none;
  color: var(--charcoal-light);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.selection-section {
  margin-bottom: 24px;
}

.selection-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.horizontal-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  -webkit-overflow-scrolling: touch;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

/* Scan Screen */
.scan-screen.scanning {
  justify-content: center;
  align-items: center;
}

.scan-animation {
  text-align: center;
}

.scan-frame {
  width: 200px;
  height: 200px;
  border: 4px solid var(--orange);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin: 0 auto 24px;
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: scan 1.5s infinite;
}

@keyframes scan {
  0% { top: 0; }
  50% { top: calc(100% - 4px); }
  100% { top: 0; }
}

.scan-text {
  font-size: 18px;
  color: var(--charcoal);
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.screen-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.screen-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 100px;
}

.ingredient-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow);
  position: relative;
}

.ing-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.ing-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
}

.remove-ing {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #FFE4E4;
  color: #E53935;
  font-size: 14px;
  cursor: pointer;
}

.add-ingredient-card {
  background: #F5F5F5;
  border: 2px dashed #D0D0D0;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.add-ingredient-card:hover {
  border-color: var(--orange);
  background: #FFF5F0;
}

.add-ingredient-card span:first-child {
  font-size: 24px;
  color: var(--charcoal-light);
}

.add-ingredient-card span:last-child {
  font-size: 12px;
  color: var(--charcoal-light);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  animation: fadeIn 0.2s ease;
}

.modal {
  background: white;
  border-radius: 24px 24px 0 0;
  padding: 24px;
  max-height: 60vh;
  width: 100%;
  max-width: 430px;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

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

.modal h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin-bottom: 16px;
}

.add-ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.add-ing-item {
  padding: 10px 16px;
  background: #F5F5F5;
  border: none;
  border-radius: 20px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-ing-item:hover {
  background: #FFE4D6;
}

/* Loading Screen */
.loading-screen {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.loading-initial {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.loading-initial h1 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--charcoal);
  margin-top: 16px;
}

.logo-animation {
  font-size: 64px;
  animation: bounce 1s infinite;
}

.loading-animation {
  margin-bottom: 32px;
}

.pot {
  width: 80px;
  height: 60px;
  background: linear-gradient(180deg, #666 0%, #444 100%);
  border-radius: 0 0 40px 40px;
  margin: 0 auto;
  position: relative;
}

.pot::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -10px;
  right: -10px;
  height: 12px;
  background: #555;
  border-radius: 4px;
}

.steam {
  position: absolute;
  width: 8px;
  height: 20px;
  background: rgba(255,255,255,0.6);
  border-radius: 4px;
  top: -30px;
  left: 20px;
  animation: steam 1s infinite;
}

.steam.s2 {
  left: 36px;
  animation-delay: 0.3s;
}

.steam.s3 {
  left: 52px;
  animation-delay: 0.6s;
}

@keyframes steam {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
}

.loading-message {
  font-size: 16px;
  color: var(--charcoal-light);
  margin-bottom: 24px;
  min-height: 24px;
}

.loading-bar {
  width: 200px;
  height: 6px;
  background: #E0E0E0;
  border-radius: 3px;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
  animation: loading 4s linear;
}

@keyframes loading {
  from { width: 0; }
  to { width: 100%; }
}

/* Recipe List */
.recipe-list-screen {
  padding-bottom: 24px;
}

.header-content {
  flex: 1;
}

.header-tags {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.tag {
  font-size: 12px;
  padding: 4px 10px;
  background: #FFE4D6;
  border-radius: 12px;
  color: var(--charcoal);
}

.recipe-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recipe-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: left;
  width: 100%;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--shadow-md);
}

.recipe-image {
  height: 160px;
  overflow: hidden;
}

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

.recipe-info {
  padding: 16px;
}

.recipe-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.recipe-meta {
  display: flex;
  gap: 12px;
}

.time-badge, .difficulty-badge {
  font-size: 13px;
  color: var(--charcoal-light);
}

/* Recipe Detail */
.recipe-detail-screen {
  padding: 0;
  padding-bottom: 100px;
}

.recipe-hero {
  height: 280px;
  position: relative;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 50%);
}

.back-btn, .save-btn {
  background: rgba(255,255,255,0.9) !important;
}

.save-btn.saved {
  background: #FFE4E4 !important;
}

.recipe-content {
  padding: 24px;
  margin-top: -24px;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  position: relative;
}

.recipe-content h1 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.recipe-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.recipe-badges span {
  font-size: 14px;
  color: var(--charcoal-light);
  background: white;
  padding: 6px 12px;
  border-radius: 12px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: #F5F5F5;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

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

/* Ingredients List */
.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ingredient-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: white;
  border-radius: 12px;
  cursor: pointer;
}

.ingredient-item.checked .ing-text {
  text-decoration: line-through;
  color: var(--charcoal-light);
}

.ingredient-item input {
  display: none;
}

.ing-text {
  font-size: 15px;
  color: var(--charcoal);
}

.ing-sub {
  font-size: 12px;
  color: var(--charcoal-light);
  font-style: italic;
}

/* Steps List */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 16px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 8px;
}

.step-timer {
  display: inline-block;
  padding: 4px 10px;
  background: #E3F2FD;
  border-radius: 8px;
  font-size: 12px;
  color: #1976D2;
  margin-right: 8px;
}

.step-tip {
  padding: 10px 14px;
  background: #FFF3E0;
  border-radius: 10px;
  font-size: 13px;
  color: #E65100;
  margin-top: 8px;
}

/* Cooking Mode */
.cooking-mode-screen {
  background: var(--charcoal);
  color: white;
  padding: 0;
}

.cooking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.exit-cooking {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.step-indicator {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.progress-bar-container {
  height: 4px;
  background: rgba(255,255,255,0.1);
}

.progress-bar-fill {
  height: 100%;
  background: var(--orange);
  transition: width 0.3s ease;
}

.cooking-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 32px;
  text-align: center;
}

.cooking-step-text {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.timer-section {
  margin-bottom: 24px;
}

.start-timer-btn {
  padding: 16px 32px;
  background: var(--orange);
  border: none;
  border-radius: 16px;
  color: white;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.timer-display {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timer-ring {
  position: absolute;
  inset: 0;
  border: 4px solid var(--orange);
  border-radius: 50%;
  animation: timerPulse 1s infinite;
}

@keyframes timerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.timer-display.complete .timer-ring {
  border-color: var(--sage);
  animation: none;
}

.timer-value {
  font-size: 32px;
  font-weight: 600;
}

.cooking-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.timer-alert {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation: fadeIn 0.2s ease;
}

.alert-content {
  background: var(--sage);
  padding: 32px 48px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: bounce 0.5s ease;
}

.alert-emoji {
  font-size: 48px;
}

.alert-content span:last-child {
  font-size: 20px;
  font-weight: 600;
}

.cooking-nav {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(0,0,0,0.3);
}

.nav-btn {
  flex: 1;
  padding: 16px;
  border: none;
  border-radius: 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-btn.prev {
  background: rgba(255,255,255,0.1);
  color: white;
}

.nav-btn.prev:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-btn.next {
  background: var(--orange);
  color: white;
}

.nav-btn.finish {
  background: var(--sage);
  color: white;
}

/* Profile Screen */
.profile-screen {
  padding-bottom: 60px;
}

.profile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-avatar-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 12px;
}

.profile-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.profile-sections {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-section {
  background: white;
  border-radius: 16px;
  padding: 16px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.section-header span {
  font-weight: 600;
  font-size: 14px;
}

.edit-btn {
  background: none;
  border: none;
  color: var(--orange);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

.profile-section p {
  font-size: 14px;
  color: var(--charcoal-light);
}

.saved-recipes-section {
  width: 100%;
  margin-top: 24px;
}

.saved-recipes-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.saved-recipes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.saved-recipe-thumb {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-align: left;
}

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

.saved-recipe-thumb span {
  display: block;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.profile-footer {
  margin-top: auto;
  padding-top: 32px;
  text-align: center;
}

.profile-footer a {
  font-size: 13px;
  color: var(--charcoal-light);
  text-decoration: none;
}

.profile-footer a:hover {
  color: var(--orange);
}