/**
 * BITELo Modern CSS
 * Modern, high-performance styles for Wolt-like delivery experience
 * 
 * This file is enqueued separately from the parent theme CSS
 * to provide modern Flexbox/Grid layouts without Bootstrap conflicts
 */

/* ========================================
   01. CSS RESET & BASE
   ======================================== */

.bitelo-reset *,
.bitelo-reset *::before,
.bitelo-reset *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================================
   02. GLOBAL HEADER - Wolt Inspired
   ======================================== */

.bitelo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.bitelo-header--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: #f3f4f6;
}

/* Applied by bitelo-core.js when user has scrolled past 80px */
.bitelo-header--sticky {
  box-shadow: 0 10px 30px rgba(16, 22, 47, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.98);
}

/* Applied by bitelo-core.js when user scrolls down quickly */
.bitelo-header--hidden {
  transform: translateX(-50%) translateY(-140%) !important;
  opacity: 0;
  pointer-events: none;
}

.bitelo-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.bitelo-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.bitelo-logo__image {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(16, 22, 47, 0.12);
}

.bitelo-logo__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #111827;
}

/* Language switcher */
.bitelo-language {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.18rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.bitelo-language__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  transition: all 0.2s ease;
}

.bitelo-language__item:hover,
.bitelo-language__item.is-active {
  background: #111827;
  color: #fff;
}

.bitelo-logo__svg {
  height: 32px;
  width: auto;
}

/* Location Switcher */
.bitelo-location {
  position: relative;
  flex: 1;
  max-width: 320px;
  display: flex;
  justify-content: center;
}

.bitelo-location__trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: 100%;
}

.bitelo-location__trigger:hover {
  background: #e6f9f7;
  border-color: #00c2b3;
}

.bitelo-location__icon {
  font-size: 1rem;
  color: #00c2b3;
}

.bitelo-location__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.bitelo-location__chevron {
  font-size: 0.625rem;
  color: #9ca3af;
  transition: transform 0.2s;
}

.bitelo-location__trigger[aria-expanded="true"] .bitelo-location__chevron {
  transform: rotate(180deg);
}

/* Location Dropdown */
.bitelo-location__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  max-width: 90vw;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.2s ease;
}

.bitelo-location__dropdown:not([hidden]) {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.bitelo-location__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}

.bitelo-location__header h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.bitelo-location__close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #9ca3af;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.bitelo-location__close:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Detect Location Button */
.bitelo-location__detect {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: #e6f9f7;
  border: 1px solid #00c2b3;
  border-radius: 12px;
  color: #00a396;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 1rem;
}

.bitelo-location__detect:hover {
  background: #00c2b3;
  color: white;
}

.bitelo-pulse {
  width: 12px;
  height: 12px;
  background: #00c2b3;
  border-radius: 50%;
  position: relative;
}

.bitelo-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #00c2b3;
  border-radius: 50%;
  animation: bitelo-pulse-ring 2s infinite;
}

@keyframes bitelo-pulse-ring {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Saved Addresses List */
.bitelo-location__saved h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.bitelo-location__list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

.bitelo-location__item {
  margin-bottom: 0.5rem;
}

.bitelo-checkbox--legal {
  align-items: flex-start;
  line-height: 1.4;
  gap: 0.625rem;
}

.bitelo-checkbox--legal a {
  color: #00a396;
  text-decoration: underline;
}

.bitelo-cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  background: #111827;
  color: #f9fafb;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  padding: 1rem;
  display: none;
}

.bitelo-cookie-consent.is-visible {
  display: block;
}

.bitelo-cookie-consent__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.bitelo-cookie-consent__text {
  font-size: 0.9rem;
  color: #d1d5db;
  margin: 0 0 0.9rem;
}

.bitelo-cookie-consent__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bitelo-cookie-consent__actions button {
  border: 0;
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.bitelo-cookie-consent__actions .bitelo-btn-accept-all {
  background: #10b981;
  color: #ffffff;
}

.bitelo-cookie-consent__actions .bitelo-btn-essential {
  background: #374151;
  color: #f9fafb;
}

.bitelo-cookie-consent__actions .bitelo-btn-settings {
  background: #1f2937;
  color: #f9fafb;
  border: 1px solid #4b5563;
}

.bitelo-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.bitelo-cookie-modal.is-visible {
  display: flex;
}

.bitelo-cookie-modal__card {
  width: min(640px, 100%);
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem;
}

.bitelo-cookie-modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.bitelo-cookie-modal__desc {
  margin: 0 0 1rem;
  color: #6b7280;
}

.bitelo-cookie-category {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 0.65rem;
}

.bitelo-cookie-category__head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.bitelo-cookie-category__name {
  font-weight: 600;
}

.bitelo-cookie-category__text {
  margin: 0.35rem 0 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.bitelo-cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .bitelo-cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

.bitelo-location__address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: #f9fafb;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.bitelo-location__address:hover {
  background: white;
  border-color: #00c2b3;
}

.bitelo-location__address-icon {
  font-size: 1.25rem;
}

.bitelo-location__address-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bitelo-location__address-info strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}

.bitelo-location__address-info span {
  font-size: 0.75rem;
  color: #6b7280;
}

.bitelo-location__empty {
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
  padding: 1rem;
}

.bitelo-location__add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: white;
  border: 2px dashed #e5e7eb;
  border-radius: 10px;
  color: #00c2b3;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-location__add:hover {
  border-color: #00c2b3;
  background: #f0fdfa;
}

/* Header Actions */
.bitelo-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bitelo-header__action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-header__action:hover {
  background: #f3f4f6;
  color: #00c2b3;
}

.bitelo-header__login {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #00c2b3;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.2s;
}

.bitelo-header__login:hover {
  background: #e6f9f7;
}

/* User Dropdown */
.bitelo-user {
  position: relative;
}

.bitelo-user__trigger {
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.bitelo-user__trigger:hover {
  box-shadow: 0 0 0 2px #00c2b3;
}

.bitelo-user__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 280px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.bitelo-user__dropdown:not([hidden]) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bitelo-user__header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.bitelo-user__header strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.bitelo-user__header span {
  font-size: 0.75rem;
  color: #6b7280;
}

.bitelo-user__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bitelo-user__menu li {
  margin-bottom: 0.25rem;
}

.bitelo-user__menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.bitelo-user__menu a:hover {
  background: #f9fafb;
  color: #00c2b3;
}

.bitelo-user__divider {
  height: 1px;
  background: #f3f4f6;
  margin: 0.5rem 0;
}

.bitelo-user__logout {
  color: #ef4444 !important;
}

.bitelo-user__logout:hover {
  background: #fef2f2 !important;
}

/* Cart */
.bitelo-header__cart {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.2s;
}

.bitelo-header__cart:hover {
  background: #f3f4f6;
  color: #00c2b3;
}

.bitelo-header__cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid white;
}

.bitelo-header__cart[data-count="0"] .bitelo-header__cart-badge {
  display: none;
}

/* Avatar */
.bitelo-avatar {
  border-radius: 50%;
  object-fit: cover;
}

/* Header Spacer */
.bitelo-header-spacer {
  height: 64px;
}

/* Search Overlay */
.bitelo-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bitelo-search-overlay:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.bitelo-search-overlay__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.bitelo-search-overlay__content {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 0 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.bitelo-search-overlay:not([hidden]) .bitelo-search-overlay__content {
  transform: translateY(0);
}

.bitelo-search-overlay__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.bitelo-search-overlay__close:hover {
  background: #e5e7eb;
  color: #374151;
}

.bitelo-search-overlay__input-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.bitelo-search-overlay__icon {
  font-size: 1.25rem;
  color: #9ca3af;
}

.bitelo-search-overlay__input {
  flex: 1;
  background: none;
  border: none;
  font-size: 1.125rem;
  outline: none;
}

.bitelo-search-overlay__input::placeholder {
  color: #9ca3af;
}

.bitelo-search-overlay__results {
  max-height: 400px;
  overflow-y: auto;
}

/* ========================================
   03. HERO / SEARCH SECTION
   ======================================== */

.bitelo-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 6rem;
  overflow: hidden;
}

.bitelo-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.bitelo-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00c2b3 0%, #00a396 50%, #008c7f 100%);
}

.bitelo-hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bitelo-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  text-align: center;
  color: white;
}

.bitelo-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.bitelo-hero__subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Hero Search Box */
.bitelo-hero__search {
  position: relative;
  margin-bottom: 2rem;
}

.bitelo-hero-search {
  display: flex;
  gap: 0.75rem;
}

.bitelo-hero-search__input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem 0.25rem 0.25rem 1.25rem;
  background: white;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bitelo-hero-search__icon {
  font-size: 1.25rem;
  color: #9ca3af;
}

.bitelo-hero-search__input {
  flex: 1;
  height: 52px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #374151;
  outline: none;
}

.bitelo-hero-search__input::placeholder {
  color: #9ca3af;
}

.bitelo-hero-search__locate {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: none;
  border-radius: 50%;
  color: #00c2b3;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-hero-search__locate:hover {
  background: #e6f9f7;
  transform: scale(1.05);
}

.bitelo-locate-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bitelo-hero-search__submit {
  padding: 0 2rem;
  height: 60px;
  background: #1f2937;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bitelo-hero-search__submit:hover {
  background: #111827;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Search Suggestions */
.bitelo-hero-search__suggestions {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.bitelo-hero-search__suggestions:not([hidden]) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bitelo-hero-suggestions__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  color: #6b7280;
}

.bitelo-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top-color: #00c2b3;
  border-radius: 50%;
  animation: bitelo-spin 0.8s linear infinite;
}

@keyframes bitelo-spin {
  to { transform: rotate(360deg); }
}

.bitelo-hero-suggestions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}

.bitelo-suggestion-item {
  border-bottom: 1px solid #f3f4f6;
}

.bitelo-suggestion-item:last-child {
  border-bottom: none;
}

.bitelo-suggestion-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background 0.2s;
}

.bitelo-suggestion-link:hover {
  background: #f9fafb;
}

.bitelo-suggestion-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.bitelo-suggestion-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bitelo-suggestion-info strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
}

.bitelo-suggestion-info span {
  font-size: 0.8125rem;
  color: #6b7280;
}

.bitelo-suggestion-empty {
  text-align: center;
  padding: 2rem;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Popular Tags */
.bitelo-hero__popular {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.bitelo-hero__popular-label {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
}

.bitelo-hero__popular-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.bitelo-hero__tag {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bitelo-hero__tag:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #00a396;
  transform: translateY(-2px);
}

.bitelo-hero__tag-icon {
  font-size: 1rem;
}

/* Floating Stats */
.bitelo-hero__stats {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-radius: 16px;
  color: white;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bitelo-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.bitelo-hero__stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.bitelo-hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bitelo-hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* Startup hero overlay for the modular homepage */
.bitelo-startup-hero--video {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 32px;
  background: #0b1220;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.bitelo-startup-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bitelo-startup-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.bitelo-startup-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 11, 18, 0.78) 0%, rgba(7, 15, 25, 0.56) 40%, rgba(7, 15, 25, 0.82) 100%);
}

.bitelo-startup-hero__brand,
.bitelo-startup-hero__copy,
.bitelo-startup-hero .bitelo-startup-search,
.bitelo-startup-hero .bitelo-startup-section,
.bitelo-startup-hero .bitelo-startup-grid {
  position: relative;
  z-index: 1;
}

.bitelo-startup-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.9rem;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.bitelo-startup-hero__brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
}

.bitelo-startup-hero__brand span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bitelo-startup-hero__copy {
  max-width: 680px;
}

.bitelo-startup-hero--video .bitelo-startup-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.bitelo-startup-hero--video h1,
.bitelo-startup-hero--video p {
  color: #fff;
}

.bitelo-startup-hero--video .bitelo-startup-search input {
  background: rgba(255, 255, 255, 0.96);
}

.bitelo-startup-hero--video .bitelo-startup-search__locate,
.bitelo-startup-hero--video .bitelo-btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.bitelo-startup-hero--video .bitelo-btn--primary {
  background: #fff;
  color: #111827;
}

.bitelo-startup-hero--video .bitelo-btn--primary:hover {
  background: #f9fafb;
}

/* Partner onboarding form */
.bitelo-reg-form {
  margin: 0 0 64px;
}

.bitelo-reg-form__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  gap: 24px;
  align-items: start;
}

.bitelo-reg-form__copy {
  background: linear-gradient(145deg, #111827 0%, #1f2937 100%);
  color: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.16);
}

.bitelo-reg-form__copy p {
  color: rgba(255, 255, 255, 0.84);
}

.bitelo-reg-form__highlights {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.bitelo-reg-form__highlights li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
}

.bitelo-reg-form__card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(16, 22, 47, 0.1);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.bitelo-reg-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bitelo-reg-form__grid label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: #374151;
}

