/* Homepage Search Hero */
#vm_home_search,
#vm_home_search_location {
  position: relative;
}

#main-search-banner {
  position: relative;
  min-height: 480px;
  padding: 64px 16px 72px;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.62) 45%,
      rgba(255, 255, 255, 0.2) 100%
    ),
    url("../images/full-header.png") center center / cover no-repeat;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.28s ease, filter 0.28s ease;
}

#main-search-banner::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(245, 19, 89, 0.22), transparent 60%);
  filter: blur(2px);
  animation: homeBannerGlowDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

#main-search-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.58) 45%,
    rgba(255, 255, 255, 0.28) 100%
  );
  background-size: 220% 220%;
  animation: homeBannerSheen 11s ease-in-out infinite;
  pointer-events: none;
}

#main-search-banner .banner-center {
  position: relative;
  width: 100%;
  max-width: 780px;
  z-index: 1;
  animation: homeBannerContentIn 420ms ease-out;
}

@keyframes homeBannerGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.74;
  }
  100% {
    transform: translate3d(-48px, 26px, 0) scale(1.08);
    opacity: 0.36;
  }
}

@keyframes homeBannerSheen {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 60%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes homeBannerContentIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  width: fit-content;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f51359;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(245, 19, 89, 0.2);
}

.home-title,
#main-search-banner h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  color: #0b1220;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-shadow: 0 6px 22px rgba(15, 23, 42, 0.22);
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 auto;
  font-size: clamp(16px, 1.6vw, 20px);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
}

.home-search-wrap {
  width: 100%;
  max-width: 620px;
  margin: 20px auto 0;
}

#main-search-banner .home-search-wrap .d-flex {
  gap: 12px;
  align-items: center;
}

#vue-home-search .search-geocomplete-results {
  position: absolute;
  background: #fff;
  width: 100%;
  z-index: 999;
}

.home-search-card {
  padding: 18px 18px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#main-search-banner .search-geocomplete {
  background: transparent;
  border-radius: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

#main-search-banner .search-geocomplete.width_87 {
  width: auto !important;
}

#main-search-banner .search-geocomplete .el-input__wrapper {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  min-height: 52px;
  padding: 6px 16px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

#main-search-banner .search-geocomplete .el-input__wrapper.is-focus {
  border-color: rgba(245, 19, 89, 0.35);
  box-shadow: 0 0 0 4px rgba(245, 19, 89, 0.12),
    0 18px 36px rgba(15, 23, 42, 0.14);
}

#main-search-banner .search-geocomplete .el-input__inner {
  font-size: 16px;
  color: #0f172a;
  height: 44px;
}

#main-search-banner .search-geocomplete .el-input__inner::placeholder {
  color: #64748b;
}

#main-search-banner .flex-enabled-locate {
  display: flex;
  align-items: center;
}

#main-search-banner .flex-enabled-locate .btn-green {
  margin: 0;
  height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(62, 207, 142, 0.25);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 14px;
  justify-content: center;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1f2937;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-meta-item i {
  color: #f51359;
  font-size: 14px;
}

#main-search-banner:hover,
#main-search-banner:focus-within {
  box-shadow: inset 0 0 0 1px rgba(245, 19, 89, 0.12);
  filter: saturate(1.08);
}

#main-search-banner:hover::before,
#main-search-banner:focus-within::before {
  opacity: 0.9;
  transform: translate3d(-34px, 20px, 0) scale(1.16);
}

#main-search-banner:hover .home-search-card,
#main-search-banner:focus-within .home-search-card {
  transform: translateY(-4px);
  border-color: rgba(245, 19, 89, 0.2);
  box-shadow: 0 32px 66px rgba(15, 23, 42, 0.24);
}

#main-search-banner:hover .hero-meta-item,
#main-search-banner:focus-within .hero-meta-item {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  #main-search-banner::before,
  #main-search-banner::after,
  #main-search-banner .banner-center {
    animation: none;
  }
}

@media (max-width: 768px) {
  #main-search-banner {
    min-height: 420px;
    padding: 48px 16px 56px;
  }

  .home-title,
  #main-search-banner h2 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .home-search-card {
    padding: 16px;
  }

  .hero-meta {
    gap: 8px 10px;
  }
}
#vm_home_search .inputs-box-grey,
#vm_home_search_location .inputs-box-grey {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 16px 14px 44px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

#vm_home_search .inputs-box-grey:focus,
#vm_home_search_location .inputs-box-grey:focus {
  box-shadow: 0 0 0 3px rgba(245, 19, 89, 0.2),
    0 12px 30px rgba(15, 23, 42, 0.12);
}

