:root {
  --primary: #d95f4b;
  --secondary: #f7d8cd;
  --contrast: #ffffff;
  --dark: #111111;
  --muted: #6d6d6d;
  --surface: #fff8f2;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #fff9f4 0%, #f4ece6 100%);
  color: #1c1c1c;
  line-height: 1.75;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.navbar {
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: rgba(17, 17, 17, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.navbar-logo {
  max-width: 42px;
  height: auto;
  border-radius: 0.5rem;
  object-fit: contain;
}

.navbar-scrolled {
  background: rgba(17, 17, 17, 0.92) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.navbar-brand,
.navbar-nav .nav-link {
  color: #fff !important;
}

.navbar-nav .nav-link {
  margin: 0 0.55rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}

.hero {
  min-height: 92vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(50% - 300px);
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.1), transparent 32%), linear-gradient(180deg, rgba(20, 20, 20, 0.36) 0%, rgba(20, 20, 20, 0.78) 100%);
  z-index: 1;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 19, 0.35);
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-text h1 {
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-text .lead {
  font-size: 1.1rem;
  color: #ece0d7;
}

.hero-badges {
  gap: 0.8rem;
}

.hero-badges .badge {
  color: #111;
  font-weight: 500;
  background: #fff;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section.bg-light {
  background: #fbf5ee;
}

h2 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.eyebrow {
  letter-spacing: 0.22em;
  color: var(--primary);
  font-weight: 700;
}

.feature-card,
.about-card,
.card,
.card-body,
.form-control,
textarea {
  border-radius: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(221, 205, 197, 0.45);
  min-height: 320px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.6));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card .card-body {
  position: relative;
  z-index: 1;
  background: transparent;
}

.feature-card h5 {
  font-weight: 700;
}

.feature-card p {
  color: #666;
}

.feature-card-salad,
.feature-card-bravas,
.feature-card-tiramisu {
  background-size: cover;
  background-position: center;
  border: none;
}

.feature-card-salad {
  background-image: url('../imagenes/jpg.jpg');
}

.feature-card-bravas {
  background-image: url('../imagenes/jpg2.jpg');
}

.feature-card-tiramisu {
  background-image: url('../imagenes/tiramisu.jpg');
}

.feature-card-salad h5,
.feature-card-salad p,
.feature-card-bravas h5,
.feature-card-bravas p,
.feature-card-tiramisu h5,
.feature-card-tiramisu p {
  color: #fff;
}

.menu-card {
  overflow: hidden;
}

.menu-card img.card-img-top {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.menu-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.clickable-card {
  cursor: pointer;
  text-decoration: none !important;
  color: inherit;
}

.clickable-card:hover {
  text-decoration: none !important;
}

.carousel-card {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.carousel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65));
}

.carousel-card-body {
  position: relative;
  z-index: 1;
  padding: 3rem;
  color: #fff;
}

.carousel-card-body h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.carousel-card-body p {
  max-width: 680px;
  line-height: 1.6;
}

.section-copy {
  max-width: 640px;
}

.about-card {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.about-card-exterior {
  background-image: url('../imagenes/exterior.jpg');
  background-repeat: no-repeat;
}

.hero.bg-image {
  background-image: url('../imagenes/interior.jpg');
  background-repeat: no-repeat;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78));
}

.about-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
}

.about-content h3,
.about-content p {
  color: #fff;
}

.gallery-card {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.gallery-card img {
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-label {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  border-radius: 1rem;
  font-weight: 600;
}

.gallery-carousel .carousel-inner {
  border-radius: 1.5rem;
}

.gallery-carousel .carousel-item img,
.gallery-carousel .carousel-item video {
  width: 100%;
  object-fit: cover;
  min-height: 420px;
  max-height: 520px;
  display: block;
}

.gallery-carousel .carousel-item video {
  height: auto;
}

.gallery-carousel .carousel-caption {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  left: 1.5rem;
  right: auto;
  bottom: 1.5rem;
}

.gallery-carousel .carousel-caption h5,
.gallery-carousel .carousel-caption p {
  margin: 0;
}

.footer {
  background: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
}

.footer-link {
  color: #f7d8cd;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 18px 38px rgba(217, 95, 75, 0.24);
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #c34d3c;
  border-color: #c34d3c;
  transform: translateY(-1px);
}

.card.border-0.shadow-sm {
  border: none;
  box-shadow: var(--shadow);
}

.card-body {
  background: #ffffff;
}

.card-title {
  margin-bottom: 0.9rem;
}

.card-text {
  color: #5f5f5f;
}

.form-control,
textarea {
  border: 1px solid rgba(176, 153, 138, 0.35);
  background: #fff;
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.05);
}

.form-control:focus,
textarea:focus {
  border-color: rgba(217, 95, 75, 0.75);
  box-shadow: 0 0 0 0.1rem rgba(217, 95, 75, 0.12);
}

.rating-stars {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
  align-items: center;
}

.testimonial-stars-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1.05rem;
}

