
    * {
      margin: 0; padding: 0; box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background: #fff8f0;
      color: #3e3e3e;
      line-height: 1.6;
      font-size: 16px;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      display: block;
      border-radius: 12px;
    }
    button {
      cursor: pointer;
      font-family: inherit;
    }

    /* ===== Container ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* ===== Header ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #ff5722;
      box-shadow: 0 3px 10px rgb(255 87 34 / 0.7);
      user-select: none;
    }
    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.8rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-weight: 700;
      font-size: 1.8rem;
      color: #fff;
      letter-spacing: 1px;
      user-select: none;
    }
    nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-weight: 600;
    }
    nav a {
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      transition: background 0.3s ease;
    }
    nav a:hover,
    nav a.active {
      background: #e64a19;
      box-shadow: 0 0 8px rgb(230 74 25 / 0.8);
    }

    /* ===== Dropdown Nav ===== */
    .dropdown {
      position: relative;
    }
    .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      user-select: none;
    }
    .dropdown-toggle::after {
      content: "▼";
      font-size: 0.6rem;
      color: white;
    }
    .dropdown-menu {
      position: absolute;
      top: 2.8rem;
      left: 0;
      background: #ff5722;
      border-radius: 8px;
      min-width: 140px;
      box-shadow: 0 6px 20px rgb(0 0 0 / 0.3);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 10;
    }
    .dropdown-menu a {
      display: block;
      padding: 0.6rem 1rem;
      color: white;
      font-weight: 600;
      border-radius: 8px;
      transition: background 0.3s ease;
    }
    .dropdown-menu a:hover {
      background: #e64a19;
    }
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* ===== Search Bar ===== */
    .search-bar {
      position: relative;
      margin-left: 1rem;
    }
    .search-bar input {
      padding: 0.4rem 1.8rem 0.4rem 0.8rem;
      border-radius: 20px;
      border: none;
      outline: none;
      font-size: 1rem;
      transition: box-shadow 0.3s ease;
      width: 200px;
    }
    .search-bar input:focus {
      box-shadow: 0 0 10px #ff5722;
    }
    .search-bar button {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      border: none;
      background: transparent;
      color: #ff5722;
      font-size: 1.2rem;
      user-select: none;
    }

    /* ===== Hero Section ===== */
    .hero {
      background: linear-gradient(120deg, #ffab91, #ff5722);
      color: white;
      padding: 5rem 1rem 6rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .hero-content {
      flex: 1 1 400px;
      max-width: 600px;
    }
    .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 0 2px 8px rgba(0,0,0,0.2);
      user-select: none;
    }
    .hero-content p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      font-weight: 600;
      user-select: text;
      line-height: 1.4;
    }
    .btn-primary {
      background: #fff;
      color: #ff5722;
      font-weight: 700;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      box-shadow: 0 8px 25px rgb(255 87 34 / 0.6);
      border: none;
      transition: background 0.3s ease, color 0.3s ease;
      user-select: none;
    }
    .btn-primary:hover {
      background: #e64a19;
      color: white;
      box-shadow: 0 10px 30px rgb(230 74 25 / 0.8);
    }
    .hero-image {
      flex: 1 1 400px;
      max-width: 480px;
      border-radius: 25px;
      overflow: hidden;
    }
    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
      user-select: none;
    }

    /* ===== Specials & Menu Section ===== */
    section.specials,
    section.menu {
      padding: 4rem 1rem 5rem;
      background: #fff3e0;
    }
    .section-title {
      text-align: center;
      font-size: 2.8rem;
      font-weight: 700;
      color: #bf360c;
      margin-bottom: 2.5rem;
      user-select: none;
    }
    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    .card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 8px 30px rgb(0 0 0 / 0.12);
      width: 260px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem 1rem 1.8rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      user-select: none;
      cursor: default;
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgb(0 0 0 / 0.2);
    }
    .add-btn{
      background-color: green;
      padding: 3px 8px;
      border-radius: 15px;
      color: white;
      border: none;
    }
    .card img {
      border-radius: 15px;
      height: 170px;
      object-fit: cover;
      margin-bottom: 1rem;
      pointer-events: none;
      user-select: none;
    }
    .card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: #3e2723;
      user-select: text;
    }
    .card p.price {
      font-weight: 600;
      color: #bf360c;
      margin-bottom: 1rem;
      user-select: text;
    }
    .card p.description {
      font-size: 0.9rem;
      color: #5d4037;
      margin-bottom: 1.3rem;
      text-align: center;
      user-select: text;
    }
    .btn-add {
      background: #ff5722;
      color: white;
      border-radius: 40px;
      padding: 0.5rem 1.8rem;
      border: none;
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 6px 15px rgb(255 87 34 / 0.6);
      user-select: none;
      transition: background 0.3s ease;
    }
    .btn-add:hover {
      background: #e64a19;
      box-shadow: 0 8px 20px rgb(230 74 25 / 0.8);
    }

    /* ===== Menu Filters ===== */
    .filter-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      user-select: none;
    }
    .filter-btn {
      background: #fff3e0;
      border: 2px solid #ff5722;
      color: #ff5722;
      padding: 0.6rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    .filter-btn.active,
    .filter-btn:hover {
      background: #ff5722;
      color: white;
      box-shadow: 0 6px 20px rgb(255 87 34 / 0.6);
    }

    /* ===== Cart Sidebar ===== */
    #cart-sidebar {
      position: fixed;
      top: 0;
      right: -400px;
      width: 380px;
      height: 100vh;
      background: #fff3e0;
      box-shadow: -6px 0 25px rgb(0 0 0 / 0.25);
      transition: right 0.4s ease;
      display: flex;
      flex-direction: column;
      z-index: 1500;
      user-select: none;
    }
    #cart-sidebar.open {
      right: 0;
    }
    #cart-header {
      background: #ff5722;
      color: white;
      padding: 1.3rem 1.5rem;
      font-weight: 700;
      font-size: 1.4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    #cart-close {
      background: transparent;
      border: none;
      color: white;
      font-size: 1.6rem;
      font-weight: 900;
      cursor: pointer;
      user-select: none;
    }
    #cart-items {
      flex-grow: 1;
      overflow-y: auto;
      padding: 1rem 1.5rem;
    }
    .cart-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.4rem;
      border-radius: 15px;
      background: white;
      box-shadow: 0 6px 18px rgb(0 0 0 / 0.1);
      padding: 1rem;
      align-items: center;
    }
    .cart-item img {
      width: 80px;
      height: 60px;
      border-radius: 12px;
      object-fit: cover;
      user-select: none;
    }
    .cart-item-info {
      flex: 1;
      user-select: text;
    }
    .cart-item-info h4 {
      font-weight: 700;
      color: #3e2723;
      margin-bottom: 0.3rem;
    }
    .cart-item-info p {
      color: #5d4037;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    .qty-controls {
      display: flex;
      gap: 0.4rem;
      align-items: center;
      font-weight: 700;
      user-select: none;
    }
    .qty-controls button {
      background: #ff5722;
      color: white;
      border: none;
      padding: 0.3rem 0.7rem;
      font-size: 1.1rem;
      border-radius: 5px;
      transition: background 0.3s ease;
      cursor: pointer;
    }
    .qty-controls button:hover {
      background: #e64a19;
    }
    .qty-controls span {
      min-width: 24px;
      text-align: center;
      font-size: 1rem;
      user-select: none;
    }
    .cart-item-remove {
      background: transparent;
      border: none;
      color: #bf360c;
      font-weight: 700;
      cursor: pointer;
      font-size: 0.95rem;
      user-select: none;
      transition: color 0.3s ease;
    }
    .cart-item-remove:hover {
      color: #e64a19;
    }
    #cart-footer {
      padding: 1rem 1.5rem;
      border-top: 2px solid #ff5722;
      font-weight: 700;
      font-size: 1.3rem;
      color: #bf360c;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    #checkout-btn {
      background: #ff5722;
      border: none;
      padding: 0.7rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      color: white;
      box-shadow: 0 8px 25px rgb(255 87 34 / 0.7);
      transition: background 0.3s ease;
      user-select: none;
    }
    #checkout-btn:hover:not(:disabled) {
      background: #e64a19;
      box-shadow: 0 10px 30px rgb(230 74 25 / 0.9);
    }
    #checkout-btn:disabled {
      background: #ffb399;
      cursor: not-allowed;
      box-shadow: none;
    }

    /* ===== About Section ===== */
    section.about {
      padding: 5rem 1rem 7rem;
      background: white;
      color: #3e3e3e;
      user-select: text;
    }
    .about .container {
      max-width: 900px;
      margin: 0 auto;
    }
    .about h2 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #bf360c;
      margin-bottom: 2rem;
      text-align: center;
      user-select: none;
    }
    .about p {
      font-size: 1.1rem;
      line-height: 1.5;
      color: #5d4037;
      margin-bottom: 2rem;
    }
    .team {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .team-member {
      flex: 1 1 220px;
      background: #fff3e0;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
      padding: 1.5rem 1.2rem;
      text-align: center;
      user-select: none;
      transition: box-shadow 0.3s ease;
    }
    .team-member:hover {
      box-shadow: 0 12px 28px rgb(0 0 0 / 0.15);
    }
    .team-member img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      margin-bottom: 1rem;
      object-fit: cover;
      user-select: none;
    }
    .team-member h4 {
      font-weight: 700;
      margin-bottom: 0.3rem;
      color: #3e2723;
    }
    .team-member p {
      font-size: 0.9rem;
      color: #5d4037;
      user-select: text;
    }

    /* ===== Contact Form ===== */
    form.contact-form {
      max-width: 500px;
      margin: 0 auto;
      background: #fff3e0;
      padding: 2rem 2.5rem;
      border-radius: 20px;
      box-shadow: 0 10px 28px rgb(0 0 0 / 0.12);
      user-select: text;
    }
    form.contact-form label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #bf360c;
      user-select: none;
    }
    form.contact-form input,
    form.contact-form textarea {
      width: 100%;
      padding: 0.7rem 1rem;
      border-radius: 12px;
      border: 2px solid #ffcc99;
      font-size: 1rem;
      margin-bottom: 1.3rem;
      font-family: inherit;
      resize: vertical;
      transition: border-color 0.3s ease;
      user-select: text;
    }
    form.contact-form input:focus,
    form.contact-form textarea:focus {
      border-color: #ff5722;
      outline: none;
    }
    form.contact-form textarea {
      min-height: 100px;
    }
    .error-msg {
      font-size: 0.85rem;
      color: #c0392b;
      margin-top: -1rem;
      margin-bottom: 0.8rem;
      min-height: 1rem;
      display: block;
      user-select: none;
    }
    .form-success-msg {
      margin-top: 0.8rem;
      margin-bottom: 1rem;
      padding: 0.8rem 1rem;
      background-color: #e8f5e9;
      color: #2e7d32;
      border-left: 4px solid #43a047;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      animation: fadeInDown 0.4s ease;
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .btn-submit {
      background: #ff5722;
      color: white;
      font-weight: 700;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      border: none;
      box-shadow: 0 8px 25px rgb(255 87 34 / 0.7);
      transition: background 0.3s ease;
      user-select: none;
      width: 100%;
    }
    .btn-submit:hover {
      background: #e64a19;
    }

    /* ===== Testimonials ===== */
    section.testimonials {
      padding: 5rem 1rem 7rem;
      background: #fff3e0;
      color: #3e2723;
      user-select: none;
    }
    .testimonial-cards {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .testimonial {
      background: white;
      padding: 1.8rem 2rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
      max-width: 320px;
      position: relative;
      font-style: italic;
      user-select: text;
    }
    .testimonial::before {
      content: "“";
      position: absolute;
      font-size: 4rem;
      top: -20px;
      left: 20px;
      color: #ff5722;
      font-weight: 900;
      user-select: none;
    }
    .testimonial p {
      margin-bottom: 1rem;
    }
    .testimonial .author {
      font-weight: 700;
      text-align: right;
      color: #bf360c;
      user-select: text;
    }

    /* ===== Newsletter Signup ===== */
    section.newsletter {
      background: #ff5722;
      color: white;
      padding: 3rem 1rem 5rem;
      text-align: center;
      user-select: none;
    }
    section.newsletter h2 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    section.newsletter p {
      font-weight: 500;
      margin-bottom: 1.5rem;
    }
    .newsletter-form {
      max-width: 400px;
      margin: 0 auto;
      display: flex;
      gap: 0.6rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .newsletter-form input {
      padding: 0.8rem 1rem;
      border-radius: 40px;
      border: none;
      flex-grow: 1;
      font-size: 1rem;
      outline: none;
      font-family: inherit;
    }
    .newsletter-form button {
      padding: 0.8rem 1.8rem;
      background: #fff;
      border: none;
      border-radius: 40px;
      color: #ff5722;
      font-weight: 700;
      box-shadow: 0 6px 15px rgb(255 87 34 / 0.8);
      transition: background 0.3s ease;
      user-select: none;
      font-size: 1rem;
      cursor: pointer;
    }
    .newsletter-form button:hover {
      background: #fbe9e7;
    }

    /* ===== Footer ===== */
    footer {
      background: #bf360c;
      color: white;
      text-align: center;
      padding: 2rem 1rem;
      user-select: none;
    }
    footer p {
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 0.8rem;
    }
    .social-icons a {
      color: white;
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }
    .social-icons a:hover {
      color: #ffccbc;
    }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .hero {
        flex-direction: column;
        padding: 4rem 1rem 5rem;
      }
      .hero-content,
      .hero-image {
        max-width: 100%;
      }
      nav {
        gap: 1rem;
      }
      #cart-sidebar {
        width: 100%;
        max-width: 400px;
      }
    }
    @media (max-width: 600px) {
      .cards {
        flex-direction: column;
        align-items: center;
      }
      .team {
        flex-direction: column;
        align-items: center;
      }
      .testimonial-cards {
        flex-direction: column;
        align-items: center;
      }
      .search-bar input {
        width: 130px;
      }
      .filter-buttons {
        gap: 0.8rem;
      }
    }

    /* ===== Mobile Navbar Fix ===== */
@media (max-width: 480px) {

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
  }

  .logo {
    font-size: 1.5rem;
    text-align: center;
  }

  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  nav a {
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
  }

  .search-bar {
    margin-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .search-bar input {
    width: 100%;
    max-width: 220px;
  }
}

/* ===== Skeleton UI ===== */

/* Base skeleton element */
.skeleton {
  background: linear-gradient(
    90deg,
    #f0e0d0 25%,
    #ffe0c8 50%,
    #f0e0d0 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  display: block;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Skeleton Card — mirrors .card layout exactly */
.skeleton-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.12);
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem 1.8rem;
  gap: 0.8rem;
}

.skeleton-card .sk-image {
  width: 100%;
  height: 170px;
  border-radius: 15px;
}

.skeleton-card .sk-title {
  width: 70%;
  height: 20px;
  border-radius: 6px;
}

.skeleton-card .sk-desc-line {
  height: 13px;
  border-radius: 6px;
}

.skeleton-card .sk-desc-line:nth-child(1) { width: 90%; }
.skeleton-card .sk-desc-line:nth-child(2) { width: 75%; }

.skeleton-card .sk-price {
  width: 40%;
  height: 16px;
  border-radius: 6px;
  margin-top: 0.2rem;
}

.skeleton-card .sk-btn {
  width: 120px;
  height: 38px;
  border-radius: 40px;
  margin-top: 0.4rem;
}

/* Skeleton Cart Item — mirrors .cart-item layout */
.skeleton-cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.1);
  padding: 1rem;
  align-items: center;
}

