.elementor-77 .elementor-element.elementor-element-5fcf22e{--display:flex;}.elementor-77:not(.elementor-motion-effects-element-type-background), .elementor-77 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-26826aa *//* RESET FIX (ELEMENTOR ISSUE FIX) */
.main-header, .nav, .logo, .socials {
  box-sizing: border-box;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #fff;
  overflow: hidden;
  padding: 12px 0; /* bigger */
}

.marquee {
  display: flex;
  align-items: center;
  gap: 40px; /* better spacing */
  animation: scrollLeft 18s linear infinite;
}

.top-bar:hover .marquee {
  animation-play-state: paused;
}

.delivery-text {
  color: #111;
  font-weight: 600;
  font-size: 16px;
  margin-left: 15px;
}

/* PLATFORM */
.platform {
  padding: 6px 12px;
}

.platform img {
  height: 30px; /* bigger logos */
}

/* SCROLL */
@keyframes scrollLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* ===== HEADER ===== */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* LOGO */
.logo img {
  height: 60px;
}

/* NAV CENTER ALIGN */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* NAV LINKS */
.nav a {
  color: #fff;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #e50914;
}

/* SOCIAL DESKTOP */
.socials {
  display: flex;
  align-items: center;
}

.socials a {
  color: #fff;
  margin-left: 15px;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  color: #e50914;
}

/* MENU BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* CLOSE BUTTON */
.close-btn {
  display: none;
}

/* 🔥 IMPORTANT FIX (DOUBLE SOCIAL ISSUE) */
.mobile-socials {
  display: none;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .menu-toggle {
    display: block;
  }

  .socials {
    display: none; /* hide desktop */
  }

  .logo img {
    height: 50px;
  }

  /* SLIDE MENU */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    margin: 15px 0;
    font-size: 20px;
  }

  /* CLOSE BUTTON */
  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }

  /* MOBILE SOCIAL SHOW */
  .mobile-socials {
    display: block;
    margin-top: 20px;
  }

  .mobile-socials a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
  }
}/* End custom CSS */