.food-menu-wrapper,
.tab-content {
  position: relative;
  z-index: 2;
}

/* Contenedor de íconos flotantes */
.floating-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Wrapper para permitir la animación adicional con JS */
.floating-wrapper {
  position: absolute;
  will-change: transform;
  transition: transform 0.3s ease;
  z-index: 0;
}

/* Ícono flotante individual */
.floating-icon {
  width: 40px;
  pointer-events: none;
  animation: floatY 6s ease-in-out infinite;
  filter: blur(0px);
  transition: filter 0.3s ease;
}

/* Animación flotante */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.vs-menu-area {
  background-color: var(--black-color) !important;
}

input.form-control::placeholder {
  color: black !important;
}

.vs-box1 {
  background-color: var(--dark-color) !important;
}

.vs-team-wrapper {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

@media (min-width: 992px) {
  .vs-team-wrapper {
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }
}
.text-xs {
  color: #000000 !important;
}
 
.vs-food-box {
  position: relative;
  overflow: visible;
}

.food-inner {
  position: relative;
}

.food-img {
  position: relative;
  width: 90%;
}

.food-img img {
  width: 100%;
  display: block;
}

.food-img .price {
  position: absolute;
  bottom: 80px;
  right: 20px;
  background-color: #ff5722;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  z-index: 10;
  font-size: 13px;
  line-height: 1.2;
  min-width: 65px;
}

.food-content-overlay {
  position: absolute;
  top: 10%;
  left: 5%;
  z-index: 9;
  color: white;
  max-width: 90%;
  padding: 20px;
  border-radius: 10px;
}

.food-subtitle {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.food-title {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.2;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  color: white;
}

.vs-btn {
  background-color: #000000;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.food-title2 {
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 0.2;
  color: black;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

@media (max-width: 991.98px) {
  h2.text-white-mobile {
    color: #fff !important;
  }
}

@media (max-width: 991.98px) {
  p.text-white-mobile {
    color: #fff !important;
  }
}

.text-menu-title {
  font-size: 24px;
  font-weight: bold;
  color: #931e5c !important;
}

 .food-box-layout8 .food-img .price {
     background-color: #931e5c;
     span{
        margin-bottom: 0;
     }
	 
	 
	 
