:root {
      --radius: 1.25rem;
    }

    .card {
      border-radius: var(--radius);
      box-shadow: var(--tw-shadow, 0 0 #0000), 0 10px 25px -12px rgba(0, 0, 0, .25);
    }

    .backdrop-blur-support {
      backdrop-filter: saturate(150%) blur(6px);
    }

    .reorder-hint {
      position: absolute;
      top: -10px;
      left: 1rem;
      background: rgb(255 255 255/.9);
      padding: .25rem .6rem;
      border-radius: 9999px;
      font-size: .75rem;
      box-shadow: 0 6px 16px rgba(0, 0, 0, .12)
    }

    .dark .reorder-hint {
      background: rgb(17 24 39/.9);
      color: #fff
    }

    .map-embed {
      width: 100%;
      height: 400px;
      border: 0;
      border-radius: 1rem;
    }

    .rating-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .35rem .6rem;
      border-radius: 9999px;
      border: 1px solid rgb(0 0 0 / .1);
      cursor: pointer;
      transition: all 0.2s;
    }

    .rating-badge:hover {
      background: rgb(0 0 0 / .05);
    }

    .dark .rating-badge:hover {
      background: rgb(255 255 255 / .05);
    }

    /* Gallery specific styles */
    .gallery-row {
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .gallery-row:last-child {
      margin-bottom: 0;
    }

    .gallery-swiper-1,
    .gallery-swiper-2 {
      width: 100%;
      height: auto;
    }

    .gallery-swiper-1 .swiper-slide,
    .gallery-swiper-2 .swiper-slide {
      width: auto;
      flex-shrink: 0;
    }

    .gallery-image-container {
      width: 280px;
      height: 200px;
      border-radius: 1rem;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-image-container:hover {
      transform: scale(1.02);
    }

    .gallery-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-image-container:hover img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-image-container:hover .gallery-overlay {
      opacity: 1;
    }

    @media (max-width: 640px) {
      .gallery-image-container {
        width: 240px;
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .gallery-image-container {
        width: 200px;
        height: 150px;
      }
    }

   /*==================== ENHANCED MODAL ====================*/
.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  width: 90%;
  max-width: 24rem;
  min-height: 8rem;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Dark theme support */
.dark .modal-box {
  background: rgb(24, 24, 27); /* zinc-900 */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.show-modal {
  opacity: 1;
  visibility: visible;
}

.show-modal .modal-box {
  transform: translate(-50%, -50%) scale(1);
}

.modal-title {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600; /* font-semibold */
  text-align: center;
  color: rgb(17, 24, 39); /* gray-900 */
  margin: 0;
  line-height: 1.5;
  padding: 0 1rem;
}

/* Dark theme text color */
.dark .modal-title {
  color: rgb(244, 244, 245); /* zinc-100 */
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  color: rgb(107, 114, 128); /* gray-500 */
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  transition: all 0.2s ease;
}

.close-button:hover {
  background: rgba(0, 0, 0, 0.1);
  color: rgb(75, 85, 99); /* gray-600 */
}

/* Dark theme close button */
.dark .close-button {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(156, 163, 175); /* gray-400 */
}

.dark .close-button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgb(209, 213, 219); /* gray-300 */
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .modal-box {
    width: 95%;
    max-width: 20rem;
    padding: 1.5rem 1rem;
  }

  .modal-title {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}
