@import url('https://fonts.googleapis.com/css2?family=Finlandica+Headline:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Finlandica Headline", sans-serif;
	height: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

/* Hero Section Styles */
.sv-app-wrapper {
  width: 100%;
  min-height: 100%;
  background: #0f172a;
  overflow: visible;
  position: relative;
}

.sv-hero {
  width: 100%;
  min-height: 100%;
  position: relative;
  background: #0f172a;
  overflow: visible;
}

.sv-slider {
  width: 100%;
  height: 100%;
  min-height: 640px;
  position: relative;
}

.sv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease, transform 1400ms ease;
  transform: scale(1.02);
  pointer-events: none;
}

.sv-slide.sv-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.sv-slide img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.28), rgba(15, 23, 42, 0.72)),
    linear-gradient(180deg, rgba(15, 23, 42, 0.38), rgba(15, 23, 42, 0.54));
}

.sv-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 22px 92px;
  text-align: center;
  overflow: visible;
}

.sv-content-inner {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  animation: sv-rise 850ms ease both;
  overflow: visible;
}

@keyframes sv-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.sv-heading-wrap {
  max-width: 900px;
}

.sv-title {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 1px;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.sv-subtitle {
  margin: 18px auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.45;
  text-wrap: balance;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

/* Search Container Styles */
.sv-search-shell {
  width: 100%;
  max-width: 930px;
  border-radius: 28px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  overflow: visible;
  position: relative;
  z-index: 51;
}

.sv-search-bar {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1px minmax(320px, 1.2fr);
  align-items: center;
  border-radius: 22px;
  background: #ffffff;
  overflow: visible;
}

.sv-search-part {
  height: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  position: relative;
  overflow: visible;
}

.sv-divider {
  width: 1px;
  height: 34px;
  background: #e2e8f0;
}

.sv-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #8B4513;
  background: #faf5f1;
}

.sv-icon-badge svg {
  width: 20px;
  height: 20px;
}

.sv-search-icon {
  color: #64748b;
  flex: 0 0 auto;
}

.sv-search-icon svg {
  width: 22px;
  height: 22px;
}

.sv-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #0f172a;
  font-weight: 600;
  min-width: 0;
  letter-spacing: 1px;
}

.sv-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.sv-dropdown {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 12px);
  z-index: 9999;
  background: #ffffff;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: none;
  text-align: left;
}

.sv-dropdown.sv-open {
  display: block;
  animation: sv-dropdown-in 180ms ease both;
}

@keyframes sv-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sv-option {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 14px;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease, transform 160ms ease;
}

.sv-option:hover,
.sv-option:focus-visible {
  background: #f8fafc;
  transform: translateX(3px);
  outline: 2px solid transparent;
}

.sv-option span {
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 1px;
  font-size: 15px;
}

.sv-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  background: #faf5f1;
  flex: 0 0 auto;
  margin-top: 2px;
}

.sv-auto-detect {
  border-radius: 14px 14px 0 0;
  padding: 12px 12px;
}

.sv-dropdown-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 8px 12px;
}

.sv-dropdown-section {
  padding: 0;
}

.sv-section-title {
  padding: 12px 12px 8px;
  color: #64748b;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sv-location-item {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  color: #0f172a;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease, transform 160ms ease;
  font-size: 15px;
  border-radius: 10px;
  margin: 2px 8px;
  padding-left: 20px;
}

.sv-location-item:hover {
  background: #f8fafc;
  transform: translateX(3px);
}

.sv-location-item:last-child {
  border-radius: 0 0 14px 14px;
  margin-bottom: 0;
}

.sv-main-search-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  box-shadow: 0 12px 26px rgba(139,69,19,0.34);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.sv-main-search-button:hover {
  transform: translateY(-2px);
  background: #D4AF37;
  box-shadow: 0 16px 32px rgba(239, 68, 68, 0.42);
}

.sv-main-search-button:focus-visible,
.sv-dot:focus-visible,
.sv-input:focus-visible {
  outline: 3px solid rgba(239, 68, 68, 0.32);
  outline-offset: 3px;
}

/* Toast Styles */
.sv-toast {
  position: absolute;
  left: 50%;
  bottom: 106px;
  z-index: 30;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  transition: opacity 220ms ease, transform 220ms ease;
  max-width: calc(100% - 32px);
  text-align: center;
}

.sv-toast.sv-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Dots Styles */
.sv-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.sv-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.54);
  transition: width 260ms ease, background 260ms ease, transform 260ms ease;
}

.sv-dot:hover {
  transform: scale(1.18);
  background: #ffffff;
}

.sv-dot.sv-active {
  width: 34px;
  background: linear-gradient(90deg, #8B4513, #D4AF37);
}

.sv-mobile-search-space {
  display: none;
  position: relative;
  z-index: 50;
  overflow: visible;
}

.sv-common-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 1px;
}

/* Categories Section Styles */
.sv-categories-section {
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.sv-categories-carousel {
  overflow: hidden;
}

.sv-category-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  transition: all 300ms ease;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
}

.sv-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 69, 19, 0.3);
}

.sv-category-image {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.sv-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sv-category-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  flex: 1;
}

.sv-category-name {
  font-size: 18px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: 1px;
}

.sv-category-name a{
  font-size: 18px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.3;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Restaurants Near You Section Styles */
.sv-restaurants-section {
  width: 100%;
  padding: 60px 0;
  background: #ffffff;
}

.sv-restaurants-carousel {
  overflow: hidden;
}

.sv-restaurant-row{
	margin-bottom:30px;
}

.sv-restaurant-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 300ms ease;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sv-restaurant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: rgba(139, 69, 19, 0.3);
}

.sv-restaurant-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.sv-restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms ease;
}

.sv-restaurant-card:hover .sv-restaurant-image img {
  transform: scale(1.05);
}

.sv-restaurant-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 16px;
}

.sv-restaurant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}

.sv-restaurant-name {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  flex: 1;
  letter-spacing: 1px;
}

