/* ============================================================
   RESTAURANT DETAIL PAGE - CLEAN & RESPONSIVE CSS
   ============================================================ */

:root {
  --primary-color: #d72828;
  --primary-hover: #c02020;
  --dark-text: #1a1a1a;
  --gray-text: #666;
  --light-gray: #f5f5f5;
  --border-color: #eee;
  --success-color: #4caf50;
  --shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   MAIN SECTION
   ============================================================ */

.sv-restaurant-detail-section {
  padding: 60px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */

.sv-hero-slider-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  animation: sv-fade-in 600ms ease;
}

.sv-hero-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 500px;
}

.sv-hero-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
}

.sv-hero-slide.active {
  display: flex;
  opacity: 1;
}

.sv-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.sv-hero-slide.active img {
  animation: sv-zoom-in 800ms ease;
}

@keyframes sv-zoom-in {
  from { transform: scale(1); }
  to { transform: scale(1.02); }
}

@keyframes sv-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sv-restaurant-heart {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.sv-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  transition: all 300ms ease;
  z-index: 10;
}

.sv-hero-nav:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.sv-hero-prev { left: 20px; }
.sv-hero-next { right: 20px; }

/* ============================================================
   RESTAURANT INFO CARD
   ============================================================ */

.sv-restaurant-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.sv-restaurant-name-section {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.sv-restaurant-names {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}

.sv-restaurant-location {
  font-size: 15px;
  color: var(--gray-text);
  margin: 8px 0;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  gap: 8px;
}

.sv-restaurant-location i {
  color: var(--primary-color);
}

.sv-restaurant-cuisines {
  font-size: 14px;
  color: #888;
  margin: 8px 0 0 0;
  font-weight: 500;
  letter-spacing: 1px;
}

.sv-rating-section,
.sv-timing-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 300ms ease;
}

.sv-rating-section:hover,
.sv-timing-section:hover {
  background-color: var(--light-gray);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
  margin: 0 -10px;
  padding-left: 20px;
  padding-right: 20px;
}

.sv-rating-display,
.sv-timing-display {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sv-rating-stars {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: 1px;
}

.sv-rating-count {
  font-size: 14px;
  color: var(--gray-text);
  letter-spacing: 1px;
}

.sv-timing-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: 1px;
}

.sv-rating-section i,
.sv-timing-section i {
  color: var(--primary-color);
  transition: transform 300ms ease;
}

.sv-rating-section:hover i,
.sv-timing-section:hover i {
  transform: translateX(5px);
}

/* ============================================================
   TABS SECTION
   ============================================================ */

.sv-tabs-wrapper {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  overflow: hidden;
}

.sv-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-color);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 0 18px;
  scroll-padding-inline: 18px;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
}

.sv-tabs-nav::-webkit-scrollbar {
  height: 4px;
}

.sv-tabs-nav::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.sv-tabs-nav::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}

.sv-tab-btn {
  flex: 0 0 auto;
  min-width: 150px;
  padding: 15px 12px;
  background: none;
  border: none;
  color: var(--gray-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 300ms ease;
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.sv-tab-btn:hover {
  color: var(--primary-color);
}

.sv-tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.sv-tab-btn i {
  font-size: 16px;
}

.sv-tabs-content {
  padding: 30px;
}

.sv-tab-pane {
  display: none;
  animation: sv-fade-in 400ms ease;
}

.sv-tab-pane.active {
  display: block;
}

/* ============================================================
   TAB CONTENT STYLES
   ============================================================ */

.sv-about-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 20px 0;
  letter-spacing: 1px;
}

.sv-address-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
}

.sv-location-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 30px 0 15px 0;
  letter-spacing: 1px;
}

/* Location Tab */
.sv-map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sv-map-container iframe {
  border: none;
}

.sv-landmarks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sv-landmarks-list li {
  font-size: 14px;
  color: var(--gray-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  gap: 8px;
}

.sv-landmarks-list li i {
  color: var(--primary-color);
  font-size: 14px;
  width: 16px;
}

/* Amenities Tab */
.sv-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
}