.bitelo-reg-form__grid input,
.bitelo-reg-form__grid textarea {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  color: #111827;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bitelo-reg-form__grid input:focus,
.bitelo-reg-form__grid textarea:focus {
  outline: none;
  border-color: #00c2b3;
  box-shadow: 0 0 0 4px rgba(0, 194, 179, 0.12);
}

.bitelo-reg-form__grid--full {
  grid-column: 1 / -1;
}

.bitelo-reg-form__actions {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.bitelo-reg-form__status {
  margin: 0;
  min-height: 1.4em;
  color: #0f766e;
  font-size: 0.92rem;
}

.bitelo-reg-form__status.is-error {
  color: #b42318;
}

/* ========================================
   03. VISUAL FOOD CATEGORIES
   Horizontal slider with rounded cards
   ======================================== */

.bitelo-categories {
  background: #ffffff;
  padding: 2.5rem 0;
  margin-bottom: 1rem;
}

.bitelo-categories__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.bitelo-categories__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.bitelo-categories__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.bitelo-categories__nav {
  display: flex;
  gap: 0.5rem;
}

.bitelo-categories__nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-categories__nav-btn:hover:not(:disabled) {
  background: #e6f9f7;
  border-color: #00c2b3;
  color: #00c2b3;
}

.bitelo-categories__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Categories Slider */
.bitelo-categories__slider {
  position: relative;
  overflow: hidden;
}

.bitelo-categories__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.bitelo-categories__track::-webkit-scrollbar {
  display: none;
}

/* Fade gradients */
.bitelo-categories__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}

.bitelo-categories__fade--left {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.bitelo-categories__fade--right {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.bitelo-categories__track:not(:first-child) ~ .bitelo-categories__fade--left,
.bitelo-categories__track[scroll-left] ~ .bitelo-categories__fade--right {
  opacity: 1;
}

/* Individual Category Card */
.bitelo-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.bitelo-category:hover {
  transform: translateY(-4px);
}

.bitelo-category__card {
  width: 100px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bitelo-category:hover .bitelo-category__card {
  background: linear-gradient(135deg, #e6f9f7 0%, #d1f7f4 100%);
  border-color: var(--category-color, #00c2b3);
  box-shadow: 0 8px 20px rgba(0, 194, 179, 0.15);
}

.bitelo-category--active .bitelo-category__card {
  background: linear-gradient(135deg, #00c2b3 0%, #00a396 100%);
  border-color: #00c2b3;
  box-shadow: 0 8px 20px rgba(0, 194, 179, 0.25);
}

.bitelo-category__icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: grayscale(0);
  transition: transform 0.2s ease;
}

.bitelo-category:hover .bitelo-category__icon {
  transform: scale(1.1);
}

.bitelo-category--active .bitelo-category__icon {
  filter: brightness(0) invert(1);
}

.bitelo-category__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s;
}

.bitelo-category:hover .bitelo-category__name {
  color: #00c2b3;
}

.bitelo-category--active .bitelo-category__name {
  color: #00c2b3;
}

.bitelo-category__count {
  font-size: 0.75rem;
  color: #9ca3af;
  background: #f3f4f6;
  padding: 0.125rem 0.5rem;
  border-radius: 10px;
  font-weight: 500;
}

/* ========================================
   04. RESTAURANT LISTING GRID
   Modern grid layout replacing Bootstrap
   ======================================== */

.bitelo-restaurants-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.bitelo-restaurants-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.bitelo-restaurants-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2f313a;
}

.bitelo-restaurants-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .bitelo-restaurants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bitelo-restaurants-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .bitelo-restaurants-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   04. RESTAURANT CARD - Wolt Inspired
   Modern minimalist card design
   ======================================== */

.bitelo-restaurant-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.bitelo-restaurant-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.bitelo-restaurant-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image Section */
.bitelo-restaurant-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bitelo-restaurant-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bitelo-restaurant-card:hover .bitelo-restaurant-card__image {
  transform: scale(1.05);
}

.bitelo-restaurant-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Gradient overlay for badges */
.bitelo-restaurant-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  pointer-events: none;
}

/* Delivery Time Badge - Top Right */
.bitelo-restaurant-card__time-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1f2937;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Featured/Popular Badge - Top Left */
.bitelo-restaurant-card__featured {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* Closed Overlay */
.bitelo-restaurant-card__closed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bitelo-restaurant-card__closed-overlay span {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content Section */
.bitelo-restaurant-card__content {
  padding: 16px;
}

/* Title Row */
.bitelo-restaurant-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 6px;
}

.bitelo-restaurant-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.bitelo-restaurant-card__price {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 500;
  flex-shrink: 0;
}

/* Cuisines */
.bitelo-restaurant-card__cuisines {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0 0 12px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Meta Row */
.bitelo-restaurant-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.bitelo-restaurant-card__rating-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bitelo-restaurant-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f59e0b;
}

.bitelo-restaurant-card__rating svg {
  flex-shrink: 0;
}

.bitelo-restaurant-card__reviews {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

.bitelo-restaurant-card__rating--new {
  color: #00c2b3;
  background: #e6f9f7;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
}

.bitelo-restaurant-card__delivery {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bitelo-restaurant-card__fee {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}

.bitelo-restaurant-card__fee--free {
  color: #00c853;
  font-weight: 600;
}

/* Legacy badge styles (for backwards compatibility) */
.bitelo-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bitelo-badge--featured {
  background: #00c2b3;
  color: white;
}

.bitelo-badge--rating {
  background: #00c853;
  color: white;
}

.bitelo-badge--closed {
  background: #9e9e9e;
  color: white;
}

.bitelo-restaurant-card__content {
  padding: 1.25rem;
}

.bitelo-restaurant-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f313a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.bitelo-restaurant-card__title a {
  color: inherit;
  text-decoration: none;
}

.bitelo-restaurant-card__title a:hover {
  color: #00c2b3;
}

/* ========================================
   05. CART DRAWER - Slide-out / Bottom Sheet
   Wolt-inspired cart UI
   ======================================== */

/* Cart Overlay */
.bitelo-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bitelo-cart-overlay:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   ABSOLUTE CART CONTAINMENT - MAXIMUM SPECIFICITY
   ======================================== */

/* GLOBAL DESKTOP - Hidden off-screen right */
body .bitelo-platform .bitelo-cart-drawer,
body .bitelo-platform .bitelo-drawer,
html body .bitelo-cart-drawer,
html body .bitelo-drawer,
#main-content .bitelo-cart-drawer,
.bitelo-platform #cart-drawer.bitelo-cart-drawer {
  display: block !important;
  position: fixed !important;
  right: 0 !important;
  top: 0 !important;
  width: 400px !important;
  max-width: 100% !important;
  height: 100vh !important;
  max-height: 100vh !important;
  background: #ffffff !important;
  z-index: 99999999 !important;
  flex-direction: column !important;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15) !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  overflow: hidden !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  pointer-events: none !important;
}

/* ACTIVE State - Desktop/Tablet Slide In */
.bitelo-platform .bitelo-cart-drawer.is-active,
.bitelo-platform .bitelo-drawer.is-active,
.bitelo-cart-drawer.is-active,
.bitelo-drawer.is-active,
.bitelo-platform .bitelo-cart-drawer.is-open,
.bitelo-platform .bitelo-drawer.is-open {
  transform: translateX(0) !important;
  pointer-events: auto !important;
}

/* Cart Drawer Header */
.bitelo-cart-drawer__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.25rem 1.5rem !important;
  border-bottom: 1px solid #f3f4f6 !important;
  background: #ffffff !important;
  flex-shrink: 0 !important;
}

.bitelo-cart-drawer__title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.bitelo-cart-drawer__close {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f3f4f6 !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  color: #6b7280 !important;
  transition: all 0.2s ease !important;
}

.bitelo-cart-drawer__close:hover {
  background: #e5e7eb !important;
  color: #1f2937 !important;
}

/* Cart Drawer Body */
.bitelo-cart-drawer__body {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 1rem 1.5rem !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Cart Drawer Footer */
.bitelo-cart-drawer__footer {
  padding: 1.25rem 1.5rem !important;
  border-top: 1px solid #f3f4f6 !important;
  background: #ffffff !important;
  flex-shrink: 0 !important;
}

/* ========================================
   TABLET & MOBILE CART ABSOLUTE RESET
   ======================================== */
@media (max-width: 1024px) {
  body .bitelo-platform .bitelo-cart-drawer,
  body .bitelo-platform .bitelo-drawer,
  body #bitelo-cart,
  html body .bitelo-cart-drawer,
  html body .bitelo-drawer,
  .bitelo-platform #cart-drawer.bitelo-cart-drawer {
    display: block !important;
    position: fixed !important;
    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 80vh !important;
    transform: translateY(100%) !important;
    z-index: 99999999 !important;
    background: #ffffff !important;
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    overflow: hidden !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2) !important;
  }
  
  /* ACTIVE State - ONLY when class present */
  body .bitelo-platform .bitelo-cart-drawer.is-active,
  body .bitelo-platform .bitelo-drawer.is-active,
  body #bitelo-cart.is-active,
  .is-active body .bitelo-platform .bitelo-cart-drawer,
  .is-active .bitelo-platform .bitelo-cart-drawer,
  body .bitelo-platform .bitelo-cart-drawer.is-open,
  body .bitelo-platform .bitelo-drawer.is-open {
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* ========================================
   MOBILE BOTTOM SHEET (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  body .bitelo-platform .bitelo-cart-drawer,
  body .bitelo-platform .bitelo-drawer,
  html body .bitelo-cart-drawer,
  html body .bitelo-drawer,
  body #cart-drawer.bitelo-cart-drawer,
  body #cart-drawer.bitelo-drawer,
  .bitelo-platform #cart-drawer,
  #cart-drawer.bitelo-cart-drawer {
    display: block !important;
    position: fixed !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 80vh !important;
    min-height: 300px !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 24px 24px 0 0 !important;
    transform: translateY(100%) !important;
    z-index: 99999999 !important;
    background: #ffffff !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    overflow: hidden !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Mobile ACTIVE State - ABSOLUTE */
  body .bitelo-platform .bitelo-cart-drawer.is-active,
  body .bitelo-platform .bitelo-drawer.is-active,
  html body .bitelo-cart-drawer.is-active,
  html body .bitelo-drawer.is-active,
  body .bitelo-platform .bitelo-cart-drawer.is-open,
  body .bitelo-platform .bitelo-drawer.is-open,
  body #cart-drawer.bitelo-cart-drawer.is-active,
  body #cart-drawer.bitelo-drawer.is-active,
  .is-active body .bitelo-platform .bitelo-cart-drawer,
  .is-active .bitelo-platform .bitelo-cart-drawer,
  .is-open body .bitelo-platform .bitelo-cart-drawer {
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  
  /* Mobile Drag Handle */
  .bitelo-cart__handle {
    display: flex !important;
    padding: 12px !important;
    cursor: grab !important;
    justify-content: center !important;
  }
  
  .bitelo-cart__handle-bar {
    width: 40px !important;
    height: 4px !important;
    background: #d1d5db !important;
    border-radius: 2px !important;
  }
}

/* Cart Overlay - Background Lock */
.bitelo-cart-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0) !important;
  z-index: 9999998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, background 0.3s ease, visibility 0.3s ease !important;
  pointer-events: none !important;
}

.bitelo-cart-overlay.is-active,
.bitelo-cart-overlay.is-open {
  background: rgba(0, 0, 0, 0.6) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Drag Handle (Hidden on Desktop) */
.bitelo-cart__handle {
  display: none;
  padding: 12px;
  cursor: grab;
}

.bitelo-cart__handle-bar {
  width: 40px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
}

/* Cart Header */
.bitelo-cart__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.bitelo-cart__title-group {
  flex: 1;
}

.bitelo-cart__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bitelo-cart__count {
  background: #00c2b3;
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.bitelo-cart__restaurant {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.bitelo-cart__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: none;
  border-radius: 50%;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.bitelo-cart__close:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Cart Items Area */
.bitelo-cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

/* Empty Cart State */
.bitelo-cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.bitelo-cart__empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.bitelo-cart__empty-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 8px 0;
}

.bitelo-cart__empty-hint {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
}

/* Cart Item */
.bitelo-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}

.bitelo-cart-item:last-child {
  border-bottom: none;
}

.bitelo-cart-item__info {
  flex: 1;
  min-width: 0;
}

.bitelo-cart-item__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.3;
}

.bitelo-cart-item__extras {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.bitelo-cart-item__extras span {
  display: block;
}

.bitelo-cart-item__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

/* Quantity Controls */
.bitelo-cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9fafb;
  border-radius: 20px;
  padding: 4px;
}

.bitelo-cart-item__btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-cart-item__btn:hover:not(:disabled) {
  border-color: #00c2b3;
  color: #00c2b3;
}

.bitelo-cart-item__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.bitelo-cart-item__btn--minus {
  color: #ef4444;
}

.bitelo-cart-item__btn--minus:hover:not(:disabled) {
  background: #fef2f2;
  border-color: #ef4444;
  color: #ef4444;
}

.bitelo-cart-item__quantity {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  min-width: 20px;
  text-align: center;
}

/* Remove Button */
.bitelo-cart-item__remove {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
  flex-shrink: 0;
}

.bitelo-cart-item__remove:hover {
  color: #ef4444;
}

/* Cart Summary */
.bitelo-cart__summary {
  padding: 16px 24px;
  border-top: 1px solid #f3f4f6;
  background: #f9fafb;
  flex-shrink: 0;
}

.bitelo-cart__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: #6b7280;
}

.bitelo-cart__line:last-child {
  margin-bottom: 0;
}

.bitelo-cart__line--total {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  padding-top: 8px;
  border-top: 1px dashed #e5e7eb;
  margin-top: 8px;
}

/* Cart Footer / Checkout */
.bitelo-cart__footer {
  padding: 20px 24px 24px;
  border-top: 1px solid #f3f4f6;
  background: white;
  flex-shrink: 0;
}

.bitelo-cart__checkout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: #00c2b3;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 12px;
}

.bitelo-cart__checkout:hover {
  background: #00a396;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 194, 179, 0.3);
}

.bitelo-cart__checkout-price {
  font-size: 1.125rem;
}

.bitelo-cart__continue {
  width: 100%;
  padding: 12px;
  background: white;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-cart__continue:hover {
  background: #f9fafb;
  color: #374151;
}

/* Sticky Cart Button (Mobile) */
.bitelo-cart-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: white;
  border-top: 1px solid #f3f4f6;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
  .bitelo-cart-sticky {
    display: none;
  }
}

.bitelo-cart-sticky__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: #00c2b3;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-cart-sticky__btn:hover {
  background: #00a396;
}