.sv-restaurant-name a{
	color: #0f172a;
	text-decoration: none;
}

.sv-restaurant-rating {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 15px;
  background: #078109;
}

.sv-restaurant-rating i {
  font-size: 14px;
}

.sv-restaurant-location {
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
}

.sv-restaurant-location i {
  font-size: 13px;
  color: #8B4513;
}

.sv-restaurant-location a{
	color: #0f172a;
	text-decoration: none;
}
/* How It Works Section Styles */
.sv-howitworks-section {
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.sv-howitworks-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  flex-wrap: wrap;
}

.sv-howitworks-container::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.15), transparent);
  z-index: 0;
}

.sv-howitworks-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 300ms ease;
}

.sv-howitworks-step:hover {
  transform: translateY(-8px);
}

.sv-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B4513, #d4860c);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
  transition: all 300ms ease;
}

.sv-howitworks-step:hover .sv-step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.sv-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(212, 134, 12, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #8B4513;
  margin-bottom: 20px;
  transition: all 300ms ease;
}

.sv-howitworks-step:hover .sv-step-icon {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(212, 134, 12, 0.12));
  transform: scale(1.05) rotate(-5deg);
}

.sv-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.sv-step-description {
  font-size: 16px;
  color: #5f6369;
  line-height: 1.6;
  letter-spacing: 1px;
}

@keyframes sv-step-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Popular Locations Section */
.sv-popular-locations-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.sv-locations-carousel {
  overflow: hidden;
  margin-top: 40px;
}

.sv-locations-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.sv-locations-carousel .owl-item {
  display: flex;
}

.sv-location-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 280px;
  width: 100%;
}

.sv-location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.sv-location-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sv-location-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 400ms ease;
}

.sv-location-card:hover .sv-location-image-wrapper img {
  transform: scale(1.08);
}

.sv-location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.6));
  z-index: 2;
}

.sv-location-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 3;
  color: #ffffff;
}

.sv-location-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  line-height: 1.3;
}

.sv-location-name a{
  color: #ffffff;
  text-decoration:none;
}

.sv-location-count {
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

.sv-location-count a{
  color: #f0f9ff;
  text-decoration:none;
}

/* Referral Section */
.sv-referral-section {
  background: linear-gradient(135deg, rgb(0 0 0 / 82%) 0%, rgb(0 0 0 / 55%) 100%), url(https://digital.ihg.com/is/image/ihg/crowne-plaza-greater-noida-8269646795-2x1) center / cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.sv-referral-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.sv-referral-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.sv-referral-icon {
  font-size: 64px;
  color: #ffffff;
  margin-bottom: 20px;
  display: inline-block;
  animation: sv-icon-bounce 2s ease-in-out infinite;
}

@keyframes sv-icon-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.sv-referral-section .sv-common-title {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.sv-referral-heading {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sv-referral-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  line-height: 1.6;
  letter-spacing: 1px;
  font-weight: 500;
}

.sv-referral-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sv-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sv-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 16px;
  transition: transform 300ms ease, background 300ms ease;
}

.sv-benefit-item:hover .sv-benefit-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.sv-benefit-text h4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sv-benefit-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  letter-spacing: 1px;
}

.sv-referral-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.sv-referral-btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
}

.sv-primary-btn {
  background: #ffffff;
  color: #8B4513;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sv-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  background: #f9f9f9;
}

.sv-second-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sv-second-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.sv-testimonials-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.sv-testimonials-section .sv-common-title {
  margin-bottom: 50px;
}

.sv-testimonials-carousel {
  display: flex;
  gap: 24px;
  padding: 10px 0;
}

.sv-testimonials-carousel .owl-stage {
  display: flex !important;
}

.sv-testimonials-carousel .owl-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 0;
}

.sv-testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 300ms ease, box-shadow 300ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sv-testimonial-card:hover {
  transform: translateY(-8px);
}

.sv-testimonial-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sv-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #D4AF37;
}

.sv-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sv-testimonial-author {
  flex: 1;
}

.sv-author-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.sv-author-title {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

.sv-testimonial-rating {
  display: flex;
  gap: 4px;
  font-size: 14px;
}

.sv-testimonial-rating i {
  color: #D4AF37;
}

.sv-testimonial-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  flex: 1;
}

/* Hide Owl Carousel Navigation and Dots */
.sv-testimonials-carousel .owl-nav {
  display: none !important;
}

.sv-testimonials-carousel .owl-dots {
  display: none !important;
}

/* Food Trends Section */
.sv-food-trends-section {
  padding: 80px 0;
}

.sv-trends-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.sv-trends-header .sv-common-title {
  margin: 0;
}

.sv-see-all-link {
  font-size: 14px;
  font-weight: 600;
  color: #D4AF37;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 300ms ease;
}

.sv-see-all-link:hover {
  gap: 12px;
}

.sv-see-all-link i {
  font-size: 12px;
}

.sv-trends-carousel {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.sv-trends-carousel .owl-stage {
  display: flex !important;
}

.sv-trends-carousel .owl-item {
  flex: 1 1 calc(25% - 15px);
  min-width: 0;
}

.trend-card{
	margin-bottom:30px;
}

.sv-trend-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.sv-trend-card:hover {
  transform: translateY(-6px);
}

.sv-trend-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.sv-trend-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.sv-trend-card:hover .sv-trend-image img {
  transform: scale(1.05);
}

.sv-trend-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  background: #f8f9fa;
}

.sv-trend-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 1px;
}

.sv-trend-title a{
  color: #0f172a;
  text-decoration: none;
}

.sv-trend-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #64748b;
  margin-top: auto;
}

.sv-trend-author {
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 1px;
}

.sv-trend-date {
  color: #94a3b8;
  letter-spacing: 1px;
}

/* Hide Owl Carousel Navigation and Dots */
.sv-trends-carousel .owl-nav {
  display: none !important;
}

.sv-trends-carousel .owl-dots {
  display: none !important;
}

