/* ==========================================================================
   RESTAURANT LOCATION & MENU MANAGER — MURUGAN HERITAGE THEME
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cinzel:wght@500;600;700;800&family=Outfit:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --rlm-primary: #8A2212;
  --rlm-primary-dark: #631508;
  --rlm-primary-deep: #5B0C06;
  --rlm-primary-light: #F7EBE7;
  --rlm-order-red: #E23744;
  --rlm-order-red-dark: #C41C29;
  --rlm-brass: #C88321;
  --rlm-brass-hover: #AA6B15;
  --rlm-brass-light: #FDF6E9;
  --rlm-bg: #F4EBD8;
  --rlm-surface: rgba(254, 250, 242, 0.94);
  --rlm-surface-solid: #FEFAF2;
  --rlm-border: #E2D2B8;
  --rlm-border-gold: rgba(200, 131, 33, 0.4);
  --rlm-text-primary: #2C1810;
  --rlm-text-secondary: #5E4537;
  --rlm-text-muted: #876957;
  --rlm-font-heading: 'Bebas Neue', 'Cinzel', Impact, sans-serif;
  --rlm-font-serif: 'Playfair Display', Georgia, serif;
  --rlm-font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --rlm-radius-sm: 8px;
  --rlm-radius-md: 12px;
  --rlm-radius-lg: 18px;
  --rlm-shadow-sm: 0 4px 14px rgba(44, 24, 16, 0.06);
  --rlm-shadow-md: 0 10px 28px rgba(44, 24, 16, 0.12);
  --rlm-shadow-lg: 0 20px 48px rgba(44, 24, 16, 0.18);
}

/* Universal Page Container: exactly 1190px max-width */
.rlm-container {
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Base Directory Page */
.rlm-archive-page {
  background-image: url('../images/parchment-tile.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  background-color: var(--rlm-bg);
  min-height: 100vh;
}

/* ==========================================
   1. FULL-WIDTH DIRECTORY HERO & CONTAINER
   ========================================== */
.rlm-directory-hero {
  position: relative;
  background-image: url('../images/locations-hero-bg.jpg');
  background-size: cover;
  background-position: right center;
  padding: 130px 0 90px;
  color: #FFFFFF;
  border-bottom: 3px solid var(--rlm-brass);
  overflow: hidden;
}

.rlm-directory-container {
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px 80px;
  font-family: var(--rlm-font-sans);
  color: var(--rlm-text-primary);
  box-sizing: border-box;
}

.rlm-gold-tag {
  font-family: var(--rlm-font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--rlm-brass);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
  background: rgba(200, 131, 33, 0.15);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid rgba(200, 131, 33, 0.35);
}

.rlm-directory-title {
  font-family: var(--rlm-font-heading);
  font-size: 4.2rem;
  letter-spacing: 2px;
  color: #FFFDF9;
  margin: 0 0 8px 0;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   2. STREAMLINED CITY & LOCALITY FILTER TOOLBAR
   ========================================== */
.rlm-filter-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--rlm-surface);
  border: 1.5px solid var(--rlm-border-gold);
  padding: 20px 24px;
  border-radius: var(--rlm-radius-md);
  box-shadow: var(--rlm-shadow-md);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.rlm-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rlm-filter-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rlm-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rlm-filter-label .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  color: var(--rlm-brass);
}

.rlm-select-wrapper {
  position: relative;
}

.rlm-select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rlm-brass);
  font-size: 16px;
  pointer-events: none;
  font-weight: 700;
}

.rlm-filter-bar select.rlm-select {
  width: 100%;
  height: 50px;
  padding: 0 40px 0 16px !important;
  border: 1.5px solid var(--rlm-border);
  border-radius: 8px;
  background: #FFFDF9;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--rlm-font-sans);
  color: var(--rlm-text-primary);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.rlm-filter-bar select.rlm-select:focus {
  border-color: var(--rlm-brass);
  box-shadow: 0 0 0 3px rgba(200, 131, 33, 0.2);
  background: #FFFFFF;
}

/* Results Count Bar */
.rlm-results-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rlm-text-secondary);
  letter-spacing: 0.5px;
}

.rlm-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--rlm-border);
  border-top-color: var(--rlm-brass);
  border-radius: 50%;
  animation: rlmSpin 0.7s linear infinite;
}

@keyframes rlmSpin {
  to { transform: rotate(360deg); }
}