#vm_home_search .search-geocomplete-results,
#vm_home_search_location .search-geocomplete-results {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.mobile-home-banner {
  height: 220px;
  background: url("../images/full-header.png") center center / cover no-repeat;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.mobile-home-banner::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 19, 89, 0.18), transparent 60%);
  pointer-events: none;
}

@media (max-width: 991px) {
  #main-search-banner {
    min-height: auto;
    padding: 24px 16px 12px;
    background: none;
    border-bottom: none;
  }

  #main-search-banner::before,
  #main-search-banner::after {
    content: none;
  }

  .home-title,
  #main-search-banner h2 {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .home-search-card {
    padding: 14px 14px 10px;
  }
}

@media (max-width: 575px) {
  .mobile-home-banner {
    height: 160px;
  }

  .home-title,
  #main-search-banner h2 {
    font-size: 22px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  #vm_home_search .inputs-box-grey,
  #vm_home_search_location .inputs-box-grey {
    padding: 12px 14px 12px 40px;
  }

  .hero-meta {
    justify-content: flex-start;
  }
}

@media (min-width: 576px) {
  #main-search-banner .flex-enabled-locate {
    margin-left: 12px;
  }
}

/* ============================================
   CUISINE CAROUSEL - Homepage + location feed
   ============================================ */

#vue-home-widgets {
  margin: 40px auto;
  padding: 24px 15px 0;
}

#vue-home-widgets h3,
#vue-home-widgets .section-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 12px;
}

#vue-home-widgets h3::after,
#vue-home-widgets .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f51359 0%, transparent 100%);
}

/* Home: closed restaurant cards */
#vue-home-widgets .swiperResto .swiperSlide.is-closed {
  opacity: 0.88;
}

#vue-home-widgets .swiperResto .swiperSlide.is-closed:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

#vue-home-widgets .swiperResto .swiperSlide.is-closed img {
  filter: grayscale(1) saturate(0.2);
}

#vue-home-widgets .swiperResto .swiperSlide.is-closed .swiper-restaurant-name,
#vue-home-widgets .swiperResto .swiperSlide.is-closed .swiper-cuisine,
#vue-home-widgets .swiperResto .swiperSlide.is-closed .swiper-meta {
  color: #9ca3af;
}

#vue-home-widgets .swiperResto .swiper-promo-badges {
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: calc(100% - 24px);
}

#vue-home-widgets .swiperResto .swiper-promo-badges .el-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.45);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.22);
  backdrop-filter: none;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  text-align: left;
}

#vue-home-widgets .swiperResto .swiper-promo-badges .el-tag__content {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#vue-home-widgets .swiperResto .swiper-promo-badges .el-tag--danger {
  background: rgba(15, 23, 42, 0.84);
  color: #ffffff;
  border-color: rgba(15, 23, 42, 0.45);
}

#vue-home-widgets .swiperResto .swiper-promo-badges .el-tag--warning {
  background: rgba(15, 23, 42, 0.84);
  color: #ffffff;
  border-color: rgba(15, 23, 42, 0.45);
}
#vue-home-widgets .swiperResto .swiperSlide .swiper-card-body {
  padding: 10px 14px 12px !important;
  gap: 4px;
}

#vue-home-widgets .swiperResto .swiper-meta {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 4px;
  margin-top: 2px;
  gap: 6px;
}

#vue-home-widgets .swiperResto .swiper-meta-item {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 11.5px;
  color: #1f2937;
}

#vue-home-widgets .swiperResto .swiper-rating {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 18px;
}

#vue-home-widgets .swiperResto .swiper-rating i {
  font-size: 18px;
}

#vue-home-widgets .swiperResto .swiper-rating.rating-good {
  color: #16a34a;
}

#vue-home-widgets .swiperResto .swiper-rating.rating-mid {
  color: #f59e0b;
}

#vue-home-widgets .swiperResto .swiper-rating.rating-low {
  color: #ef4444;
}

#vue-home-widgets .swiperResto .swiper-meta-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
}

#vue-home-widgets .swiperResto .swiper-restaurant-name {
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 1px !important;
}

#vue-home-widgets .swiperResto .swiper-cuisine {
  font-size: 12.5px;
  margin-bottom: 1px !important;
}

#vue-home-widgets .swiperResto .swiper-status {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  max-width: 100%;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