/* Footer Section */
.sv-footer {
  background: #0f172a;
  color: #e2e8f0;
  margin-top: 0;
}

/* Footer Main Content */
.sv-footer-main {
  padding: 70px 0 60px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Footer Grid */
.sv-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 0;
}

.sv-footer-column {
  display: flex;
  flex-direction: column;
}

.sv-footer-column-title {
  font-size: 16px;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sv-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-footer-links li {
  margin: 0;
}

.sv-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: all 300ms ease;
  display: inline-block;
  letter-spacing: 1px;
}

.sv-footer-links a:hover {
  color: #D4AF37;
  margin-left: 4px;
}

/* Footer Bottom */
.sv-footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.sv-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 30px;
}

/* Footer Navigation */
.sv-footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  align-items: center;
  flex: 1;
  min-width: 300px;
}

.sv-footer-navigation a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 300ms ease;
  white-space: nowrap;
  letter-spacing: 1px;
  font-size: 14px;
}

.sv-footer-navigation a:hover {
  color: #D4AF37;
}

.sv-footer-divider {
  color: #475569;
}

/* App Downloads */
.sv-footer-app-downloads {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sv-app-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  color: #e2e8f0;
  text-decoration: none;
  transition: all 300ms ease;
  font-size: 14px;
}

.sv-app-button:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
}

.sv-app-button i {
  font-size: 24px;
}

.sv-app-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sv-app-text span {
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 1px;
}

.sv-app-text strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Footer Copyright */
.sv-footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
}

.sv-footer-copyright p {
  margin: 0;
  color: #94a3b8;
  letter-spacing: 1px;
  font-size: 16px;
}

.sv-footer-social {
  display: flex;
  gap: 12px;
}

.sv-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  text-decoration: none;
  transition: all 300ms ease;
  font-size: 14px;
}

.sv-footer-social a:hover {
  background: #D4AF37;
  color: #0f172a;
  transform: scale(1.1);
}

/* Go to Top Button Styles */
.sv-go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  color: #ffffff;
  border: none;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
  transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
}

.sv-go-to-top.sv-show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.sv-go-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.6);
  background: #D4AF37;
}

.sv-go-to-top:active {
  transform: translateY(-2px);
}