.testimonial-star {
  display: inline-flex;
  color: rgba(255, 193, 7, 0.35);
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  animation: fadeInStar 0.35s ease forwards;
}

.testimonial-star.filled {
  color: #f7c74a;
}

.testimonial-star.empty {
  color: rgba(255, 193, 7, 0.2);
}

.testimonial-rating-text {
  font-size: 0.95rem;
  color: #6d6d6d;
  font-weight: 600;
}

@keyframes fadeInStar {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.rating-stars input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.rating-star {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f7f2ee;
  border: 1px solid rgba(17, 17, 17, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.rating-star:hover,
.rating-star:hover ~ .rating-star {
  background: #fde6d8;
  border-color: #d95f4b;
  transform: translateY(-1px);
}

.star-icon {
  font-size: 1.2rem;
  color: #cfc4b8;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.rating-stars input:checked ~ label .star-icon,
.rating-star:hover .star-icon {
  color: #d95f4b;
  transform: scale(1.1);
  text-shadow: 0 0 6px rgba(217, 95, 75, 0.25);
}

textarea {
  resize: none;
}

.icon-box {
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(217, 95, 75, 0.12);
}

.hero-badges .badge {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(255, 255, 255, 0.24);
}

.contact-list li {
  margin-bottom: 0.85rem;
  color: #555;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET (1200px - 991px)
   ======================================== */
@media (max-width: 1199px) {
  .section {
    padding: 4rem 0;
  }
  
  .hero-text h1 {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
  }
  
  .carousel-card-body {
    padding: 2.5rem;
  }
  
  .carousel-card-body h3 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  }
}

/* ========================================
   RESPONSIVE DESIGN - TABLET (991px - 768px)
   ======================================== */
@media (max-width: 991px) {
  .hero {
    min-height: 74vh;
  }
  
  .hero-text h1 {
    font-size: clamp(2.8rem, 6vw, 3.4rem);
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-logo {
    max-width: 36px;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .about-card {
    min-height: 360px;
  }
  
  .carousel-card {
    min-height: 360px;
  }
  
  .carousel-card-body {
    padding: 2rem;
  }
  
  .gallery-carousel .carousel-item img {
    min-height: 360px;
    max-height: 420px;
  }
  
  h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
  }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE (768px - 576px)
   ======================================== */
@media (max-width: 767px) {
  .navbar-nav {
    margin-top: 1rem;
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
  
  .navbar-logo {
    max-width: 32px;
  }
  
  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .hero {
    min-height: 75vh;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  
  .hero-video {
    object-position: center center;
    object-fit: cover;
    transform: scale(1.05);
  }
  
  h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }
  
  h5 {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  
  .feature-card {
    min-height: 220px;
  }
  
  .about-card {
    min-height: 280px;
  }
  
  .carousel-card {
    min-height: 300px;
  }
  
  .carousel-card-body {
    padding: 1.5rem;
  }
  
  .carousel-card-body h3 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    margin-bottom: 0.8rem;
  }
  
  .carousel-card-body p {
    font-size: 0.9rem;
  }
  
  .gallery-carousel .carousel-item img {
    min-height: 280px;
    max-height: 350px;
  }
  
  .gallery-carousel .carousel-caption {
    left: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1rem;
  }
  
  .contact-list li {
    font-size: 0.9rem;
  }
  
  .form-control,
  textarea,
  .btn {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
  
  .btn-lg {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
  }
  
  .card-body {
    padding: 1.2rem;
  }
  
  .icon-box {
    min-width: 38px;
    min-height: 38px;
    font-size: 0.9rem;
  }
  
  .eyebrow {
    font-size: 0.7rem;
  }
  
  .table-responsive {
    font-size: 0.85rem;
  }
  
  table.table {
    font-size: 0.8rem;
  }
  
  .table thead th,
  .table td {
    padding: 0.4rem 0.5rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-header {
    padding: 1rem;
  }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE PEQUEÑO (576px)
   ======================================== */
@media (max-width: 575px) {
  .container,
  .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero {
    min-height: 70vh;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }
  
  .hero-video {
    object-position: center center;
    transform: scale(1.08);
  }
  
  .hero-text h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  
  .hero-text .lead {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  
  h3 {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }
  
  h5 {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
  
  .feature-card {
    min-height: 200px;
  }
  
  .carousel-card {
    min-height: 250px;
  }
  
  .carousel-card-body {
    padding: 1.2rem;
  }
  
  .carousel-card-body h3 {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
  }
  
  .about-card {
    min-height: 240px;
  }
  
  .gallery-carousel .carousel-item img {
    min-height: 250px;
    max-height: 300px;
  }
  
  .gallery-carousel .carousel-caption {
    left: 0.8rem;
    bottom: 0.8rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-control,
  textarea {
    padding: 0.5rem 0.8rem;
    font-size: 16px;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.8rem;
  }
  
  .btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .btn-sm {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .card-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .card-text {
    font-size: 0.85rem;
  }
  
  .modal {
    --bs-modal-margin: 0.5rem;
  }
  
  .modal-content {
    border-radius: 1rem;
  }
  
  .modal-header {
    padding: 0.8rem;
  }
  
  .modal-body {
    padding: 0.8rem;
  }
  
  .modal-footer {
    padding: 0.8rem;
  }
  
  .nav-tabs {
    flex-wrap: wrap;
    gap: 0;
  }
  
  .nav-tabs .nav-link {
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
  }
  
  table.table {
    font-size: 0.75rem;
  }
  
  .table thead th,
  .table td {
    padding: 0.3rem 0.25rem;
  }
  
  .pagination {
    flex-wrap: wrap;
  }
  
  .pagination .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  
  .badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }
  
  .alert {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
  
  input[type="range"] {
    width: 100%;
  }
}

/* ========================================
   RESPONSIVE DESIGN - ULTRA MOBILE (480px)
   ======================================== */
@media (max-width: 479px) {
  body {
    font-size: 14px;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 0.95rem;
  }
  
  .section {
    padding: 1.5rem 0;
  }
  
  .hero {
    min-height: 65vh;
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }
  
  .hero-video {
    object-position: center center;
    transform: scale(1.1);
  }
  
  .hero-text h1 {
    font-size: clamp(1.5rem, 9vw, 2.2rem);
  }
  
  h2 {
    font-size: clamp(1.2rem, 6.5vw, 1.6rem);
  }
  
  .form-control,
  textarea {
    font-size: 16px;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .d-flex.gap-3 {
    flex-direction: column;
  }
  
  .row > * {
    margin-bottom: 0.5rem;
  }
}

/* ========================================
   MODAL MENÚ - DISEÑO PREMIUM RESTAURANTE
   ======================================== */
#menuModal .modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #fbf5ee 100%);
  border: 2px solid #ddd;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.2);
}

#menuModal .modal-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: 3px solid var(--primary);
  padding: 2rem 2.5rem;
  position: relative;
}

#menuModal .modal-header::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 2.5rem;
  right: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

#menuModal .modal-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

#menuModal .btn-close-white {
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

#menuModal .btn-close-white:hover {
  transform: scale(1.15) rotate(90deg);
}

#menuModal .nav-tabs {
  background: linear-gradient(90deg, #f8f4f0 0%, #fbf5ee 100%);
  border-bottom: 2px solid #e8dfd5;
  border-radius: 0;
  padding: 1rem 2rem 0;
  gap: 0.5rem;
  flex-wrap: wrap;
}

#menuModal .nav-tabs .nav-link {
  background: transparent;
  border: none;
  color: #666;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

#menuModal .nav-tabs .nav-link:hover {
  color: var(--primary);
  border-bottom-color: rgba(217, 95, 75, 0.3);
  background: rgba(217, 95, 75, 0.05);
}

#menuModal .nav-tabs .nav-link.active {
  background: transparent;
  color: var(--primary);
  border-bottom-color: var(--primary);
  box-shadow: 0 3px 12px rgba(217, 95, 75, 0.15);
}

#menuModal .tab-content {
  background: #ffffff;
  padding: 2rem;
  max-height: 60vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#menuModal .tab-pane {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos para lista de menú */
#menuModal .menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#menuModal .menu-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #fafaf8 0%, #f5eeea 100%);
  border: 1px solid rgba(221, 205, 197, 0.25);
  transition: all 0.25s ease;
  min-height: 72px;
}

#menuModal .menu-item:hover {
  box-shadow: 0 10px 24px rgba(217, 95, 75, 0.12);
  border-color: var(--primary);
  transform: translateY(-1px);
}

#menuModal .menu-item-image {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

#menuModal .menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#menuModal .menu-item-content {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

#menuModal .menu-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 24%;
}

#menuModal .menu-item-description {
  font-size: 0.86rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

#menuModal .menu-item-price {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}

#menuModal .menu-item-price::before {
  content: '💰 ';
  margin-right: 0.3rem;
}

#menuModal .modal-footer {
  background: linear-gradient(90deg, #f8f4f0 0%, #fbf5ee 100%);
  border-top: 2px solid #e8ddf5;
  padding: 1.5rem 2rem;
}

#menuModal .modal-footer small {
  color: #999;
  font-style: italic;
  letter-spacing: 0.3px;
}

#menuModal .modal-footer .btn-outline-secondary {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

#menuModal .modal-footer .btn-outline-secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 95, 75, 0.2);
}

/* Responsive ajustes para modal menu */
@media (max-width: 991px) {
  #menuModal .modal-dialog {
    margin: 1rem;
  }
  
  #menuModal .modal-header {
    padding: 1.5rem 1.5rem;
  }
  
  #menuModal .modal-header::after {
    left: 1.5rem;
    right: 1.5rem;
  }
  
  #menuModal .nav-tabs {
    padding: 0.8rem 1.5rem 0;
  }
  
  #menuModal .tab-content {
    padding: 1.5rem;
  }
  
  #menuModal .menu-item {
    gap: 1.2rem;
    padding: 1rem;
  }
  
  #menuModal .menu-item-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 767px) {
  #menuModal .modal-title {
    font-size: 1.5rem;
  }
  
  #menuModal .nav-tabs {
    padding: 0.6rem 1rem 0;
    gap: 0.3rem;
  }
  
  #menuModal .nav-tabs .nav-link {
    padding: 0.6rem 0.9rem;
    font-size: 0.75rem;
  }
  
  #menuModal .tab-content {
    padding: 1.2rem;
    max-height: 55vh;
  }
  
  #menuModal .menu-items-list {
    gap: 1.2rem;
  }
  
  #menuModal .menu-item {
    gap: 1rem;
    padding: 0.9rem;
  }
  
  #menuModal .menu-item-image {
    width: 90px;
    height: 90px;
  }
  
  #menuModal .menu-item-title {
    font-size: 1rem;
  }
  
  #menuModal .menu-item-description {
    font-size: 0.85rem;
  }
  
  #menuModal .menu-item-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  #menuModal .modal-content {
    border-radius: 1rem;
  }
  
  #menuModal .modal-header {
    padding: 1.2rem 1.2rem;
  }
  
  #menuModal .modal-header::after {
    left: 1.2rem;
    right: 1.2rem;
  }
  
  #menuModal .modal-title {
    font-size: 1.2rem;
  }
  
  #menuModal .tab-content {
    padding: 1rem;
    max-height: 50vh;
  }
  
  #menuModal .menu-items-list {
    gap: 1rem;
  }
  
  #menuModal .menu-item {
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 0.8rem;
  }
  
  #menuModal .menu-item-image {
    width: 80px;
    height: 80px;
  }
  
  #menuModal .menu-item-title {
    font-size: 0.95rem;
  }
  
  #menuModal .menu-item-description {
    font-size: 0.8rem;
    margin: 0 0 0.8rem 0;
  }
  
  #menuModal .menu-item-price {
    font-size: 1rem;
  }
  
  #menuModal .modal-footer {
    padding: 1rem;
  }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .gallery-card:hover {
    transform: none;
  }
  
  button,
  a,
  .clickable-card {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
  }
  
  .btn {
    min-height: 44px;
    padding: 0.6rem 1rem;
  }
  
  .form-control {
    padding: 0.7rem 1rem;
    font-size: 16px;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .navbar,
  .footer,
  .btn,
  button {
    display: none;
  }
  
  .section {
    page-break-inside: avoid;
  }
}