.bitelo-cart-sticky__icon {
  font-size: 1.25rem;
}

.bitelo-cart-sticky__count {
  position: absolute;
  top: -8px;
  left: 28px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bitelo-cart-sticky__text {
  flex: 1;
  text-align: left;
  margin-left: 8px;
}

.bitelo-cart-sticky__price {
  font-size: 1.125rem;
  font-weight: 700;
}

/* Cart Meta Row */
.bitelo-restaurant-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.bitelo-restaurant-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bitelo-restaurant-card__cuisines {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bitelo-restaurant-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.bitelo-restaurant-card__delivery {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

.bitelo-restaurant-card__delivery-icon {
  color: #00c2b3;
}

.bitelo-restaurant-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 1px;
}

/* ========================================
   04. SEARCH COMPONENT
   Modern search with live filtering
   ======================================== */

.bitelo-search-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.bitelo-search-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.bitelo-search-input-wrapper {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.bitelo-search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.bitelo-search-input:focus {
  outline: none;
  border-color: #00c2b3;
  box-shadow: 0 0 0 3px rgba(0, 194, 179, 0.1);
}

.bitelo-search-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.bitelo-search-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.bitelo-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bitelo-filter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.bitelo-filter-select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  font-size: 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  min-width: 150px;
}

.bitelo-search-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: #00c2b3;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bitelo-search-button:hover {
  background: #00a396;
}

.bitelo-search-button:active {
  transform: scale(0.98);
}

/* ========================================
   05. LOADING & SKELETON STATES
   ======================================== */

.bitelo-skeleton {
  background: linear-gradient(
    90deg,
    #f3f4f6 25%,
    #e5e7eb 50%,
    #f3f4f6 75%
  );
  background-size: 200% 100%;
  animation: bitelo-skeleton-pulse 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes bitelo-skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.bitelo-restaurant-card--skeleton .bitelo-restaurant-card__image-wrapper {
  background: #e5e7eb;
}

.bitelo-restaurant-card--skeleton .bitelo-restaurant-card__title {
  width: 70%;
  height: 24px;
  background: #e5e7eb;
  border-radius: 4px;
}

.bitelo-restaurant-card--skeleton .bitelo-restaurant-card__meta {
  width: 50%;
  height: 16px;
  background: #e5e7eb;
  border-radius: 4px;
}

.bitelo-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e5e7eb;
  border-top-color: #00c2b3;
  border-radius: 50%;
  animation: bitelo-spin 1s linear infinite;
}

@keyframes bitelo-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   06. SEARCH RESULTS & PAGINATION
   ======================================== */

.bitelo-search-results {
  min-height: 200px;
}

.bitelo-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.bitelo-results-count {
  font-size: 1rem;
  color: #6b7280;
}

.bitelo-results-count strong {
  color: #2f313a;
}

.bitelo-load-more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.bitelo-load-more-button {
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  color: #00c2b3;
  background: transparent;
  border: 2px solid #00c2b3;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bitelo-load-more-button:hover {
  background: #00c2b3;
  color: white;
}

.bitelo-load-more-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bitelo-no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.bitelo-no-results__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.bitelo-no-results__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2f313a;
  margin-bottom: 0.5rem;
}

.bitelo-no-results__text {
  font-size: 1rem;
  color: #6b7280;
}

/* ========================================
   07. SINGLE RESTAURANT PAGE
   ======================================== */

.bitelo-restaurant-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem 0;
}

.bitelo-restaurant-header__content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .bitelo-restaurant-header__content {
    grid-template-columns: 200px 1fr auto;
  }
}

.bitelo-restaurant-header__image {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bitelo-restaurant-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bitelo-restaurant-header__info h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.bitelo-restaurant-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: #6b7280;
}

.bitelo-restaurant-header__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.bitelo-restaurant-header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bitelo-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  background: #f3f4f6;
  color: #374151;
  border-radius: 20px;
}

.bitelo-restaurant-header__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bitelo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.bitelo-btn--primary {
  background: #00c2b3;
  color: white;
}

.bitelo-btn--primary:hover {
  background: #00a396;
}

.bitelo-btn--secondary {
  background: #f3f4f6;
  color: #374151;
}

.bitelo-btn--secondary:hover {
  background: #e5e7eb;
}

/* Menu Section */
.bitelo-menu-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .bitelo-menu-container {
    grid-template-columns: 250px 1fr 350px;
  }
}

.bitelo-menu-categories {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.bitelo-menu-categories__list {
  list-style: none;
  padding: 0;
}

.bitelo-menu-categories__item {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #4b5563;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.bitelo-menu-categories__item:hover {
  background: #f3f4f6;
  color: #00c2b3;
}

.bitelo-menu-categories__item--active {
  background: #e6f9f7;
  color: #00c2b3;
  font-weight: 600;
}

.bitelo-menu-section {
  margin-bottom: 3rem;
}

.bitelo-menu-section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.bitelo-menu-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.bitelo-menu-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bitelo-menu-item__image {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.bitelo-menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bitelo-menu-item__content {
  flex: 1;
}

.bitelo-menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 0.5rem;
}

.bitelo-menu-item__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f313a;
}

.bitelo-menu-item__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #00c2b3;
}

.bitelo-menu-item__description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.bitelo-menu-item__add {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #00c2b3;
  background: #e6f9f7;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bitelo-menu-item__add:hover {
  background: #00c2b3;
  color: white;
}

/* Cart Sidebar */
.bitelo-cart {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.bitelo-cart__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.bitelo-cart__empty {
  text-align: center;
  padding: 2rem 0;
  color: #9ca3af;
}

.bitelo-cart__items {
  margin-bottom: 1rem;
}

.bitelo-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.bitelo-cart-item__info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bitelo-cart-item__info p {
  font-size: 0.875rem;
  color: #6b7280;
}

.bitelo-cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bitelo-cart-item__quantity button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: #f3f4f6;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.bitelo-cart-item__quantity button:hover {
  background: #e5e7eb;
}

.bitelo-cart-item__quantity span {
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.bitelo-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.bitelo-cart__checkout {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: #00c2b3;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bitelo-cart__checkout:hover {
  background: #00a396;
}

/* ========================================
   08. MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 767px) {
  /* Header Mobile */
  .bitelo-header__container {
    height: 56px;
    padding: 0 1rem;
  }
  
  .bitelo-logo__svg {
    height: 28px;
  }
  
  .bitelo-location {
    max-width: 200px;
  }
  
  .bitelo-location__text {
    max-width: 120px;
  }
  
  .bitelo-location__dropdown {
    width: 320px;
    left: -50px;
    transform: translateX(0);
  }
  
  .bitelo-location__dropdown:not([hidden]) {
    transform: translateX(0) translateY(0);
  }
  
  .bitelo-header__action {
    width: 36px;
    height: 36px;
  }
  
  .bitelo-header__cart {
    width: 36px;
    height: 36px;
  }
  
  .bitelo-header-spacer {
    height: 56px;
  }
  
  .bitelo-search-overlay {
    padding-top: 80px;
    align-items: flex-start;
  }
  
  .bitelo-search-overlay__content {
    border-radius: 16px 16px 0 0;
    margin: 0;
    min-height: 50vh;
  }
  
  /* Hero Mobile */
  .bitelo-hero {
    min-height: auto;
    padding: 6rem 1rem 4rem;
  }
  
  .bitelo-hero__title {
    font-size: 2rem;
  }
  
  .bitelo-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .bitelo-hero-search {
    flex-direction: column;
  }
  
  .bitelo-hero-search__input-wrapper {
    padding: 0.25rem 0.25rem 0.25rem 1rem;
  }
  
  .bitelo-hero-search__input {
    height: 48px;
    font-size: 0.9375rem;
  }
  
  .bitelo-hero-search__submit {
    height: 48px;
    padding: 0 1.5rem;
  }
  
  .bitelo-hero__stats {
    display: none;
  }
  
  .bitelo-hero__popular-tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .bitelo-hero__tag {
    flex-shrink: 0;
  }
  
  /* Categories Mobile */
  .bitelo-categories {
    padding: 1.5rem 0;
  }
  
  .bitelo-categories__container {
    padding: 0 1rem;
  }
  
  .bitelo-categories__header {
    margin-bottom: 1rem;
  }
  
  .bitelo-categories__title {
    font-size: 1.25rem;
  }
  
  .bitelo-categories__nav {
    display: none;
  }
  
  .bitelo-categories__track {
    gap: 1rem;
    padding: 0.5rem 0;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .bitelo-category__card {
    width: 80px;
    height: 64px;
    border-radius: 14px;
  }
  
  .bitelo-category__icon {
    font-size: 2rem;
  }
  
  .bitelo-category__name {
    font-size: 0.8125rem;
  }
  
  .bitelo-categories__fade {
    display: none;
  }
  
  /* Restaurant Grid Mobile */
  .bitelo-restaurants-container {
    padding: 1rem;
  }
  
  .bitelo-search-form {
    flex-direction: column;
  }
  
  .bitelo-search-button {
    width: 100%;
    justify-content: center;
  }
  
  .bitelo-restaurant-card__content {
    padding: 12px;
  }
  
  .bitelo-restaurant-card__title {
    font-size: 0.9375rem;
  }
  
  .bitelo-restaurant-card__price {
    font-size: 0.8125rem;
  }
  
  .bitelo-restaurant-card__cuisines {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
  
  .bitelo-restaurant-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .bitelo-restaurant-card__rating {
    font-size: 0.8125rem;
  }
  
  .bitelo-restaurant-card__fee {
    font-size: 0.75rem;
  }
  
  .bitelo-restaurant-card__time-badge {
    padding: 4px 8px;
    font-size: 0.75rem;
  }
  
  .bitelo-restaurant-header__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .bitelo-restaurant-header__image {
    margin: 0 auto;
  }
  
  .bitelo-menu-item {
    flex-direction: column;
  }
  
  .bitelo-menu-item__image {
    width: 100%;
    height: 150px;
  }
  
  .bitelo-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 16px 16px 0 0;
    z-index: 1000;
    max-height: 60vh;
    overflow-y: auto;
  }
}

/* Additional breakpoint for tablets */
@media (max-width: 1023px) {
  .bitelo-hero__title {
    font-size: 2.5rem;
  }
  
  .bitelo-location__dropdown {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    border-radius: 0 0 16px 16px;
  }
}

/* ========================================
   09. ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible styles */
.bitelo-search-input:focus-visible,
.bitelo-btn:focus-visible,
.bitelo-menu-item__add:focus-visible,
.bitelo-cart__checkout:focus-visible {
  outline: 2px solid #00c2b3;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bitelo-restaurant-card {
    border: 2px solid currentColor;
  }
  
  .bitelo-btn--primary {
    border: 2px solid currentColor;
  }
}

