/* ============================================
   PÁGINA DE DETALLE DE RESTAURANTE
   Diseño completo inspirado en TheFork
   ============================================ */

/* Variables */
:root {
  --restaurant-primary: #0A1C2F;
  --restaurant-accent: #F6A702;
  --restaurant-text: #1F2937;
  --restaurant-text-light: #6B7280;
  --restaurant-bg: #FFFFFF;
  --restaurant-bg-light: #F9FAFB;
  --restaurant-border: #E5E7EB;
  --restaurant-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --restaurant-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Header visible - usar el header de home */

.restaurant-detail-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: white;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Body padding-top manejado por user.css para el header sticky */

/* Container principal */
.restaurant-detail-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
}

.restaurant-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .restaurant-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* ============================================
   CABECERA MINIMALISTA
   ============================================ */
.restaurant-header-section {
  margin-bottom: 32px;
}

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

.restaurant-header-left {
  flex: 1;
  min-width: 300px;
}

.restaurant-name-large {
  font-size: 42px;
  font-weight: 700;
  color: var(--restaurant-primary);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.restaurant-header-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #6B7280;
}

.restaurant-header-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.restaurant-header-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--restaurant-primary);
  flex-shrink: 0;
}

.restaurant-header-info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.restaurant-header-info-row span {
  font-size: 16px;
  font-weight: 500;
  color: var(--restaurant-primary);
}

.restaurant-header-info-row .separator {
  color: #9CA3AF;
}

.restaurant-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.restaurant-rating-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--restaurant-primary) 0%, #1a3a5a 100%);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.restaurant-rating-content {
  text-align: center;
}

.restaurant-rating-score {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.restaurant-rating-score svg {
  width: 24px;
  height: 24px;
  fill: var(--restaurant-accent);
  color: var(--restaurant-accent);
}

.restaurant-rating-number {
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.restaurant-rating-count {
  font-size: 12px;
  color: #D1D5DB;
}

.restaurant-header-actions {
  display: flex;
  gap: 8px;
}

.restaurant-action-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.restaurant-action-btn:hover {
  border-color: var(--restaurant-primary);
  background: rgba(10, 28, 47, 0.05);
}

.restaurant-action-btn.heart:hover {
  border-color: #EF4444;
  background: #FEF2F2;
}

.restaurant-action-btn svg {
  width: 20px;
  height: 20px;
  color: var(--restaurant-primary);
}

.restaurant-action-btn.heart svg {
  color: #EF4444;
}

/* ============================================
   GALERÍA DE FOTOS
   ============================================ */
.restaurant-gallery-section {
  margin-bottom: 48px;
}

.restaurant-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.restaurant-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.restaurant-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.restaurant-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.restaurant-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.restaurant-gallery-item:hover img {
  transform: scale(1.05);
}

.restaurant-gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}

.restaurant-gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.restaurant-gallery-view-all {
  background: linear-gradient(135deg, var(--restaurant-primary) 0%, #1a3a5a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  text-align: center;
}

.restaurant-gallery-view-all:hover {
  background: linear-gradient(135deg, #1a3a5a 0%, var(--restaurant-primary) 100%);
}

.restaurant-gallery-view-all-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.restaurant-gallery-view-all:hover .restaurant-gallery-view-all-icon {
  background: rgba(255, 255, 255, 0.2);
}

.restaurant-gallery-view-all-icon svg {
  width: 24px;
  height: 24px;
}

.restaurant-gallery-view-all-text {
  font-weight: 600;
  font-size: 14px;
}

.restaurant-gallery-view-all-count {
  font-size: 12px;
  color: #D1D5DB;
}

/* ============================================
   MENÚ CON TABS
   ============================================ */
.restaurant-menu-section {
  margin-bottom: 48px;
}

.restaurant-section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--restaurant-primary);
  margin: 0 0 24px 0;
}

.restaurant-menu-container {
  border: 1px solid var(--restaurant-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.restaurant-menu-tabs {
  display: flex;
  overflow-x: auto;
  background: #F9FAFB;
  border-bottom: 1px solid var(--restaurant-border);
}

.restaurant-menu-tab {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  color: #6B7280;
  position: relative;
}

.restaurant-menu-tab:hover {
  color: var(--restaurant-primary);
  background: white;
}

.restaurant-menu-tab.active {
  color: var(--restaurant-primary);
  background: white;
  border-bottom-color: var(--restaurant-primary);
}

.restaurant-menu-content {
  padding: 24px;
  background: white;
}

.restaurant-menu-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.restaurant-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.restaurant-menu-item:hover {
  background: #F9FAFB;
  border-color: var(--restaurant-border);
}

.restaurant-menu-item-info {
  flex: 1;
}

.restaurant-menu-item-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--restaurant-primary);
  margin: 0 0 4px 0;
  transition: color 0.2s;
}

.restaurant-menu-item:hover .restaurant-menu-item-name {
  color: var(--restaurant-accent);
}

.restaurant-menu-item-desc {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.restaurant-menu-item-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--restaurant-primary);
  margin-left: 24px;
  white-space: nowrap;
}

