/* ===== Restaurant Detail Page ===== */
.restaurant-detail-page {
  padding-top: 0;
}

.rd-main {
  padding-bottom: 4rem;
}

.rd-breadcrumb {
  padding-top: 1rem;
  margin-bottom: 1rem;
}

/* ===== Hero with background image + about ===== */
.rd-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.75rem;
  min-height: clamp(420px, 58vh, 560px);
  box-shadow: 0 20px 50px rgba(28, 28, 28, 0.12);
  isolation: isolate;
  animation: rd-hero-in 0.7s ease both;
}

@keyframes rd-hero-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rd-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rd-gallery-trigger {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  width: 100%;
  display: block;
  overflow: hidden;
}

.rd-gallery-hero {
  position: relative;
  width: 100%;
  height: 380px;
}

.rd-hero .rd-gallery-hero {
  position: absolute;
  inset: 0;
  height: 100%;
}

.rd-gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--ft-transition);
}

.rd-gallery-hero:hover img {
  transform: scale(1.02);
}

.rd-hero .rd-gallery-hero img {
  transform: scale(1.04);
  transition: transform 1.2s ease;
}

.rd-hero:hover .rd-gallery-hero img {
  transform: scale(1.08);
}

.rd-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 14, 12, 0.88) 0%, rgba(18, 14, 12, 0.55) 48%, rgba(18, 14, 12, 0.28) 100%),
    linear-gradient(to top, rgba(18, 14, 12, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.rd-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(420px, 58vh, 560px);
  padding: clamp(1.35rem, 3vw, 2.25rem);
  color: #fff;
  pointer-events: none;
}

.rd-hero-content .rd-header,
.rd-hero-content .rd-action-btn,
.rd-hero-content .rd-social-link,
.rd-hero-content .rd-phone,
.rd-hero-content .rd-hero-gallery-btn,
.rd-hero-content .rd-rating-box {
  pointer-events: auto;
}

.rd-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.rd-hero .rd-header {
  margin-bottom: 0;
}

.rd-hero-eyebrow,
.rd-cuisines {
  color: var(--ft-gray);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.rd-hero .rd-hero-eyebrow,
.rd-hero .rd-cuisines {
  display: inline-block;
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 236, 214, 0.9);
}

.rd-header-info h1 {
  font-family: var(--ft-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ft-dark);
}

.rd-hero .rd-header-info h1 {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  animation: rd-title-in 0.8s 0.1s ease both;
}

@keyframes rd-title-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rd-address {
  color: var(--ft-gray);
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.rd-hero .rd-address {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  max-width: 36rem;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.rd-hero .rd-address i {
  margin-top: 0.15rem;
  color: var(--ft-gold-light);
  flex-shrink: 0;
}

.rd-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--ft-gray);
  margin-bottom: 1rem;
}

.rd-hero .rd-meta {
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.rd-badge-open {
  padding: 0.2rem 0.6rem;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: #fff;
  color: #24963f;
  font-weight: 500;
  font-size: 0.8rem;
}

.rd-hero .rd-badge-open {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.rd-hero .rd-badge-open.is-open {
  background: rgba(46, 168, 79, 0.22);
  border: 1px solid rgba(120, 220, 150, 0.55);
  color: #b8f5c8;
}

.rd-hero .rd-badge-open.is-closed {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.rd-meta-chip,
.rd-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ft-gray);
  text-decoration: none;
}

.rd-hero .rd-meta-chip,
.rd-hero .rd-meta-item {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
}

.rd-meta-sep {
  color: #ddd;
}

.rd-hero .rd-meta-sep {
  display: none;
}

.rd-phone {
  color: var(--ft-accent);
  text-decoration: none;
  font-weight: 500;
}

.rd-phone:hover {
  text-decoration: underline;
}

.rd-hero .rd-phone {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.rd-hero a.rd-phone.rd-meta-chip {
  background: rgba(242, 89, 104, 0.28);
  border-color: rgba(242, 89, 104, 0.55);
}

.rd-hero a.rd-phone.rd-meta-chip:hover {
  background: rgba(242, 89, 104, 0.45);
  color: #fff;
  text-decoration: none;
}

.rd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.rd-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  color: var(--ft-dark);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--ft-transition);
}

.rd-action-btn:hover {
  border-color: var(--ft-accent);
  color: var(--ft-accent);
}

.rd-action-btn i {
  color: var(--ft-accent);
}

.rd-hero .rd-action-btn {
  gap: 0.45rem;
  padding: 0.6rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--ft-transition), border-color var(--ft-transition), transform var(--ft-transition);
}

.rd-hero .rd-action-btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ft-dark);
  transform: translateY(-2px);
}