/* ==========================================
   3. LOCATION CARDS GRID & CARD COMPONENT
   ========================================== */
.rlm-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  transition: opacity 0.25s ease;
}

.rlm-location-card {
  background: var(--rlm-surface-solid);
  border: 1px solid var(--rlm-border);
  border-radius: var(--rlm-radius-md);
  overflow: hidden;
  box-shadow: var(--rlm-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s;
}

.rlm-location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rlm-shadow-md);
  border-color: var(--rlm-brass);
}

.rlm-card-image-wrap {
  position: relative;
  height: 220px;
  background: #2C1810;
  overflow: hidden;
}

.rlm-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rlm-location-card:hover .rlm-card-img {
  transform: scale(1.06);
}

.rlm-card-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2C1810 0%, #4A2718 100%);
  color: var(--rlm-brass);
  font-size: 48px;
}

.rlm-card-placeholder-img .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
}

.rlm-card-city-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(138, 34, 18, 0.95);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 3;
}

.rlm-card-city-badge .dashicons {
  font-size: 14px;
  width: 14px;
  height: 14px;
  color: var(--rlm-brass-light);
}

.rlm-card-body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rlm-card-title {
  font-family: var(--rlm-font-heading);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--rlm-text-primary);
  margin: 0 0 14px 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.rlm-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.rlm-card-title a:hover {
  color: var(--rlm-primary);
}

.rlm-card-excerpt {
  font-size: 0.88rem;
  color: var(--rlm-text-muted);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.rlm-card-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px dashed var(--rlm-border);
}

.rlm-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--rlm-text-secondary);
}