.sv-amenity-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  transition: all 300ms ease;
  cursor: pointer;
}

.sv-amenity-card:hover p {
  color: #fff;
}

/* Menu Tab */
.sv-menu-categories {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.sv-menu-categories::-webkit-scrollbar {
  height: 4px;
}

.sv-menu-categories::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.sv-menu-categories::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}

.sv-menu-category-btn {
  padding: 10px 20px;
  background: var(--light-gray);
  border: 2px solid var(--border-color);
  border-radius: 25px;
  color: var(--gray-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 300ms ease;
}

.sv-menu-category-btn:hover,
.sv-menu-category-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.sv-menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.sv-menu-section {
  display: none;
  width: 100%;
  grid-column: 1 / -1;
}

.sv-menu-section.active {
  display: contents;
}

.sv-menu-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
}

.sv-menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(215, 40, 40, 0.15);
}

.sv-menu-item a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  height: 200px;
}

.sv-menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.sv-menu-item:hover img {
  transform: scale(1.1);
}

.sv-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(215, 40, 40, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: all 300ms ease;
}

.sv-menu-item:hover .sv-menu-overlay {
  opacity: 1;
}

/* Photos Tab */
.sv-photos-gallery {
  padding: 0;
}

.sv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.sv-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  transition: all 400ms ease;
  cursor: pointer;
  animation: sv-scale-in 600ms ease forwards;
  opacity: 0;
}

.sv-gallery-item:nth-child(1) { animation-delay: 100ms; }
.sv-gallery-item:nth-child(2) { animation-delay: 150ms; }
.sv-gallery-item:nth-child(3) { animation-delay: 200ms; }
.sv-gallery-item:nth-child(4) { animation-delay: 250ms; }
.sv-gallery-item:nth-child(5) { animation-delay: 300ms; }
.sv-gallery-item:nth-child(6) { animation-delay: 350ms; }

@keyframes sv-scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sv-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
}

.sv-gallery-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.sv-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 500ms ease;
  display: block;
}

.sv-gallery-item:hover img {
  transform: scale(1.15) rotate(2deg);
}

.sv-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(212, 175, 55, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease;
  z-index: 10;
}

.sv-gallery-link:hover .sv-gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.sv-gallery-category {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.sv-gallery-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.sv-gallery-view-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #8b4513;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sv-gallery-view-btn:hover {
  background: #ffffff;
  transform: scale(1.05);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.sv-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-text);
  margin: 0 0 30px 0;
  letter-spacing: 1px;
  padding: 0;
  text-transform: capitalize;
}

.sv-faq-section {
  margin-bottom: 40px;
}

.sv-faq-accordion {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sv-faq-item {
  border-bottom: 1px solid var(--border-color);
  transition: all 300ms ease;
}

.sv-faq-item:last-child {
  border-bottom: none;
}

.sv-faq-header {
  width: 100%;
  padding: 22px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 300ms ease;
  text-align: left;
}

.sv-faq-header:hover {
  background-color: var(--light-gray);
}

.sv-faq-header i {
  color: var(--primary-color);
  transition: transform 300ms ease;
  font-size: 14px;
}

.sv-faq-item.active .sv-faq-header i {
  transform: rotate(-180deg);
}

.sv-faq-content {
  display: none;
  padding: 20px;
  font-size: 14px;
  color: #555;
  letter-spacing: 1px;
  line-height: 1.8;
  background-color: #fafafa;
}

.sv-faq-item.active .sv-faq-content {
  display: block;
  animation: sv-slide-down 300ms ease;
}

@keyframes sv-slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sv-faq-content p {
  margin: 0;
  letter-spacing: 1px;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */

.sv-reviews-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 40px;
  border-radius: 20px;
  margin-top: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  animation: sv-fade-in-up 800ms ease-out;
}

@keyframes sv-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sv-reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}

.sv-reviews-header-content h2.sv-reviews-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-text);
  margin: 0;
  letter-spacing: 1px;
}

.sv-reviews-subtitle {
  font-size: 16px;
  color: #999;
  margin: 10px 0 0 0;
  font-weight: 500;
  letter-spacing: 1px;
}