#vue-home-widgets .swiperResto .swiper-status i {
  color: #f59e0b;
  font-size: 11px;
}

#vue-home-widgets .swiperResto .swiper-status .swiper-next-opening {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font-size: 11px;
  line-height: 1.2;
  white-space: normal;
}

#vue-home-widgets .swiperResto .layer-content {
  display: none !important;
}

.swiper-cuisine-wrap {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-cuisine-wrap.swiperOutsideContainer {
  padding-left: 0;
  padding-right: 0;
}

.swiperCuisine .swiperSlide {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 18px;
  overflow: visible;
  transition: transform 0.25s ease;
}

.swiperCuisine .swiperSlide:hover {
  transform: translateY(-2px);
  z-index: 5;
}

.swiperCuisine .swiper-slide {
  padding: 6px;
  height: auto;
  border-radius: 18px;
  background: transparent;
  overflow: visible;
  position: relative;
}

.swiperCuisine .el-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  overflow: hidden;
  outline: 2px solid transparent;
  outline-offset: -2px;
}

.swiperCuisine .el-links:hover {
  border-color: rgba(245, 19, 89, 0.35);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16), inset 0 0 0 2px rgba(245, 19, 89, 0.6);
  outline-color: rgba(245, 19, 89, 0.6);
}

.swiperCuisine .el-links > div:first-child {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px 14px 0 0;
}

.swiperCuisine .el-links > div:first-child img,
.swiperCuisine .el-links .cuisine-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
}

.swiperCuisine .swiperSlide img {
  height: 100%;
  object-fit: contain;
}

.swiperCuisine .el-links .truncate {
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 10px 10px 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swiperCuisine .swiper-button-next,
.swiperCuisine .swiper-button-prev {
  width: 18px !important;
  height: 18px !important;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background 0.3s ease, border-color 0.3s ease;
}

.swiperCuisine .swiper-button-next:hover,
.swiperCuisine .swiper-button-prev:hover {
  background: #f51359;
  box-shadow: 0 10px 24px rgba(245, 19, 89, 0.35);
  transform: scale(1.08);
  border-color: rgba(245, 19, 89, 0.2);
}

.swiperCuisine .swiper-button-next:after,
.swiperCuisine .swiper-button-prev:after {
  font-size: 8px !important;
  font-weight: 900;
  color: #f51359;
  transition: all 0.3s ease;
}

.swiperCuisine .swiper-button-next:hover:after,
.swiperCuisine .swiper-button-prev:hover:after {
  color: #ffffff;
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .swiperCuisine .swiper-slide {
    padding: 8px;
  }

  .swiperCuisine .el-links .truncate {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .swiperCuisine .swiper-button-next,
  .swiperCuisine .swiper-button-prev {
    width: 38px;
    height: 38px;
  }

  .swiperCuisine .swiper-button-next:after,
  .swiperCuisine .swiper-button-prev:after {
    font-size: 14px;
  }
}

/* ============================================
   Join Section (Homepage)
   ============================================ */

.join-section-block {
  position: relative;
  margin: 64px 0 48px;
  padding: 36px 20px 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
  border: 1px solid #f1e7ed;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  width: 100%;
}

.join-section-inner {
  position: relative;
  z-index: 2;
}

.join-section-block::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(245, 19, 89, 0.2),
    transparent 70%
  );
  opacity: 0.6;
  pointer-events: none;
}

.join-section-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.join-swiper .swiper-button-next,
.join-swiper .swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  border: 1px solid #f1e7ed;
}

.join-swiper .swiper-button-next:after,
.join-swiper .swiper-button-prev:after {
  font-size: 12px;
  color: #f43f5e;
  font-weight: 700;
}

.join-sections .swiper-slide {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.join-sections img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 0;
}

.join-sections .content {
  padding: 18px 18px 22px;
  border: none;
  background: #ffffff;
}

.join-sections .content h5 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 8px;
}

.join-sections .content p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
  min-height: 44px;
}

.join-cta.el-button--success.is-plain {
  border-color: rgba(245, 19, 89, 0.3);
  color: #f43f5e;
  background: rgba(245, 19, 89, 0.08);
  font-weight: 700;
}

.join-cta.el-button--success.is-plain:hover {
  border-color: #f43f5e;
  background: #f43f5e;
  color: #ffffff;
}

.join-cta.el-button--success.is-plain:hover span,
.join-cta.el-button--success.is-plain:hover i {
  color: #ffffff;
}

