  /* Container box */
  .order-summary-box {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 20px 25px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  /* Title */
  .order-summary-title {
      font-weight: 700;
      font-size: 1.5rem;
      color: #2c3e50;
      border-bottom: 2px solid #3498db;
      padding-bottom: 10px;
      margin-bottom: 15px;
  }

  /* List styling */
  .order-summary-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  /* Each list item */
  .order-summary-list li {
      background: #ecf0f1;
      border-radius: 8px;
      padding: 12px 18px;
      font-weight: 600;
      font-size: 1.1rem;
      color: #34495e;
      display: flex;
      justify-content: space-between;
      box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.05);
      transition: background-color 0.3s ease;
  }

  .order-summary-list li:hover {
      background-color: #d0e7ff;
      color: #2c3e50;
  }

  .order-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .order-item {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.2s ease-in-out;
        width: 100%;
    }
    .order-item:hover {
        transform: translateY(-3px);
    }
    .order-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.5rem;
        font-weight: 700;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
        margin-bottom: 15px;
        color: #007bff;
    }
    .order-details {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .product-name {
        font-weight: 700;
        font-size: 1.3rem;
    }
    .sauce-badge {
        background: #ff9800;
        color: white;
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        margin-left: 10px;
    }
    .meta {
        font-size: 1.1rem;
        color: #666;
    }
    .order-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
    }
    .price-tag {
        font-weight: 700;
        font-size: 1.4rem;
        color: #28a745;
    }
    .complete-btn {
        background: #28a745;
        border: none;
        color: white;
        padding: 10px 18px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: background 0.2s ease-in-out;
    }
    .complete-btn:hover {
        background: #218838;
    }

  /* Responsive tweaks */
  @media (max-width: 768px) {
      .order-summary-box {
          padding: 15px 20px;
      }

      .order-summary-title {
          font-size: 1.3rem;
      }

      .order-summary-list li {
          font-size: 1rem;
          padding: 10px 15px;
      }
  }

  /* Gradient animation for Active Orders button */
  .btn-gradient {
      background: linear-gradient(270deg, #ff7e5f, #feb47b, #86a8e7, #91eae4);
      background-size: 800% 800%;
      animation: gradientMove 5s ease infinite;
      color: white !important;
      border: none;
  }

  @keyframes gradientMove {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

  .btn-gradient:hover {
      opacity: 0.9;
      transform: scale(1.03);
      transition: all 0.3s ease-in-out;
  }

  .category-card {
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        border-radius: 1.25rem !important;
    }
    .category-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    }
    .category-card img {
        transition: transform 0.4s ease;
    }
    .category-card:hover img {
        transform: scale(1.1);
    }
    .card-body {
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.9);
    }