.restaurant-menu-footer {
  padding: 16px 24px;
  background: #F9FAFB;
  border-top: 1px solid var(--restaurant-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.restaurant-menu-footer-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #6B7280;
  flex-wrap: wrap;
}

.restaurant-menu-footer-info svg {
  width: 16px;
  height: 16px;
  color: var(--restaurant-primary);
}

.restaurant-menu-footer-separator {
  color: #9CA3AF;
}

.restaurant-menu-footer-btn {
  padding: 8px 16px;
  border: 1px solid var(--restaurant-primary);
  border-radius: 6px;
  background: white;
  color: var(--restaurant-primary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.restaurant-menu-footer-btn:hover {
  background: var(--restaurant-primary);
  color: white;
}

/* ============================================
   OPINIONES
   ============================================ */
.restaurant-reviews-section {
  margin-bottom: 48px;
}

.restaurant-reviews-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .restaurant-reviews-summary {
    grid-template-columns: auto 1fr;
  }
}

.restaurant-rating-circle {
  display: flex;
  align-items: center;
  gap: 24px;
}

.restaurant-rating-circle-display {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 8px solid var(--restaurant-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.restaurant-rating-circle-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--restaurant-primary);
}

.restaurant-rating-circle-label {
  font-size: 12px;
  color: #6B7280;
}

.restaurant-rating-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.restaurant-rating-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #D1FAE5;
  color: #065F46;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 8px;
}

.restaurant-rating-stars {
  display: flex;
  gap: 4px;
}

.restaurant-rating-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--restaurant-accent);
  color: var(--restaurant-accent);
}

.restaurant-rating-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.restaurant-rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.restaurant-rating-bar-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  width: 112px;
}

.restaurant-rating-bar-progress {
  flex: 1;
  height: 10px;
  background: #E5E7EB;
  border-radius: 9999px;
  overflow: hidden;
}

.restaurant-rating-bar-fill {
  height: 100%;
  background: var(--restaurant-primary);
  border-radius: 9999px;
  transition: width 0.3s;
}

.restaurant-rating-bar-score {
  font-size: 14px;
  font-weight: 600;
  color: var(--restaurant-primary);
  width: 32px;
  text-align: right;
}

.restaurant-reviews-ai-summary {
  padding: 24px;
  background: linear-gradient(135deg, rgba(10, 28, 47, 0.05) 0%, rgba(10, 28, 47, 0.1) 100%);
  border: 1px solid rgba(10, 28, 47, 0.2);
  border-radius: 12px;
  margin-bottom: 24px;
}

.restaurant-reviews-ai-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.restaurant-reviews-ai-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--restaurant-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.restaurant-reviews-ai-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
  color: white;
}

.restaurant-reviews-ai-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--restaurant-primary);
  margin: 0 0 8px 0;
}

.restaurant-reviews-ai-content p {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.restaurant-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.restaurant-review-card {
  padding: 20px;
  border: 1px solid var(--restaurant-border);
  border-radius: 12px;
  background: white;
  transition: box-shadow 0.2s;
}

.restaurant-review-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.restaurant-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.restaurant-review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.restaurant-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--restaurant-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.restaurant-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.restaurant-review-user-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--restaurant-primary);
  margin: 0 0 4px 0;
}

.restaurant-review-user-info p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

.restaurant-review-rating {
  text-align: right;
}

.restaurant-review-rating-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--restaurant-primary);
}

.restaurant-review-rating-label {
  font-size: 12px;
  color: #6B7280;
}

.restaurant-review-text {
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.6;
}