.rd-hero .rd-action-btn i {
  color: var(--ft-gold-light);
}

.rd-hero .rd-action-btn:hover i {
  color: var(--ft-accent);
}

.rd-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.rd-hero .rd-social {
  margin-top: 1.15rem;
}

.rd-social-label {
  font-size: 0.85rem;
  color: var(--ft-gray);
  font-weight: 500;
}

.rd-hero .rd-social-label {
  color: rgba(255, 255, 255, 0.7);
}

.rd-social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rd-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-gray);
  text-decoration: none;
  font-size: 1.05rem;
  transition: all var(--ft-transition);
  background: #fff;
}

.rd-hero .rd-social-link {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.rd-social-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

.rd-social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.rd-social-instagram:hover {
  background: #e4405f;
  border-color: #e4405f;
}

.rd-social-twitter:hover {
  background: #000;
  border-color: #000;
}

.rd-social-youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.rd-social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.rd-contact-social {
  flex-direction: column;
  align-items: flex-start !important;
  gap: 0.5rem;
  padding-top: 0.5rem !important;
}

.rd-ratings {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
}

.rd-rating-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.85rem;
  background: #24963f;
  border-radius: 8px;
  color: #fff;
}

.rd-hero .rd-rating-box {
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, #2e9d4f, #1f7a38);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(31, 122, 56, 0.35);
}

.rd-rating-score {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.rd-hero .rd-rating-score {
  font-size: 1.05rem;
}

.rd-rating-score i {
  font-size: 0.7rem;
}

.rd-rating-label {
  font-size: 0.78rem;
  opacity: 0.95;
  white-space: nowrap;
}

.rd-hero-gallery-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  margin-top: 1.25rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--ft-transition), transform var(--ft-transition);
}

.rd-hero-gallery-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.rd-hero-gallery-btn i {
  font-size: 1.05rem;
}

/* Legacy gallery wrappers (photos tab / shops reuse) */
.rd-gallery {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.rd-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rd-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  pointer-events: none;
  transition: background var(--ft-transition);
}

.rd-gallery-hero:hover .rd-gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.rd-gallery-overlay i {
  font-size: 1.5rem;
}

/* Tabs */
.rd-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.rd-tabs::-webkit-scrollbar {
  display: none;
}

.rd-tab {
  padding: 0.85rem 1.25rem;
  border: none;
  background: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ft-gray);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color var(--ft-transition);
}

.rd-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ft-accent);
  transform: scaleX(0);
  transition: transform var(--ft-transition);
}

.rd-tab.active {
  color: var(--ft-accent);
}

.rd-tab.active::after {
  transform: scaleX(1);
}

.rd-tab:hover {
  color: var(--ft-accent);
}

.rd-panel {
  display: none;
}

.rd-panel.active {
  display: block;
}

.rd-panel-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* Offers */
.rd-offers-section {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: #fff;
}

.rd-offers-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.rd-offers-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.rd-offers-head .rd-offers-sub {
  margin-bottom: 0;
}

.rd-offers-count-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(238, 90, 36, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.rd-offers-sub {
  color: var(--ft-gray);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.rd-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.rd-offer-card {
  position: relative;
  padding: 1rem;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--ft-transition);
}

.rd-offer-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.rd-offer-card.featured {
  background: linear-gradient(135deg, #256fef, #1a56d6);
  border-color: #256fef;
  color: #fff;
}

.rd-offer-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #256fef;
  display: block;
  margin-bottom: 0.35rem;
}

.rd-offer-card.featured .rd-offer-type {
  color: rgba(255, 255, 255, 0.9);
}

.rd-offer-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.rd-offer-card p {
  font-size: 0.82rem;
  margin: 0;
  opacity: 0.85;
}

.rd-offer-card small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

.rd-offer-watermark {
  position: absolute;
  bottom: -8px;
  right: 8px;
  font-size: 3rem;
  opacity: 0.08;
  pointer-events: none;
}

.rd-offer-card.featured .rd-offer-watermark {
  opacity: 0.15;
  color: #fff;
}

.rd-offer-explore-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem;
  border: 2px dashed #c4b5fd;
  border-radius: 12px;
  background: linear-gradient(135deg, #faf5ff, #fff);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--ft-transition), box-shadow var(--ft-transition), transform var(--ft-transition);
  min-height: 140px;
}

.rd-offer-explore-card:hover {
  border-color: #7c3aed;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

.rd-offer-explore-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.rd-offer-explore-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--ft-dark);
}

.rd-offer-explore-card p {
  font-size: 0.82rem;
  color: var(--ft-gray);
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.rd-offer-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7c3aed;
}

.rd-offer-explore-link i {
  transition: transform var(--ft-transition);
}