/* ========================================
   06. FOOTER STYLES - Wolt Inspired
   ======================================== */

.bitelo-footer {
  background: #f9fafb;
  padding: 64px 0 32px;
  margin-top: 64px;
  border-top: 1px solid #e5e7eb;
}

.bitelo-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main Footer Grid */
.bitelo-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .bitelo-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .bitelo-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .bitelo-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Brand Column */
.bitelo-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bitelo-footer__logo {
  text-decoration: none;
  display: inline-block;
}

.bitelo-footer__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00c2b3;
}

.bitelo-footer__tagline {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}

/* App Store Badges */
.bitelo-footer__apps {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.bitelo-footer__app-badge {
  display: block;
  transition: transform 0.2s;
}

.bitelo-footer__app-badge:hover {
  transform: translateY(-2px);
}

.bitelo-footer__app-badge svg {
  height: 40px;
  width: auto;
  display: block;
}

/* Footer Columns */
.bitelo-footer__column {
  display: flex;
  flex-direction: column;
}

.bitelo-footer__column-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  margin: 0 0 16px 0;
}

.bitelo-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bitelo-footer__links li {
  margin-bottom: 12px;
}

.bitelo-footer__link {
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}

.bitelo-footer__link:hover {
  color: #00c2b3;
}

/* Footer Bottom Bar */
.bitelo-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  .bitelo-footer__bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

.bitelo-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .bitelo-footer__bottom-left {
    flex-direction: column;
    gap: 16px;
  }
}

.bitelo-footer__copyright {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin: 0;
}

/* Social Links */
.bitelo-footer__social {
  display: flex;
  gap: 16px;
}

.bitelo-footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s;
}

.bitelo-footer__social-link:hover {
  background: #00c2b3;
  border-color: #00c2b3;
  color: white;
}

/* Language Selector */
.bitelo-footer__language {
  position: relative;
}

.bitelo-footer__language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-footer__language-btn:hover {
  border-color: #00c2b3;
  color: #00c2b3;
}

/* ========================================
   07. SINGLE RESTAURANT PAGE
   Wolt-inspired menu layout
   ======================================== */

/* Header */
.bitelo-single-header {
  position: relative;
  margin-bottom: 2rem;
}

.bitelo-single-header__cover {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}

.bitelo-single-header__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bitelo-single-header__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  font-size: 5rem;
}

.bitelo-single-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.bitelo-single-header__content {
  position: relative;
  margin-top: -80px;
  padding: 0 1.5rem;
}

.bitelo-single-header__card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bitelo-single-header__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.75rem 0;
}

.bitelo-single-header__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: #6b7280;
}

.bitelo-single-header__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #f59e0b;
  font-weight: 600;
}

.bitelo-single-header__rating small {
  color: #9ca3af;
  font-weight: 400;
  font-size: 0.875rem;
}

.bitelo-single-header__cuisines {
  color: #6b7280;
}

.bitelo-single-header__price {
  color: #6b7280;
}

.bitelo-single-header__delivery {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.bitelo-single-header__time {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.bitelo-single-header__status {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bitelo-single-header__address {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.bitelo-single-header__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

/* Pulsing dot for open status */
.bitelo-pulse {
  width: 8px;
  height: 8px;
  background: #00c2b3;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  animation: bitelo-pulse 2s infinite;
}

@keyframes bitelo-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 194, 179, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(0, 194, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 194, 179, 0); }
}

/* Menu Layout */
.bitelo-restaurant-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

@media (max-width: 1024px) {
  .bitelo-restaurant-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Desktop Navigation Sidebar */
.bitelo-menu-nav--desktop {
  display: block;
}

@media (max-width: 1024px) {
  .bitelo-menu-nav--desktop {
    display: none;
  }
}

.bitelo-menu-nav__sticky {
  position: sticky;
  top: 90px;
  background: white;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.bitelo-menu-nav__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  margin: 0 0 1rem 0;
}

.bitelo-menu-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bitelo-menu-nav__item {
  margin-bottom: 0.25rem;
}

.bitelo-menu-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 10px;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s;
  cursor: pointer;
}

.bitelo-menu-nav__link:hover {
  background: #f9fafb;
  color: #1f2937;
}

.bitelo-menu-nav__item--active .bitelo-menu-nav__link {
  background: #e6f9f7;
  color: #00c2b3;
  font-weight: 600;
}

.bitelo-menu-nav__emoji {
  font-size: 1.125rem;
  line-height: 1;
}

.bitelo-menu-nav__label {
  flex: 1;
}

.bitelo-menu-nav__badge {
  background: #00c2b3;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 10px;
}

/* Hours mini display */
.bitelo-menu-nav__hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}

.bitelo-menu-nav__hours-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  margin: 0 0 0.75rem 0;
}

.bitelo-menu-nav__hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bitelo-menu-nav__hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #6b7280;
  padding: 0.25rem 0;
}

.bitelo-menu-nav__hours-item--today {
  color: #00c2b3;
  font-weight: 600;
}

/* Mobile Navigation Pills */
.bitelo-menu-nav--mobile {
  display: none;
  position: sticky;
  top: 64px;
  z-index: 100;
  background: white;
  border-bottom: 1px solid #f3f4f6;
  padding: 0.75rem 0;
}

@media (max-width: 1024px) {
  .bitelo-menu-nav--mobile {
    display: block;
  }
}

.bitelo-menu-nav__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bitelo-menu-nav__scroll::-webkit-scrollbar {
  display: none;
}

.bitelo-menu-nav__pills {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  white-space: nowrap;
}

.bitelo-menu-nav__pill {
  flex-shrink: 0;
}

.bitelo-menu-nav__pill-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border-radius: 20px;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.bitelo-menu-nav__pill-link:hover {
  background: #e5e7eb;
}

.bitelo-menu-nav__pill--active .bitelo-menu-nav__pill-link {
  background: #00c2b3;
  color: white;
}

.bitelo-menu-nav__pill-emoji {
  font-size: 1rem;
}

/* Menu Main Area */
.bitelo-menu-main {
  min-height: 500px;
}

/* Menu Sections */
.bitelo-menu-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 140px;
}

.bitelo-menu-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
}

.bitelo-menu-section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bitelo-menu-section__emoji {
  font-size: 1.375rem;
}

.bitelo-menu-section__count {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Popular section highlight */
.bitelo-menu-section--popular .bitelo-menu-section__header {
  border-bottom-color: #fbbf24;
}

/* Menu Items Grid */
.bitelo-menu-section__grid {
  display: grid;
  gap: 1rem;
}

/* Menu Item Card */
.bitelo-menu-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
  position: relative;
}

.bitelo-menu-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.bitelo-menu-card--added {
  animation: bitelo-card-pulse 0.3s ease;
}

@keyframes bitelo-card-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 194, 179, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0, 194, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 194, 179, 0); }
}

/* Menu Card Image */
.bitelo-menu-card__image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.bitelo-menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bitelo-menu-card__badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

/* Menu Card Content */
.bitelo-menu-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.bitelo-menu-card__header {
  margin-bottom: 0.375rem;
}

.bitelo-menu-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bitelo-menu-card__popular-icon {
  color: #fbbf24;
  font-size: 0.875rem;
}

.bitelo-menu-card__description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Extras */
.bitelo-menu-card__extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.bitelo-menu-card__extra {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #6b7280;
  cursor: pointer;
}

.bitelo-menu-card__extra-input {
  width: 16px;
  height: 16px;
  accent-color: #00c2b3;
  cursor: pointer;
}

.bitelo-menu-card__extra-price {
  color: #00c2b3;
  font-weight: 500;
}

/* Actions Row */
.bitelo-menu-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.bitelo-menu-card__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
}

/* Add Button / Quantity Stepper */
.bitelo-menu-card__add-wrapper {
  position: relative;
}

.bitelo-menu-card__add-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00c2b3;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-menu-card__add-btn:hover {
  background: #00a396;
  transform: scale(1.05);
}

.bitelo-menu-card__add-btn:active {
  transform: scale(0.95);
}

/* Quantity Controls */
.bitelo-menu-card__quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f9fafb;
  border-radius: 20px;
  padding: 0.25rem;
}

.bitelo-menu-card__qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.bitelo-menu-card__qty-btn:hover {
  border-color: #00c2b3;
  color: #00c2b3;
}

.bitelo-menu-card__qty-btn--minus {
  color: #ef4444;
}

.bitelo-menu-card__qty-btn--minus:hover {
  background: #fef2f2;
  border-color: #ef4444;
  color: #ef4444;
}

.bitelo-menu-card__qty-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  min-width: 24px;
  text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .bitelo-single-header__cover {
    height: 200px;
    border-radius: 0 0 20px 20px;
  }
  
  .bitelo-single-header__content {
    margin-top: -60px;
    padding: 0 1rem;
  }
  
  .bitelo-single-header__card {
    padding: 1rem;
  }
  
  .bitelo-single-header__title {
    font-size: 1.5rem;
  }
  
  .bitelo-single-header__meta {
    font-size: 0.875rem;
  }
  
  .bitelo-restaurant-content {
    padding: 0 1rem 2rem;
  }
  
  .bitelo-menu-card {
    padding: 0.875rem;
  }
  
  .bitelo-menu-card__image {
    width: 80px;
    height: 80px;
  }
  
  .bitelo-menu-card__title {
    font-size: 0.9375rem;
  }
  
  .bitelo-menu-card__description {
    font-size: 0.8125rem;
    -webkit-line-clamp: 1;
  }
  
  .bitelo-menu-card__price {
    font-size: 1rem;
  }
  
  .bitelo-menu-section {
    scroll-margin-top: 120px;
  }
}

/* ========================================
   10. ARCHIVE PAGE SPECIFIC STYLES
   ======================================== */

.bitelo-archive-header {
  background: linear-gradient(135deg, #00c2b3 0%, #00a396 100%);
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.bitelo-archive-header__content {
  text-align: center;
}

.bitelo-archive-header__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.bitelo-archive-header__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

.bitelo-search-section {
  margin-bottom: 2rem;
}

.bitelo-separator {
  color: #d1d5db;
}

/* Cuisine Cards Section */
.bitelo-cuisines-section {
  padding: 3rem 0;
  background: #f9fafb;
  margin-top: 3rem;
}

.bitelo-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.bitelo-cuisines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .bitelo-cuisines-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bitelo-cuisine-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bitelo-cuisine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bitelo-cuisine-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bitelo-cuisine-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bitelo-cuisine-card:hover .bitelo-cuisine-card__image img {
  transform: scale(1.05);
}

.bitelo-cuisine-card__icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: #e6f9f7;
}

.bitelo-cuisine-card__content {
  padding: 1rem;
  text-align: center;
}

.bitelo-cuisine-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1f2937;
}