.sv-write-review-cta {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #b91f1f 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  cursor: pointer;
  transition: all 400ms ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(215, 40, 40, 0.25);
}

.sv-write-review-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(215, 40, 40, 0.35);
}

/* Rating Card */
.sv-rating-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #f0f0f0;
  animation: sv-fade-in 1000ms ease-out;
}

.sv-rating-left {
  text-align: center;
  padding: 20px;
}

.sv-big-rating {
  font-size: 60px;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sv-rating-number {
  display: block;
}

.sv-star-display {
  font-size: 18px;
  color: #ffc107;
  margin-top: 10px;
  letter-spacing: 2px;
}

.sv-rating-card .sv-rating-subtitle {
  font-size: 14px;
  color: #666;
  margin: 20px 0 0 0;
  letter-spacing: 1px;
}

.sv-rating-card .sv-rating-subtitle strong {
  color: var(--dark-text);
  font-weight: 700;
}

.sv-rating-middle {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.sv-rating-row {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  gap: 12px;
  align-items: center;
}

.sv-star-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: 1px;
}

.sv-rating-bar-container {
  height: 10px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.sv-rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, #ff8c42 100%);
  border-radius: 10px;
  transition: width 1200ms ease;
  position: relative;
}

.sv-rating-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  border-radius: 10px;
}

.sv-rating-percent {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-text);
  text-align: right;
  letter-spacing: 1px;
}

/* Review Form */
.sv-review-form-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: var(--shadow-lg);
  animation: sv-fade-in-up 600ms ease-out;
}

.sv-review-form-box {
  max-width: 800px;
  margin: 0 auto;
}

.sv-form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}

.sv-form-subtitle {
  font-size: 14px;
  color: #999;
  margin: 0 0 30px 0;
  letter-spacing: 1px;
}

.sv-review-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sv-form-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sv-form-groups.full-width {
  grid-column: 1 / -1;
}

.sv-form-groups label {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
  letter-spacing: 1px;
}

.sv-form-input,
.sv-form-textarea {
  padding: 14px 16px;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 300ms ease;
  background: #fafafa;
  letter-spacing: 1px;
  width: 100%;
}

.sv-form-input:focus,
.sv-form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(215, 40, 40, 0.1);
}

.sv-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.sv-form-hint {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.sv-captcha-container {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.sv-captcha-display-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sv-captcha-code-box {
  flex: 1;
  background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
  border: 2px dashed var(--primary-color);
  border-radius: 8px;
  padding: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 4px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.sv-captcha-refresh-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #b91f1f 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 300ms ease;
  padding: 0;
  min-width: 44px;
}

.sv-captcha-refresh-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(215, 40, 40, 0.3);
}

.sv-captcha-refresh-btn:active {
  transform: scale(0.95);
}

.sv-captcha-refresh-btn i {
  transition: transform 400ms ease;
}

.sv-captcha-refresh-btn:hover i {
  transform: rotate(180deg);
}

.sv-star-rating-input {
  display: flex;
  gap: 15px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.sv-star-rating-input input {
  display: none;
}

.sv-star-input-label {
  font-size: 32px;
  color: #ddd;
  cursor: pointer;
  transition: all 200ms ease;
  display: block;
}

.sv-star-rating-input input:checked ~ label,
.sv-star-input-label:hover,
.sv-star-input-label:hover ~ .sv-star-input-label {
  color: #ffc107;
  transform: scale(1.2);
}

.sv-rating-feedback {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #999;
  font-style: italic;
}

.sv-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.sv-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sv-btn-submit {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b91f1f 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(215, 40, 40, 0.25);
}

.sv-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(215, 40, 40, 0.35);
}

.sv-btn-cancel {
  background: var(--light-gray);
  color: #999;
  border: 2px solid #f0f0f0;
}

.sv-btn-cancel:hover {
  background: #efefef;
  color: var(--dark-text);
  border-color: #ddd;
}

/* Reviews Grid */
.sv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  animation: sv-fade-in 1200ms ease-out;
}