.skeleton-cart-item .sk-thumb {
  width: 80px;
  height: 60px;
  border-radius: 12px;
  flex-shrink: 0;
}

.skeleton-cart-item .sk-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skeleton-cart-item .sk-line-name {
  height: 14px;
  width: 60%;
  border-radius: 6px;
}

.skeleton-cart-item .sk-line-price {
  height: 12px;
  width: 35%;
  border-radius: 6px;
}

.skeleton-cart-item .sk-line-qty {
  height: 28px;
  width: 90px;
  border-radius: 6px;
}

/* ===== Autocomplete Search Suggestions ===== */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: 0.5rem;
  z-index: 1001;
  overflow: hidden;
  border: 1px solid rgba(255, 87, 34, 0.2);
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.suggestion-item {
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 87, 34, 0.1);
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: rgba(255, 87, 34, 0.1);
  padding-left: 1.5rem;
}

.suggestion-item.no-matches {
  color: #bf360c;
  font-weight: 500;
  text-align: center;
  justify-content: center;
  cursor: default;
  background: transparent !important;
  padding: 1rem;
}

.suggestion-name {
  font-weight: 600;
  color: #3e2723;
  font-size: 0.95rem;
}

.suggestion-category {
  font-size: 0.75rem;
  background: rgba(255, 87, 34, 0.2);
  color: #bf360c;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  font-weight: 700;
}