.bitelo-cuisine-card__count {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Filter Reset Button */
.bitelo-filter-group--reset {
  display: flex;
  align-items: flex-end;
}

/* Restaurant Card Placeholder */
.bitelo-restaurant-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: #f3f4f6;
  color: #9ca3af;
}

/* Open/Closed badges */
.bitelo-tag--open {
  background: #dcfce7;
  color: #166534;
}

.bitelo-tag--closed {
  background: #fee2e2;
  color: #991b1b;
}

.bitelo-open-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: #dcfce7;
  color: #166534;
  border-radius: 20px;
}

.bitelo-closed-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
}

/* Popular badge */
.bitelo-popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: #fef3c7;
  color: #92400e;
  border-radius: 4px;
  margin-left: 0.5rem;
}

/* Menu Item Placeholder */
.bitelo-menu-item--placeholder {
  justify-content: center;
  text-align: center;
  padding: 3rem;
  background: #f9fafb;
  border: 2px dashed #e5e7eb;
}

/* Restaurant Header Image Placeholder */
.bitelo-restaurant-header__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: #f3f4f6;
  border-radius: 16px;
}

/* Avatar styling */
.bitelo-avatar {
  border-radius: 50%;
}

/* Menu Categories Title */
.bitelo-menu-categories__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

/* Reviews Section Styling */
.bitelo-reviews-section {
  margin-top: 3rem;
}

.bitelo-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.bitelo-no-reviews {
  text-align: center;
  padding: 3rem;
  background: #f9fafb;
  border-radius: 12px;
}

/* Favorite Button */
.bitelo-favorite-icon {
  font-size: 1.25rem;
}

.bitelo-favorite-btn--active .bitelo-favorite-icon {
  color: #ef4444;
}

/* Cart Item in Menu */
.bitelo-cart-item__remove {
  color: #ef4444;
  cursor: pointer;
  font-size: 0.875rem;
}

/* Sticky cart indicator for mobile */
.bitelo-cart-indicator {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 56px;
  height: 56px;
  background: #00c2b3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  cursor: pointer;
}

.bitelo-cart-indicator__count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loading states for search */
.bitelo-search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

/* Quick filter chips */
.bitelo-quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.bitelo-quick-filter {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bitelo-quick-filter:hover,
.bitelo-quick-filter--active {
  background: #00c2b3;
  border-color: #00c2b3;
  color: white;
}

/* Pagination styles */
.bitelo-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.bitelo-pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bitelo-pagination__btn:hover {
  border-color: #00c2b3;
  color: #00c2b3;
}

.bitelo-pagination__btn--active {
  background: #00c2b3;
  border-color: #00c2b3;
  color: white;
}

.bitelo-pagination__btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Price filter slider */
.bitelo-price-slider {
  width: 100%;
  margin: 1rem 0;
}

.bitelo-price-slider input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  outline: none;
}

.bitelo-price-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #00c2b3;
  border-radius: 50%;
  cursor: pointer;
}

/* Toast notification animation */
@keyframes bitelo-slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bitelo-slide-out {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.bitelo-toast--enter {
  animation: bitelo-slide-in 0.3s ease forwards;
}

.bitelo-toast--exit {
  animation: bitelo-slide-out 0.3s ease forwards;
}

/* ========================================
   11. ANIMATIONS & TRANSITIONS
   ======================================== */

.bitelo-fade-in {
  animation: bitelo-fade-in 0.3s ease forwards;
}

@keyframes bitelo-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bitelo-scale-in {
  animation: bitelo-scale-in 0.2s ease forwards;
}

@keyframes bitelo-scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Smooth scroll behavior for anchor links */
html {
  scroll-behavior: smooth;
}

/* ========================================
   12. UTILITY CLASSES
   ======================================== */

.bitelo-text-muted {
  color: #6b7280;
}

.bitelo-text-primary {
  color: #00c2b3;
}

.bitelo-text-success {
  color: #00c853;
}

.bitelo-text-error {
  color: #ff1744;
}

.bitelo-text-warning {
  color: #ffb300;
}

.bitelo-bg-light {
  background-color: #f9fafb;
}

.bitelo-shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.bitelo-shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bitelo-shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bitelo-rounded {
  border-radius: 0.5rem;
}

.bitelo-rounded-lg {
  border-radius: 1rem;
}

.bitelo-rounded-full {
  border-radius: 9999px;
}

/* ========================================
   11. FOODBAKERY OVERRIDES & RESETS
   High-specificity selectors to suppress parent theme
   ======================================== */

/* Root container isolation - BITELo Platform Wrapper */
.bitelo-platform {
  --bitelo-teal: #00C2B3;
  --bitelo-teal-dark: #00A396;
  --bitelo-teal-light: #E6F9F7;
  --bitelo-slate: #202125;
  --bitelo-gray-900: #1f2937;
  --bitelo-gray-700: #374151;
  --bitelo-gray-500: #6b7280;
  --bitelo-gray-400: #9ca3af;
  --bitelo-gray-200: #e5e7eb;
  --bitelo-gray-100: #f3f4f6;
  --bitelo-gray-50: #F8F9FA;
  --bitelo-white: #ffffff;
  --bitelo-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --bitelo-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --bitelo-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --bitelo-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --bitelo-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --bitelo-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --bitelo-radius-sm: 6px;
  --bitelo-radius: 12px;
  --bitelo-radius-md: 16px;
  --bitelo-radius-lg: 24px;
  --bitelo-transition: all 0.2s ease-in-out;
  --bitelo-transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  position: relative;
  z-index: 1;
}

/* Aggressive FoodBakery Resets - High Specificity */
body.foodbakery-theme .bitelo-platform,
body.foodbakery-theme .bitelo-platform * {
  box-sizing: border-box;
}

/* Reset parent theme containers */
body.foodbakery-theme .bitelo-platform .container,
body.foodbakery-theme .bitelo-platform .wrapper,
body.foodbakery-theme .bitelo-platform .row {
  all: unset;
  display: block;
}

/* Reset parent theme cards */
body.foodbakery-theme .bitelo-platform .listing.simple,
body.foodbakery-theme .bitelo-platform .foodbakery-restaurant-wrap,
body.foodbakery-theme .bitelo-platform .restaurant-element,
body.foodbakery-theme .bitelo-platform .post-restaurant,
body.foodbakery-theme .bitelo-platform .element-title,
body.foodbakery-theme .bitelo-platform .listing-loadmore,
body.foodbakery-theme .bitelo-platform .listing-inner {
  all: unset;
  display: block;
}

/* Reset parent theme search */
body.foodbakery-theme .bitelo-platform .search-input input[type="text"],
body.foodbakery-theme .bitelo-platform .search-input input[type="search"],
body.foodbakery-theme .bitelo-platform .location-field input,
body.foodbakery-theme .bitelo-platform .field-holder input {
  all: unset;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset parent theme navigation */
body.foodbakery-theme .bitelo-platform .navigation ul,
body.foodbakery-theme .bitelo-platform .pagination,
body.foodbakery-theme .bitelo-platform .page-numbers {
  all: unset;
  display: flex;
  list-style: none;
}

/* Reset parent theme buttons */
body.foodbakery-theme .bitelo-platform .btn,
body.foodbakery-theme .bitelo-platform button:not(.bitelo-btn):not(.bitelo-menu-card__add-btn):not(.bitelo-menu-card__qty-btn),
body.foodbakery-theme .bitelo-platform input[type="submit"],
body.foodbakery-theme .bitelo-platform input[type="button"] {
  all: unset;
  cursor: pointer;
}

/* Reset parent theme forms */
body.foodbakery-theme .bitelo-platform input,
body.foodbakery-theme .bitelo-platform textarea,
body.foodbakery-theme .bitelo-platform select {
  font-family: inherit;
}

/* HIDE Parent Theme Elements - Critical Overrides */
body.foodbakery-theme .bitelo-platform #header,
body.foodbakery-theme .bitelo-platform #foodbakery-header,
body.foodbakery-theme .bitelo-platform .foodbakery-header,
body.foodbakery-theme .bitelo-platform header[class*="foodbakery"],
body.foodbakery-theme .bitelo-platform .site-header,
body.foodbakery-theme .bitelo-platform .main-header {
  display: none !important;
}

/* ========================================
   MOBILE PARENT THEME SUPPRESSION
   ======================================== */
@media (max-width: 768px) {
  /* Hide parent mobile navigation completely */
  body.foodbakery-theme .bitelo-platform .mobile-menu,
  body.foodbakery-theme .bitelo-platform .mobile-nav,
  body.foodbakery-theme .bitelo-platform .foodbakery-mobile-menu,
  body.foodbakery-theme .bitelo-platform .foodbakery-mobile-nav,
  body.foodbakery-theme .bitelo-platform [class*="mobile-menu"],
  body.foodbakery-theme .bitelo-platform [class*="mobile-nav"],
  body.foodbakery-theme .bitelo-platform .menu-toggle,
  body.foodbakery-theme .bitelo-platform .mobile-toggle,
  body.foodbakery-theme .bitelo-platform .hamburger,
  body.foodbakery-theme .bitelo-platform .nav-toggle,
  body.foodbakery-theme .bitelo-platform #mobile-menu,
  body.foodbakery-theme .bitelo-platform #mobile-nav,
  body.foodbakery-theme .bitelo-platform .mobile-sidebar,
  body.foodbakery-theme .bitelo-platform .mobile-drawer,
  body.foodbakery-theme .bitelo-platform .offcanvas,
  body.foodbakery-theme .bitelo-platform .off-canvas,
  body.foodbakery-theme .bitelo-platform [class*="offcanvas"],
  body.foodbakery-theme .bitelo-platform [class*="off-canvas"],
  body.foodbakery-theme .bitelo-platform .sticky-header,
  body.foodbakery-theme .bitelo-platform .header-sticky,
  body.foodbakery-theme .bitelo-platform [class*="sticky-header"],
  body.foodbakery-theme .bitelo-platform .responsive-menu,
  body.foodbakery-theme .bitelo-platform .mobile-responsive-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -9999 !important;
  }
}

body.foodbakery-theme .bitelo-platform #sidebar,
body.foodbakery-theme .bitelo-platform .sidebar,
body.foodbakery-theme .bitelo-platform .widget-area,
body.foodbakery-theme .bitelo-platform aside[class*="sidebar"],
body.foodbakery-theme .bitelo-platform .foodbakery-sidebar {
  display: none !important;
}

body.foodbakery-theme .bitelo-platform .breadcrumb,
body.foodbakery-theme .bitelo-platform .breadcrumbs,
body.foodbakery-theme .bitelo-platform .foodbakery-breadcrumb,
body.foodbakery-theme .bitelo-platform nav[aria-label="breadcrumb"] {
  display: none !important;
}

body.foodbakery-theme .bitelo-platform .page-title,
body.foodbakery-theme .bitelo-platform .entry-title,
body.foodbakery-theme .bitelo-platform .foodbakery-page-title,
body.foodbakery-theme .bitelo-platform h1.page-title {
  display: none !important;
}

body.foodbakery-theme .bitelo-platform .footer-wrapper,
body.foodbakery-theme .bitelo-platform #footer,
body.foodbakery-theme .bitelo-platform .foodbakery-footer,
body.foodbakery-theme .bitelo-platform footer[class*="foodbakery"] {
  display: none !important;
}

body.foodbakery-theme .bitelo-platform .admin-bar-show {
  padding-top: 0 !important;
}

/* ========================================
   MOBILE PARENT THEME SUPPRESSION
   ======================================== */
@media (max-width: 768px) {
  /* Hide parent mobile navigation */
  body.foodbakery-theme .bitelo-platform .mobile-menu,
  body.foodbakery-theme .bitelo-platform .mobile-nav,
  body.foodbakery-theme .bitelo-platform .foodbakery-mobile-menu,
  body.foodbakery-theme .bitelo-platform .foodbakery-mobile-nav,
  body.foodbakery-theme .bitelo-platform [class*="mobile-menu"],
  body.foodbakery-theme .bitelo-platform [class*="mobile-nav"],
  body.foodbakery-theme .bitelo-platform .menu-toggle,
  body.foodbakery-theme .bitelo-platform .mobile-toggle,
  body.foodbakery-theme .bitelo-platform .hamburger,
  body.foodbakery-theme .bitelo-platform .nav-toggle,
  body.foodbakery-theme .bitelo-platform #mobile-menu,
  body.foodbakery-theme .bitelo-platform #mobile-nav {
    display: none !important;
  }
  
  /* Hide parent mobile sidebars/drawers */
  body.foodbakery-theme .bitelo-platform .mobile-sidebar,
  body.foodbakery-theme .bitelo-platform .mobile-drawer,
  body.foodbakery-theme .bitelo-platform .offcanvas,
  body.foodbakery-theme .bitelo-platform .off-canvas,
  body.foodbakery-theme .bitelo-platform [class*="offcanvas"],
  body.foodbakery-theme .bitelo-platform [class*="off-canvas"] {
    display: none !important;
  }
  
  /* Hide parent sticky elements */
  body.foodbakery-theme .bitelo-platform .sticky-header,
  body.foodbakery-theme .bitelo-platform .header-sticky,
  body.foodbakery-theme .bitelo-platform [class*="sticky-header"] {
    display: none !important;
  }
}

