.elementor-11 .elementor-element.elementor-element-bfc4b2e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-8b1a694 *//* FIT & FOOD APP STYLES */
#fit-food-app {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
}

#fit-food-app * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#fit-food-app body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  color: #2C3E50;
  overflow-x: hidden;
  height: 100%;
}

#fit-food-app html {
  height: 100%;
}

#fit-food-app :root {
  --primary-gradient: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  --secondary-gradient: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  --card-shadow: 0 8px 30px rgba(0,0,0,0.08);
  --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Splash Screen */
#fit-food-app #splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #27AE60 0%, #1e8449 50%, #229954 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeOut 0.5s ease-in-out 2.5s forwards;
  overflow: hidden;
}

#fit-food-app #splash-screen::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

#fit-food-app .splash-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

#fit-food-app .splash-text {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  animation: slideUp 0.8s ease-out;
}

#fit-food-app .splash-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#fit-food-app .loading-dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

#fit-food-app .dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite;
}

#fit-food-app .dot:nth-child(2) { animation-delay: 0.2s; }
#fit-food-app .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
}

/* Main App Container */
#fit-food-app #app-container {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 3s forwards;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Header */
#fit-food-app .app-header {
  background: linear-gradient(135deg, #27AE60 0%, #1e8449 50%, #229954 100%);
  color: white;
  padding: 25px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

#fit-food-app .app-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: headerGlow 15s ease-in-out infinite;
}

@keyframes headerGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30%, -30%); }
}

#fit-food-app .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

#fit-food-app .logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#fit-food-app .logo-img {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: white;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: var(--transition);
}

#fit-food-app .logo-img:hover {
  transform: rotate(5deg) scale(1.05);
}

#fit-food-app .app-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#fit-food-app .header-icons {
  display: flex;
  gap: 12px;
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#fit-food-app .icon-btn {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#fit-food-app .icon-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

#fit-food-app .icon-btn:active {
  transform: translateY(-1px) scale(0.98);
}

#fit-food-app .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  color: #2C3E50;
  font-size: 11px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255,215,0,0.4);
  border: 2px solid white;
  animation: pulse 2s ease-in-out infinite;
}

#fit-food-app .search-bar {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  padding: 14px 24px;
  color: white;
  width: 100%;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#fit-food-app .search-bar:focus {
  outline: none;
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

#fit-food-app .search-bar::placeholder {
  color: rgba(255,255,255,0.8);
}

/* Main Content */
#fit-food-app .main-content {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 80px;
}

/* Promo Banner */
#fit-food-app .promo-banner {
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 50%, #FFB700 100%);
  margin: 25px 20px;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out 0.3s backwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#fit-food-app .promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: promoGlow 8s ease-in-out infinite;
}

@keyframes promoGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20%, -20%) scale(1.1); }
}

#fit-food-app .promo-content {
  position: relative;
  z-index: 1;
}

#fit-food-app .promo-content h3 {
  color: #2C3E50;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

#fit-food-app .promo-content p {
  color: #2C3E50;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

#fit-food-app .promo-btn {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(39,174,96,0.3);
  position: relative;
  z-index: 1;
}

#fit-food-app .promo-btn:hover {
  background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}

#fit-food-app .promo-btn:active {
  transform: translateY(-1px);
}

/* Categories */
#fit-food-app .section {
  margin: 25px 20px;
}

#fit-food-app .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

#fit-food-app .section-title {
  font-size: 22px;
  font-weight: 800;
  color: #2C3E50;
  letter-spacing: -0.5px;
}

#fit-food-app .see-all {
  color: #27AE60;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  padding: 6px 12px;
  border-radius: 20px;
}

#fit-food-app .see-all:hover {
  background: rgba(39,174,96,0.1);
  transform: translateX(3px);
}

#fit-food-app .categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

#fit-food-app .categories-grid.collapsed .category-card:nth-child(n+5) {
  display: none;
}

