/* Mobile Styles - La Remolatxa */

@media (max-width: 767px) {
  /* Selector hora prominent */
  .time-selector-wrap {
    background: var(--gradient);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .time-selector-wrap label {
    color: white;
    opacity: 0.9;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .time-selector-wrap select {
    background: white;
    color: #333;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
  }

  /* Cards de dia per mòbil */
  .day-card-mobile {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #dee2e6;
  }

  .day-card-mobile.is-today {
    border-left-color: var(--primary-color);
    background: linear-gradient(to right, var(--primary-alpha-03), white);
  }

  .day-card-mobile.has-reservation {
    border-left-color: var(--secondary-color);
  }

  .day-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
  }

  .day-date-mobile {
    font-weight: 600;
    font-size: 1.1rem;
    color: #212529;
  }

  .day-weekday-mobile {
    font-size: 0.9rem;
    color: #6c757d;
  }

  /* Menú en cards */
  .menu-section-mobile {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .menu-type-mobile {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.5rem;
  }

  .menu-items-mobile {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .menu-items-mobile li {
    padding-left: 0;
    margin-bottom: 0.25rem;
  }

  /* Botons acció */
  .action-buttons-mobile {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .action-buttons-mobile .btn {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Llista persones */
  .people-list-mobile {
    background: #f1f3f5;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.75rem;
    max-height: 150px;
    overflow-y: auto;
    font-size: 0.9rem;
  }

  /* Ocultar taula en mòbil */
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .desktop-only {
    display: block !important;
  }

  .mobile-only {
    display: none !important;
  }
}