/* ========================================
   12. ANIMATIONS & MICRO-INTERACTIONS
   ======================================== */

/* Slide-in animation for drawers/sheets */
@keyframes bitelo-slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bitelo-slide-in-bottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bitelo-slide-out-right {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes bitelo-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bitelo-scale-in {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bitelo-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes bitelo-spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Animation utility classes */
.bitelo-animate-fade-in {
  animation: bitelo-fade-in 0.3s ease-out;
}

.bitelo-animate-slide-in-right {
  animation: bitelo-slide-in-right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bitelo-animate-slide-in-bottom {
  animation: bitelo-slide-in-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bitelo-animate-scale-in {
  animation: bitelo-scale-in 0.2s ease-out;
}


/* Overlay states */
.bitelo-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bitelo-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   13. WOLT-SPECIFIC UI COMPONENTS
   ======================================== */

/* Wolt-style Platform Wrapper */
.bitelo-hero {
  background: linear-gradient(135deg, #00C2B3 0%, #00A396 100%);
  padding: 4rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.bitelo-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.bitelo-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.bitelo-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.bitelo-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Wolt-style Search Container */
.bitelo-search-container {
  background: white;
  border-radius: var(--bitelo-radius-md);
  box-shadow: var(--bitelo-shadow-xl);
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.bitelo-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bitelo-gray-50);
  border-radius: var(--bitelo-radius);
  transition: var(--bitelo-transition);
}

.bitelo-search-field:focus-within {
  background: var(--bitelo-gray-100);
  box-shadow: 0 0 0 2px var(--bitelo-teal-light);
}

.bitelo-search-field__icon {
  color: var(--bitelo-gray-400);
  flex-shrink: 0;
}

.bitelo-search-field__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--bitelo-gray-900);
  outline: none;
}

.bitelo-search-field__input::placeholder {
  color: var(--bitelo-gray-400);
}

.bitelo-search-btn {
  background: var(--bitelo-teal);
  color: white;
  border: none;
  border-radius: var(--bitelo-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--bitelo-transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bitelo-search-btn:hover {
  background: var(--bitelo-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 194, 179, 0.3);
}

/* Order Now Button - Premium Wolt Style */
.bitelo-order-now-btn {
  background: #00C2B3 !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 0.875rem 1.75rem !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 12px rgba(0, 194, 179, 0.3) !important;
}

.bitelo-order-now-btn:hover {
  background: #00A396 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 194, 179, 0.4) !important;
}

.bitelo-order-now-btn:active {
  transform: translateY(0) !important;
}

@media (max-width: 640px) {
  .bitelo-order-now-btn {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9375rem !important;
  }
  
  .bitelo-order-now-btn span {
    display: none !important;
  }
}

/* Location detection button */
.bitelo-locate-btn {
  background: transparent;
  border: none;
  color: var(--bitelo-teal);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--bitelo-radius-sm);
  transition: var(--bitelo-transition);
}

.bitelo-locate-btn:hover {
  background: var(--bitelo-teal-light);
}

/* ========================================
   MOBILE HERO RESPONSIVENESS
   ======================================== */
@media (max-width: 768px) {
  .bitelo-hero {
    padding: 2rem 1rem !important;
    min-height: auto !important;
  }
  
  .bitelo-hero__content {
    padding: 0 !important;
  }
  
  .bitelo-hero__title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
    word-wrap: break-word !important;
  }
  
  .bitelo-hero__subtitle {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
    word-wrap: break-word !important;
  }
  
  .bitelo-search-container {
    flex-direction: column !important;
    gap: 0.75rem !important;
    padding: 0.75rem !important;
    border-radius: 16px !important;
  }
  
  .bitelo-search-field {
    min-width: 100% !important;
  }
  
  .bitelo-search-field__input {
    font-size: 1rem !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }
  
  .bitelo-locate-btn {
    display: none !important;
  }
  
  .bitelo-order-now-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Wolt-style Category Slider */
.bitelo-categories {
  padding: 2rem 0;
  background: white;
}

.bitelo-categories__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 1.5rem;
}

.bitelo-categories__track::-webkit-scrollbar {
  display: none;
}

.bitelo-category-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bitelo-gray-50);
  border-radius: var(--bitelo-radius);
  text-decoration: none;
  color: var(--bitelo-gray-700);
  transition: var(--bitelo-transition);
  min-width: 100px;
}

.bitelo-category-card:hover {
  background: var(--bitelo-teal-light);
  color: var(--bitelo-teal);
  transform: translateY(-4px);
  box-shadow: var(--bitelo-shadow-md);
}

.bitelo-category-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.bitelo-category-card__label {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Wolt-style Restaurant Cards */
.bitelo-restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .bitelo-restaurant-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bitelo-restaurant-card {
  display: block;
  background: white;
  border-radius: var(--bitelo-radius);
  overflow: hidden;
  box-shadow: var(--bitelo-shadow);
  text-decoration: none;
  color: inherit;
  transition: var(--bitelo-transition);
  position: relative;
}

.bitelo-restaurant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bitelo-shadow-hover);
}

.bitelo-restaurant-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bitelo-restaurant-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bitelo-restaurant-card:hover .bitelo-restaurant-card__image {
  transform: scale(1.05);
}

.bitelo-restaurant-card__badge-time {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bitelo-gray-900);
  box-shadow: var(--bitelo-shadow-sm);
}

.bitelo-restaurant-card__content {
  padding: 1rem;
}

.bitelo-restaurant-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.bitelo-restaurant-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bitelo-slate);
  line-height: 1.3;
  margin: 0;
}

.bitelo-restaurant-card__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--bitelo-gray-100);
  padding: 0.25rem 0.5rem;
  border-radius: var(--bitelo-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bitelo-gray-700);
  flex-shrink: 0;
}

.bitelo-restaurant-card__rating svg {
  color: #f59e0b;
}

.bitelo-restaurant-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--bitelo-gray-500);
}

.bitelo-restaurant-card__cuisines::after {
  content: '•';
  margin-left: 0.5rem;
  color: var(--bitelo-gray-400);
}

.bitelo-restaurant-card__price {
  color: var(--bitelo-gray-400);
  letter-spacing: 0.1em;
}

/* ========================================
   BITELo HEADER - PLATFORM LEVEL ISOLATION
   ======================================== */

.bitelo-platform .bitelo-app-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid #e5e7eb !important;
  height: 64px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.bitelo-platform .bitelo-app-header__inner {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
}