/* ===== Advanced Filters UI ===== */
.filter-toggle-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.btn-filter-toggle {
  background: white;
  border: 2px solid #ff5722;
  color: #ff5722;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.1);
}

.btn-filter-toggle:hover {
  background: #fbe9e7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.2);
}

.btn-filter-toggle.active {
  background: #ff5722;
  color: white;
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.advanced-filters {
  max-width: 800px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 87, 34, 0.15);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.filter-group label {
  font-weight: 700;
  color: #bf360c;
  font-size: 0.95rem;
}

/* Slider Custom Styles */
.filter-group input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #ffe0b2;
  outline: none;
}

.filter-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff5722;
  cursor: pointer;
  transition: transform 0.1s ease;
  box-shadow: 0 0 8px rgba(255, 87, 34, 0.4);
}

.filter-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

#price-slider-val {
  font-weight: 700;
  color: #ff5722;
}

/* Selectors custom styles */
.filter-group select {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 2px solid #ffcc99;
  background: white;
  font-size: 0.95rem;
  color: #5d4037;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.filter-group select:focus {
  border-color: #ff5722;
}

/* Dietary custom checkboxes */
.checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff5722;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5d4037 !important;
}

.filter-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 87, 34, 0.1);
}

.btn-reset-filters {
  background: transparent;
  border: 2px solid #bf360c;
  color: #bf360c;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-reset-filters:hover {
  background: #bf360c;
  color: white;
  box-shadow: 0 4px 15px rgba(191, 54, 12, 0.3);
}