#fit-food-app .category-card {
  background: white;
  border-radius: 18px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

#fit-food-app .category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(39,174,96,0.05) 0%, rgba(255,215,0,0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

#fit-food-app .category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
}

#fit-food-app .category-card:hover::before {
  opacity: 1;
}

#fit-food-app .category-card:active {
  transform: translateY(-4px) scale(0.98);
}

#fit-food-app .category-icon {
  font-size: 36px;
  margin-bottom: 10px;
  transition: var(--transition);
  display: inline-block;
}

#fit-food-app .category-card:hover .category-icon {
  transform: scale(1.2) rotate(5deg);
}

#fit-food-app .category-name {
  font-size: 12px;
  font-weight: 700;
  color: #2C3E50;
  position: relative;
  z-index: 1;
}

/* Products Grid */
#fit-food-app .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

#fit-food-app .product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
  position: relative;
}

#fit-food-app .product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition);
  pointer-events: none;
}

#fit-food-app .product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}

#fit-food-app .product-card:hover::after {
  border-color: rgba(39,174,96,0.2);
}

#fit-food-app .product-card:active {
  transform: translateY(-5px);
}

#fit-food-app .product-image {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

#fit-food-app .product-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  animation: imageGlow 10s ease-in-out infinite;
}

@keyframes imageGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20%, 20%); }
}

#fit-food-app .product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(39,174,96,0.3);
  z-index: 1;
  animation: badgePop 0.5s ease-out;
}

#fit-food-app .favorite-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
}

#fit-food-app .favorite-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

#fit-food-app .favorite-btn:active {
  transform: scale(1.05);
}

#fit-food-app .favorite-btn.active {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

@keyframes badgePop {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

#fit-food-app .product-info {
  padding: 16px;
}

#fit-food-app .product-name {
  font-size: 15px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 6px;
  line-height: 1.3;
}

#fit-food-app .product-description {
  font-size: 12px;
  color: #7F8C8D;
  margin-bottom: 12px;
  line-height: 1.4;
}

#fit-food-app .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#fit-food-app .product-price {
  font-size: 17px;
  font-weight: 800;
  color: #27AE60;
  letter-spacing: -0.3px;
}

#fit-food-app .add-to-cart-btn {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

#fit-food-app .add-to-cart-btn:hover {
  background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 6px 16px rgba(39,174,96,0.4);
}

#fit-food-app .add-to-cart-btn:active {
  transform: scale(1.05) rotate(90deg);
}

/* Bottom Navigation */
#fit-food-app .bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 10px 0 15px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 100;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.05);
}

#fit-food-app .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  padding: 10px 24px;
  border-radius: 16px;
  position: relative;
}

#fit-food-app .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #27AE60 0%, #229954 100%);
  border-radius: 0 0 3px 3px;
  transition: var(--transition);
}

#fit-food-app .nav-item.active::before {
  width: 60%;
}

#fit-food-app .nav-item:hover {
  background: rgba(39,174,96,0.05);
  transform: translateY(-2px);
}

#fit-food-app .nav-item.active {
  color: #27AE60;
}

#fit-food-app .nav-item.active .nav-icon {
  transform: scale(1.1);
}

#fit-food-app .nav-icon {
  font-size: 26px;
  transition: var(--transition);
}

#fit-food-app .nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Cart Page */
#fit-food-app .cart-container {
  display: none;
  padding: 20px;
  padding-bottom: 100px;
}

#fit-food-app .cart-container.active {
  display: block;
}

#fit-food-app .cart-header {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2C3E50;
}

#fit-food-app .cart-item {
  background: white;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#fit-food-app .cart-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #27AE60 0%, #229954 100%);
  transform: scaleY(0);
  transition: var(--transition);
}

#fit-food-app .cart-item:hover {
  transform: translateX(5px);
  box-shadow: var(--card-shadow-hover);
}

#fit-food-app .cart-item:hover::before {
  transform: scaleY(1);
}