.rlm-meta-icon {
  font-size: 16px;
  width: 16px;
  height: 16px;
  color: var(--rlm-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.rlm-phone-link {
  color: var(--rlm-primary);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.rlm-phone-link:hover {
  color: var(--rlm-brass);
}

.rlm-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* Buttons */
.rlm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: var(--rlm-radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.rlm-btn .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

.rlm-btn-primary {
  background: var(--rlm-primary);
  color: #FFFFFF;
  flex: 1;
}

.rlm-btn-primary:hover {
  background: var(--rlm-primary-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(138, 34, 18, 0.3);
}

.rlm-btn-gold {
  background: var(--rlm-brass);
  color: #FFFFFF;
}

.rlm-btn-gold:hover {
  background: var(--rlm-brass-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(200, 131, 33, 0.35);
}

.rlm-btn-order {
  background: var(--rlm-order-red);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(226, 55, 68, 0.35);
}

.rlm-btn-order:hover {
  background: var(--rlm-order-red-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 55, 68, 0.5);
}

.rlm-btn-order-sm {
  background: var(--rlm-order-red);
  color: #FFFFFF;
  padding: 11px 16px;
}

.rlm-btn-order-sm:hover {
  background: var(--rlm-order-red-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 55, 68, 0.4);
}

.rlm-btn-glass {
  background: rgba(254, 250, 242, 0.15);
  color: #FFFFFF;
  border: 1.5px solid rgba(254, 250, 242, 0.4);
  backdrop-filter: blur(8px);
}

.rlm-btn-glass:hover {
  background: var(--rlm-primary);
  border-color: var(--rlm-primary);
  color: #FFFFFF;
}

/* ==========================================
   4. SINGLE RESTAURANT LOCATION HERO
   ========================================== */
.rlm-single-location-page {
  background-image: url('../images/parchment-tile.jpg');
  background-repeat: repeat;
  background-color: var(--rlm-bg);
  min-height: 100vh;
  font-family: var(--rlm-font-sans);
  color: var(--rlm-text-primary);
}

/* Single Hero Section */
.rlm-single-hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 130px 0 80px;
  color: #FFFFFF;
  border-bottom: 3px solid var(--rlm-brass);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.rlm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 9, 6, 0.95) 0%, rgba(20, 9, 6, 0.86) 48%, rgba(20, 9, 6, 0.45) 75%, rgba(20, 9, 6, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.rlm-hero-container {
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.rlm-hero-content {
  max-width: 840px;
}

.rlm-hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.rlm-badge-gold {
  background: var(--rlm-brass);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.rlm-badge-locality {
  background: rgba(254, 250, 242, 0.18);
  color: #FFFDF9;
  border: 1px solid rgba(254, 250, 242, 0.4);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.rlm-badge-status {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.rlm-badge-status.rlm-badge-open {
  background: #2E7D32;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.35);
}

.rlm-badge-status.rlm-badge-closed {
  background: #C62828;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.35);
}

.rlm-single-title {
  font-family: var(--rlm-font-heading);
  font-size: 4.2rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #FFFDF9;
  margin: 0 0 14px 0;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
}

.rlm-hero-address {
  font-size: 1.1rem;
  color: #F8EFE4;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px 0;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.rlm-hero-address .dashicons {
  color: var(--rlm-brass);
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.rlm-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================
   5. DISTINCT PROMOTIONAL BANNER CAROUSEL
   ========================================== */
.rlm-banner-carousel-section {
  padding: 40px 0 0;
}

.rlm-banner-slider-box {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--rlm-radius-md);
  overflow: hidden;
  border: 1.5px solid var(--rlm-border-gold);
  box-shadow: var(--rlm-shadow-md);
  background: #1A0D08;
}

.rlm-banner-slides-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.rlm-banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rlm-banner-slide.active {
  opacity: 1;
  z-index: 2;
}

.rlm-banner-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation arrows for promo carousel */
.rlm-banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 9, 6, 0.7);
  border: 1.5px solid rgba(200, 131, 33, 0.7);
  color: #FFFDF9;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rlm-banner-prev {
  left: 20px;
}

.rlm-banner-next {
  right: 20px;
}

.rlm-banner-nav-btn:hover {
  background: var(--rlm-primary);
  border-color: var(--rlm-brass);
  transform: translateY(-50%) scale(1.1);
  color: #FFFFFF;
}

/* Dots for promo carousel */
.rlm-banner-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
}

.rlm-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rlm-banner-dot.active {
  background: var(--rlm-brass);
  width: 28px;
  border-radius: 5px;
  border-color: var(--rlm-brass);
  box-shadow: 0 0 8px rgba(200, 131, 33, 0.7);
}

/* ==========================================
   6. SINGLE MAIN GRID & SECTIONS
   ========================================== */
.rlm-single-main-section {
  padding: 40px 0 100px;
}

.rlm-single-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Story Card */
.rlm-story-card {
  background: var(--rlm-surface-solid);
  border: 1px solid var(--rlm-border);
  border-radius: var(--rlm-radius-md);
  padding: 36px;
  margin-bottom: 36px;
  box-shadow: var(--rlm-shadow-sm);
}

.rlm-section-heading {
  font-family: var(--rlm-font-heading);
  font-size: 2.8rem;
  letter-spacing: 1.5px;
  color: var(--rlm-text-primary);
  margin: 0 0 18px 0;
  text-transform: uppercase;
}

.rlm-story-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--rlm-text-secondary);
}

/* Menus Section */
.rlm-menus-section-wrap {
  background: var(--rlm-surface-solid);
  border: 1px solid var(--rlm-border);
  border-radius: var(--rlm-radius-md);
  padding: 36px;
  box-shadow: var(--rlm-shadow-sm);
}

.rlm-section-header {
  margin-bottom: 28px;
}

.rlm-section-sub {
  font-size: 1rem;
  color: var(--rlm-text-muted);
  margin: 0;
}

/* Menu Image Gallery Grid */
.rlm-image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rlm-gallery-card {
  position: relative;
  border-radius: var(--rlm-radius-sm);
  overflow: hidden;
  border: 1px solid var(--rlm-border);
  box-shadow: var(--rlm-shadow-sm);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rlm-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rlm-shadow-md);
}

.rlm-lightbox-trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #2C1810;
}

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

.rlm-gallery-card:hover .rlm-gallery-img {
  transform: scale(1.04);
}

.rlm-gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFDF9;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.rlm-gallery-hover-overlay .dashicons {
  font-size: 28px;
  width: 28px;
  height: 28px;
  color: var(--rlm-brass);
}

.rlm-gallery-card:hover .rlm-gallery-hover-overlay {
  opacity: 1;
}

.rlm-page-number {
  display: block;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rlm-text-secondary);
  background: #FAF8F4;
  border-top: 1px solid var(--rlm-border);
}

.rlm-menu-notes-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 18px;
  background: #FAF8F4;
  border: 1px dashed var(--rlm-border);
  border-radius: var(--rlm-radius-sm);
}

.rlm-notes-icon {
  color: var(--rlm-brass);
  font-size: 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.rlm-notes-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--rlm-text-muted);
  line-height: 1.45;
}