.sv-review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f5f5f5;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sv-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #ff8c42 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms ease;
}

.sv-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(215, 40, 40, 0.15);
  border-color: var(--primary-color);
}

.sv-review-card:hover::before {
  transform: scaleX(1);
}

.sv-review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f5f5f5;
}

.sv-reviewer-details {
  flex: 1;
}

.sv-reviewer-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 8px 0;
  letter-spacing: 1px;
}

.sv-review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sv-star-rating {
  font-size: 12px;
  color: #ffc107;
  letter-spacing: 1px;
}

.sv-review-date {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  letter-spacing: 1px;
}

.sv-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
  white-space: nowrap;
}

.sv-verified-badge i {
  font-size: 10px;
}

.sv-review-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 12px 0;
  letter-spacing: 1px;
}

.sv-review-card-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 18px 0;
  letter-spacing: 1px;
}

.sv-tag {
  padding: 5px 12px;
  background: #f0f0f0;
  color: var(--gray-text);
  font-size: 11px;
  font-weight: 600;
  border-radius: 16px;
  transition: all 300ms ease;
  letter-spacing: 1px;
}

.sv-tag:hover {
  background: var(--primary-color);
  color: #fff;
}

.sv-load-more-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 400ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.sv-load-more-btn:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b91f1f 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(215, 40, 40, 0.3);
}

/* ============================================================
   SIDEBAR STYLES
   ============================================================ */

.sv-sidebar {
  position: sticky;
  top: 90px;
}

.sv-booking-form-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.sv-booking-form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 20px 0;
  letter-spacing: 1px;
}

.sv-booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sv-book-table-btn {
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 300ms ease;
}

.sv-book-table-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(215, 40, 40, 0.3);
}

/* CTA Section */
.sv-cta-section {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-cta-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.sv-cta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.sv-cta-content-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px;
}

.sv-cta-heading-overlay {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin: 0;
  letter-spacing: 1px;
}

.sv-cta-detail-overlay {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
  letter-spacing: 1px;
}

.sv-cta-button-overlay {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 300ms ease;
  margin-top: 10px;
  letter-spacing: 1px;
}

.sv-cta-button-overlay:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(215, 40, 40, 0.5);
  color: white;
}

/* Popular Locations Slider */
.sv-popular-locations-wrapper {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
  margin-bottom: 20px;
}

.sv-popular-locations-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 20px 0;
}

.sv-locations-slider {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.sv-location-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: sv-fade-in 600ms ease;
}

.sv-location-slide.active {
  display: block;
}

.sv-location-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.sv-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.sv-location-slide.active .sv-location-image img {
  animation: sv-zoom-in 600ms ease;
}

.sv-location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 25px 20px 20px;
  color: #fff;
}

.sv-location-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
  letter-spacing: 1px;
}

.sv-location-text {
  font-size: 13px;
  margin: 0;
  letter-spacing: 1px;
}

.sv-location-nav {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 300ms ease;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(215, 40, 40, 0.3);
}

.sv-location-nav:hover {
  background: #c71f1f;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(215, 40, 40, 0.5);
}

.sv-location-prev {
  left: 15px;
}

.sv-location-next {
  right: 15px;
}

/* ============================================================
   MODAL STYLES
   ============================================================ */

.sv-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  overflow-y: auto;
}

.sv-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
}

.sv-modal-content {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  margin-top: 50px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: sv-modal-slide-up 400ms ease;
}

@keyframes sv-modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sv-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: var(--light-gray);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-text);
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.sv-modal-close:hover {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(90deg);
}

.sv-modal-body {
  padding: 40px;
  letter-spacing: 1px;
}

.sv-overall-rating {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 30px;
}

.sv-rating-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.sv-rating-info p {
  margin: 0 0 5px 0;
  font-size: 14px;
}

.sv-rating-total-count {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
}

.sv-rating-review-count {
  color: var(--gray-text);
}

/* Timing Modal */
.sv-timings-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
}

.sv-timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--border-color);
}

.sv-timing-row:last-child {
  border-bottom: none;
}