/* ===== Highlights & Food Metadata Styles ===== */
mark.highlight {
  background: linear-gradient(120deg, #ffe082 0%, #ffd54f 100%);
  color: #3e2723;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  font-weight: inherit;
  box-shadow: 0 2px 8px rgba(255, 213, 79, 0.4);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.card-meta .rating {
  color: #ffb300;
}

.card-meta .spice {
  color: #bf360c;
}

.card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-vegan {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.tag-gluten-free {
  background: #e0f7fa;
  color: #00838f;
  border: 1px solid rgba(0, 131, 143, 0.2);
}

/* Fix description layout on food card */
.card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  margin-bottom: 0.4rem;
}

.card-content p {
  font-size: 0.9rem;
  color: #5d4037;
  line-height: 1.4;
  margin-bottom: auto;
}

.card-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid #fbe9e7;
}

.card-footer .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #bf360c;
}

.card-footer .add-btn {
  background: #2e7d32;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease;
}

.card-footer .add-btn:hover {
  background: #1b5e20;
  box-shadow: 0 6px 15px rgba(27, 94, 32, 0.5);
  transform: translateY(-1px);
}

/* ===== Orders Dashboard Layout ===== */
.orders-page {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.orders-page h1 {
  font-size: 2.2rem;
  color: #bf360c;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
}

.orders-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Empty Orders Page */
.empty-orders {
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 87, 34, 0.15);
  border-radius: 20px;
  padding: 4rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.empty-orders h2 {
  font-size: 1.6rem;
  color: #3e2723;
  margin-bottom: 0.8rem;
}

.empty-orders p {
  color: #5d4037;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Order Progress Card */
.order-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 87, 34, 0.15);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 87, 34, 0.1);
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fbe9e7;
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.order-id {
  font-size: 1.1rem;
  color: #3e2723;
}