@media (max-width: 991px) {
  .join-section-block {
    padding: 28px 16px 20px;
  }

  .join-section-title {
    font-size: 24px;
  }

  .join-sections img {
    height: 170px;
  }
}

@media (max-width: 576px) {
  .join-section-block {
    margin: 48px 0 32px;
  }

  .join-sections .content h5 {
    font-size: 16px;
  }

  .join-sections .content p {
    font-size: 13px;
  }
}

/* ============================================
   Homepage App Download Section (No anime)
   ============================================ */

.food-anime-promo,
.food-anime-promo-mobile {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(130deg, #fff1f5 0%, #ffffff 45%, #f8fbff 100%);
  overflow: hidden;
  border-top: 1px solid #f3e8ef;
}

.food-bg-elements,
.food-bg-elements-mobile {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.food-anime-promo::before,
.food-anime-promo-mobile::before {
  content: "";
  position: absolute;
  inset: -20% 10% auto 10%;
  height: 60%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(245, 19, 89, 0.18),
    transparent 60%
  );
  opacity: 0.8;
  pointer-events: none;
}

.food-circle-1,
.food-circle-2,
.food-circle-1-mobile,
.food-circle-2-mobile {
  position: absolute;
  border-radius: 999px;
  background: rgba(245, 19, 89, 0.12);
}

.food-circle-1 {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
}

.food-circle-2 {
  width: 380px;
  height: 380px;
  bottom: -180px;
  left: -140px;
  background: rgba(245, 19, 89, 0.09);
}

.food-grid,
.food-grid-mobile {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(
    rgba(15, 23, 42, 0.08) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
}

.floating-food,
.floating-food-mobile,
.steam-container,
.steam-container-mobile,
.food-sparkle,
.food-plate,
.food-phone-shadow {
  display: none !important;
}

.food-heading {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.food-description {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
}

.food-badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 16px;
  background: #fff1f5;
  border-radius: 20px;
  border: 1px solid rgba(244, 63, 94, 0.2);
  box-shadow: none;
}

.food-badge span {
  color: #f43f5e;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.food-feature-list,
.food-feature-list-mobile {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.food-feature-list li,
.food-feature-list-mobile li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.food-feature-list li:hover,
.food-feature-list-mobile li:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

.food-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff1f5;
  border-radius: 10px;
  margin-right: 16px;
  flex-shrink: 0;
}

.food-feature-icon i {
  font-size: 20px;
  color: #f43f5e;
}

.food-feature-list li span,
.food-feature-list-mobile li span {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.food-phone-container,
.food-phone-container-mobile {
  position: relative;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.food-phone-frame,
.food-phone-frame-mobile {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
  border: 0;
  background: transparent;
  max-width: 320px;
  width: 100%;
  transform: none;
}

.food-phone-img,
.food-phone-img-mobile {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.food-download-buttons,
.food-download-buttons-mobile {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.food-store-btn {
  display: inline-block;
  transition: transform 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.food-store-btn:hover {
  transform: translateY(-3px);
}

.food-store-btn img {
  height: 60px;
  width: auto;
  display: block;
}

.food-text-content,
.food-download-content {
  position: relative;
  z-index: 2;
  color: #0f172a;
  padding: 20px;
}

.food-download-content {
  background: #ffffff;
  color: #0f172a;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  width: 100%;
}

.food-download-content .food-heading {
  color: #0f172a;
  margin-bottom: 14px;
}

.food-download-content .food-badge {
  background: rgba(245, 19, 89, 0.12);
  border-color: rgba(245, 19, 89, 0.2);
}

.food-download-content .food-description {
  color: #475569;
}

@media (max-width: 991px) {
  .food-anime-promo,
  .food-anime-promo-mobile {
    padding: 56px 0;
  }

  .food-heading {
    font-size: 28px;
  }

  .food-description {
    font-size: 16px;
  }

  .food-phone-frame,
  .food-phone-frame-mobile {
    max-width: 260px;
    transform: none;
  }
}

@media (max-width: 767px) {
  .food-anime-promo-mobile {
    padding: 40px 0;
  }

  .food-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .food-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .food-feature-list-mobile {
    margin-bottom: 24px;
  }

  .food-feature-list-mobile li {
    padding: 10px 14px;
  }

  .food-feature-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }

  .food-store-btn img {
    height: 52px;
  }

  .food-download-content {
    padding: 22px;
  }
}

@media (max-width: 576px) {
  .swiperCuisine .swiper-slide {
    padding: 6px;
  }

  .swiperCuisine .el-links .truncate {
    font-size: 12px;
  }
}