.rd-offer-explore-card:hover .rd-offer-explore-link i {
  transform: translateX(3px);
}

.rd-about-section,
.rd-details-section,
.rd-facilities-section {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: #fff;
}

.rd-about-section {
  position: relative;
  overflow: hidden;
  border: none;
  background:
    linear-gradient(135deg, #fff8f4 0%, #ffffff 42%, #fff5f5 100%);
  box-shadow: 0 12px 36px rgba(28, 28, 28, 0.06);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.rd-about-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ft-accent), var(--ft-gold));
}

.rd-about-head {
  margin-bottom: 1rem;
}

.rd-about-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ft-accent);
}

.rd-about-section h2,
.rd-details-section h2,
.rd-facilities-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.rd-about-section h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.rd-about-summary {
  color: var(--ft-dark);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 1rem;
  max-width: 48rem;
}

.rd-about-story p {
  color: var(--ft-gray);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  max-width: 48rem;
}

.rd-about-story p:last-child {
  margin-bottom: 0;
}

.rd-known-for {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(242, 89, 104, 0.15);
}

.rd-known-for h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.rd-known-for-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rd-known-tag {
  padding: 0.4rem 0.95rem;
  background: #fff;
  color: var(--ft-accent);
  border: 1px solid rgba(242, 89, 104, 0.22);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(242, 89, 104, 0.08);
}

.rd-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.rd-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fafafa;
}

.rd-detail-card > i {
  font-size: 1.25rem;
  color: var(--ft-accent);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.rd-detail-label {
  display: block;
  font-size: 0.75rem;
  color: var(--ft-gray);
  margin-bottom: 0.15rem;
}

.rd-detail-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ft-dark);
  line-height: 1.4;
}

.rd-facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.rd-facility-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--ft-dark);
  line-height: 1.2;
}

.rd-facility-item i {
  color: var(--ft-accent);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.rd-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.rd-info-card {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 1.25rem;
  background: #fff;
}

.rd-info-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.rd-info-card h3 i {
  color: var(--ft-accent);
}

.rd-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rd-info-list li {
  font-size: 0.88rem;
  color: var(--ft-gray);
  padding: 0.35rem 0;
  border-bottom: 1px solid #f5f5f5;
  line-height: 1.5;
}

.rd-info-list li:last-child {
  border-bottom: none;
}

.rd-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.rd-contact-list li i {
  color: var(--ft-accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.rd-contact-list a {
  color: var(--ft-gray);
  text-decoration: none;
}

.rd-contact-list a:hover {
  color: var(--ft-accent);
}

/* Reviews */
.rd-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rd-review-form {
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fafafa;
}

.rd-review-form h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.rd-review-form-note {
  margin: 0 0 0.85rem;
  color: #6b7280;
  font-size: 0.85rem;
}

.rd-review-form-grid {
  display: grid;
  gap: 0.65rem;
}

.rd-review-form-grid input,
.rd-review-form-grid select,
.rd-review-form-grid textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font: inherit;
}

.rd-review-form-msg {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: #16a34a;
}

.rd-review-card {
  padding: 1.25rem;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #fff;
}

.rd-review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.rd-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ft-pink-bg);
  color: var(--ft-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.rd-review-head strong {
  display: block;
  font-size: 0.9rem;
}

.rd-review-date {
  font-size: 0.78rem;
  color: var(--ft-gray);
}

.rd-review-head .hr-rating {
  margin-left: auto;
}

.rd-review-card p {
  color: var(--ft-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Photos */
.rd-gallery-hint {
  color: var(--ft-gray);
  font-size: 0.88rem;
  margin: -0.75rem 0 1.25rem;
}

.rd-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.rd-photo-trigger {
  position: relative;
  border: none;
  padding: 0;
  background: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.rd-photo-trigger img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform var(--ft-transition);
}

.rd-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--ft-transition);
}

.rd-photo-trigger:hover img {
  transform: scale(1.04);
}

.rd-photo-trigger:hover .rd-photo-overlay {
  opacity: 1;
}

/* Menu */
.rd-menu-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.rd-menu-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ft-dark);
  margin-bottom: 0.65rem;
}

.rd-menu-pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rd-menu-pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background: var(--ft-pink-bg);
  border: 1px solid rgba(239, 79, 95, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ft-accent);
  line-height: 1.2;
}

.rd-more-info {
  margin: 1.75rem 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fff;
}

.rd-more-info-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ft-dark);
}

.rd-more-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 1.5rem;
}

.rd-more-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.35;
}

.rd-more-info-item i {
  color: #22a06b;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.rd-menu-images {
  margin-bottom: 2rem;
}

.rd-menu-images-title,
.rd-menu-list-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rd-menu-list-title {
  margin-top: 0.25rem;
}