.order-date {
  font-size: 0.85rem;
  color: #8d6e63;
}

/* Status Badges */
.status-badge {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.status-badge.status-pending {
  background: #fff8e1;
  color: #ffb300;
  border: 1px solid rgba(255, 179, 0, 0.3);
}

.status-badge.status-preparing {
  background: #fbe9e7;
  color: #ff5722;
  border: 1px solid rgba(255, 87, 34, 0.3);
}

.status-badge.status-on-the-way {
  background: #e1f5fe;
  color: #0288d1;
  border: 1px solid rgba(2, 136, 209, 0.3);
}

.status-badge.status-delivered {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.3);
}

/* Graphical Progress Stepper Track */
.order-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 2.5rem;
  padding: 0 1rem;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 0.5rem;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #757575;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #9e9e9e;
  transition: all 0.4s ease;
}

/* Timeline Connectors */
.timeline-line {
  flex: 1;
  height: 4px;
  background: #e0e0e0;
  margin-top: -1.2rem;
  z-index: 1;
  transition: all 0.4s ease;
}

/* Highlighted Progress Active Steps states */
.timeline-step.active .step-circle {
  background: #ffe0b2;
  color: #ff5722;
  border-color: #ff5722;
}

.timeline-step.active .step-label {
  color: #ff5722;
}

.timeline-step.current .step-circle {
  background: #ff5722;
  color: white;
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.5);
  transform: scale(1.15);
}

.timeline-step.current .step-label {
  font-weight: 700;
  color: #bf360c;
}

.timeline-line.active {
  background: #ffaa66;
}

/* Order Item Row Summary Layout */
.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #fafafa;
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid #fbe9e7;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #5d4037;
}

.order-item-row span:first-child {
  font-weight: 600;
}

.order-item-row span:last-child {
  font-weight: 700;
}

/* Order Card Footer */
.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-total-price {
  font-size: 1.05rem;
  color: #5d4037;
}

.order-total-price strong {
  font-size: 1.3rem;
  color: #bf360c;
  margin-left: 0.4rem;
}

/* Reorder Button styling */
.btn-reorder {
  background: #ff5722;
  color: white;
  border: none;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-reorder:hover {
  background: #bf360c;
  box-shadow: 0 6px 20px rgba(191, 54, 12, 0.4);
  transform: translateY(-1px);
}