#fit-food-app .cart-item-image {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

#fit-food-app .cart-item-details {
  flex: 1;
}

#fit-food-app .cart-item-name {
  font-size: 16px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 5px;
}

#fit-food-app .cart-item-price {
  font-size: 14px;
  color: #27AE60;
  font-weight: 600;
  margin-bottom: 10px;
}

#fit-food-app .quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

#fit-food-app .qty-btn {
  background: linear-gradient(135deg, #ECF0F1 0%, #d9e2ec 100%);
  border: 2px solid rgba(39,174,96,0.2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #27AE60;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#fit-food-app .qty-btn:hover {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  border-color: #27AE60;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

#fit-food-app .qty-btn:active {
  transform: scale(0.95);
}

#fit-food-app .qty-value {
  font-size: 17px;
  font-weight: 800;
  min-width: 35px;
  text-align: center;
  color: #2C3E50;
}

#fit-food-app .remove-btn {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(231,76,60,0.3);
}

#fit-food-app .remove-btn:hover {
  background: linear-gradient(135deg, #C0392B 0%, #A93226 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231,76,60,0.4);
}

#fit-food-app .remove-btn:active {
  transform: translateY(0);
}

#fit-food-app .cart-summary {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: var(--card-shadow);
  border: 2px solid rgba(39,174,96,0.1);
}

#fit-food-app .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
  color: #2C3E50;
}

#fit-food-app .summary-row span:first-child {
  font-weight: 600;
}

#fit-food-app .summary-row span:last-child {
  font-weight: 700;
}

#fit-food-app .summary-row.total {
  font-size: 20px;
  font-weight: 800;
  color: #27AE60;
  padding-top: 16px;
  border-top: 2px dashed rgba(39,174,96,0.3);
  margin-top: 14px;
}

#fit-food-app .checkout-btn {
  background: linear-gradient(135deg, #27AE60 0%, #1e8449 50%, #229954 100%);
  color: white;
  border: none;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(39,174,96,0.3);
  position: relative;
  overflow: hidden;
}

#fit-food-app .checkout-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#fit-food-app .checkout-btn:hover::before {
  width: 300px;
  height: 300px;
}

#fit-food-app .checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(39,174,96,0.4);
}

#fit-food-app .checkout-btn:active {
  transform: translateY(-1px);
}

#fit-food-app .checkout-btn:disabled {
  background: linear-gradient(135deg, #BDC3C7 0%, #95A5A6 100%);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Orders Page */
#fit-food-app .orders-container {
  display: none;
  padding: 20px;
  padding-bottom: 100px;
}

#fit-food-app .orders-container.active {
  display: block;
}

#fit-food-app .order-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

#fit-food-app .order-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(39,174,96,0.2);
}

#fit-food-app .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 2px dashed rgba(0,0,0,0.08);
}

#fit-food-app .order-id {
  font-size: 15px;
  font-weight: 800;
  color: #2C3E50;
  letter-spacing: -0.3px;
}

#fit-food-app .order-status {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#fit-food-app .order-status.pending {
  background: linear-gradient(135deg, #FFF3CD 0%, #FFE69C 100%);
  color: #856404;
}

#fit-food-app .order-status.confirmed {
  background: linear-gradient(135deg, #D1ECF1 0%, #A8D8E6 100%);
  color: #0C5460;
}

#fit-food-app .order-status.delivered {
  background: linear-gradient(135deg, #D4EDDA 0%, #B7E4C7 100%);
  color: #155724;
}

#fit-food-app .order-items {
  margin-bottom: 15px;
}

#fit-food-app .order-item {
  font-size: 14px;
  color: #7F8C8D;
  margin-bottom: 5px;
}

#fit-food-app .order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#fit-food-app .order-total {
  font-size: 18px;
  font-weight: 700;
  color: #27AE60;
}

#fit-food-app .order-date {
  font-size: 12px;
  color: #7F8C8D;
}