.rd-menu-images-grid {
  display: grid;
  gap: 1.25rem;
}

.rd-menu-images-grid--two {
  grid-template-columns: repeat(2, minmax(0, 220px));
  width: fit-content;
  max-width: 100%;
}

.rd-menu-images-grid--three {
  grid-template-columns: repeat(3, minmax(0, 200px));
  width: fit-content;
  max-width: 100%;
}

.rd-menu-images-grid:not(.rd-menu-images-grid--two):not(.rd-menu-images-grid--three) {
  grid-template-columns: minmax(0, 1fr);
}

.rd-menu-image-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: box-shadow var(--ft-transition), border-color var(--ft-transition);
}

.rd-menu-image-card:hover {
  border-color: var(--ft-accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.rd-menu-image-wrap {
  background: #f8f8f8;
  border-bottom: 1px solid #f0f0f0;
}

.rd-menu-image-card img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.rd-menu-image-title {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ft-dark);
}

.rd-menu-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--ft-transition);
}

.rd-menu-image-card:hover .rd-menu-image-overlay {
  opacity: 1;
}

.rd-menu-empty {
  color: var(--ft-gray);
  font-size: 0.95rem;
  margin: 0;
}

.rd-menu-list {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.rd-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

.rd-menu-item:last-child {
  border-bottom: none;
}

.rd-menu-item-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.rd-menu-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.rd-menu-dot.veg {
  background: #24963f;
  border: 1px solid #24963f;
}

.rd-menu-dot.non-veg {
  background: #c54545;
  border: 1px solid #c54545;
}

.rd-menu-price {
  color: var(--ft-gray);
  font-weight: 500;
}

/* Map */
.rd-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  margin-bottom: 1rem;
}

.rd-map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.rd-map-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}

.rd-map-info p {
  margin: 0;
  color: var(--ft-gray);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.rd-map-info i {
  color: var(--ft-accent);
  margin-top: 0.15rem;
}

.rd-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: var(--ft-accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background var(--ft-transition);
  white-space: nowrap;
}

.rd-map-btn:hover {
  background: var(--ft-accent-dark);
  color: #fff;
}

/* Lightbox */
body.rd-lightbox-open {
  overflow: hidden;
}

.rd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 1rem;
}

.rd-lightbox[hidden] {
  display: none !important;
}

.rd-lightbox-body {
  max-width: min(92vw, 900px);
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-lightbox-body img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
}

.rd-lightbox--menu .rd-lightbox-body img {
  max-height: 92vh;
  width: auto;
}

.rd-lightbox-close,
.rd-lightbox-prev,
.rd-lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ft-transition);
}

.rd-lightbox-close:hover,
.rd-lightbox-prev:hover,
.rd-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.rd-lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.1rem;
}

.rd-lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.rd-lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.rd-lightbox-caption {
  color: #fff;
  font-size: 0.95rem;
  margin: 0.85rem 0 0.25rem;
  text-align: center;
}

.rd-lightbox-counter {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 991.98px) {
  .rd-hero,
  .rd-hero-content {
    min-height: 480px;
  }

  .rd-header {
    flex-direction: column;
  }

  .rd-ratings {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .rd-gallery-hero {
    height: 280px;
  }

  .rd-hero .rd-gallery-hero {
    height: 100%;
  }

  .rd-offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rd-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rd-info-row {
    grid-template-columns: 1fr;
  }

  .rd-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rd-more-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rd-menu-images-grid--two,
  .rd-menu-images-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
  }

  .rd-menu-image-card img {
    max-height: 200px;
  }

  .rd-menu-image-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 45%);
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1rem;
    bottom: 2.25rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 767.98px) {
  .rd-hero,
  .rd-hero-content {
    min-height: 520px;
    border-radius: 18px;
  }

  .rd-hero-content {
    padding: 1.15rem 1.15rem 1.35rem;
  }

  .rd-hero-shade {
    background:
      linear-gradient(to top, rgba(18, 14, 12, 0.92) 0%, rgba(18, 14, 12, 0.55) 45%, rgba(18, 14, 12, 0.35) 100%);
  }

  .rd-header-info h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .rd-gallery-hero {
    height: 220px;
  }

  .rd-hero .rd-gallery-hero {
    height: 100%;
  }

  .rd-offers-grid {
    grid-template-columns: 1fr;
  }

  .rd-details-grid,
  .rd-more-info-grid {
    grid-template-columns: 1fr;
  }

  .rd-actions {
    gap: 0.5rem;
  }

  .rd-action-btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
  }

  .rd-hero .rd-rating-box {
    width: 100%;
    justify-content: center;
  }
}