.restaurant-review-actions {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.restaurant-review-action {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6B7280;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
}

.restaurant-review-action:hover {
  color: var(--restaurant-primary);
}

.restaurant-review-action.report:hover {
  color: #EF4444;
}

.restaurant-review-action svg {
  width: 16px;
  height: 16px;
}

.restaurant-reviews-view-all {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid var(--restaurant-primary);
  border-radius: 8px;
  background: white;
  color: var(--restaurant-primary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.restaurant-reviews-view-all:hover {
  background: var(--restaurant-primary);
  color: white;
}

/* ============================================
   UBICACIÓN
   ============================================ */
.restaurant-location-section {
  margin-bottom: 48px;
}

.restaurant-location-map {
  width: 100%;
  height: 256px;
  background: #E5E7EB;
  border-radius: 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.restaurant-location-map svg {
  width: 48px;
  height: 48px;
  color: #9CA3AF;
}

.restaurant-location-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.restaurant-location-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #374151;
  font-weight: 600;
}

.restaurant-location-address svg {
  width: 20px;
  height: 20px;
  color: var(--restaurant-primary);
}

.restaurant-location-details {
  font-size: 14px;
  color: #6B7280;
  margin-left: 28px;
}

/* ============================================
   HORARIOS
   ============================================ */
.restaurant-hours-section {
  margin-bottom: 48px;
}

.restaurant-hours-container {
  border: 1px solid var(--restaurant-border);
  border-radius: 16px;
  padding: 16px;
  background: #F9FAFB;
}

.restaurant-hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.restaurant-hours-item:hover {
  background: white;
}

.restaurant-hours-day {
  display: flex;
  align-items: center;
  gap: 12px;
}

.restaurant-hours-day-name {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  width: 96px;
}

.restaurant-hours-day-name.today {
  color: var(--restaurant-primary);
}

.restaurant-hours-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--restaurant-primary);
  color: white;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.restaurant-hours-times {
  font-size: 14px;
  color: #6B7280;
}

/* ============================================
   SERVICIOS Y CARACTERÍSTICAS (ACORDEÓN)
   ============================================ */
.restaurant-services-section {
  margin-bottom: 48px;
}

.restaurant-accordion {
  border: 1px solid var(--restaurant-border);
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.restaurant-accordion-item {
  border-bottom: 1px solid var(--restaurant-border);
}

.restaurant-accordion-item:last-child {
  border-bottom: none;
}

.restaurant-accordion-trigger {
  width: 100%;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.restaurant-accordion-trigger:hover {
  background: #F9FAFB;
}

.restaurant-accordion-trigger-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.restaurant-accordion-trigger-content svg {
  width: 20px;
  height: 20px;
  color: var(--restaurant-primary);
}

.restaurant-accordion-trigger-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--restaurant-primary);
}

.restaurant-accordion-trigger-icon {
  width: 20px;
  height: 20px;
  color: #6B7280;
  transition: transform 0.2s;
}

.restaurant-accordion-item.active .restaurant-accordion-trigger-icon {
  transform: rotate(180deg);
}

.restaurant-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.restaurant-accordion-item.active .restaurant-accordion-content {
  max-height: 500px;
}

.restaurant-accordion-content-inner {
  padding: 0 24px 16px 24px;
}

.restaurant-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
}

.restaurant-accordion-item-text {
  font-size: 14px;
  color: #374151;
}

/* ============================================
   WIDGET DE RESERVAS (WIZARD)
   ============================================ */
.restaurant-booking-widget {
  position: sticky;
  top: 96px;
}

.restaurant-booking-card {
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--restaurant-primary);
  border-radius: 16px;
  background: white;
}

.restaurant-booking-header {
  background: linear-gradient(135deg, var(--restaurant-primary) 0%, #1a3a5a 100%);
  padding: 24px;
  color: white;
}

.restaurant-booking-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.restaurant-booking-header p {
  font-size: 14px;
  color: #D1D5DB;
  margin: 0;
}

.restaurant-booking-progress {
  padding: 24px 24px 0 24px;
}

.restaurant-booking-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.restaurant-booking-step {
  display: flex;
  align-items: center;
  flex: 1;
}

.restaurant-booking-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}

.restaurant-booking-step-circle.active {
  background: var(--restaurant-primary);
  color: white;
}

.restaurant-booking-step-circle.inactive {
  background: #E5E7EB;
  color: #6B7280;
}

.restaurant-booking-step-line {
  flex: 1;
  height: 2px;
  margin: 0 8px;
  border-radius: 1px;
  transition: background 0.2s;
}

.restaurant-booking-step-line.active {
  background: var(--restaurant-primary);
}

.restaurant-booking-step-line.inactive {
  background: #E5E7EB;
}