/* ==========================================
   7. SIDEBAR CARDS & EMBEDDED MAP CARD
   ========================================== */
.rlm-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 90px;
}

.rlm-sidebar-card {
  background: var(--rlm-surface-solid);
  border: 1px solid var(--rlm-border);
  border-radius: var(--rlm-radius-md);
  padding: 26px;
  box-shadow: var(--rlm-shadow-sm);
}

.rlm-sidebar-title {
  font-family: var(--rlm-font-heading);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--rlm-text-primary);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--rlm-border);
  padding-bottom: 10px;
}

/* Integrated Map & Contact Card */
.rlm-sidebar-map-contact-card {
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--rlm-border);
  border-radius: var(--rlm-radius-md);
  background: var(--rlm-surface-solid);
  box-shadow: var(--rlm-shadow-sm);
}

.rlm-sidebar-map-wrap {
  width: 100%;
  height: 230px;
  background: #EAE6DF;
  overflow: hidden;
  position: relative;
}

.rlm-sidebar-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.rlm-sidebar-map-details {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rlm-sidebar-address-text {
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--rlm-text-primary);
  font-weight: 500;
  margin: 0;
}

.rlm-sidebar-phone-text {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.rlm-sidebar-phone-text a {
  color: var(--rlm-text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.rlm-sidebar-phone-text a:hover {
  color: var(--rlm-primary);
}

.rlm-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}

.rlm-info-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: var(--rlm-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Prominent Get Directions Button in Sidebar */
.rlm-sidebar-directions-btn {
  background: var(--rlm-primary-deep);
  color: #FFFFFF !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: var(--rlm-radius-sm);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(91, 12, 6, 0.25);
  box-sizing: border-box;
  margin-top: 4px;
}

.rlm-sidebar-directions-btn:hover {
  background: var(--rlm-primary);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(91, 12, 6, 0.35);
}

.rlm-directions-plane-icon {
  display: inline-block;
  vertical-align: middle;
}

/* Prominent Order Online Button in Sidebar */
.rlm-sidebar-order-btn {
  background: var(--rlm-order-red);
  color: #FFFFFF !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: var(--rlm-radius-sm);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(226, 55, 68, 0.25);
  box-sizing: border-box;
}

.rlm-sidebar-order-btn:hover {
  background: var(--rlm-order-red-dark);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(226, 55, 68, 0.35);
}

.rlm-sidebar-order-btn .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

/* Operating Hours List */
.rlm-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rlm-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--rlm-border);
  font-size: 0.9rem;
}

.rlm-hours-item:last-child {
  border-bottom: none;
}

.rlm-hours-item.rlm-today {
  font-weight: 700;
  color: var(--rlm-primary);
}

.rlm-today-tag {
  font-size: 0.72rem;
  background: var(--rlm-brass);
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Amenities Pills */
.rlm-amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rlm-amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FAF8F4;
  border: 1px solid var(--rlm-border);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rlm-text-secondary);
}

.rlm-amenity-pill .dashicons {
  font-size: 14px;
  width: 14px;
  height: 14px;
  color: var(--rlm-brass);
}

/* ==========================================
   8. MODALS & LIGHTBOX
   ========================================== */
.rlm-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}

.rlm-lightbox-img {
  max-width: 95%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  .rlm-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rlm-single-grid {
    grid-template-columns: 1fr;
  }
  .rlm-sidebar-col {
    position: static;
  }
  .rlm-banner-slider-box {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .rlm-container {
    padding: 0 16px;
  }
  .rlm-directory-container {
    padding: 24px 16px 60px;
  }
  .rlm-directory-title {
    font-size: 3rem;
  }
  .rlm-filter-bar {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .rlm-single-hero {
    padding: 100px 0 50px;
  }
  .rlm-single-title {
    font-size: 3rem;
  }
  .rlm-banner-slider-box {
    height: 220px;
  }
  .rlm-banner-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .rlm-image-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .rlm-locations-grid {
    grid-template-columns: 1fr;
  }
  .rlm-card-actions {
    flex-direction: column;
  }
  .rlm-btn {
    width: 100%;
  }
  .rlm-hero-ctas {
    flex-direction: column;
  }
  .rlm-banner-slider-box {
    height: 180px;
  }
  .rlm-story-card,
  .rlm-menus-section-wrap {
    padding: 24px 18px;
  }
}
