:root {
      --primary: #3b82f6;
      --primary-dark: #1d4ed8;
      --secondary: #10b981;
      --accent: #f59e0b;
    }
    
    .food-category-1 { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
    .food-category-2 { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
    .food-category-3 { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
    .food-category-4 { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); }
    .food-category-5 { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); }
    
    .food-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(255,255,255,0.2);
      border-radius: 12px;
      margin-bottom: 16px;
    }
    
    .food-icon svg {
      width: 24px;
      height: 24px;
      color: rgba(0,0,0,0.7);
    }
    
    .food-card {
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .food-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }
    
    .food-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
      z-index: 1;
    }
    
    .food-content {
      position: relative;
      z-index: 2;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
    }
    
    .gradient-bg {
      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    }
    
    .branch-logo {
      transition: all 0.3s ease;
      filter: grayscale(100%);
      opacity: 0.7;
      width: 60px;
      height: 60px;
      object-fit: contain;
    }
    
    @media (min-width: 768px) {
      .branch-logo {
        width: 80px;
        height: 80px;
      }
    }
    
    .branch-logo:hover, .branch-logo.active {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.05);
    }
    
    .branch-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
    }
    
    @media (min-width: 768px) {
      .branch-container {
        gap: 20px;
        margin-top: 20px;
      }
    }
    
    .branch-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      padding: 12px;
      border-radius: 12px;
      transition: all 0.3s ease;
      width: 100px;
    }
    
    @media (min-width: 768px) {
      .branch-item {
        width: 140px;
        padding: 15px;
      }
    }
    
    .branch-item:hover {
      background-color: rgba(59, 130, 246, 0.1);
    }
    
    .branch-item.active {
      background-color: rgba(59, 130, 246, 0.2);
    }
    
    .branch-name {
      margin-top: 8px;
      font-weight: 500;
      text-align: center;
      font-size: 12px;
    }
    
    @media (min-width: 768px) {
      .branch-name {
        margin-top: 12px;
        font-size: 14px;
      }
    }
    
    .loading-spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255,255,255,.3);
      border-radius: 50%;
      border-top-color: #fff;
      animation: spin 1s ease-in-out infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    .hero-section {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
      border-radius: 16px;
      padding: 2rem 1rem;
      position: relative;
      overflow: hidden;
      margin-top: 1rem;
    }
    
    @media (min-width: 768px) {
      .hero-section {
        border-radius: 24px;
        padding: 4rem 2rem;
        margin-top: 2rem;
      }
    }
    
    .nutrition-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(59, 130, 246, 0.1);
      color: var(--primary);
      padding: 0.4rem 0.8rem;
      border-radius: 50px;
      font-weight: 500;
      margin-right: 0.4rem;
      margin-bottom: 0.4rem;
      font-size: 0.8rem;
    }
    
    @media (min-width: 768px) {
      .nutrition-badge {
        padding: 0.5rem 1rem;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
        font-size: 1rem;
      }
    }
    
    .nutrition-badge i {
      margin-right: 0.4rem;
    }
    
    .mobile-nav {
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    
    .mobile-nav.open {
      transform: translateX(0);
    }
    
    .back-to-top {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      background: var(--primary);
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 100;
    }
    
    @media (min-width: 768px) {
      .back-to-top {
        bottom: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
      }
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .section-padding {
      padding: 2rem 1rem;
    }
    
    @media (min-width: 768px) {
      .section-padding {
        padding: 3rem 2rem;
      }
    }
    
    .card-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    @media (min-width: 640px) {
      .card-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .card-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .service-section {
      background: white;
      border-radius: 16px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      margin-bottom: 2rem;
    }
    
    @media (min-width: 768px) {
      .service-section {
        border-radius: 24px;
        margin-bottom: 3rem;
      }
    }

    .selection-card {
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      transition: all 0.3s ease;
    }
    
    .selection-card:hover {
      border-color: #3b82f6;
      box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1);
    }

    .step-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0; 
}

    .floating-element {
      animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    /* Brand Showcase Styles */
    .brand-showcase {
      margin: 3rem 0;
      padding: 2rem 0;
    }
    
    .brand-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .brand-card {
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    
    .brand-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    }
    
    .brand-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .brand-logo-showcase {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin: 0 auto 1rem;
      display: block;
      transition: transform 0.3s ease;
    }
    
    .brand-card:hover .brand-logo-showcase {
      transform: scale(1.1);
    }
    
    .brand-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: #333;
      margin-bottom: 0.5rem;
    }
    
    .brand-description {
      font-size: 0.75rem;
      color: #666;
      line-height: 1.4;
    }
    
    .section-title {
      font-size: 1.75rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
      color: #1f2937;
    }
    
    .section-subtitle {
      text-align: center;
      color: #6b7280;
      max-width: 600px;
      margin: 0 auto 2rem;
    }
    
    @media (max-width: 768px) {
      .brand-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1rem;
      }
      
      .brand-card {
        padding: 1rem;
      }
      
      .brand-logo-showcase {
        width: 60px;
        height: 60px;
      }
    }
     .logo-gradient {
      background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    }
    
    .logo-glow {
      filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    }
    
    .premium-text {
      background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 800;
    }
   