:root {
      --primary-orange: #ff6b35;
      --primary-orange-dark: #e55a2b;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f8f9fa;
      margin: 0;
      padding: 0;
    }

    /* Barra superior fija */
    .top-bar {
      background-color: var(--primary-orange);
      color: white;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      padding: 0.8rem 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .top-bar .logo {
      font-weight: bold;
      font-size: 1.8rem;
    }

    .search-input {
      border-radius: 30px;
      padding-left: 40px;
      border: none;
      background-color: rgba(255, 255, 255, 0.9);
    }

    .search-wrapper {
      position: relative;
    }

    .search-wrapper i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
      z-index: 2;
    }

    .location-btn {
      background-color: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 30px;
      color: white;
      font-size: 0.9rem;
    }

    .cart-btn {
      background-color: rgba(255, 255, 255, 0.2);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }

    /* Contenido principal */
    .main-content {
      margin-top: 90px;
      padding-bottom: 4rem;
    }

    /* Promociones - scroll horizontal */
    .promo-scroll {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      padding: 10px 0;
      scrollbar-width: none;
    }

    .promo-scroll::-webkit-scrollbar {
      display: none;
    }

    .promo-card {
      min-width: 280px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .promo-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 0.95rem;
      padding: 8px 16px;
      border-radius: 30px;
      font-weight: bold;
      z-index: 10;
    }

    /* Categorías redondas */
    .category-scroll {
      display: flex;
      overflow-x: auto;
      gap: 12px;
      padding: 10px 0;
      scrollbar-width: none;
    }

    .category-scroll::-webkit-scrollbar {
      display: none;
    }

    .category-btn {
      background-color: white;
      border: 1px solid #eee;
      border-radius: 30px;
      padding: 10px 20px;
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      font-weight: 500;
      min-width: fit-content;
    }

    .category-btn.active {
      background-color: var(--primary-orange);
      color: white;
      border-color: var(--primary-orange);
    }

    /* Tarjetas de restaurantes */
    .restaurant-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
      position: relative;
    }

    .restaurant-card .img-container {
      overflow: hidden;
    }

    .restaurant-img {
      height: 180px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

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

    .type-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: rgba(255, 255, 255, 0.95);
      color: #333;
      font-size: 0.8rem;
      padding: 6px 14px;
      border-radius: 30px;
      font-weight: 600;
      z-index: 10;
    }

    .featured-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: #ffc107;
      color: #000;
      font-size: 0.8rem;
      padding: 6px 14px;
      border-radius: 30px;
      font-weight: bold;
      z-index: 11;
    }

    .rating-badge {
      background-color: var(--primary-orange);
      color: white;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: bold;
    }

    .view-btn {
      background-color: var(--primary-orange);
      color: white;
      border: none;
      border-radius: 30px;
      padding: 10px;
      font-weight: bold;
      font-size: 1rem;
      transition: background-color 0.3s ease;
    }

    .view-btn:hover {
      background-color: #ff5e00;
      color: white;
    }



    /* Sidebar filtros */
    .filter-sidebar {
      background-color: white;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 100px;
    }