/* BITELo Logo - Left side */
.bitelo-platform .bitelo-app-header__logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.bitelo-platform .bitelo-logo-img {
  height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.bitelo-platform .bitelo-app-header__logo:hover .bitelo-logo-img {
  opacity: 0.9 !important;
}

/* Header Actions - Right side */
.bitelo-platform .bitelo-app-header__actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

/* Become a Partner Button */
.bitelo-platform .bitelo-app-header__btn--partner {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  color: #374151 !important;
  background: transparent !important;
  border: 1px solid #e5e7eb !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.bitelo-platform .bitelo-app-header__btn--partner:hover {
  background: #f9fafb !important;
  border-color: #00C2B3 !important;
  color: #00C2B3 !important;
}

/* Header Button Base Styles */
.bitelo-platform .bitelo-app-header__btn {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.bitelo-platform .bitelo-app-header__btn--ghost {
  color: #374151 !important;
  background: transparent !important;
}

.bitelo-platform .bitelo-app-header__btn--ghost:hover {
  background: #f3f4f6 !important;
}

.bitelo-platform .bitelo-app-header__btn--primary {
  background: #00C2B3 !important;
  color: white !important;
  border: none !important;
  font-weight: 600 !important;
}

.bitelo-platform .bitelo-app-header__btn--primary:hover {
  background: #00A396 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 194, 179, 0.3) !important;
}

/* Shopping Cart Icon Button */
.bitelo-platform .bitelo-cart-trigger {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  background: transparent !important;
  color: #374151 !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.bitelo-platform .bitelo-cart-trigger:hover {
  background: #f3f4f6 !important;
  color: #1f2937 !important;
}

.bitelo-platform .bitelo-cart-trigger svg {
  width: 24px !important;
  height: 24px !important;
  stroke-width: 2 !important;
}

/* Cart Counter Badge */
.bitelo-platform .bitelo-cart-trigger__count {
  position: absolute !important;
  top: -2px !important;
  right: -2px !important;
  background: #00C2B3 !important;
  color: white !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  min-width: 20px !important;
  height: 20px !important;
  padding: 0 6px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid white !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* ========================================
   MOBILE HEADER ABSOLUTE FIXES
   ======================================== */
@media (max-width: 768px) {
  /* Force header to clean single row */
  body .bitelo-platform .bitelo-app-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 16px !important;
    height: 60px !important;
    overflow: visible !important;
  }
  
  body .bitelo-platform .bitelo-app-header__inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    height: 100% !important;
  }
  
  /* Logo image - prevent cutoff */
  body .bitelo-platform .bitelo-app-header__logo {
    display: flex !important;
    align-items: center !important;
    max-height: 35px !important;
    overflow: visible !important;
  }
  
  body .bitelo-platform .bitelo-logo-img {
    height: 35px !important;
    max-height: 35px !important;
    width: auto !important;
    max-width: none !important;
    display: block !important;
    object-fit: contain !important;
  }
  
  body .bitelo-platform .bitelo-app-header__btn--partner {
    display: none !important;
  }
  
  body .bitelo-platform .bitelo-app-header__btn {
    padding: 0.375rem 0.75rem !important;
    font-size: 0.8125rem !important;
  }
  
  body .bitelo-platform .bitelo-cart-trigger {
    width: 40px !important;
    height: 40px !important;
  }
}

/* Adjust main content for fixed header - CRITICAL */
.bitelo-platform {
  padding-top: 64px !important;
  background: #ffffff !important;
  min-height: 100vh !important;
  position: relative !important;
  z-index: 1 !important;
}

/* ========================================
   ABSOLUTE MOBILE CART CONTAINMENT
   ======================================== */
@media (max-width: 768px) {
  /* Force cart drawer to bottom sheet off-screen by default */
  body .bitelo-platform .bitelo-cart-drawer,
  body .bitelo-platform .bitelo-drawer,
  html body .bitelo-cart-drawer,
  html body .bitelo-drawer,
  body #cart-drawer.bitelo-cart-drawer,
  .bitelo-platform #cart-drawer.bitelo-cart-drawer {
    display: block !important;
    position: fixed !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 80vh !important;
    min-height: 300px !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 24px 24px 0 0 !important;
    transform: translateY(100%) !important;
    z-index: 99999999 !important;
    background: #ffffff !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    overflow: hidden !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Active state - slides up */
  body .bitelo-platform .bitelo-cart-drawer.is-active,
  body .bitelo-platform .bitelo-drawer.is-active,
  body .bitelo-platform .bitelo-cart-drawer.is-open,
  body .bitelo-platform .bitelo-drawer.is-open,
  body #cart-drawer.bitelo-cart-drawer.is-active,
  .is-active body .bitelo-platform .bitelo-cart-drawer {
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* ========================================
   TABLET CART CONTAINMENT (BOTTOM SHEET)
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
  body .bitelo-platform .bitelo-cart-drawer,
  body .bitelo-platform .bitelo-drawer,
  html body .bitelo-cart-drawer,
  html body .bitelo-drawer {
    width: 100% !important;
    max-width: 480px !important;
    height: auto !important;
    max-height: 80vh !important;
    min-height: 300px !important;
    top: auto !important;
    bottom: 0 !important;
    left: auto !important;
    right: 0 !important;
    border-radius: 24px 0 0 0 !important;
    transform: translateY(100%) !important;
  }
  
  body .bitelo-platform .bitelo-cart-drawer.is-active,
  body .bitelo-platform .bitelo-drawer.is-active,
  body .bitelo-platform .bitelo-cart-drawer.is-open,
  body .bitelo-platform .bitelo-drawer.is-open {
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* ========================================
   ABSOLUTE MOBILE CART CONTAINMENT
   ======================================== */
@media (max-width: 768px) {
  /* Force cart drawer to bottom sheet off-screen by default */
  body .bitelo-platform .bitelo-cart-drawer,
  body .bitelo-platform .bitelo-drawer,
  html body .bitelo-cart-drawer,
  html body .bitelo-drawer,
  body #cart-drawer.bitelo-cart-drawer,
  .bitelo-platform #cart-drawer.bitelo-cart-drawer {
    display: block !important;
    position: fixed !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 80vh !important;
    min-height: 300px !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 24px 24px 0 0 !important;
    transform: translateY(100%) !important;
    z-index: 99999999 !important;
    background: #ffffff !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    overflow: hidden !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Active state - slides up */
  body .bitelo-platform .bitelo-cart-drawer.is-active,
  body .bitelo-platform .bitelo-drawer.is-active,
  body .bitelo-platform .bitelo-cart-drawer.is-open,
  body .bitelo-platform .bitelo-drawer.is-open,
  body #cart-drawer.bitelo-cart-drawer.is-active,
  .is-active body .bitelo-platform .bitelo-cart-drawer {
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* ========================================
   TABLET CART CONTAINMENT
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
  body .bitelo-platform .bitelo-cart-drawer,
  body .bitelo-platform .bitelo-drawer,
  html body .bitelo-cart-drawer,
  html body .bitelo-drawer {
    width: 360px !important;
    transform: translateX(100%) !important;
  }
  
  body .bitelo-platform .bitelo-cart-drawer.is-active,
  body .bitelo-platform .bitelo-drawer.is-active,
  body .bitelo-platform .bitelo-cart-drawer.is-open,
  body .bitelo-platform .bitelo-drawer.is-open {
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }
}

/* Loading states */
.bitelo-skeleton {
  background: linear-gradient(90deg, var(--bitelo-gray-100) 25%, var(--bitelo-gray-50) 50%, var(--bitelo-gray-100) 75%);
  background-size: 200% 100%;
  animation: bitelo-skeleton 1.5s infinite;
  border-radius: var(--bitelo-radius);
}

@keyframes bitelo-skeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Toast notifications */
.bitelo-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bitelo-slate);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--bitelo-radius);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--bitelo-shadow-xl);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bitelo-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.bitelo-toast--success {
  background: var(--bitelo-teal);
}

.bitelo-toast--error {
  background: #ef4444;
}

/* Print styles */
@media print {
  .bitelo-no-print,
  .bitelo-search-section,
  .bitelo-menu-categories,
  .bitelo-cart,
  .bitelo-restaurant-header__actions,
  .bitelo-app-header {
    display: none !important;
  }
  
  .bitelo-menu-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}


/* ============================================================
   BITELO — WOLT-STYLE PARENT THEME OVERRIDES
   Suppresses heavy FoodBakery chrome on all pages and enforces
   the clean white-card layout used across Bitelo.de
   ============================================================ */

/* 1. Kill leftover FoodBakery structural chrome ------------------------------------------ */
.main-section > .row:empty,
.cs-main-banner,
.cs-subheader.sub-header,
.sub-header,
.bread-crumb,
.breadcrumbs,
.cs-top-strip,
.header-top-strip,
.cs-header-top-strip,
.header-main #header,
#header .main-header,
.header-main .main-header,
.cs-header-navigation .header-main,
body:not(.bitelo-platform) #footer,
body:not(.bitelo-platform) .footer-holder,
body:not(.bitelo-platform) .copyright-text,
.foodbakery-banner:not(.bitelo-banner),
[class*="chimpgroup"],
[class*="ChimpGroup"] {
  display: none !important;
}

/* 2. Enforce white-background body + kill FoodBakery tinted wrappers --------------------- */
body {
  background: var(--bitelo-cream-50, #fff8f3) !important;
}

.wrapper,
.main-section,
.cs-main-layout,
.main-content-area,
#primary,
.entry-content {
  background: transparent !important;
  box-shadow: none !important;
}

/* 3. Standardise all Bitelo cards to rounded white style (Wolt parity) ------------------- */
.bitelo-home-card,
.bitelo-startup-card,
.bitelo-restaurant-card,
.bitelo-info-card,
.bitelo-review-card-v2,
.bitelo-menu-card,
.bitelo-favorite-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(16, 22, 47, 0.07);
  overflow: hidden;
  border: 1px solid rgba(16, 22, 47, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bitelo-home-card:hover,
.bitelo-startup-card:hover,
.bitelo-restaurant-card:hover,
.bitelo-info-card:hover,
.bitelo-menu-card:hover,
.bitelo-favorite-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 22, 47, 0.13);
}

/* 4. Card image aspect-ratio lock -------------------------------------------------------- */
.bitelo-home-card__media,
.bitelo-restaurant-card__media,
.bitelo-startup-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
}

.bitelo-home-card__image,
.bitelo-restaurant-card__image,
.bitelo-startup-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.bitelo-home-card:hover .bitelo-home-card__image,
.bitelo-restaurant-card:hover .bitelo-restaurant-card__image,
.bitelo-startup-card:hover .bitelo-startup-card__image {
  transform: scale(1.04);
}

/* 5. Delivery time pill -----------------------------------------------------------------  */
.bitelo-home-card__time,
.bitelo-restaurant-card__time-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(16, 22, 47, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* 6. Section layout helpers -------------------------------------------------------------- */
.bitelo-home-section,
.bitelo-startup-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 48px 24px;
}

.bitelo-home-section__head,
.bitelo-startup-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.bitelo-home-section__head h2,
.bitelo-startup-section__head h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.bitelo-home-grid,
.bitelo-startup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* 7. Discount / featured / popular badge ------------------------------------------------- */
.bitelo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
}

.bitelo-badge--featured {
  background: #fff3cd;
  color: #92600a;
  border: 1px solid #f5d48a;
}

