/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --primary-red: #b30000;
  --primary-dark: #8a0000;
  --primary-light: #ff3333;
  --secondary-blue: #0066cc;
  --accent-green: #2e7d32;
  --accent-orange: #f57c00;
  --accent-purple: #9c27b0;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #757575;
  --black: #212121;
  
  /* Backgrounds */
  --bg-light: #ffffff;
  --bg-card: #f9f9f9;
  --bg-dark: #2c3e50;
  
  /* Typography */
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-dyslexia: 'OpenDyslexic', 'Comic Sans MS', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-round: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
  --shadow-xl: 0 12px 24px rgba(0,0,0,0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-toolbar: 1000;
  --z-modal: 2000;
  --z-dropdown: 3000;
}

/* High Contrast Mode */
body.high-contrast {
  --primary-red: #ff0000;
  --white: #000000;
  --black: #ffffff;
  --light-gray: #222222;
  --medium-gray: #444444;
  --bg-light: #000000;
  --bg-card: #111111;
  color: #ffffff;
}

/* Dark Mode */
body.dark-mode {
  --bg-light: #1a1a1a;
  --bg-card: #2d2d2d;
  --white: #e0e0e0;
  --black: #ffffff;
  --light-gray: #333333;
  --medium-gray: #444444;
  --dark-gray: #aaaaaa;
  background-color: #121212;
  color: #e0e0e0;
}

/* Dyslexia Font */
body.dyslexia-font {
  font-family: var(--font-dyslexia);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* Base Body Styles */
body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--black);
  line-height: 1.6;
  min-height: 100vh;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  font-size: 16px;
}

/* Increased Font Size */
body.large-font {
  font-size: 18px;
}

body.xlarge-font {
  font-size: 20px;
}

/* Accessibility Toolbar */
.accessibility-toolbar {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: var(--spacing-sm);
  z-index: var(--z-toolbar);
  border: 2px solid var(--medium-gray);
}

.access-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background: var(--white);
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 1.2rem;
}

.access-btn:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: scale(1.1);
}

.access-btn:active {
  transform: scale(0.95);
}

/* Container */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: var(--spacing-md);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== HEADER STYLES ===== */
.header {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path fill="white" d="M50,0 Q75,25 50,50 Q25,75 0,50 Q25,25 50,0 Z"/></svg>');
  background-size: 150px;
  opacity: 0.1;
}

.logo-section {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.logo i {
  font-size: 3rem;
  color: var(--white);
}

.logo h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.highlight {
  color: #ffcc00;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.datetime-display {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.current-date, .current-time {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.meal-status {
  background: var(--accent-green);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.countdown-container {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  max-width: 500px;
  margin: 0 auto;
}

.countdown-label {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
  opacity: 0.9;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 2.5rem;
  font-weight: 700;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  min-width: 80px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown-item small {
  font-size: 0.8rem;
  display: block;
  margin-top: var(--spacing-xs);
  opacity: 0.8;
}

.countdown-separator {
  color: #ffcc00;
  font-weight: 800;
}

/* ===== MAIN CONTENT LAYOUT ===== */
.main-content {
  display: grid;
  grid-template-columns: 300px 1fr 350px;
  gap: var(--spacing-xl);
  flex: 1;
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 1400px) {
  .main-content {
    grid-template-columns: 280px 1fr;
  }
  .right-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
  }
}

/* ===== LEFT PANEL STYLES ===== */
.left-panel {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.stats-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--primary-red);
}

.stats-card h3 {
  color: var(--primary-red);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--dark-gray);
  margin-top: var(--spacing-xs);
}