/* Responsive Go to Top Button */
@media (max-width: 768px) {
  .sv-go-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .sv-go-to-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* ============================================================
   CONSOLIDATED RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* HERO SECTION RESPONSIVE */
@media (max-width: 900px) {
  .sv-slider {
    min-height: 560px;
  }

  .sv-slide img {
    min-height: 560px;
  }

  .sv-content {
    padding: 44px 18px 80px;
  }

  .sv-search-bar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sv-divider {
    width: calc(100% - 44px);
    height: 1px;
    margin: 0 auto;
  }

  .sv-search-part {
    min-height: 68px;
  }
}

@media (max-width: 640px) {
  .sv-hero {
    min-height: auto;
    background: #fff7ed;
  }

  .sv-slider {
    min-height: 390px;
    height: auto;
    overflow: hidden;
    border-radius: 0 0 34px 34px;
  }

  .sv-slide img {
    min-height: 390px;
    height: 390px;
  }

  .sv-content {
    position: relative;
    min-height: 390px;
    padding: 44px 18px 74px;
  }

  .sv-content-inner {
    gap: 18px;
  }

  .sv-eyebrow {
    padding: 8px 12px;
  }

  .sv-subtitle {
    margin-top: 12px;
  }

  .sv-content .sv-search-shell {
    display: none;
  }

  .sv-dropdown {
    left: 8px;
    right: 8px;
  }

  .sv-mobile-search-space {
    display: block;
    width: 100%;
    padding: 18px 14px 28px;
    background:
      radial-gradient(circle at 15% 0%, rgba(239, 68, 68, 0.14), transparent 32%),
      linear-gradient(180deg, #fff7ed, #ffffff);
    overflow: visible;
    position: relative;
    z-index: 50;
  }

  .sv-mobile-search-space .sv-search-shell {
    display: block;
    max-width: 100%;
    padding: 0;
    border-radius: 24px;
    background: transparent;
    border: 0;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
    overflow: visible;
  }

  .sv-mobile-search-space .sv-search-bar {
    border-radius: 24px;
  }

  .sv-search-part {
    padding: 0 16px;
  }

  .sv-toast {
    position: fixed;
    bottom: 22px;
  }

  .sv-dots {
    bottom: 22px;
  }
}

/* CATEGORIES SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .sv-common-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .sv-category-card {
    min-width: 200px;
  }

  .sv-category-image {
    height: 100px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .sv-categories-section {
    padding: 30px 0;
  }

  .sv-common-title {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .sv-category-card {
    min-width: 180px;
    min-height: 220px;
    padding: 14px;
  }

  .sv-category-image {
    height: 95px;
    margin-bottom: 10px;
  }

  .sv-category-name {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .sv-categories-section {
    padding: 20px 0;
  }

  .sv-common-title {
    font-size: 25px;
    margin-bottom: 24px;
  }

  .sv-category-card {
    min-width: 150px;
    min-height: 200px;
    padding: 12px;
  }

  .sv-category-image {
    height: 80px;
    margin-bottom: 8px;
  }

  .sv-category-name {
    font-size: 14px;
  }
}

/* RESTAURANTS SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .sv-restaurant-card {
    min-width: 240px;
    min-height: 320px;
  }

  .sv-restaurant-image {
    height: 160px;
  }

  .sv-restaurant-name {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .sv-restaurants-section {
    padding: 40px 0;
  }

  .sv-restaurant-card {
    min-width: 200px;
    min-height: 280px;
    border-radius: 12px;
  }

  .sv-restaurant-image {
    height: 140px;
  }

  .sv-restaurant-content {
    padding: 12px;
  }

  .sv-restaurant-name {
    font-size: 15px;
  }

  .sv-restaurant-rating {
    font-size: 12px;
  }

  .sv-restaurant-location {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .sv-restaurants-section {
    padding: 30px 0;
  }

  .sv-restaurant-card {
    min-width: 100%;
    min-height: 100%;
    border-radius: 10px;
  }

  .sv-restaurant-image {
    height: 110px;
  }

  .sv-restaurant-content {
    padding: 12px;
  }

  .sv-restaurant-name {
    font-size: 16px;
  }

  .sv-restaurant-header {
    margin-bottom: 8px;
    align-items: flex-start;
  }

  .sv-restaurant-rating {
    font-size: 14px;
  }

  .sv-restaurant-location {
    font-size: 14px;
  }
}

/* HOW IT WORKS SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .sv-howitworks-section {
    padding: 60px 0;
  }

  .sv-howitworks-container {
    gap: 20px;
  }

  .sv-howitworks-container::before {
    display: none;
  }

  .sv-howitworks-step {
    min-width: 180px;
    padding: 25px 15px;
  }

  .sv-step-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .sv-step-title {
    font-size: 18px;
  }

  .sv-step-description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .sv-howitworks-section {
    padding: 50px 0;
  }

  .sv-howitworks-container {
    gap: 25px;
    flex-wrap: wrap;
  }

  .sv-howitworks-step {
    flex: 0 0 calc(50% - 12.5px);
    min-width: auto;
    padding: 20px 15px;
  }

  .sv-step-number {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .sv-step-icon {
    width: 65px;
    height: 65px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .sv-step-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .sv-step-description {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .sv-howitworks-section {
    padding: 40px 0;
  }

  .sv-howitworks-container {
    gap: 20px;
  }

  .sv-howitworks-step {
    flex: 0 0 100%;
    padding: 20px 12px;
  }

  .sv-step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .sv-step-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
    margin-bottom: 12px;
  }

  .sv-step-title {
    font-size: 15px;
  }

  .sv-step-description {
    font-size: 11px;
  }
}

/* POPULAR LOCATIONS SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .sv-popular-locations-section {
    padding: 60px 0;
  }

  .sv-location-card {
    height: 240px;
  }

  .sv-location-name {
    font-size: 16px;
  }

  .sv-location-count {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .sv-popular-locations-section {
    padding: 50px 0;
  }

  .sv-location-card {
    height: 220px;
  }

  .sv-location-info {
    padding: 20px 16px;
  }

  .sv-location-name {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .sv-location-count {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .sv-popular-locations-section {
    padding: 40px 0;
  }

  .sv-location-card {
    height: 160px;
  }

  .sv-location-info {
    padding: 16px 12px;
  }

  .sv-location-name {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
  }

  .sv-location-count {
    font-size: 12px;
  }
}

/* REFERRAL SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .sv-referral-section {
    padding: 60px 0;
  }

  .sv-referral-heading {
    font-size: 36px;
  }

  .sv-referral-description {
    font-size: 16px;
  }

  .sv-referral-benefits {
    gap: 24px;
    padding: 32px 16px;
  }

  .sv-benefit-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .sv-benefit-text h4 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .sv-referral-section {
    padding: 50px 0;
  }

  .sv-referral-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .sv-referral-heading {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .sv-referral-description {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .sv-referral-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 12px;
    margin-bottom: 36px;
  }

  .sv-benefit-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .sv-benefit-text h4 {
    font-size: 14px;
  }

  .sv-benefit-text p {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .sv-referral-section {
    padding: 40px 0;
  }

  .sv-referral-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .sv-referral-heading {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .sv-referral-description {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .sv-referral-benefits {
    gap: 12px;
    padding: 20px 8px;
    margin-bottom: 28px;
  }

  .sv-benefit-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .sv-benefit-text h4 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .sv-benefit-text p {
    font-size: 11px;
  }

  .sv-referral-cta {
    gap: 8px;
  }

  .sv-referral-btn {
    padding: 12px 28px;
    font-size: 14px;
    flex: 1;
    min-width: 140px;
  }
}

/* TESTIMONIALS SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .sv-testimonials-section {
    padding: 60px 0;
  }

  .sv-testimonials-carousel .owl-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }

  .sv-testimonial-card {
    padding: 28px 20px;
  }

  .sv-testimonial-avatar {
    width: 56px;
    height: 56px;
  }

  .sv-author-name {
    font-size: 15px;
  }

  .sv-testimonial-text {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .sv-testimonials-section {
    padding: 50px 0;
  }

  .sv-testimonials-section .sv-common-title {
    margin-bottom: 36px;
  }

  .sv-testimonials-carousel .owl-item {
    flex: 1 1 100%;
    min-width: 0;
  }

  .sv-testimonial-card {
    padding: 24px 18px;
    gap: 14px;
  }

  .sv-testimonial-header {
    gap: 14px;
  }

  .sv-testimonial-avatar {
    width: 52px;
    height: 52px;
  }

  .sv-author-name {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .sv-author-title {
    font-size: 12px;
  }

  .sv-testimonial-text {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .sv-testimonials-section {
    padding: 40px 0;
  }

  .sv-testimonials-section .sv-common-title {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .sv-testimonial-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .sv-testimonial-header {
    gap: 12px;
  }

  .sv-testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .sv-author-name {
    font-size: 13px;
  }

  .sv-author-title {
    font-size: 11px;
  }

  .sv-testimonial-rating {
    font-size: 12px;
  }

  .sv-testimonial-text {
    font-size: 11px;
  }
}

/* FOOD TRENDS SECTION RESPONSIVE */
@media (max-width: 1200px) {
  .sv-trends-carousel .owl-item {
    flex: 1 1 calc(33.333% - 13px);
    min-width: 0;
  }

  .sv-trend-image {
    height: 180px;
  }

  .sv-trend-content {
    padding: 18px;
  }

  .sv-trend-title {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .sv-food-trends-section {
    padding: 60px 0;
  }

  .sv-trends-header {
    margin-bottom: 40px;
  }

  .sv-trends-carousel .owl-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .sv-trend-image {
    height: 160px;
  }

  .sv-trend-title {
    font-size: 13px;
  }

  .sv-trend-meta {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .sv-food-trends-section {
    padding: 50px 0;
  }

  .sv-trends-header {
    margin-bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .sv-trends-header .sv-common-title {
    font-size: 22px;
  }

  .sv-trends-carousel .owl-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .sv-trend-image {
    height: 140px;
  }

  .sv-trend-content {
    padding: 16px;
    gap: 10px;
  }

  .sv-trend-title {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 640px) {
  .sv-food-trends-section {
    padding: 40px 0;
  }

  .sv-trends-header {
    margin-bottom: 24px;
  }

  .sv-trends-header .sv-common-title {
    font-size: 20px;
  }

  .sv-see-all-link {
    font-size: 12px;
  }

  .sv-trends-carousel .owl-item {
    flex: 1 1 100%;
    min-width: 0;
  }

  .sv-trend-image {
    height: 180px;
  }

  .sv-trend-content {
    padding: 14px;
  }

  .sv-trend-title {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .sv-trend-meta {
    font-size: 11px;
  }
}

/* FOOTER SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .sv-footer-main {
    padding: 60px 0 50px;
  }

  .sv-footer-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .sv-footer {
    margin-top: 60px;
  }

  .sv-footer-main {
    padding: 50px 0 40px;
  }

  .sv-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sv-footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .sv-footer-navigation {
    font-size: 11px;
    gap: 6px;
  }

  .sv-footer-navigation a {
    font-size: 11px;
  }

  .sv-footer-divider {
    display: none;
  }

  .sv-footer-navigation a::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #475569;
    margin-right: 8px;
    font-size: 4px;
  }

  .sv-footer-navigation a:first-child::before {
    content: "";
    margin-right: 0;
  }

  .sv-footer-app-downloads {
    gap: 12px;
    width: 100%;
  }

  .sv-app-button {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 12px;
  }

  .sv-app-button i {
    font-size: 18px;
  }

  .sv-footer-copyright {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .sv-footer-social {
    align-self: flex-start;
  }
}

@media (max-width: 640px) {
  .sv-footer {
    margin-top: 0px;
  }

  .sv-footer-main {
    padding: 40px 0 30px;
  }

  .sv-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sv-footer-column-title {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .sv-footer-links a {
    font-size: 13px;
  }

  .sv-footer-bottom {
    padding: 30px 0;
  }

  .sv-footer-bottom-content {
    gap: 16px;
    margin-bottom: 24px;
  }

  .sv-footer-navigation {
    font-size: 10px;
    gap: 4px;
  }

  .sv-footer-navigation a {
    font-size: 15px;
  }

  .sv-app-button {
    padding: 8px 10px;
    font-size: 11px;
  }

  .sv-app-button i {
    font-size: 16px;
  }

  .sv-app-text span {
    font-size: 8px;
  }

  .sv-app-text strong {
    font-size: 11px;
  }

  .sv-footer-copyright {
    font-size: 11px;
    gap: 12px;
  }

  .sv-footer-social {
    gap: 8px;
  }

  .sv-footer-social a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* ============================================================
   RESTAURANT HEART ICON STYLES
   ============================================================ */
.sv-restaurant-image {
  position: relative;
}

.sv-restaurant-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  -webkit-appearance: none;
  border: none;
}

.sv-restaurant-heart:hover {
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sv-restaurant-heart i.fa-regular {
  font-size: 20px;
  color: #94a3b8;
  transition: all 200ms ease;
}

.sv-restaurant-heart i.fa-solid {
  font-size: 20px;
  color: #ef4444 !important;
  fill: #ef4444 !important;
  transition: all 200ms ease;
}

.sv-restaurant-heart.liked i {
  animation: sv-heart-beat 600ms ease;
}

@keyframes sv-heart-beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.sv-heart-count {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 24px;
  text-align: center;
  border: 2px solid #ffffff;
}

/* ============================================================
   PAGINATION STYLES
   ============================================================ */
.sv-pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}

.sv-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.sv-pagination-item,
.sv-pagination-prev,
.sv-pagination-next {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  text-decoration: none;
  letter-spacing: 1px;
}

.sv-pagination-item:hover {
  border-color: #8B4513;
  background: #fff7ed;
  color: #8B4513;
}

.sv-pagination-item.active {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.sv-pagination-prev,
.sv-pagination-next {
  min-width: 100px;
  font-size: 13px;
}

.sv-pagination-prev:hover,
.sv-pagination-next:hover {
  border-color: #8B4513;
  background: #fff7ed;
  color: #8B4513;
}

/* ============================================================
   LIKE POPUP MODAL STYLES
   ============================================================ */
.sv-like-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.sv-like-modal {
  background: #ffffff;
  border-radius: 12px;
  max-width: 450px;
  width: 100%;
  padding: 40px 28px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  animation: sv-modal-slide-up 300ms ease;
}

@keyframes sv-modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sv-like-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #cbd5e1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms ease;
  line-height: 1;
}

.sv-like-modal-close:hover {
  color: #64748b;
}

.sv-like-modal-content {
  text-align: center;
}

.sv-like-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.sv-like-modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sv-like-phone-input {
  display: flex;
  gap: 0;
  align-items: center;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
}

.sv-country-code {
  padding: 12px 14px;
  border: none;
  background: #f8f9fa;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  border-right: 1px solid #e2e8f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 100px;
  text-align: center;
  letter-spacing: 1px;
}

.sv-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.sv-flag-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
}

.sv-code {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.sv-phone-number {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 12px 16px;
  color: #0f172a;
  font-family: inherit;
  letter-spacing: 1px;
}

.sv-phone-number::placeholder {
  color: #94a3b8;
}

.sv-phone-number:focus {
  outline: none;
}

.sv-like-modal-note {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 1px;
}

.sv-like-modal-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: left;
}

.sv-like-modal-checkbox input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #8B4513;
}

.sv-like-modal-btn {
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease;
  letter-spacing: 1px;
}

.sv-like-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.sv-like-modal-btn:active {
  transform: translateY(0);
}

.sv-restaurants-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sv-restaurant-row {
  flex: 0 0 calc(33.333% - 14px);
  display: none;
}

@media (max-width: 1024px) {
  .sv-restaurant-row {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .sv-restaurant-row {
    flex: 0 0 calc(50% - 10px);
  }
  
  .sv-pagination-item,
  .sv-pagination-prev,
  .sv-pagination-next {
    min-width: 36px;
    height: 36px;
    font-size: 12px;
  }
  
  .sv-pagination-prev,
  .sv-pagination-next {
    min-width: 80px;
  }
}

@media (max-width: 640px) {
  .sv-restaurant-row {
    flex: 0 0 100%;
  }
  
  .sv-pagination-item,
  .sv-pagination-prev,
  .sv-pagination-next {
    min-width: 32px;
    height: 32px;
    font-size: 11px;
    padding: 6px 8px;
  }
  
  .sv-pagination-prev,
  .sv-pagination-next {
    min-width: 70px;
  }
  
  .sv-restaurant-heart {
    width: 40px;
    height: 40px;
  }
  
  .sv-restaurant-heart i {
    font-size: 16px;
  }
}

/* ============================================================
   FONT AWESOME ICON STYLES
   ============================================================ */

/* Icon Base Styles */
.sv-icon {
  display: inline-block;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Icon Size Utilities */
.sv-icon-xs {
  font-size: 12px;
}

.sv-icon-sm {
  font-size: 14px;
}

.sv-icon-md {
  font-size: 18px;
}

.sv-icon-lg {
  font-size: 24px;
}

.sv-icon-xl {
  font-size: 32px;
}

.sv-icon-2xl {
  font-size: 48px;
}

.sv-icon-3xl {
  font-size: 64px;
}

/* Icon Color Utilities */
.sv-icon-primary {
  color: #d72828;
}

.sv-icon-primary:hover {
  color: #b91f1f;
  transition: color 300ms ease;
}

.sv-icon-secondary {
  color: #b91f1f;
}

.sv-icon-success {
  color: #4caf50;
}

.sv-icon-warning {
  color: #ff9800;
}

.sv-icon-danger {
  color: #f44336;
}

.sv-icon-info {
  color: #2196f3;
}

.sv-icon-light {
  color: #f5f5f5;
}

.sv-icon-dark {
  color: #1a1a1a;
}

.sv-icon-gray {
  color: #666666;
}

.sv-icon-muted {
  color: #999999;
}

.sv-icon-gold {
  color: #ffc107;
}

.sv-icon-brown {
  color: #8b4513;
}

/* Icon Container Styles */
.sv-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 300ms ease;
}

.sv-icon-container-sm {
  width: 32px;
  height: 32px;
}

.sv-icon-container-md {
  width: 44px;
  height: 44px;
}

.sv-icon-container-lg {
  width: 56px;
  height: 56px;
}

.sv-icon-container-xl {
  width: 64px;
  height: 64px;
}

/* Icon Container Backgrounds */
.sv-icon-container-primary {
  background: linear-gradient(135deg, #d72828 0%, #b91f1f 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(215, 40, 40, 0.3);
}

.sv-icon-container-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(215, 40, 40, 0.4);
}

.sv-icon-container-secondary {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  color: #666;
}

.sv-icon-container-secondary:hover {
  background: linear-gradient(135deg, #d72828 0%, #b91f1f 100%);
  color: #fff;
}

.sv-icon-container-dark {
  background: #1a1a1a;
  color: #fff;
}

.sv-icon-container-light {
  background: #f5f5f5;
  color: #333;
}

.sv-icon-container-success {
  background: #4caf50;
  color: #fff;
}

.sv-icon-container-warning {
  background: #ff9800;
  color: #fff;
}

.sv-icon-container-danger {
  background: #f44336;
  color: #fff;
}

.sv-icon-container-info {
  background: #2196f3;
  color: #fff;
}

/* Icon Badge Styles */
.sv-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  background: #f0f0f0;
  color: #666;
}

.sv-icon-badge-primary {
  background: linear-gradient(135deg, #d72828 0%, #b91f1f 100%);
  color: #fff;
}

.sv-icon-badge-success {
  background: #4caf50;
  color: #fff;
}

.sv-icon-badge-warning {
  background: #ff9800;
  color: #fff;
}

.sv-icon-badge-danger {
  background: #f44336;
  color: #fff;
}

/* Icon with Text Styles */
.sv-icon-with-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 300ms ease;
}

.sv-icon-with-text-sm {
  gap: 6px;
}

.sv-icon-with-text-lg {
  gap: 12px;
}

.sv-icon-with-text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

/* Icon Hover Effects */
.sv-icon-hover-lift:hover {
  transform: translateY(-4px);
  transition: transform 300ms ease;
}

.sv-icon-hover-scale:hover {
  transform: scale(1.15);
  transition: transform 200ms ease;
}

.sv-icon-hover-rotate:hover {
  transform: rotate(360deg);
  transition: transform 600ms ease;
}

.sv-icon-hover-spin {
  animation: sv-icon-spin 2s linear infinite;
}

@keyframes sv-icon-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sv-icon-hover-bounce:hover {
  animation: sv-icon-bounce 600ms ease;
}

@keyframes sv-icon-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.sv-icon-hover-pulse:hover {
  animation: sv-icon-pulse 1s ease;
}

@keyframes sv-icon-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.sv-icon-hover-glow:hover {
  filter: drop-shadow(0 0 8px rgba(215, 40, 40, 0.6));
  transition: filter 300ms ease;
}

.sv-icon-hover-shadow:hover {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
  transition: filter 300ms ease;
}

/* Icon Animations */
.sv-icon-fade-in {
  animation: sv-icon-fade-in 600ms ease forwards;
}

@keyframes sv-icon-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sv-icon-slide-in-left {
  animation: sv-icon-slide-left 400ms ease forwards;
}

@keyframes sv-icon-slide-left {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sv-icon-slide-in-right {
  animation: sv-icon-slide-right 400ms ease forwards;
}

@keyframes sv-icon-slide-right {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sv-icon-zoom-in {
  animation: sv-icon-zoom 400ms ease forwards;
}

@keyframes sv-icon-zoom {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Icon List Styles */
.sv-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.sv-icon-list i {
  color: #d72828;
  flex-shrink: 0;
  font-size: 16px;
}

.sv-icon-list span {
  color: #666;
  font-size: 14px;
  flex: 1;
}

/* Icon with Border */
.sv-icon-bordered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #d72828;
  border-radius: 50%;
  color: #d72828;
  transition: all 300ms ease;
}

.sv-icon-bordered:hover {
  background: #d72828;
  color: #fff;
}

/* Icon Circular Badge */
.sv-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.sv-icon-circle-sm {
  width: 32px;
  height: 32px;
}

.sv-icon-circle-md {
  width: 44px;
  height: 44px;
}

.sv-icon-circle-lg {
  width: 56px;
  height: 56px;
}

.sv-icon-circle-primary {
  background: linear-gradient(135deg, #d72828 0%, #b91f1f 100%);
  color: #fff;
}

.sv-icon-circle-light {
  background: #f5f5f5;
  color: #d72828;
}

.sv-icon-circle-dark {
  background: #1a1a1a;
  color: #fff;
}

/* Icon Stack */
.sv-icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: -0.125em;
}

.sv-icon-stack-base {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}

.sv-icon-stack-1x {
  font-size: 0.75em;
}

.sv-icon-stack-2x {
  font-size: 1.5em;
}

/* Icon Gradient */
.sv-icon-gradient {
  background: linear-gradient(135deg, #d72828 0%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Icon Spacing */
.sv-icon-mr {
  margin-right: 8px;
}

.sv-icon-ml {
  margin-left: 8px;
}

.sv-icon-mx {
  margin-left: 8px;
  margin-right: 8px;
}

.sv-icon-my {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Icon Typography */
.sv-icon-text-xs { font-size: 10px; }
.sv-icon-text-sm { font-size: 12px; }
.sv-icon-text-base { font-size: 16px; }
.sv-icon-text-lg { font-size: 20px; }
.sv-icon-text-xl { font-size: 24px; }
.sv-icon-text-2xl { font-size: 32px; }
.sv-icon-text-3xl { font-size: 48px; }
.sv-icon-text-4xl { font-size: 64px; }

/* Icon Opacity */
.sv-icon-opacity-50 { opacity: 0.5; }
.sv-icon-opacity-75 { opacity: 0.75; }
.sv-icon-opacity-100 { opacity: 1; }

/* Responsive Icon Sizes */
@media (max-width: 768px) {
  .sv-icon-responsive {
    font-size: 16px;
  }
  
  .sv-icon-container-md {
    width: 40px;
    height: 40px;
  }
  
  .sv-icon-with-text {
    gap: 6px;
  }
}

/* ============================================================
   FONT AWESOME CONTENT ICONS (::before & ::after)
   ============================================================ */

/* Content Icon Base Setup */
[class*="sv-icon-content"]::before,
[class*="sv-icon-content"]::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Search Icon Content */
.sv-search-icon-content::before {
  content: "\f002";
  margin-right: 8px;
  color: #64748b;
}

/* Heart Icon Content */
.sv-heart-icon-content::before {
  content: "\f004";
  margin-right: 8px;
  color: #d72828;
}

.sv-heart-icon-content-after::after {
  content: "\f004";
  margin-left: 8px;
  color: #d72828;
}

/* Star Icon Content */
.sv-star-icon-content::before {
  content: "\f005";
  margin-right: 6px;
  color: #ffc107;
}

.sv-star-icon-content-after::after {
  content: "\f005";
  margin-left: 6px;
  color: #ffc107;
}

/* Check Icon Content */
.sv-check-icon-content::before {
  content: "\f058";
  margin-right: 8px;
  color: #4caf50;
}

.sv-check-icon-content-after::after {
  content: "\f058";
  margin-left: 8px;
  color: #4caf50;
}

/* Location Icon Content */
.sv-location-icon-content::before {
  content: "\f3c5";
  margin-right: 8px;
  color: #d72828;
}

.sv-location-icon-content-after::after {
  content: "\f3c5";
  margin-left: 8px;
  color: #d72828;
}

/* Phone Icon Content */
.sv-phone-icon-content::before {
  content: "\f095";
  margin-right: 8px;
  color: #d72828;
}

/* Email Icon Content */
.sv-email-icon-content::before {
  content: "\f0e0";
  margin-right: 8px;
  color: #d72828;
}

/* Clock Icon Content */
.sv-clock-icon-content::before {
  content: "\f017";
  margin-right: 8px;
  color: #ff9800;
}

.sv-clock-icon-content-after::after {
  content: "\f017";
  margin-left: 8px;
  color: #ff9800;
}

/* User Icon Content */
.sv-user-icon-content::before {
  content: "\f007";
  margin-right: 8px;
  color: #2196f3;
}

.sv-user-icon-content-after::after {
  content: "\f007";
  margin-left: 8px;
  color: #2196f3;
}

/* Calendar Icon Content */
.sv-calendar-icon-content::before {
  content: "\f133";
  margin-right: 8px;
  color: #2196f3;
}

/* Bookmark Icon Content */
.sv-bookmark-icon-content::before {
  content: "\f02e";
  margin-right: 8px;
  color: #d72828;
}

/* Arrow Icon Content */
.sv-arrow-icon-content-after::after {
  content: "\f061";
  margin-left: 8px;
  font-size: 0.85em;
  transition: transform 300ms ease;
}

/* Download Icon Content */
.sv-download-icon-content::before {
  content: "\f019";
  margin-right: 8px;
  color: #4caf50;
}

/* Upload Icon Content */
.sv-upload-icon-content::before {
  content: "\f093";
  margin-right: 8px;
  color: #2196f3;
}

/* Bell Icon Content */
.sv-bell-icon-content::before {
  content: "\f0f3";
  margin-right: 8px;
  color: #ff9800;
}

/* Settings Icon Content */
.sv-settings-icon-content::before {
  content: "\f013";
  margin-right: 8px;
  color: #64748b;
}

/* Info Icon Content */
.sv-info-icon-content::before {
  content: "\f129";
  margin-right: 8px;
  color: #2196f3;
}

/* Warning Icon Content */
.sv-warning-icon-content::before {
  content: "\f071";
  margin-right: 8px;
  color: #ff9800;
}

/* Error/Times Icon Content */
.sv-error-icon-content::before {
  content: "\f057";
  margin-right: 8px;
  color: #f44336;
}

/* Eye Icon Content */
.sv-eye-icon-content::before {
  content: "\f06e";
  margin-right: 8px;
  color: #64748b;
}

/* Eye Slash Icon Content */
.sv-eye-slash-icon-content::before {
  content: "\f070";
  margin-right: 8px;
  color: #64748b;
}

/* Menu Icon Content */
.sv-menu-icon-content::before {
  content: "\f0c9";
  margin-right: 8px;
  color: #1a1a1a;
}

/* Home Icon Content */
.sv-home-icon-content::before {
  content: "\f015";
  margin-right: 8px;
  color: #1a1a1a;
}

/* Hamburger Menu Content */
.sv-hamburger-icon-content::before {
  content: "\f0c9";
  display: block;
}

/* X / Close Icon Content */
.sv-close-icon-content::before {
  content: "\f00d";
  margin-right: 8px;
  color: #d72828;
}

/* Plus Icon Content */
.sv-plus-icon-content::before {
  content: "\f067";
  margin-right: 8px;
  color: #4caf50;
}

/* Minus Icon Content */
.sv-minus-icon-content::before {
  content: "\f068";
  margin-right: 8px;
  color: #f44336;
}

/* Quote Icon Content */
.sv-quote-icon-content::before {
  content: "\f10d";
  margin-right: 12px;
  font-size: 1.2em;
  color: #d72828;
  opacity: 0.6;
}

/* Utensils Icon Content */
.sv-utensils-icon-content::before {
  content: "\f2e7";
  margin-right: 8px;
  color: #8b4513;
}

/* Chef Icon Content */
.sv-chef-icon-content::before {
  content: "\f2d3";
  margin-right: 8px;
  color: #8b4513;
}

/* Leaf Icon Content */
.sv-leaf-icon-content::before {
  content: "\f06c";
  margin-right: 8px;
  color: #4caf50;
}

/* Droplet Icon Content */
.sv-droplet-icon-content::before {
  content: "\f043";
  margin-right: 8px;
  color: #2196f3;
}

/* Fire Icon Content */
.sv-fire-icon-content::before {
  content: "\f06d";
  margin-right: 8px;
  color: #ff5722;
}

/* Spoon Icon Content */
.sv-spoon-icon-content::before {
  content: "\f2e5";
  margin-right: 8px;
  color: #8b4513;
}

/* Coffee Icon Content */
.sv-coffee-icon-content::before {
  content: "\f0f4";
  margin-right: 8px;
  color: #8b4513;
}

/* Wine Glass Icon Content */
.sv-wine-glass-icon-content::before {
  content: "\f4e3";
  margin-right: 8px;
  color: #d72828;
}

/* Pizza Slice Icon Content */
.sv-pizza-icon-content::before {
  content: "\f308";
  margin-right: 8px;
  color: #ff9800;
}

/* Car Icon Content */
.sv-car-icon-content::before {
  content: "\f1b9";
  margin-right: 8px;
  color: #2196f3;
}

/* Wifi Icon Content */
.sv-wifi-icon-content::before {
  content: "\f1eb";
  margin-right: 8px;
  color: #2196f3;
}

/* Wheelchair Icon Content */
.sv-wheelchair-icon-content::before {
  content: "\f193";
  margin-right: 8px;
  color: #2196f3;
}

/* Music Icon Content */
.sv-music-icon-content::before {
  content: "\f025";
  margin-right: 8px;
  color: #d72828;
}

/* Volume Icon Content */
.sv-volume-icon-content::before {
  content: "\f028";
  margin-right: 8px;
  color: #ff9800;
}

/* Megaphone Icon Content */
.sv-megaphone-icon-content::before {
  content: "\f675";
  margin-right: 8px;
  color: #d72828;
}

/* Spinner Icon Content (Animated) */
.sv-spinner-icon-content::before {
  content: "\f1ce";
  margin-right: 8px;
  color: #d72828;
  animation: sv-spin 1s linear infinite;
}

@keyframes sv-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Badge Decorators */
.sv-icon-content-badge {
  position: relative;
  padding-left: 24px;
}

.sv-icon-content-badge::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4caf50;
  font-size: 0.8em;
}

/* Link with Arrow */
.sv-link-arrow::after {
  content: "\f061";
  margin-left: 8px;
  transition: transform 300ms ease;
}

.sv-link-arrow:hover::after {
  transform: translateX(4px);
}

/* Button Icons */
.sv-btn-icon-before::before {
  content: attr(data-icon);
  margin-right: 8px;
  display: inline-block;
}

.sv-btn-icon-after::after {
  content: attr(data-icon);
  margin-left: 8px;
  display: inline-block;
}

/* Responsive Content Icons */
@media (max-width: 768px) {
  [class*="sv-icon-content"]::before,
  [class*="sv-icon-content"]::after {
    font-size: 0.9em;
  }
  
  .sv-arrow-icon-content-after::after {
    margin-left: 4px;
  }
  
  .sv-link-arrow:hover::after {
    transform: translateX(2px);
  }
}