.sv-timing-day {
  font-weight: 600;
  color: var(--dark-text);
  font-size: 15px;
  width: 100px;
}

.sv-timing-hours {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

/* ============================================================
   MAGNIFIC POPUP FIXES
   ============================================================ */

.mfp-bg {
  z-index: 999;
}

.mfp-wrap {
  z-index: 1000;
}

.mfp-figure {
  position: relative;
  z-index: 1001;
}

.mfp-img {
  padding: 40px;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 991px) {
  .sv-main-content {
    margin-bottom: 40px;
  }

  .sv-booking-form-wrapper,
  .sv-popular-locations-wrapper {
    position: relative;
    top: auto;
  }

  .sv-rating-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sv-reviews-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .sv-restaurant-detail-section {
    padding: 40px 0 60px;
  }

  .sv-hero-slider {
    height: 350px;
  }

  .sv-hero-nav {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .sv-restaurant-names {
    font-size: 24px;
  }

  .sv-section-title {
    font-size: 22px;
  }

  .sv-tabs-nav {
    flex-wrap: nowrap;
    padding: 0 14px;
    scroll-padding-inline: 14px;
  }

  .sv-tab-btn {
    flex: 0 0 auto;
    min-width: auto;
    padding: 12px 16px;
    font-size: 12px;
  }

  .sv-tabs-content {
    padding: 25px;
  }

  .sv-menu-items-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }

  .sv-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sv-gallery-item img {
    height: 200px;
  }

  .sv-amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .sv-amenity-card {
    padding: 18px 10px;
  }

  .sv-amenity-card i {
    font-size: 20px;
  }

  .sv-highlights-list {
    grid-template-columns: 1fr;
  }

  .sv-reviews-container {
    padding: 40px 25px;
  }

  .sv-reviews-header-content h2.sv-reviews-title {
    font-size: 28px;
  }

  .sv-rating-card {
    padding: 30px;
  }

  .sv-review-form-wrapper {
    padding: 30px;
  }

  .sv-reviews-grid {
    grid-template-columns: 1fr;
  }

  .sv-form-row {
    grid-template-columns: 1fr;
  }

  .sv-captcha-container {
    flex-direction: column;
  }

  .sv-cta-section {
    height: 250px;
  }

  .sv-overall-rating {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .sv-restaurant-detail-section {
    padding: 30px 0 40px;
  }

  .sv-breadcrumb-content h1.sv-breadcrumb-title {
    font-size: 20px;
  }

  .sv-breadcrumb-list {
    gap: 5px;
  }

  .sv-breadcrumb-list li {
    font-size: 12px;
  }

  .sv-hero-slider {
    height: 280px;
  }

  .sv-hero-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .sv-hero-prev {
    left: 10px;
  }

  .sv-hero-next {
    right: 10px;
  }

  .sv-restaurant-info-card {
    padding: 20px;
  }

  .sv-restaurant-names {
    font-size: 20px;
  }

  .sv-rating-section,
  .sv-timing-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 0;
  }

  .sv-tabs-content {
    padding: 20px;
  }

  .sv-tab-btn {
    font-size: 11px;
    padding: 10px 12px;
  }

  .sv-menu-items-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .sv-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .sv-gallery-item img {
    height: 220px;
  }

  .sv-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sv-amenity-card {
    padding: 15px 8px;
  }

  .sv-amenity-card i {
    font-size: 18px;
  }

  .sv-section-title {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .sv-faq-header {
    padding: 16px;
    font-size: 14px;
  }

  .sv-faq-content {
    padding: 0 16px 16px;
    font-size: 13px;
  }

  .sv-reviews-container {
    padding: 30px 20px;
  }

  .sv-reviews-header-content h2.sv-reviews-title {
    font-size: 22px;
  }

  .sv-reviews-top {
    gap: 15px;
    margin-bottom: 30px;
  }

  .sv-write-review-cta {
    padding: 12px 20px;
    font-size: 12px;
  }

  .sv-rating-card {
    padding: 25px;
    gap: 20px;
  }

  .sv-rating-left {
    padding: 15px;
  }

  .sv-big-rating {
    font-size: 48px;
  }

  .sv-rating-middle {
    gap: 12px;
  }

  .sv-rating-row {
    grid-template-columns: 35px 1fr 45px;
    gap: 10px;
  }

  .sv-review-form-wrapper {
    padding: 25px;
  }

  .sv-form-title {
    font-size: 22px;
  }

  .sv-form-row {
    grid-template-columns: 1fr;
  }

  .sv-form-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sv-review-card {
    padding: 20px;
  }

  .sv-review-card-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .sv-reviewer-name {
    font-size: 14px;
  }

  .sv-review-card-title {
    font-size: 14px;
  }

  .sv-review-card-text {
    font-size: 13px;
  }

  .sv-booking-form-wrapper {
    margin-bottom: 20px;
  }

  .sv-booking-form-title {
    font-size: 16px;
  }

  .sv-cta-section {
    height: 200px;
    margin-bottom: 20px;
  }

  .sv-cta-heading-overlay {
    font-size: 22px;
  }

  .sv-cta-detail-overlay {
    font-size: 13px;
  }

  .sv-cta-button-overlay {
    padding: 10px 20px;
    font-size: 12px;
  }

  .sv-popular-locations-wrapper {
    margin-bottom: 15px;
  }

  .sv-locations-slider {
    height: 200px;
  }

  .sv-modal-body {
    padding: 25px;
  }

  .sv-modal-content {
    margin-top: 20px;
    width: 95%;
  }

  .sv-overall-rating {
    padding: 20px;
    gap: 15px;
  }

  .sv-rating-circle {
    width: 80px;
    height: 80px;
  }

  .sv-load-more-btn {
    padding: 14px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .sv-restaurant-names {
    font-size: 18px;
  }

  .sv-review-card {
    padding: 16px;
  }

  .sv-amenities-grid {
    grid-template-columns: 1fr;
  }

  .sv-captcha-container {
    flex-direction: column;
  }

  .sv-form-actions {
    grid-template-columns: 1fr;
  }
}
/* Blog Content Wrapper - Prevent CSS Conflicts */
.blog-content-wrapper {
	line-height: 1.8;
	font-size: 16px;
	color: #5c5e61;
}

.blog-content-wrapper p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-size: 16px;
}

.blog-content-wrapper h1,
.blog-content-wrapper h2,
.blog-content-wrapper h3,
.blog-content-wrapper h4,
.blog-content-wrapper h5,
.blog-content-wrapper h6 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #2c2e33;
	font-weight: 600;
}

.blog-content-wrapper h2 {
	font-size: 28px;
}

.blog-content-wrapper h3 {
	font-size: 24px;
}

.blog-content-wrapper h4 {
	font-size: 20px;
}

.blog-content-wrapper h5 {
	font-size: 18px;
}

.blog-content-wrapper h6 {
	font-size: 16px;
}

.blog-content-wrapper ul,
.blog-content-wrapper ol {
	margin-bottom: 1.5rem;
	margin-left: 2rem;
}

.blog-content-wrapper ul li,
.blog-content-wrapper ol li {
	margin-bottom: 0.5rem;
	line-height: 1.8;
	list-style: circle;
}

.blog-content-wrapper img {
	max-width: 100%;
	height: auto;
	margin: 1.5rem 0;
	border-radius: 8px;
}

.blog-content-wrapper blockquote {
	border-left: 4px solid #c01e2e;
	padding-left: 1.5rem;
	margin: 1.5rem 0;
	font-style: italic;
	color: #8e8e93;
}

.blog-content-wrapper a {
	color: #c01e2e;
	text-decoration: none;
	transition: 0.3s ease;
}

.blog-content-wrapper a:hover {
	text-decoration: underline;
}

.blog-content-wrapper table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.blog-content-wrapper table th,
.blog-content-wrapper table td {
	padding: 12px;
	border: 1px solid #ececec;
	text-align: left;
}

.blog-content-wrapper table th {
	background-color: #f5f5f5;
	font-weight: 600;
}