/* Modals */
#fit-food-app .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

#fit-food-app .modal.active {
  display: flex;
}

/* Product Detail Modal */
#fit-food-app .product-detail-modal .modal-content {
  max-width: 600px;
}

#fit-food-app .product-detail-header {
  position: relative;
  margin: -35px -35px 25px -35px;
  height: 280px;
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#fit-food-app .product-detail-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  animation: imageGlow 10s ease-in-out infinite;
}

#fit-food-app .product-detail-icon {
  font-size: 120px;
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

#fit-food-app .product-detail-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(39,174,96,0.4);
  z-index: 2;
}

#fit-food-app .close-modal-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #2C3E50;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 2;
}

#fit-food-app .close-modal-btn:hover {
  background: white;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

#fit-food-app .product-detail-body {
  padding: 0;
}

#fit-food-app .product-detail-title {
  font-size: 28px;
  font-weight: 800;
  color: #2C3E50;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

#fit-food-app .product-detail-category {
  display: inline-block;
  background: linear-gradient(135deg, rgba(39,174,96,0.1) 0%, rgba(39,174,96,0.05) 100%);
  color: #27AE60;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

#fit-food-app .product-detail-description {
  font-size: 16px;
  color: #7F8C8D;
  line-height: 1.6;
  margin-bottom: 25px;
}

#fit-food-app .product-detail-features {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
}

#fit-food-app .feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#fit-food-app .feature-list {
  display: grid;
  gap: 10px;
}

#fit-food-app .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2C3E50;
}

#fit-food-app .feature-icon {
  font-size: 18px;
}

#fit-food-app .product-detail-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 2px dashed rgba(0,0,0,0.08);
  border-bottom: 2px dashed rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

#fit-food-app .price-label {
  font-size: 14px;
  color: #7F8C8D;
  font-weight: 600;
  margin-bottom: 5px;
}

#fit-food-app .product-detail-price {
  font-size: 32px;
  font-weight: 800;
  color: #27AE60;
  letter-spacing: -1px;
}

#fit-food-app .product-detail-quantity {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 8px 12px;
  border-radius: 50px;
  border: 2px solid #e8ecf1;
}

#fit-food-app .product-detail-quantity .qty-btn {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

#fit-food-app .product-detail-quantity .qty-value {
  font-size: 20px;
  min-width: 40px;
}

#fit-food-app .product-detail-actions {
  display: flex;
  gap: 12px;
}

#fit-food-app .product-detail-actions .modal-btn {
  flex: 1;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
}

#fit-food-app .product-detail-actions .modal-btn.primary {
  flex: 2;
}

#fit-food-app .modal-content {
  background: white;
  border-radius: 24px;
  padding: 35px;
  max-width: 500px;
  width: 100%;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#fit-food-app .modal-header {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #2C3E50;
  letter-spacing: -0.5px;
  text-align: center;
}

#fit-food-app .form-group {
  margin-bottom: 22px;
}

#fit-food-app .form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

#fit-food-app .form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8ecf1;
  border-radius: 14px;
  font-size: 15px;
  transition: var(--transition);
  background: #f8f9fa;
  color: #2C3E50;
  font-weight: 500;
}

#fit-food-app .form-input:focus {
  outline: none;
  border-color: #27AE60;
  background: white;
  box-shadow: 0 4px 15px rgba(39,174,96,0.15);
  transform: translateY(-2px);
}

#fit-food-app .form-input::placeholder {
  color: #95a5a6;
}

#fit-food-app .payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

#fit-food-app .payment-method {
  border: 2px solid #e8ecf1;
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

#fit-food-app .payment-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(39,174,96,0.05) 0%, rgba(255,215,0,0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

#fit-food-app .payment-method:hover {
  border-color: #27AE60;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(39,174,96,0.15);
}

#fit-food-app .payment-method:hover::before {
  opacity: 1;
}