.bitelo-badge--discount {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.bitelo-badge--rating {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.bitelo-badge--closed {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.bitelo-badge--success {
  background: #d1fae5;
  color: #065f46;
}

.bitelo-badge--sm {
  font-size: 0.65rem;
  padding: 3px 9px;
}

/* 8. Registration page layout ------------------------------------------------------------ */
.bitelo-reg-page {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.bitelo-reg-hero {
  background: linear-gradient(135deg, #fff8f3 0%, #ffeee5 100%);
  border-radius: 28px;
  padding: 80px 48px;
  margin: 40px 0 64px;
  text-align: center;
}

.bitelo-reg-hero__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.bitelo-reg-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bitelo-ink-900, #10162f);
}

.bitelo-reg-hero p {
  font-size: 1.1rem;
  color: var(--bitelo-ink-500, #6a7692);
  line-height: 1.6;
}

.bitelo-reg-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.bitelo-reg-steps {
  margin-bottom: 64px;
}

.bitelo-reg-steps__head {
  margin-bottom: 32px;
}

.bitelo-reg-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.bitelo-reg-steps__list li {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(16, 22, 47, 0.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bitelo-reg-steps__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bitelo-orange-500, #ff5e36);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bitelo-reg-steps__list h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.bitelo-reg-steps__list p {
  font-size: 0.9rem;
  color: var(--bitelo-ink-500, #6a7692);
  line-height: 1.5;
}

.bitelo-reg-cta {
  background: var(--bitelo-ink-900, #10162f);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
}

.bitelo-reg-cta h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.bitelo-reg-cta p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
}

.bitelo-reg-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.bitelo-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
}

/* 9. Responsive adjustments -------------------------------------------------------------- */
@media (max-width: 767px) {
  .bitelo-reg-hero {
    padding: 48px 24px;
    margin: 24px 0 40px;
  }

  .bitelo-reg-cta {
    padding: 48px 24px;
  }

  .bitelo-home-grid,
  .bitelo-startup-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .bitelo-home-grid,
  .bitelo-startup-grid {
    grid-template-columns: 1fr;
  }
}

/* 10. Premium Polish Pass -------------------------------------------------------------- */
:root {
  --bitelo-ui-font: 'Manrope', 'Nunito Sans', 'Segoe UI', sans-serif;
  --bitelo-ui-shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  --bitelo-ui-shadow-card: 0 14px 34px rgba(15, 23, 42, 0.08);
  --bitelo-ui-radius: 16px;
  --bitelo-ui-radius-sm: 12px;
  --bitelo-ui-border: #dce3ea;
  --bitelo-ui-focus: #00b8a9;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--bitelo-ui-font) !important;
  letter-spacing: 0.01em;
}

body {
  color: #18222f;
}

.bitelo-homepage,
.bitelo-dashboard,
.bitelo-reg-page,
.bitelo-rp,
.bitelo-startup-section,
.bitelo-home-section {
  padding-top: clamp(22px, 2.4vw, 36px);
}

.bitelo-home-card,
.bitelo-startup-card,
.bitelo-info-card,
.bitelo-review-card-v2,
.bitelo-partner-card,
.bitelo-reg-form__card,
.bitelo-reg-form__copy,
.bitelo-dashboard-main,
.bitelo-user-card,
.bitelo-dashboard-nav,
.bitelo-order-card,
.bitelo-favorite-card,
.bitelo-rp-card,
.bitelo-rp-metric,
.bitelo-rp-stat,
.bitelo-rp-order-col,
.bitelo-rp-notifications li {
  border-radius: var(--bitelo-ui-radius) !important;
  border: 0 !important;
  box-shadow: var(--bitelo-ui-shadow-soft) !important;
}

.bitelo-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 227, 234, 0.65);
}

.bitelo-header__container {
  height: 78px;
  gap: 0.85rem;
  align-items: center;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
}

.bitelo-logo {
  min-width: 142px;
}

.bitelo-location__trigger {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid #dde4ea;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
  padding: 0.68rem 0.95rem;
}

.bitelo-location__trigger:hover {
  border-color: #c9d5df;
  background: #fff;
}

.bitelo-header__actions {
  justify-self: end;
  gap: 0.65rem;
}

.bitelo-header__cart,
.bitelo-header__menu-toggle {
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}

.bitelo-language {
  justify-self: center;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.07);
}

.bitelo-language__item {
  min-width: 46px;
  height: 34px;
  font-size: 0.76rem;
  font-weight: 800;
}

.bitelo-startup-hero--video {
  min-height: clamp(500px, 66vh, 720px);
  border-radius: 26px;
  box-shadow: var(--bitelo-ui-shadow-card);
}

.bitelo-startup-hero__video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.bitelo-startup-hero__overlay {
  background: linear-gradient(130deg, rgba(7, 12, 19, 0.76) 0%, rgba(7, 12, 19, 0.54) 38%, rgba(7, 12, 19, 0.83) 100%);
}

.bitelo-startup-hero__copy {
  max-width: 760px;
  margin-bottom: 0.8rem;
}

.bitelo-startup-hero--video .bitelo-startup-badge {
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
}

.bitelo-startup-hero--video h1 {
  font-size: clamp(2.05rem, 5vw, 4rem);
  line-height: 1.04;
  margin-bottom: 0.7rem;
}

.bitelo-startup-hero--video p {
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  max-width: 700px;
  opacity: 0.97;
}

.bitelo-startup-search {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  gap: 0.7rem;
}

.bitelo-startup-search__field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  padding: 0 0.95rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}

.bitelo-startup-search__icon,
.bitelo-startup-search__geo {
  font-size: 1rem;
  opacity: 0.75;
}

.bitelo-startup-search input[type="text"] {
  border: 0;
  height: 100%;
  border-radius: 999px;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 1rem;
  padding: 0;
}

.bitelo-startup-search input[type="text"]:focus {
  outline: 0;
}

.bitelo-startup-search__locate,
.bitelo-startup-search .bitelo-btn--primary {
  min-height: 56px;
  border-radius: 999px;
  padding: 0 1.25rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.17);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bitelo-startup-search__locate:hover,
.bitelo-startup-search .bitelo-btn--primary:hover {
  transform: translateY(-1px);
}

.bitelo-reg-form__card,
.bitelo-reg-form__copy {
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--bitelo-ui-shadow-card) !important;
}

.bitelo-reg-form__grid {
  gap: 18px;
}

.bitelo-reg-form__grid input,
.bitelo-reg-form__grid textarea,
.woocommerce form .input-text,
.woocommerce-page form .input-text,
.bitelo-form-input,
.bitelo-rp-form input,
.bitelo-rp-form textarea,
.bitelo-rp-form select,
.bitelo-rp-select {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--bitelo-ui-border) !important;
  border-radius: var(--bitelo-ui-radius-sm) !important;
  background: #fff;
  box-shadow: none;
  min-height: 50px;
  padding: 0.75rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bitelo-reg-form__grid textarea,
.bitelo-rp-form textarea,
.woocommerce form textarea {
  min-height: 120px;
}

.bitelo-reg-form__grid input:focus,
.bitelo-reg-form__grid textarea:focus,
.woocommerce form .input-text:focus,
.bitelo-form-input:focus,
.bitelo-rp-form input:focus,
.bitelo-rp-form textarea:focus,
.bitelo-rp-form select:focus,
.bitelo-rp-select:focus {
  border-color: var(--bitelo-ui-focus) !important;
  box-shadow: 0 0 0 4px rgba(0, 184, 169, 0.14) !important;
  outline: none;
}

.bitelo-btn,
.bitelo-rp-btn,
.woocommerce button.button,
.woocommerce-page button.button,
.woocommerce a.button {
  border-radius: 12px !important;
  border: 0 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bitelo-btn--primary,
.bitelo-rp-btn--primary,
.woocommerce button.button.alt,
.woocommerce-page button.button.alt,
.woocommerce a.button.alt {
  background: linear-gradient(135deg, #00b8a9 0%, #009d91 100%) !important;
  color: #fff !important;
}

.bitelo-btn:hover,
.bitelo-rp-btn:hover,
.woocommerce button.button:hover,
.woocommerce-page button.button:hover,
.woocommerce a.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.bitelo-dashboard {
  background: linear-gradient(180deg, #f6f8fb 0%, #f3f6fb 100%);
}

.bitelo-dashboard-main,
.bitelo-user-card,
.bitelo-dashboard-nav,
.bitelo-order-card,
.bitelo-favorite-card,
.bitelo-address-card,
.bitelo-profile-form,
.woocommerce-account .woocommerce,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.checkout_coupon {
  padding: clamp(16px, 2.2vw, 26px);
  border-radius: 16px;
  border: 0;
  box-shadow: var(--bitelo-ui-shadow-soft);
}

.bitelo-dashboard-grid {
  gap: clamp(20px, 2.8vw, 34px);
}

.bitelo-dashboard-header {
  border-bottom: 0;
  margin-bottom: 1.3rem;
  padding-bottom: 0;
}

.bitelo-dashboard-nav__item {
  border-bottom: 0;
  border-radius: 10px;
  margin: 5px;
}

.bitelo-rp {
  background: #f3f6fb;
  border-radius: 18px;
  box-shadow: var(--bitelo-ui-shadow-soft);
}

.bitelo-rp-card,
.bitelo-rp-metric,
.bitelo-rp-stat,
.bitelo-rp-order-col,
.bitelo-rp-notifications li {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08) !important;
}

.bitelo-rp-order-board {
  gap: 0.9rem;
}

.bitelo-rp-table th,
.bitelo-rp-table td {
  border-bottom: 1px solid rgba(220, 227, 234, 0.7);
}

@media (max-width: 1024px) {
  .bitelo-header__container {
    grid-template-columns: auto 1fr auto;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    row-gap: 8px;
  }

  .bitelo-language {
    justify-self: start;
  }

  .bitelo-location__trigger {
    grid-column: 1 / -1;
  }

  .bitelo-startup-search {
    grid-template-columns: 1fr;
  }

  .bitelo-startup-search__locate,
  .bitelo-startup-search .bitelo-btn--primary {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .bitelo-startup-hero--video {
    border-radius: 20px;
    padding: 20px;
  }

  .bitelo-startup-search__field {
    min-height: 56px;
  }

  .bitelo-reg-form__content {
    grid-template-columns: 1fr;
  }

  .bitelo-reg-form__grid {
    grid-template-columns: 1fr;
  }
}

/* 11. Art-Direction Pass II ------------------------------------------------------------ */
:root {
  --bitelo-rhythm-xs: 10px;
  --bitelo-rhythm-sm: 16px;
  --bitelo-rhythm-md: 24px;
  --bitelo-rhythm-lg: 36px;
  --bitelo-rhythm-xl: 56px;
  --bitelo-accent-cyan: #00b8a9;
  --bitelo-accent-amber: #f59e0b;
  --bitelo-accent-coral: #ff6b4a;
}

.bitelo-homepage section,
.bitelo-home-section,
.bitelo-startup-section,
.bitelo-reg-form,
.bitelo-reg-benefits,
.bitelo-reg-steps,
.bitelo-reg-cta {
  position: relative;
  margin-top: clamp(14px, 2vw, 22px);
}

.bitelo-home-section,
.bitelo-startup-section {
  padding-top: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.bitelo-home-section + .bitelo-home-section,
.bitelo-startup-section + .bitelo-startup-section,
.bitelo-reg-benefits + .bitelo-reg-steps,
.bitelo-reg-steps + .bitelo-reg-form,
.bitelo-reg-form + .bitelo-reg-cta {
  margin-top: clamp(18px, 2.5vw, 34px);
}

.bitelo-home-section__head,
.bitelo-startup-section__head,
.bitelo-reg-steps__head {
  margin-bottom: clamp(16px, 2vw, 28px);
}

.bitelo-home-section__head h2,
.bitelo-startup-section__head h2,
.bitelo-reg-steps__head h2,
.bitelo-reg-form__copy h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.bitelo-home-section__head h2::after,
.bitelo-startup-section__head h2::after,
.bitelo-reg-steps__head h2::after,
.bitelo-reg-form__copy h2::after {
  content: '';
  width: 38px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bitelo-accent-cyan), var(--bitelo-accent-amber));
  box-shadow: 0 6px 14px rgba(0, 184, 169, 0.2);
}

.bitelo-home-section::before,
.bitelo-startup-section::before,
.bitelo-reg-benefits::before,
.bitelo-reg-steps::before {
  content: '';
  position: absolute;
  top: 10px;
  right: clamp(10px, 2vw, 24px);
  width: clamp(82px, 14vw, 150px);
  height: clamp(82px, 14vw, 150px);
  border-radius: 26px;
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 58%), linear-gradient(145deg, rgba(0, 184, 169, 0.2), rgba(245, 158, 11, 0.12));
  transform: rotate(14deg);
  pointer-events: none;
  opacity: 0.5;
}

.bitelo-home-section:nth-of-type(even)::before,
.bitelo-startup-section:nth-of-type(even)::before {
  right: auto;
  left: clamp(10px, 2vw, 24px);
  transform: rotate(-12deg);
}

.bitelo-home-card,
.bitelo-startup-card,
.bitelo-reg-form__card,
.bitelo-reg-form__copy,
.bitelo-order-card,
.bitelo-rp-card,
.bitelo-rp-metric,
.bitelo-rp-order-col {
  animation: bitelo-signature-rise 0.72s cubic-bezier(.2, .75, .2, 1) both;
  will-change: transform, opacity;
}

.bitelo-home-grid > *:nth-child(1),
.bitelo-startup-grid > *:nth-child(1),
.bitelo-rp-cards > *:nth-child(1),
.bitelo-rp-order-board > *:nth-child(1) {
  animation-delay: 40ms;
}

.bitelo-home-grid > *:nth-child(2),
.bitelo-startup-grid > *:nth-child(2),
.bitelo-rp-cards > *:nth-child(2),
.bitelo-rp-order-board > *:nth-child(2) {
  animation-delay: 90ms;
}

.bitelo-home-grid > *:nth-child(3),
.bitelo-startup-grid > *:nth-child(3),
.bitelo-rp-cards > *:nth-child(3),
.bitelo-rp-order-board > *:nth-child(3) {
  animation-delay: 140ms;
}

.bitelo-home-grid > *:nth-child(4),
.bitelo-startup-grid > *:nth-child(4),
.bitelo-rp-cards > *:nth-child(4),
.bitelo-rp-order-board > *:nth-child(4) {
  animation-delay: 190ms;
}

.bitelo-startup-hero--video {
  overflow: hidden;
}

.bitelo-startup-hero--video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0) 58%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: bitelo-light-drift 11s ease-in-out infinite alternate;
}

.bitelo-startup-hero__copy,
.bitelo-startup-search,
.bitelo-startup-hero__brand {
  animation: bitelo-hero-reveal 0.9s cubic-bezier(.2, .78, .2, 1) both;
}

.bitelo-startup-search {
  animation-delay: 120ms;
}

.bitelo-startup-hero__brand {
  animation-delay: 190ms;
}

.bitelo-btn,
.bitelo-rp-btn,
.bitelo-language__item,
.bitelo-dashboard-nav__item,
.bitelo-home-card,
.bitelo-startup-card,
.bitelo-rp-tab {
  transition: transform 0.24s cubic-bezier(.2, .7, .2, 1), box-shadow 0.24s ease, filter 0.24s ease, background-color 0.24s ease;
}

.bitelo-home-card:hover,
.bitelo-startup-card:hover,
.bitelo-rp-card:hover,
.bitelo-rp-metric:hover,
.bitelo-rp-order-col:hover {
  transform: translateY(-4px);
}

.bitelo-language__item:hover,
.bitelo-rp-tab:hover {
  filter: saturate(1.1);
}

@keyframes bitelo-signature-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes bitelo-hero-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bitelo-light-drift {
  0% {
    transform: translateX(-2%) translateY(-1%) scale(1);
    opacity: 0.26;
  }
  50% {
    transform: translateX(2%) translateY(0) scale(1.01);
    opacity: 0.34;
  }
  100% {
    transform: translateX(5%) translateY(1%) scale(1.02);
    opacity: 0.42;
  }
}

@media (max-width: 900px) {
  .bitelo-home-section::before,
  .bitelo-startup-section::before,
  .bitelo-reg-benefits::before,
  .bitelo-reg-steps::before {
    width: 76px;
    height: 76px;
    opacity: 0.38;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bitelo-home-card,
  .bitelo-startup-card,
  .bitelo-reg-form__card,
  .bitelo-reg-form__copy,
  .bitelo-order-card,
  .bitelo-rp-card,
  .bitelo-rp-metric,
  .bitelo-rp-order-col,
  .bitelo-startup-hero__copy,
  .bitelo-startup-search,
  .bitelo-startup-hero__brand,
  .bitelo-startup-hero--video::after {
    animation: none !important;
  }

  .bitelo-btn,
  .bitelo-rp-btn,
  .bitelo-home-card,
  .bitelo-startup-card,
  .bitelo-rp-tab,
  .bitelo-language__item {
    transition: none !important;
  }
}