.restaurant-booking-content {
  padding: 0 24px 24px 24px;
}

.restaurant-booking-step-content {
  display: none;
}

.restaurant-booking-step-content.active {
  display: block;
}

.restaurant-booking-step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--restaurant-primary);
  margin: 0 0 16px 0;
}

.restaurant-booking-calendar-container {
  border: 2px solid var(--restaurant-border);
  border-radius: 16px;
  padding: 16px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.restaurant-booking-info-box {
  background: #DBEAFE;
  border: 1px solid #93C5FD;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.restaurant-booking-info-box svg {
  width: 20px;
  height: 20px;
  color: var(--restaurant-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.restaurant-booking-info-box-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--restaurant-primary);
  margin: 0 0 4px 0;
}

.restaurant-booking-info-box-content p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

.restaurant-booking-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.restaurant-booking-time-btn {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.restaurant-booking-time-btn.active {
  background: var(--restaurant-primary);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.restaurant-booking-time-btn.inactive {
  background: #F3F4F6;
  color: #374151;
}

.restaurant-booking-time-btn.inactive:hover {
  background: #E5E7EB;
}

.restaurant-booking-people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.restaurant-booking-people-btn {
  padding: 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.restaurant-booking-people-btn.active {
  background: var(--restaurant-primary);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.restaurant-booking-people-btn.inactive {
  background: #F3F4F6;
  color: #374151;
}

.restaurant-booking-people-btn.inactive:hover {
  background: #E5E7EB;
}

.restaurant-booking-people-btn svg {
  width: 20px;
  height: 20px;
}

.restaurant-booking-offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.restaurant-booking-offer-btn {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 2px solid var(--restaurant-border);
  background: white;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.restaurant-booking-offer-btn.active {
  border-color: var(--restaurant-primary);
  background: rgba(10, 28, 47, 0.05);
}

.restaurant-booking-offer-btn.inactive:hover {
  border-color: #9CA3AF;
}

.restaurant-booking-offer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.restaurant-booking-offer-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--restaurant-primary);
  margin: 0 0 4px 0;
}

.restaurant-booking-offer-info p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.restaurant-booking-offer-badge {
  display: inline-block;
  padding: 4px 8px;
  background: var(--restaurant-accent);
  color: white;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.restaurant-booking-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.restaurant-booking-nav-btn {
  flex: 1;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.restaurant-booking-nav-btn.primary {
  background: var(--restaurant-primary);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.restaurant-booking-nav-btn.primary:hover {
  background: rgba(10, 28, 47, 0.9);
}

.restaurant-booking-nav-btn.secondary {
  background: white;
  color: #374151;
  border: 1px solid #D1D5DB;
}

.restaurant-booking-nav-btn.secondary:hover {
  background: #F9FAFB;
}

.restaurant-booking-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.restaurant-booking-nav-btn svg {
  width: 16px;
  height: 16px;
}

.restaurant-booking-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--restaurant-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.restaurant-booking-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6B7280;
}

.restaurant-booking-footer-item svg {
  width: 16px;
  height: 16px;
  color: var(--restaurant-primary);
}

.restaurant-booking-quick-info {
  margin-top: 24px;
  padding: 24px;
  background: #F9FAFB;
  border: 1px solid var(--restaurant-border);
  border-radius: 12px;
}

.restaurant-booking-quick-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--restaurant-primary);
  margin: 0 0 16px 0;
}

.restaurant-booking-quick-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--restaurant-border);
}

.restaurant-booking-quick-info-item:last-child {
  border-bottom: none;
}

.restaurant-booking-quick-info-label {
  font-size: 14px;
  color: #6B7280;
}

.restaurant-booking-quick-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--restaurant-primary);
}

/* Compatibilidad con sistema existente */
.tab,
.tabRS {
  display: none;
}

.tab.active,
.tabRS.active {
  display: block;
}

.booking-step.tab {
  display: none;
}

.booking-step.tab.active {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .restaurant-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .restaurant-booking-widget {
    position: static;
  }
}

@media (max-width: 768px) {
  .restaurant-name-large {
    font-size: 32px;
  }
  
  .restaurant-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .restaurant-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .restaurant-header-flex {
    flex-direction: column;
  }
  
  .restaurant-header-right {
    align-items: flex-start;
  }
  
  .restaurant-menu-tabs {
    flex-wrap: nowrap;
  }
  
  .restaurant-menu-tab {
    padding: 12px 20px;
    font-size: 13px;
  }
}