#fit-food-app .payment-method.selected {
  border-color: #27AE60;
  background: linear-gradient(135deg, #F0FFF4 0%, #E8F8F0 100%);
  box-shadow: 0 4px 15px rgba(39,174,96,0.2);
}

#fit-food-app .payment-method.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 8px;
  background: #27AE60;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

#fit-food-app .payment-icon {
  font-size: 36px;
  margin-bottom: 10px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

#fit-food-app .payment-method:hover .payment-icon {
  transform: scale(1.15);
}

#fit-food-app .payment-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

#fit-food-app .payment-method:hover .payment-logo {
  transform: scale(1.15);
}

#fit-food-app .payment-name {
  font-size: 13px;
  font-weight: 700;
  color: #2C3E50;
  position: relative;
  z-index: 1;
}

#fit-food-app .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#fit-food-app .modal-btn {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

#fit-food-app .modal-btn.primary {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
}

#fit-food-app .modal-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(39,174,96,0.3);
}

#fit-food-app .modal-btn.secondary {
  background: #ECF0F1;
  color: #2C3E50;
}

#fit-food-app .modal-btn.secondary:hover {
  background: #BDC3C7;
}

#fit-food-app .empty-state {
  text-align: center;
  padding: 60px 20px;
}

#fit-food-app .empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.3;
}

#fit-food-app .empty-text {
  font-size: 18px;
  color: #7F8C8D;
  margin-bottom: 10px;
}

#fit-food-app .empty-subtext {
  font-size: 14px;
  color: #BDC3C7;
}

/* Profile Page */
#fit-food-app .profile-container {
  display: none;
  padding: 20px;
  padding-bottom: 100px;
}

#fit-food-app .profile-container.active {
  display: block;
}

#fit-food-app .profile-header-section {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  border-radius: 24px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

#fit-food-app .profile-header-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: headerGlow 15s ease-in-out infinite;
}

#fit-food-app .profile-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

#fit-food-app .avatar-circle {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border: 4px solid rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}

#fit-food-app .edit-avatar-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255,215,0,0.4);
  z-index: 2;
}

#fit-food-app .edit-avatar-btn:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px rgba(255,215,0,0.6);
}

#fit-food-app .profile-name {
  color: white;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#fit-food-app .profile-email {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

#fit-food-app .profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

#fit-food-app .stat-card {
  background: white;
  border-radius: 18px;
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#fit-food-app .stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(39,174,96,0.05) 0%, rgba(255,215,0,0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

#fit-food-app .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

#fit-food-app .stat-card:hover::before {
  opacity: 1;
}

#fit-food-app .stat-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

#fit-food-app .stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #27AE60;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

#fit-food-app .stat-label {
  font-size: 12px;
  color: #7F8C8D;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

#fit-food-app .profile-section {
  margin-bottom: 25px;
}

#fit-food-app .section-subtitle {
  font-size: 18px;
  font-weight: 800;
  color: #2C3E50;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
}

#fit-food-app .profile-info-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}

#fit-food-app .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f4f8;
}

#fit-food-app .info-row:last-of-type {
  border-bottom: none;
}

#fit-food-app .info-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #7F8C8D;
}

#fit-food-app .info-icon {
  font-size: 18px;
}

#fit-food-app .info-value {
  font-size: 14px;
  font-weight: 700;
  color: #2C3E50;
  text-align: right;
}

#fit-food-app .edit-info-btn {
  width: 100%;
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

#fit-food-app .edit-info-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}

#fit-food-app .edit-info-btn:active {
  transform: translateY(-1px);
}

#fit-food-app .preferences-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}

#fit-food-app .preference-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #f0f4f8;
}

#fit-food-app .preference-item:last-child {
  border-bottom: none;
}

#fit-food-app .preference-label {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

#fit-food-app .preference-icon {
  font-size: 24px;
}

#fit-food-app .preference-title {
  font-size: 15px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 4px;
}

#fit-food-app .preference-desc {
  font-size: 12px;
  color: #7F8C8D;
}