.selection-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.selection-section h2 {
  color: var(--primary-red);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.day-button {
  padding: var(--spacing-lg);
  border: none;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.day-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.day-button.active {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.day-button.today {
  background: var(--accent-orange);
  color: var(--white);
  border: 3px solid #ffcc00;
}

.day-button .date {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: var(--spacing-xs);
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.action-btn {
  padding: var(--spacing-lg);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.today-btn {
  background: linear-gradient(135deg, var(--accent-orange), #ff9800);
  color: var(--white);
}

.tomorrow-btn {
  background: linear-gradient(135deg, var(--secondary-blue), #2196f3);
  color: var(--white);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.filter-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.filter-section h3 {
  color: var(--primary-red);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.filter-btn {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--medium-gray);
  background: var(--white);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.filter-btn.active {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

.filter-btn:hover:not(.active) {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.allergen-legend {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.allergen-legend h3 {
  color: var(--primary-red);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

.allergen-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.allergen-number {
  width: 24px;
  height: 24px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
}

/* ===== CENTER PANEL STYLES ===== */
.center-panel {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.selected-day-header {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-bottom: 5px solid var(--primary-red);
}

.selected-day-header h2 {
  color: var(--primary-red);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.day-meta {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  color: var(--dark-gray);
  font-size: 1.1rem;
}

.day-type {
  background: var(--accent-green);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-md);
}

.meal-sections {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.empty-state {
  text-align: center;
  padding: var(--spacing-xxl);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  color: var(--dark-gray);
}

.empty-state i {
  color: var(--medium-gray);
  margin-bottom: var(--spacing-lg);
}

.meal-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.meal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--medium-gray);
}

.meal-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 1.8rem;
  color: var(--primary-red);
}

.meal-time {
  background: var(--primary-red);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.dish-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.dish-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  border-left: 4px solid var(--primary-red);
}

.dish-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.dish-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
}

.dish-actions {
  display: flex;
  gap: var(--spacing-sm);
}

.favorite-btn {
  background: none;
  border: none;
  color: var(--medium-gray);
  cursor: pointer;
  font-size: 1.3rem;
  transition: all var(--transition-fast);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
}

.favorite-btn:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4444;
}

.favorite-btn.active {
  color: #ff4444;
}

.allergen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

.allergen-tag {
  background: rgba(179, 0, 0, 0.1);
  color: var(--primary-red);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.vegetarian-badge {
  background: var(--accent-green);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: var(--spacing-sm);
}

.nutrition-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.nutrition-card h3 {
  color: var(--primary-red);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.nutrition-bars {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.nutrition-item {
  display: grid;
  grid-template-columns: 120px 1fr 80px;
  align-items: center;
  gap: var(--spacing-md);
}

.nutrition-label {
  font-weight: 600;
  color: var(--dark-gray);
}

.nutrition-bar {
  height: 12px;
  background: var(--medium-gray);
  border-radius: 6px;
  overflow: hidden;
}

.nutrition-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
  border-radius: 6px;
  transition: width 1s ease;
}

.nutrition-value {
  text-align: right;
  font-weight: 600;
  color: var(--primary-red);
}

/* ===== RIGHT PANEL STYLES ===== */
.right-panel {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.gallery-section, .video-section, .info-section, .favorites-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.gallery-section h3, .video-section h3, .info-section h3, .favorites-section h3 {
  color: var(--primary-red);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: var(--spacing-sm);
  font-size: 0.8rem;
  text-align: center;
}

.gallery-btn, .video-btn {
  width: 100%;
  padding: var(--spacing-md);
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  transition: all var(--transition-normal);
}

.gallery-btn:hover, .video-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.video-container {
  background: var(--black);
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.video-placeholder {
  text-align: center;
  color: var(--white);
}

.video-placeholder i {
  font-size: 4rem;
  margin-bottom: var(--spacing-sm);
  opacity: 0.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.info-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.info-item i {
  color: var(--primary-red);
  font-size: 1.2rem;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--black);
}

.info-item p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.4;
}

.favorites-list {
  min-height: 150px;
}

.empty-favorites {
  text-align: center;
  color: var(--dark-gray);
  padding: var(--spacing-lg);
  font-style: italic;
}

.favorite-dish {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  border-left: 3px solid var(--primary-red);
}

.favorite-dish-name {
  font-weight: 600;
}

.favorite-dish-day {
  font-size: 0.8rem;
  color: var(--dark-gray);
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.small-modal {
  max-width: 500px;
}

.close-modal {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  font-size: 2rem;
  color: var(--primary-red);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  transition: all var(--transition-fast);
}

.close-modal:hover {
  background: rgba(179, 0, 0, 0.1);
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.modal-gallery .gallery-item {
  aspect-ratio: 4/3;
}

/* ===== FOOTER STYLES ===== */
.footer {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.footer-logo i {
  font-size: 2.5rem;
  color: var(--primary-light);
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: flex-end;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 1.2rem;
}

.social-btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.version {
  margin-top: var(--spacing-xs);
}

/* ===== FORM STYLES ===== */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  color: var(--black);
}

.form-group select, .form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--black);
}

.form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

.submit-btn {
  width: 100%;
  padding: var(--spacing-lg);
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Add to style.css */
.day-short {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}

.day-date {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1;
}

/* ===== PRINT STYLES ===== */
@media print {
  .accessibility-toolbar,
  .right-panel,
  .footer,
  .action-buttons,
  .filter-section,
  .favorites-section,
  .nutrition-card,
  .countdown-container,
  .meal-status {
    display: none !important;
  }
  
  .main-content {
    grid-template-columns: 1fr !important;
  }
  
  .header {
    background: none !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .day-button, .dish-item {
    break-inside: avoid;
  }
  
  body {
    font-size: 12pt !important;
    color: black !important;
    background: white !important;
  }
}