#fit-food-app .toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

#fit-food-app .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#fit-food-app .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #BDC3C7;
  transition: var(--transition);
  border-radius: 34px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

#fit-food-app .toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: var(--transition);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

#fit-food-app input:checked + .toggle-slider {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
}

#fit-food-app input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

#fit-food-app .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#fit-food-app .action-btn {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

#fit-food-app .action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(39,174,96,0.05) 0%, rgba(255,215,0,0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

#fit-food-app .action-btn:hover {
  transform: translateX(5px);
  box-shadow: var(--card-shadow-hover);
}

#fit-food-app .action-btn:hover::before {
  opacity: 1;
}

#fit-food-app .action-btn:active {
  transform: translateX(3px);
}

#fit-food-app .action-icon {
  font-size: 24px;
  position: relative;
  z-index: 1;
}

#fit-food-app .action-text {
  flex: 1;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #2C3E50;
  position: relative;
  z-index: 1;
}

#fit-food-app .action-arrow {
  font-size: 24px;
  color: #BDC3C7;
  font-weight: 300;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

#fit-food-app .action-btn:hover .action-arrow {
  color: #27AE60;
  transform: translateX(5px);
}

/* Weekly Menu Styles */
#fit-food-app .menu-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
  position: relative;
  border: 2px solid transparent;
}

#fit-food-app .menu-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition);
  pointer-events: none;
}

#fit-food-app .menu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}

#fit-food-app .menu-card:hover::after {
  border-color: rgba(39,174,96,0.2);
}

#fit-food-app .menu-header {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#fit-food-app .menu-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: headerGlow 15s ease-in-out infinite;
}

#fit-food-app .menu-week {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

#fit-food-app .menu-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

#fit-food-app .menu-content {
  padding: 20px;
}

#fit-food-app .menu-course {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f4f8;
}

#fit-food-app .menu-course:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#fit-food-app .course-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #7F8C8D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

#fit-food-app .course-icon {
  font-size: 18px;
}

#fit-food-app .course-name {
  font-size: 15px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.3;
}

#fit-food-app .menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
  border-top: 2px dashed rgba(0,0,0,0.05);
}

#fit-food-app .menu-price {
  font-size: 18px;
  font-weight: 800;
  color: #27AE60;
  letter-spacing: -0.3px;
}

#fit-food-app .menu-select-btn {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

#fit-food-app .menu-select-btn:hover {
  background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(39,174,96,0.4);
}

#fit-food-app .menu-select-btn:active {
  transform: translateY(0);
}

#fit-food-app .logout-btn {
  width: 100%;
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

#fit-food-app .logout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

#fit-food-app .logout-btn:active {
  transform: translateY(-1px);
}

/* FAQ Styles */
#fit-food-app .faq-item {
  background: white;
  border: 2px solid #f0f4f8;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

#fit-food-app .faq-item:hover {
  border-color: rgba(39,174,96,0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

#fit-food-app .faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

#fit-food-app .faq-question-text {
  font-size: 14px;
  font-weight: 700;
  color: #2C3E50;
  flex: 1;
  padding-right: 15px;
}

#fit-food-app .faq-toggle {
  font-size: 20px;
  color: #27AE60;
  transition: var(--transition);
  flex-shrink: 0;
}

#fit-food-app .faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

#fit-food-app .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#fit-food-app .faq-item.active .faq-answer {
  max-height: 500px;
}

#fit-food-app .faq-answer-content {
  padding: 0 20px 20px 20px;
  font-size: 13px;
  color: #7F8C8D;
  line-height: 1.6;
}

#fit-food-app .loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#fit-food-app .success-message {
  background: #D4EDDA;
  color: #155724;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
}

#fit-food-app .success-message.active {
  display: block;
}

@media (max-width: 768px) {
  #fit-food-app .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  #fit-food-app .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  #fit-food-app .promo-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}/* End custom CSS */